Search is not available for this dataset
repo
stringlengths
2
152
file
stringlengths
15
239
code
stringlengths
0
58.4M
file_length
int64
0
58.4M
avg_line_length
float64
0
1.81M
max_line_length
int64
0
12.7M
extension_type
stringclasses
364 values
null
ceph-main/src/test/client/TestClient.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2021 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "gtest/gtest.h" #include "common/async/context_pool.h" #include "global/global_context.h" #include "msg/Messenger.h" #include "mon/MonClient.h" #include "osdc/ObjectCacher.h" #include "client/MetaRequest.h" #include "client/Client.h" #include "messages/MClientReclaim.h" #include "messages/MClientSession.h" #include "common/async/blocked_completion.h" #define dout_subsys ceph_subsys_client namespace bs = boost::system; namespace ca = ceph::async; class ClientScaffold : public Client { public: ClientScaffold(Messenger *m, MonClient *mc, Objecter *objecter_) : Client(m, mc, objecter_) {} virtual ~ClientScaffold() { } int check_dummy_op(const UserPerm& perms){ RWRef_t mref_reader(mount_state, CLIENT_MOUNTING); if (!mref_reader.is_state_satisfied()) { return -CEPHFS_ENOTCONN; } std::scoped_lock l(client_lock); MetaRequest *req = new MetaRequest(CEPH_MDS_OP_DUMMY); int res = make_request(req, perms); ldout(cct, 10) << __func__ << " result=" << res << dendl; return res; } int send_unknown_session_op(int op) { RWRef_t mref_reader(mount_state, CLIENT_MOUNTING); if (!mref_reader.is_state_satisfied()) { return -CEPHFS_ENOTCONN; } std::scoped_lock l(client_lock); auto session = _get_or_open_mds_session(0); auto msg = make_message<MClientSession>(op, session->seq); int res = session->con->send_message2(std::move(msg)); ldout(cct, 10) << __func__ << " result=" << res << dendl; return res; } bool check_client_blocklisted() { RWRef_t mref_reader(mount_state, CLIENT_MOUNTING); if (!mref_reader.is_state_satisfied()) { return -CEPHFS_ENOTCONN; } std::scoped_lock l(client_lock); bs::error_code ec; ldout(cct, 20) << __func__ << ": waiting for latest osdmap" << dendl; objecter->wait_for_latest_osdmap(ca::use_blocked[ec]); ldout(cct, 20) << __func__ << ": got latest osdmap: " << ec << dendl; const auto myaddrs = messenger->get_myaddrs(); return objecter->with_osdmap([&](const OSDMap& o) {return o.is_blocklisted(myaddrs);}); } bool check_unknown_reclaim_flag(uint32_t flag) { RWRef_t mref_reader(mount_state, CLIENT_MOUNTING); if (!mref_reader.is_state_satisfied()) { return -CEPHFS_ENOTCONN; } std::scoped_lock l(client_lock); char uuid[256]; sprintf(uuid, "unknownreclaimflag:%x", getpid()); auto session = _get_or_open_mds_session(0); auto m = make_message<MClientReclaim>(uuid, flag); ceph_assert(session->con->send_message2(std::move(m)) == 0); wait_on_list(waiting_for_reclaim); return session->reclaim_state == MetaSession::RECLAIM_FAIL ? true : false; } }; class TestClient : public ::testing::Test { public: static void SetUpTestSuite() { icp.start(g_ceph_context->_conf.get_val<std::uint64_t>("client_asio_thread_count")); } static void TearDownTestSuite() { icp.stop(); } void SetUp() override { messenger = Messenger::create_client_messenger(g_ceph_context, "client"); if (messenger->start() != 0) { throw std::runtime_error("failed to start messenger"); } mc = new MonClient(g_ceph_context, icp); if (mc->build_initial_monmap() < 0) { throw std::runtime_error("build monmap"); } mc->set_messenger(messenger); mc->set_want_keys(CEPH_ENTITY_TYPE_MDS | CEPH_ENTITY_TYPE_OSD); if (mc->init() < 0) { throw std::runtime_error("init monclient"); } objecter = new Objecter(g_ceph_context, messenger, mc, icp); objecter->set_client_incarnation(0); objecter->init(); messenger->add_dispatcher_tail(objecter); objecter->start(); client = new ClientScaffold(messenger, mc, objecter); client->init(); client->mount("/", myperm, true); } void TearDown() override { if (client->is_mounted()) client->unmount(); client->shutdown(); objecter->shutdown(); mc->shutdown(); messenger->shutdown(); messenger->wait(); delete client; client = nullptr; delete objecter; objecter = nullptr; delete mc; mc = nullptr; delete messenger; messenger = nullptr; } protected: static inline ceph::async::io_context_pool icp; static inline UserPerm myperm{0,0}; MonClient* mc = nullptr; Messenger* messenger = nullptr; Objecter* objecter = nullptr; ClientScaffold* client = nullptr; };
4,990
32.05298
98
h
null
ceph-main/src/test/client/alternate_name.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2021 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <errno.h> #include <iostream> #include <string> #include <fmt/format.h> #include "test/client/TestClient.h" TEST_F(TestClient, AlternateNameRemount) { auto altname = std::string("foo"); auto dir = fmt::format("{}_{}", ::testing::UnitTest::GetInstance()->current_test_info()->name(), getpid()); ASSERT_EQ(0, client->mkdir(dir.c_str(), 0777, myperm, altname)); client->unmount(); TearDown(); SetUp(); client->mount("/", myperm, true); { Client::walk_dentry_result wdr; ASSERT_EQ(0, client->walk(dir.c_str(), &wdr, myperm)); ASSERT_EQ(wdr.alternate_name, altname); } ASSERT_EQ(0, client->rmdir(dir.c_str(), myperm)); } TEST_F(TestClient, AlternateNameMkdir) { auto dir = fmt::format("{}_{}", ::testing::UnitTest::GetInstance()->current_test_info()->name(), getpid()); ASSERT_EQ(0, client->mkdir(dir.c_str(), 0777, myperm, "foo")); { Client::walk_dentry_result wdr; ASSERT_EQ(0, client->walk(dir.c_str(), &wdr, myperm)); ASSERT_EQ(wdr.alternate_name, "foo"); } ASSERT_EQ(0, client->rmdir(dir.c_str(), myperm)); } TEST_F(TestClient, AlternateNameLong) { auto altname = std::string(4096+1024, '-'); auto dir = fmt::format("{}_{}", ::testing::UnitTest::GetInstance()->current_test_info()->name(), getpid()); ASSERT_EQ(0, client->mkdir(dir.c_str(), 0777, myperm, altname)); { Client::walk_dentry_result wdr; ASSERT_EQ(0, client->walk(dir.c_str(), &wdr, myperm)); ASSERT_EQ(wdr.alternate_name, altname); } ASSERT_EQ(0, client->rmdir(dir.c_str(), myperm)); } TEST_F(TestClient, AlternateNameCreat) { auto altname = std::string("foo"); auto file = fmt::format("{}_{}", ::testing::UnitTest::GetInstance()->current_test_info()->name(), getpid()); int fd = client->open(file.c_str(), O_CREAT|O_WRONLY, myperm, 0777, altname); ASSERT_LE(0, fd); ASSERT_EQ(3, client->write(fd, "baz", 3, 0)); ASSERT_EQ(0, client->close(fd)); { Client::walk_dentry_result wdr; ASSERT_EQ(0, client->walk(file, &wdr, myperm)); ASSERT_EQ(wdr.alternate_name, altname); } } TEST_F(TestClient, AlternateNameSymlink) { auto altname = std::string("foo"); auto file = fmt::format("{}_{}", ::testing::UnitTest::GetInstance()->current_test_info()->name(), getpid()); int fd = client->open(file.c_str(), O_CREAT|O_WRONLY, myperm, 0777, altname); ASSERT_LE(0, fd); ASSERT_EQ(3, client->write(fd, "baz", 3, 0)); ASSERT_EQ(0, client->close(fd)); auto file2 = file+"2"; auto altname2 = altname+"2"; ASSERT_EQ(0, client->symlink(file.c_str(), file2.c_str(), myperm, altname2)); { Client::walk_dentry_result wdr; ASSERT_EQ(0, client->walk(file2, &wdr, myperm, false)); ASSERT_EQ(wdr.alternate_name, altname2); ASSERT_EQ(0, client->walk(file, &wdr, myperm)); ASSERT_EQ(wdr.alternate_name, altname); } } TEST_F(TestClient, AlternateNameRename) { auto altname = std::string("foo"); auto file = fmt::format("{}_{}", ::testing::UnitTest::GetInstance()->current_test_info()->name(), getpid()); int fd = client->open(file.c_str(), O_CREAT|O_WRONLY, myperm, 0777, altname); ASSERT_LE(0, fd); ASSERT_EQ(3, client->write(fd, "baz", 3, 0)); ASSERT_EQ(0, client->close(fd)); auto file2 = file+"2"; auto altname2 = altname+"2"; ASSERT_EQ(0, client->rename(file.c_str(), file2.c_str(), myperm, altname2)); { Client::walk_dentry_result wdr; ASSERT_EQ(0, client->walk(file2, &wdr, myperm)); ASSERT_EQ(wdr.alternate_name, altname2); } } TEST_F(TestClient, AlternateNameRenameExistMatch) { auto altname = std::string("foo"); auto file = fmt::format("{}_{}", ::testing::UnitTest::GetInstance()->current_test_info()->name(), getpid()); int fd = client->open(file.c_str(), O_CREAT|O_WRONLY, myperm, 0777, altname); ASSERT_LE(0, fd); ASSERT_EQ(3, client->write(fd, "baz", 3, 0)); ASSERT_EQ(0, client->close(fd)); auto file2 = file+"2"; auto altname2 = altname+"2"; fd = client->open(file2.c_str(), O_CREAT|O_WRONLY, myperm, 0777, altname2); ASSERT_LE(0, fd); ASSERT_EQ(3, client->write(fd, "baz", 3, 0)); ASSERT_EQ(0, client->close(fd)); ASSERT_EQ(0, client->rename(file.c_str(), file2.c_str(), myperm, altname2)); { Client::walk_dentry_result wdr; ASSERT_EQ(0, client->walk(file2, &wdr, myperm)); ASSERT_EQ(wdr.alternate_name, altname2); } } TEST_F(TestClient, AlternateNameRenameExistMisMatch) { auto altname = std::string("foo"); auto file = fmt::format("{}_{}", ::testing::UnitTest::GetInstance()->current_test_info()->name(), getpid()); int fd = client->open(file.c_str(), O_CREAT|O_WRONLY, myperm, 0777, altname); ASSERT_LE(0, fd); ASSERT_EQ(3, client->write(fd, "baz", 3, 0)); ASSERT_EQ(0, client->close(fd)); auto file2 = file+"2"; auto altname2 = altname+"2"; fd = client->open(file2.c_str(), O_CREAT|O_WRONLY, myperm, 0777, altname+"mismatch"); ASSERT_LE(0, fd); ASSERT_EQ(3, client->write(fd, "baz", 3, 0)); ASSERT_EQ(0, client->close(fd)); ASSERT_EQ(-EINVAL, client->rename(file.c_str(), file2.c_str(), myperm, altname2)); { Client::walk_dentry_result wdr; ASSERT_EQ(0, client->walk(file2, &wdr, myperm)); ASSERT_EQ(wdr.alternate_name, altname+"mismatch"); } } TEST_F(TestClient, AlternateNameLink) { auto altname = std::string("foo"); auto file = fmt::format("{}_{}", ::testing::UnitTest::GetInstance()->current_test_info()->name(), getpid()); int fd = client->open(file.c_str(), O_CREAT|O_WRONLY, myperm, 0777, altname); ASSERT_LE(0, fd); ASSERT_EQ(3, client->write(fd, "baz", 3, 0)); ASSERT_EQ(0, client->close(fd)); auto file2 = file+"2"; auto altname2 = altname+"2"; ASSERT_EQ(0, client->link(file.c_str(), file2.c_str(), myperm, altname2)); { Client::walk_dentry_result wdr; ASSERT_EQ(0, client->walk(file2, &wdr, myperm)); ASSERT_EQ(wdr.alternate_name, altname2); ASSERT_EQ(0, client->walk(file, &wdr, myperm)); ASSERT_EQ(wdr.alternate_name, altname); } }
6,354
31.09596
110
cc
null
ceph-main/src/test/client/iozone.sh
#!/usr/bin/env bash set -e name=`echo $0 | sed 's/\//_/g'` mkdir $name cd $name iozone -c -e -s 1024M -r 16K -t 1 -F f1 -i 0 -i 1 iozone -c -e -s 1024M -r 1M -t 1 -F f2 -i 0 -i 1 iozone -c -e -s 10240M -r 1M -t 1 -F f3 -i 0 -i 1 cd ..
238
17.384615
49
sh
null
ceph-main/src/test/client/kernel_untar_build.sh
#!/usr/bin/env bash set -e name=`echo $0 | sed 's/\//_/g'` mkdir $name cd $name tar jxvf /root/linux* cd linux* make defconfig make cd .. rm -r linux*
153
10
31
sh
null
ceph-main/src/test/client/main.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2011 New Dream Network * Copyright (C) 2016 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "gtest/gtest.h" #include "common/ceph_argparse.h" #include "global/global_init.h" #include "global/global_context.h" int main(int argc, char **argv) { auto args = argv_to_vec(argc, argv); [[maybe_unused]] auto cct = global_init(NULL, args, CEPH_ENTITY_TYPE_CLIENT, CODE_ENVIRONMENT_UTILITY, 0); ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }
820
27.310345
108
cc
null
ceph-main/src/test/client/ops.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2022 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <iostream> #include <errno.h> #include "TestClient.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include "gtest/gtest-spi.h" #include "gmock/gmock-matchers.h" #include "gmock/gmock-more-matchers.h" TEST_F(TestClient, CheckDummyOP) { ASSERT_EQ(client->check_dummy_op(myperm), -EOPNOTSUPP); } TEST_F(TestClient, CheckUnknownSessionOp) { ASSERT_EQ(client->send_unknown_session_op(-1), 0); sleep(5); ASSERT_EQ(client->check_client_blocklisted(), true); } TEST_F(TestClient, CheckZeroReclaimFlag) { ASSERT_EQ(client->check_unknown_reclaim_flag(0), true); } TEST_F(TestClient, CheckUnknownReclaimFlag) { ASSERT_EQ(client->check_unknown_reclaim_flag(2), true); } TEST_F(TestClient, CheckNegativeReclaimFlagUnmasked) { ASSERT_EQ(client->check_unknown_reclaim_flag(-1 & ~MClientReclaim::FLAG_FINISH), true); } TEST_F(TestClient, CheckNegativeReclaimFlag) { ASSERT_EQ(client->check_unknown_reclaim_flag(-1), true); }
1,342
28.195652
89
cc
null
ceph-main/src/test/cls_2pc_queue/test_cls_2pc_queue.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/types.h" #include "cls/2pc_queue/cls_2pc_queue_types.h" #include "cls/2pc_queue/cls_2pc_queue_client.h" #include "cls/queue/cls_queue_client.h" #include "cls/2pc_queue/cls_2pc_queue_types.h" #include "gtest/gtest.h" #include "test/librados/test_cxx.h" #include "global/global_context.h" #include <string> #include <vector> #include <algorithm> #include <thread> #include <chrono> #include <atomic> using namespace std; class TestCls2PCQueue : public ::testing::Test { protected: librados::Rados rados; std::string pool_name; librados::IoCtx ioctx; void SetUp() override { pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); } void TearDown() override { ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } }; TEST_F(TestCls2PCQueue, GetCapacity) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 8*1024; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size; const int ret = cls_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(max_size, size); } TEST_F(TestCls2PCQueue, AsyncGetCapacity) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 8*1024; librados::ObjectWriteOperation wop; wop.create(true); cls_2pc_queue_init(wop, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &wop)); librados::ObjectReadOperation rop; bufferlist bl; int rc; cls_2pc_queue_get_capacity(rop, &bl, &rc); ASSERT_EQ(0, ioctx.operate(queue_name, &rop, nullptr)); ASSERT_EQ(0, rc); uint64_t size; ASSERT_EQ(cls_2pc_queue_get_capacity_result(bl, size), 0); ASSERT_EQ(max_size, size); } TEST_F(TestCls2PCQueue, Reserve) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024U*1024U; const auto number_of_ops = 10U; const auto number_of_elements = 23U; const auto size_to_reserve = 250U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_EQ(res_id, i+1); } cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), number_of_ops); for (const auto& r : reservations) { ASSERT_NE(r.first, cls_2pc_reservation::NO_ID); ASSERT_GT(r.second.timestamp.time_since_epoch().count(), 0); } } TEST_F(TestCls2PCQueue, AsyncReserve) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024U*1024U; constexpr auto number_of_ops = 10U; constexpr auto number_of_elements = 23U; const auto size_to_reserve = 250U; librados::ObjectWriteOperation wop; wop.create(true); cls_2pc_queue_init(wop, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &wop)); for (auto i = 0U; i < number_of_ops; ++i) { bufferlist res_bl; int res_rc; cls_2pc_queue_reserve(wop, size_to_reserve, number_of_elements, &res_bl, &res_rc); ASSERT_EQ(0, ioctx.operate(queue_name, &wop, librados::OPERATION_RETURNVEC)); ASSERT_EQ(res_rc, 0); cls_2pc_reservation::id_t res_id; ASSERT_EQ(0, cls_2pc_queue_reserve_result(res_bl, res_id)); ASSERT_EQ(res_id, i+1); } bufferlist bl; int rc; librados::ObjectReadOperation rop; cls_2pc_queue_list_reservations(rop, &bl, &rc); ASSERT_EQ(0, ioctx.operate(queue_name, &rop, nullptr)); ASSERT_EQ(0, rc); cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations_result(bl, reservations)); ASSERT_EQ(reservations.size(), number_of_ops); for (const auto& r : reservations) { ASSERT_NE(r.first, cls_2pc_reservation::NO_ID); ASSERT_GT(r.second.timestamp.time_since_epoch().count(), 0); } } TEST_F(TestCls2PCQueue, Commit) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024*1024*128; const auto number_of_ops = 200U; const auto number_of_elements = 23U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); for (auto i = 0U; i < number_of_ops; ++i) { const std::string element_prefix("op-" +to_string(i) + "-element-"); auto total_size = 0UL; std::vector<bufferlist> data(number_of_elements); // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix, &total_size] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); total_size += bl.length(); return bl; }); cls_2pc_reservation::id_t res_id; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, total_size, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); cls_2pc_queue_commit(op, data, res_id); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), 0); } TEST_F(TestCls2PCQueue, Abort) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024U*1024U; const auto number_of_ops = 17U; const auto number_of_elements = 23U; const auto size_to_reserve = 250U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); cls_2pc_queue_abort(op, res_id); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), 0); } TEST_F(TestCls2PCQueue, ReserveError) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 256U*1024U; const auto number_of_ops = 254U; const auto number_of_elements = 1U; const auto size_to_reserve = 1024U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); cls_2pc_reservation::id_t res_id; for (auto i = 0U; i < number_of_ops-1; ++i) { ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); } res_id = cls_2pc_reservation::NO_ID; // this one is failing because it exceeds the queue size ASSERT_NE(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_EQ(res_id, cls_2pc_reservation::NO_ID); // this one is failing because it tries to reserve 0 entries ASSERT_NE(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, 0, res_id), 0); // this one is failing because it tries to reserve 0 bytes ASSERT_NE(cls_2pc_queue_reserve(ioctx, queue_name, 0, number_of_elements, res_id), 0); cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), number_of_ops-1); for (const auto& r : reservations) { ASSERT_NE(r.first, cls_2pc_reservation::NO_ID); ASSERT_GT(r.second.timestamp.time_since_epoch().count(), 0); } } TEST_F(TestCls2PCQueue, CommitError) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024*1024; const auto number_of_ops = 17U; const auto number_of_elements = 23U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); const auto invalid_reservation_op = 8; const auto invalid_elements_op = 11; std::vector<bufferlist> invalid_data(number_of_elements+3); // create vector of buffer lists std::generate(invalid_data.begin(), invalid_data.end(), [j = 0] () mutable { bufferlist bl; bl.append("invalid data is larger that regular data" + to_string(j++)); return bl; }); for (auto i = 0U; i < number_of_ops; ++i) { const std::string element_prefix("op-" +to_string(i) + "-element-"); std::vector<bufferlist> data(number_of_elements); auto total_size = 0UL; // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix, &total_size] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); total_size += bl.length(); return bl; }); cls_2pc_reservation::id_t res_id; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, total_size, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); if (i == invalid_reservation_op) { // fail on a commits with invalid reservation id cls_2pc_queue_commit(op, data, res_id+999); ASSERT_NE(0, ioctx.operate(queue_name, &op)); } else if (i == invalid_elements_op) { // fail on a commits when data size is larger than the reserved one cls_2pc_queue_commit(op, invalid_data, res_id); ASSERT_NE(0, ioctx.operate(queue_name, &op)); } else { cls_2pc_queue_commit(op, data, res_id); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } } cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); // 2 reservations were not comitted ASSERT_EQ(reservations.size(), 2); } TEST_F(TestCls2PCQueue, AbortError) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024*1024; const auto number_of_ops = 17U; const auto number_of_elements = 23U; const auto size_to_reserve = 250U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); const auto invalid_reservation_op = 8; for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); if (i == invalid_reservation_op) { // aborting a reservation which does not exists // is a no-op, not an error cls_2pc_queue_abort(op, res_id+999); } else { cls_2pc_queue_abort(op, res_id); } ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); // 1 reservation was not aborted ASSERT_EQ(reservations.size(), 1); } TEST_F(TestCls2PCQueue, MultiReserve) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024*1024; const auto number_of_ops = 11U; const auto number_of_elements = 23U; const auto max_producer_count = 10U; const auto size_to_reserve = 250U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); std::vector<std::thread> producers(max_producer_count); for (auto& p : producers) { p = std::thread([this, &queue_name] { librados::ObjectWriteOperation op; for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id = cls_2pc_reservation::NO_ID; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, 0); } }); } std::for_each(producers.begin(), producers.end(), [](auto& p) { p.join(); }); cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), number_of_ops*max_producer_count); auto total_reservations = 0U; for (const auto& r : reservations) { total_reservations += r.second.size; } ASSERT_EQ(total_reservations, number_of_ops*max_producer_count*size_to_reserve); } TEST_F(TestCls2PCQueue, MultiCommit) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024*1024; const auto number_of_ops = 11U; const auto number_of_elements = 23U; const auto max_producer_count = 10U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); std::vector<std::thread> producers(max_producer_count); for (auto& p : producers) { p = std::thread([this, &queue_name] { librados::ObjectWriteOperation op; for (auto i = 0U; i < number_of_ops; ++i) { const std::string element_prefix("op-" +to_string(i) + "-element-"); std::vector<bufferlist> data(number_of_elements); auto total_size = 0UL; // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix, &total_size] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); total_size += bl.length(); return bl; }); cls_2pc_reservation::id_t res_id = cls_2pc_reservation::NO_ID; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, total_size, number_of_elements, res_id), 0); ASSERT_NE(res_id, 0); cls_2pc_queue_commit(op, data, res_id); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } }); } std::for_each(producers.begin(), producers.end(), [](auto& p) { p.join(); }); cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), 0); } TEST_F(TestCls2PCQueue, MultiAbort) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024*1024; const auto number_of_ops = 11U; const auto number_of_elements = 23U; const auto max_producer_count = 10U; const auto size_to_reserve = 250U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); std::vector<std::thread> producers(max_producer_count); for (auto& p : producers) { p = std::thread([this, &queue_name] { librados::ObjectWriteOperation op; for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id = cls_2pc_reservation::NO_ID; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, 0); cls_2pc_queue_abort(op, res_id); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } }); } std::for_each(producers.begin(), producers.end(), [](auto& p) { p.join(); }); cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), 0); } TEST_F(TestCls2PCQueue, ReserveCommit) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024*1024; const auto number_of_ops = 11U; const auto number_of_elements = 23U; const auto max_workers = 10U; const auto size_to_reserve = 512U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); std::vector<std::thread> reservers(max_workers); for (auto& r : reservers) { r = std::thread([this, &queue_name] { librados::ObjectWriteOperation op; for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id = cls_2pc_reservation::NO_ID; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); } }); } auto committer = std::thread([this, &queue_name] { librados::ObjectWriteOperation op; int remaining_ops = number_of_ops*max_workers; while (remaining_ops > 0) { const std::string element_prefix("op-" +to_string(remaining_ops) + "-element-"); std::vector<bufferlist> data(number_of_elements); // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); return bl; }); cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); for (const auto& r : reservations) { cls_2pc_queue_commit(op, data, r.first); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); --remaining_ops; } } }); std::for_each(reservers.begin(), reservers.end(), [](auto& r) { r.join(); }); committer.join(); cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), 0); } TEST_F(TestCls2PCQueue, ReserveAbort) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024*1024; const auto number_of_ops = 17U; const auto number_of_elements = 23U; const auto max_workers = 10U; const auto size_to_reserve = 250U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); std::vector<std::thread> reservers(max_workers); for (auto& r : reservers) { r = std::thread([this, &queue_name] { librados::ObjectWriteOperation op; for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id = cls_2pc_reservation::NO_ID; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); } }); } auto aborter = std::thread([this, &queue_name] { librados::ObjectWriteOperation op; int remaining_ops = number_of_ops*max_workers; while (remaining_ops > 0) { cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); for (const auto& r : reservations) { cls_2pc_queue_abort(op, r.first); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); --remaining_ops; } } }); std::for_each(reservers.begin(), reservers.end(), [](auto& r) { r.join(); }); aborter.join(); cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), 0); } TEST_F(TestCls2PCQueue, ManualCleanup) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 128*1024*1024; const auto number_of_ops = 17U; const auto number_of_elements = 23U; const auto max_workers = 10U; const auto size_to_reserve = 512U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); // anything older than 100ms is cosidered stale ceph::coarse_real_time stale_time = ceph::coarse_real_clock::now() + std::chrono::milliseconds(100); std::vector<std::thread> reservers(max_workers); for (auto& r : reservers) { r = std::thread([this, &queue_name] { librados::ObjectWriteOperation op; for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id = cls_2pc_reservation::NO_ID; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); // wait for 10ms between each reservation to make sure at least some are stale std::this_thread::sleep_for(std::chrono::milliseconds(10)); } }); } auto cleaned_reservations = 0U; auto committed_reservations = 0U; auto aborter = std::thread([this, &queue_name, &stale_time, &cleaned_reservations, &committed_reservations] { librados::ObjectWriteOperation op; int remaining_ops = number_of_ops*max_workers; while (remaining_ops > 0) { cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); for (const auto& r : reservations) { if (r.second.timestamp > stale_time) { // abort stale reservations cls_2pc_queue_abort(op, r.first); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); ++cleaned_reservations; } else { // commit good reservations const std::string element_prefix("op-" +to_string(remaining_ops) + "-element-"); std::vector<bufferlist> data(number_of_elements); // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); return bl; }); cls_2pc_queue_commit(op, data, r.first); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); ++committed_reservations; } --remaining_ops; } } }); std::for_each(reservers.begin(), reservers.end(), [](auto& r) { r.join(); }); aborter.join(); ASSERT_GT(cleaned_reservations, 0); ASSERT_EQ(committed_reservations + cleaned_reservations, number_of_ops*max_workers); cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), 0); } TEST_F(TestCls2PCQueue, Cleanup) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 128*1024*1024; const auto number_of_ops = 15U; const auto number_of_elements = 23U; const auto max_workers = 10U; const auto size_to_reserve = 512U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); // anything older than 100ms is cosidered stale ceph::coarse_real_time stale_time = ceph::coarse_real_clock::now() + std::chrono::milliseconds(100); std::vector<std::thread> reservers(max_workers); for (auto& r : reservers) { r = std::thread([this, &queue_name] { librados::ObjectWriteOperation op; for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id = cls_2pc_reservation::NO_ID; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); // wait for 10ms between each reservation to make sure at least some are stale std::this_thread::sleep_for(std::chrono::milliseconds(10)); } }); } std::for_each(reservers.begin(), reservers.end(), [](auto& r) { r.join(); }); cls_2pc_reservations all_reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, all_reservations)); ASSERT_EQ(all_reservations.size(), number_of_ops*max_workers); cls_2pc_queue_expire_reservations(op, stale_time); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); cls_2pc_reservations good_reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, good_reservations)); for (const auto& r : all_reservations) { if (good_reservations.find(r.first) == good_reservations.end()) { // not in the "good" list ASSERT_GE(stale_time.time_since_epoch().count(), r.second.timestamp.time_since_epoch().count()); } } for (const auto& r : good_reservations) { ASSERT_LT(stale_time.time_since_epoch().count(), r.second.timestamp.time_since_epoch().count()); } } TEST_F(TestCls2PCQueue, MultiProducer) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 128*1024*1024; const auto number_of_ops = 300U; const auto number_of_elements = 23U; const auto max_producer_count = 10U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); auto producer_count = max_producer_count; std::vector<std::thread> producers(max_producer_count); for (auto& p : producers) { p = std::thread([this, &queue_name, &producer_count] { librados::ObjectWriteOperation op; for (auto i = 0U; i < number_of_ops; ++i) { const std::string element_prefix("op-" +to_string(i) + "-element-"); std::vector<bufferlist> data(number_of_elements); auto total_size = 0UL; // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix, &total_size] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); total_size += bl.length(); return bl; }); cls_2pc_reservation::id_t res_id = cls_2pc_reservation::NO_ID; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, total_size, number_of_elements, res_id), 0); ASSERT_NE(res_id, 0); cls_2pc_queue_commit(op, data, res_id); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } --producer_count; }); } auto consume_count = 0U; std::thread consumer([this, &queue_name, &consume_count, &producer_count] { librados::ObjectWriteOperation op; const auto max_elements = 42; const std::string marker; bool truncated = false; std::string end_marker; std::vector<cls_queue_entry> entries; while (producer_count > 0 || truncated) { const auto ret = cls_2pc_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); consume_count += entries.size(); cls_2pc_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } }); std::for_each(producers.begin(), producers.end(), [](auto& p) { p.join(); }); consumer.join(); ASSERT_EQ(consume_count, number_of_ops*number_of_elements*max_producer_count); } TEST_F(TestCls2PCQueue, AsyncConsumer) { const std::string queue_name = __PRETTY_FUNCTION__; constexpr auto max_size = 128*1024*1024; constexpr auto number_of_ops = 250U; constexpr auto number_of_elements = 23U; librados::ObjectWriteOperation wop; wop.create(true); cls_2pc_queue_init(wop, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &wop)); for (auto i = 0U; i < number_of_ops; ++i) { const std::string element_prefix("op-" +to_string(i) + "-element-"); std::vector<bufferlist> data(number_of_elements); auto total_size = 0UL; // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix, &total_size] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); total_size += bl.length(); return bl; }); cls_2pc_reservation::id_t res_id = cls_2pc_reservation::NO_ID; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, total_size, number_of_elements, res_id), 0); ASSERT_NE(res_id, 0); cls_2pc_queue_commit(wop, data, res_id); ASSERT_EQ(0, ioctx.operate(queue_name, &wop)); } constexpr auto max_elements = 42; std::string marker; std::string end_marker; librados::ObjectReadOperation rop; auto consume_count = 0U; std::vector<cls_queue_entry> entries; bool truncated = true; while (truncated) { bufferlist bl; int rc; cls_2pc_queue_list_entries(rop, marker, max_elements, &bl, &rc); ASSERT_EQ(0, ioctx.operate(queue_name, &rop, nullptr)); ASSERT_EQ(rc, 0); ASSERT_EQ(cls_2pc_queue_list_entries_result(bl, entries, &truncated, end_marker), 0); consume_count += entries.size(); cls_2pc_queue_remove_entries(wop, end_marker); marker = end_marker; } ASSERT_EQ(consume_count, number_of_ops*number_of_elements); // execute all delete operations in a batch ASSERT_EQ(0, ioctx.operate(queue_name, &wop)); // make sure that queue is empty ASSERT_EQ(cls_2pc_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker), 0); ASSERT_EQ(entries.size(), 0); } TEST_F(TestCls2PCQueue, MultiProducerConsumer) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024*1024; const auto number_of_ops = 300U; const auto number_of_elements = 23U; const auto max_workers = 10U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); auto producer_count = max_workers; auto retry_happened = false; std::vector<std::thread> producers(max_workers); for (auto& p : producers) { p = std::thread([this, &queue_name, &producer_count, &retry_happened] { librados::ObjectWriteOperation op; for (auto i = 0U; i < number_of_ops; ++i) { const std::string element_prefix("op-" +to_string(i) + "-element-"); std::vector<bufferlist> data(number_of_elements); auto total_size = 0UL; // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix, &total_size] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); total_size += bl.length(); return bl; }); cls_2pc_reservation::id_t res_id = cls_2pc_reservation::NO_ID; auto rc = cls_2pc_queue_reserve(ioctx, queue_name, total_size, number_of_elements, res_id); while (rc != 0) { // other errors should cause test to fail ASSERT_EQ(rc, -ENOSPC); ASSERT_EQ(res_id, 0); // queue is full, sleep and retry retry_happened = true; std::this_thread::sleep_for(std::chrono::milliseconds(10)); rc = cls_2pc_queue_reserve(ioctx, queue_name, total_size, number_of_elements, res_id); }; ASSERT_NE(res_id, 0); cls_2pc_queue_commit(op, data, res_id); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } --producer_count; }); } const auto max_elements = 128; std::vector<std::thread> consumers(max_workers/2); for (auto& c : consumers) { c = std::thread([this, &queue_name, &producer_count] { librados::ObjectWriteOperation op; const std::string marker; bool truncated = false; std::string end_marker; std::vector<cls_queue_entry> entries; while (producer_count > 0 || truncated) { const auto ret = cls_2pc_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); if (entries.empty()) { // queue is empty, let it fill std::this_thread::sleep_for(std::chrono::milliseconds(100)); } else { cls_2pc_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } } }); } std::for_each(producers.begin(), producers.end(), [](auto& p) { p.join(); }); std::for_each(consumers.begin(), consumers.end(), [](auto& c) { c.join(); }); if (!retry_happened) { std::cerr << "Queue was never full - all reservations were sucessfull." << "Please decrease the amount of consumer threads" << std::endl; } // make sure that queue is empty and no reservations remain cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), 0); const std::string marker; bool truncated = false; std::string end_marker; std::vector<cls_queue_entry> entries; ASSERT_EQ(0, cls_2pc_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker)); ASSERT_EQ(entries.size(), 0); } TEST_F(TestCls2PCQueue, ReserveSpillover) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024U*1024U; const auto number_of_ops = 1024U; const auto number_of_elements = 8U; const auto size_to_reserve = 64U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); } cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), number_of_ops); for (const auto& r : reservations) { ASSERT_NE(r.first, cls_2pc_reservation::NO_ID); ASSERT_GT(r.second.timestamp.time_since_epoch().count(), 0); } } TEST_F(TestCls2PCQueue, CommitSpillover) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024U*1024U; const auto number_of_ops = 1024U; const auto number_of_elements = 4U; const auto size_to_reserve = 128U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); } cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); for (const auto& r : reservations) { const std::string element_prefix("foo"); std::vector<bufferlist> data(number_of_elements); auto total_size = 0UL; // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix, &total_size] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); total_size += bl.length(); return bl; }); ASSERT_NE(r.first, cls_2pc_reservation::NO_ID); cls_2pc_queue_commit(op, data, r.first); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), 0); } TEST_F(TestCls2PCQueue, AbortSpillover) { const std::string queue_name = __PRETTY_FUNCTION__; const auto max_size = 1024U*1024U; const auto number_of_ops = 1024U; const auto number_of_elements = 4U; const auto size_to_reserve = 128U; librados::ObjectWriteOperation op; op.create(true); cls_2pc_queue_init(op, queue_name, max_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); for (auto i = 0U; i < number_of_ops; ++i) { cls_2pc_reservation::id_t res_id; ASSERT_EQ(cls_2pc_queue_reserve(ioctx, queue_name, size_to_reserve, number_of_elements, res_id), 0); ASSERT_NE(res_id, cls_2pc_reservation::NO_ID); } cls_2pc_reservations reservations; ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); for (const auto& r : reservations) { ASSERT_NE(r.first, cls_2pc_reservation::NO_ID); cls_2pc_queue_abort(op, r.first); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } ASSERT_EQ(0, cls_2pc_queue_list_reservations(ioctx, queue_name, reservations)); ASSERT_EQ(reservations.size(), 0); }
35,982
36.134159
130
cc
null
ceph-main/src/test/cls_cas/test_cls_cas.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/types.h" #include "include/stringify.h" #include "cls/cas/cls_cas_client.h" #include "cls/cas/cls_cas_internal.h" #include "include/utime.h" #include "common/Clock.h" #include "global/global_context.h" #include "gtest/gtest.h" #include "test/librados/test_cxx.h" #include <errno.h> #include <string> #include <vector> using namespace std; /// creates a temporary pool and initializes an IoCtx for each test class cls_cas : public ::testing::Test { librados::Rados rados; std::string pool_name; protected: librados::IoCtx ioctx; void SetUp() { pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); } void TearDown() { /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } }; static librados::ObjectWriteOperation *new_op() { return new librados::ObjectWriteOperation(); } /* static librados::ObjectReadOperation *new_rop() { return new librados::ObjectReadOperation(); } */ TEST_F(cls_cas, get_put) { bufferlist bl; bl.append("my data"); string oid = "mychunk"; hobject_t ref1, ref2, ref3; ref1.oid.name = "foo1"; ref2.oid.name = "foo2"; ref3.oid.name = "foo3"; // initially the object does not exist bufferlist t; ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); // write { auto op = new_op(); cls_cas_chunk_create_or_get_ref(*op, ref1, bl); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); // get x3 { auto op = new_op(); cls_cas_chunk_get_ref(*op, ref2); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); // get again { auto op = new_op(); cls_cas_chunk_create_or_get_ref(*op, ref3, bl); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); // 3x puts to remove { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref1); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref3); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref2); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); // get { auto op = new_op(); cls_cas_chunk_create_or_get_ref(*op, ref1, bl); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); // put { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref1); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); } TEST_F(cls_cas, wrong_put) { bufferlist bl; bl.append("my data"); string oid = "mychunk"; hobject_t ref1, ref2; ref1.oid.name = "foo1"; ref2.oid.name = "foo2"; // initially the object does not exist bufferlist t; ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); // write { auto op = new_op(); cls_cas_chunk_create_or_get_ref(*op, ref1, bl); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); // put wrong thing { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref2); ASSERT_EQ(-ENOLINK, ioctx.operate(oid, op)); } { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref1); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); } TEST_F(cls_cas, dup_get) { bufferlist bl; bl.append("my data"); string oid = "mychunk"; hobject_t ref1; ref1.oid.name = "foo1"; // initially the object does not exist bufferlist t; ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); // duplicated entries are allowed by "by_object". as it tracks refs of the same // hobject_t for snapshot support. int n_refs = 0; // write { auto op = new_op(); cls_cas_chunk_create_or_get_ref(*op, ref1, bl); ASSERT_EQ(0, ioctx.operate(oid, op)); n_refs++; } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); // dup create_or_get_ref, get_ref will succeed but take no additional ref // only if the chunk_refs' type is not "by_object" { auto op = new_op(); cls_cas_chunk_create_or_get_ref(*op, ref1, bl); ASSERT_EQ(0, ioctx.operate(oid, op)); n_refs++; } { auto op = new_op(); cls_cas_chunk_get_ref(*op, ref1); ASSERT_EQ(0, ioctx.operate(oid, op)); n_refs++; } for (int i = 0; i < n_refs; i++) { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref1); ASSERT_EQ(0, ioctx.operate(oid, op)); if (i < n_refs - 1) { // should not referenced anymore, but by_object is an exception // and by_object is used by default. ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); } else { // the last reference was removed ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); } } } TEST_F(cls_cas, dup_put) { bufferlist bl; bl.append("my data"); string oid = "mychunk"; hobject_t ref1; ref1.oid.name = "foo1"; // initially the object does not exist bufferlist t; ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); // write { auto op = new_op(); cls_cas_chunk_create_or_get_ref(*op, ref1, bl); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref1); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref1); ASSERT_EQ(-ENOENT, ioctx.operate(oid, op)); } } TEST_F(cls_cas, get_wrong_data) { bufferlist bl, bl2; bl.append("my data"); bl2.append("my different data"); string oid = "mychunk"; hobject_t ref1, ref2; ref1.oid.name = "foo1"; ref2.oid.name = "foo2"; // initially the object does not exist bufferlist t; ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); // get { auto op = new_op(); cls_cas_chunk_create_or_get_ref(*op, ref1, bl); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); // get w/ different data // with verify { auto op = new_op(); cls_cas_chunk_create_or_get_ref(*op, ref2, bl2, true); ASSERT_EQ(-ENOMSG, ioctx.operate(oid, op)); } // without verify { auto op = new_op(); cls_cas_chunk_create_or_get_ref(*op, ref2, bl2, false); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); // put { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref1); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(bl.length(), ioctx.read(oid, t, 0, 0)); { auto op = new_op(); cls_cas_chunk_put_ref(*op, ref2); ASSERT_EQ(0, ioctx.operate(oid, op)); } ASSERT_EQ(-ENOENT, ioctx.read(oid, t, 0, 0)); } static int count_bits(unsigned long n) { // base case if (n == 0) return 0; else return 1 + count_bits(n & (n - 1)); } TEST(chunk_refs_t, size) { chunk_refs_t r; size_t max = 1048576; // mix in pool changes as i gets bigger size_t pool_mask = 0xfff5110; // eventually add in a zillion different pools to force us to a raw count size_t pool_cutoff = max/2; for (size_t i = 1; i <= max; ++i) { hobject_t h(sobject_t(object_t("foo"s + stringify(i)), i)); h.pool = i > pool_cutoff ? i : (i & pool_mask); r.get(h); if (count_bits(i) <= 2) { bufferlist bl; r.dynamic_encode(bl, 512); if (count_bits(i) == 1) { cout << i << "\t" << bl.length() << "\t" << r.describe_encoding() << std::endl; } // verify reencoding is correct chunk_refs_t a; auto t = bl.cbegin(); decode(a, t); bufferlist bl2; encode(a, bl2); if (!bl.contents_equal(bl2)) { std::unique_ptr<Formatter> f(Formatter::create("json-pretty")); cout << "original:\n"; f->dump_object("refs", r); f->flush(cout); cout << "decoded:\n"; f->dump_object("refs", a); f->flush(cout); cout << "original encoding:\n"; bl.hexdump(cout); cout << "decoded re-encoding:\n"; bl2.hexdump(cout); ASSERT_TRUE(bl.contents_equal(bl2)); } } } ASSERT_EQ(max, r.count()); for (size_t i = 1; i <= max; ++i) { hobject_t h(sobject_t(object_t("foo"s + stringify(i)), 1)); h.pool = i > pool_cutoff ? i : (i & pool_mask); bool ret = r.put(h); ASSERT_TRUE(ret); } ASSERT_EQ(0, r.count()); }
8,706
22.596206
81
cc
null
ceph-main/src/test/cls_cmpomap/test_cls_cmpomap.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab ft=cpp /* * Ceph - scalable distributed file system * * Copyright (C) 2020 Red Hat, Inc * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. */ #include "cls/cmpomap/client.h" #include "test/librados/test_cxx.h" #include "gtest/gtest.h" #include <optional> // create/destroy a pool that's shared by all tests in the process struct RadosEnv : public ::testing::Environment { static std::optional<std::string> pool_name; public: static librados::Rados rados; static librados::IoCtx ioctx; void SetUp() override { // create pool std::string name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(name, rados)); pool_name = name; ASSERT_EQ(rados.ioctx_create(name.c_str(), ioctx), 0); } void TearDown() override { ioctx.close(); if (pool_name) { ASSERT_EQ(destroy_one_pool_pp(*pool_name, rados), 0); } } }; std::optional<std::string> RadosEnv::pool_name; librados::Rados RadosEnv::rados; librados::IoCtx RadosEnv::ioctx; auto *const rados_env = ::testing::AddGlobalTestEnvironment(new RadosEnv); namespace cls::cmpomap { // test fixture with helper functions class CmpOmap : public ::testing::Test { protected: librados::IoCtx& ioctx = RadosEnv::ioctx; int do_cmp_vals(const std::string& oid, Mode mode, Op comparison, ComparisonMap values, std::optional<bufferlist> def = std::nullopt) { librados::ObjectReadOperation op; int ret = cmp_vals(op, mode, comparison, std::move(values), std::move(def)); if (ret < 0) { return ret; } return ioctx.operate(oid, &op, nullptr); } int do_cmp_set_vals(const std::string& oid, Mode mode, Op comparison, ComparisonMap values, std::optional<bufferlist> def = std::nullopt) { librados::ObjectWriteOperation op; int ret = cmp_set_vals(op, mode, comparison, std::move(values), std::move(def)); if (ret < 0) { return ret; } return ioctx.operate(oid, &op); } int do_cmp_rm_keys(const std::string& oid, Mode mode, Op comparison, ComparisonMap values) { librados::ObjectWriteOperation op; int ret = cmp_rm_keys(op, mode, comparison, std::move(values)); if (ret < 0) { return ret; } return ioctx.operate(oid, &op); } int get_vals(const std::string& oid, std::map<std::string, bufferlist>* vals) { std::string marker; bool more = false; do { std::map<std::string, bufferlist> tmp; int r = ioctx.omap_get_vals2(oid, marker, 1000, &tmp, &more); if (r < 0) { return r; } if (!tmp.empty()) { marker = tmp.rbegin()->first; vals->merge(std::move(tmp)); } } while (more); return 0; } }; TEST_F(CmpOmap, cmp_vals_noexist_str) { const std::string oid = __PRETTY_FUNCTION__; ASSERT_EQ(ioctx.create(oid, true), 0); const std::string key = "key"; // compare a nonempty value against a missing key with no default const bufferlist input = string_buffer("a"); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::EQ, {{key, input}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::NE, {{key, input}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::GT, {{key, input}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::GTE, {{key, input}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::LT, {{key, input}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::LTE, {{key, input}}), -ECANCELED); } TEST_F(CmpOmap, cmp_vals_noexist_str_default) { const std::string oid = __PRETTY_FUNCTION__; ASSERT_EQ(ioctx.create(oid, true), 0); const std::string key = "key"; // compare a nonempty value against a missing key with nonempty default const bufferlist input = string_buffer("a"); const bufferlist def = string_buffer("b"); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::EQ, {{key, input}}, def), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::NE, {{key, input}}, def), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::GT, {{key, input}}, def), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::GTE, {{key, input}}, def), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::LT, {{key, input}}, def), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::LTE, {{key, input}}, def), 0); } TEST_F(CmpOmap, cmp_vals_noexist_u64) { const std::string oid = __PRETTY_FUNCTION__; ASSERT_EQ(ioctx.create(oid, true), 0); const std::string key = "key"; // 0 != nullopt const bufferlist input = u64_buffer(0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::EQ, {{key, input}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::NE, {{key, input}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GT, {{key, input}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GTE, {{key, input}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LT, {{key, input}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LTE, {{key, input}}), -ECANCELED); } TEST_F(CmpOmap, cmp_vals_noexist_u64_default) { const std::string oid = __PRETTY_FUNCTION__; ASSERT_EQ(ioctx.create(oid, true), 0); const std::string key = "key"; // 1 == noexist const bufferlist input = u64_buffer(1); const bufferlist def = u64_buffer(2); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::EQ, {{key, input}}, def), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::NE, {{key, input}}, def), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GT, {{key, input}}, def), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GTE, {{key, input}}, def), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LT, {{key, input}}, def), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LTE, {{key, input}}, def), 0); } TEST_F(CmpOmap, cmp_vals_str) { const std::string oid = __PRETTY_FUNCTION__; const std::string key = "key"; ASSERT_EQ(ioctx.omap_set(oid, {{key, string_buffer("bbb")}}), 0); { // empty < existing const bufferlist empty; EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::EQ, {{key, empty}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::NE, {{key, empty}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::GT, {{key, empty}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::GTE, {{key, empty}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::LT, {{key, empty}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::LTE, {{key, empty}}), 0); } { // value < existing const bufferlist value = string_buffer("aaa"); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::EQ, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::NE, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::GT, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::GTE, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::LT, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::LTE, {{key, value}}), 0); } { // value > existing const bufferlist value = string_buffer("bbbb"); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::EQ, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::NE, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::GT, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::GTE, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::LT, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::String, Op::LTE, {{key, value}}), -ECANCELED); } } TEST_F(CmpOmap, cmp_vals_u64) { const std::string oid = __PRETTY_FUNCTION__; const std::string key = "key"; ASSERT_EQ(ioctx.omap_set(oid, {{key, u64_buffer(42)}}), 0); { // 0 < existing const bufferlist value = u64_buffer(0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::EQ, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::NE, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GT, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GTE, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LT, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LTE, {{key, value}}), 0); } { // 42 == existing const bufferlist value = u64_buffer(42); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::EQ, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::NE, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GT, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GTE, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LT, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LTE, {{key, value}}), 0); } { // uint64-max > existing uint64_t v = std::numeric_limits<uint64_t>::max(); const bufferlist value = u64_buffer(v); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::EQ, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::NE, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GT, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GTE, {{key, value}}), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LT, {{key, value}}), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LTE, {{key, value}}), -ECANCELED); } } TEST_F(CmpOmap, cmp_vals_u64_invalid_input) { const std::string oid = __PRETTY_FUNCTION__; ASSERT_EQ(ioctx.create(oid, true), 0); const std::string key = "key"; const bufferlist empty; // empty buffer can't be decoded as u64 const bufferlist def = u64_buffer(0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::EQ, {{key, empty}}, def), -EINVAL); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::NE, {{key, empty}}, def), -EINVAL); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GT, {{key, empty}}, def), -EINVAL); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GTE, {{key, empty}}, def), -EINVAL); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LT, {{key, empty}}, def), -EINVAL); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LTE, {{key, empty}}, def), -EINVAL); } TEST_F(CmpOmap, cmp_vals_u64_invalid_default) { const std::string oid = __PRETTY_FUNCTION__; ASSERT_EQ(ioctx.create(oid, true), 0); const std::string key = "key"; const bufferlist input = u64_buffer(0); const bufferlist def = string_buffer("bbb"); // can't be decoded as u64 EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::EQ, {{key, input}}, def), -EIO); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::NE, {{key, input}}, def), -EIO); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GT, {{key, input}}, def), -EIO); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GTE, {{key, input}}, def), -EIO); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LT, {{key, input}}, def), -EIO); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LTE, {{key, input}}, def), -EIO); } TEST_F(CmpOmap, cmp_vals_u64_empty_default) { const std::string oid = __PRETTY_FUNCTION__; ASSERT_EQ(ioctx.create(oid, true), 0); const std::string key = "key"; const bufferlist input = u64_buffer(1); const bufferlist def; // empty buffer defaults to 0 EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::EQ, {{key, input}}, def), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::NE, {{key, input}}, def), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GT, {{key, input}}, def), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GTE, {{key, input}}, def), 0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LT, {{key, input}}, def), -ECANCELED); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LTE, {{key, input}}, def), -ECANCELED); } TEST_F(CmpOmap, cmp_vals_u64_invalid_value) { const std::string oid = __PRETTY_FUNCTION__; ASSERT_EQ(ioctx.create(oid, true), 0); const std::string key = "key"; ASSERT_EQ(ioctx.omap_set(oid, {{key, string_buffer("bbb")}}), 0); const bufferlist input = u64_buffer(0); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::EQ, {{key, input}}), -EIO); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::NE, {{key, input}}), -EIO); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GT, {{key, input}}), -EIO); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::GTE, {{key, input}}), -EIO); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LT, {{key, input}}), -EIO); EXPECT_EQ(do_cmp_vals(oid, Mode::U64, Op::LTE, {{key, input}}), -EIO); } TEST_F(CmpOmap, cmp_vals_at_max_keys) { ComparisonMap comparisons; const bufferlist empty; for (uint32_t i = 0; i < max_keys; i++) { comparisons.emplace(std::to_string(i), empty); } librados::ObjectReadOperation op; EXPECT_EQ(cmp_vals(op, Mode::String, Op::EQ, std::move(comparisons), empty), 0); } TEST_F(CmpOmap, cmp_vals_over_max_keys) { ComparisonMap comparisons; const bufferlist empty; for (uint32_t i = 0; i < max_keys + 1; i++) { comparisons.emplace(std::to_string(i), empty); } librados::ObjectReadOperation op; EXPECT_EQ(cmp_vals(op, Mode::String, Op::EQ, std::move(comparisons), empty), -E2BIG); } TEST_F(CmpOmap, cmp_set_vals_noexist_str) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist value = string_buffer("bbb"); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::EQ, {{"eq", value}}), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::NE, {{"ne", value}}), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::GT, {{"gt", value}}), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::GTE, {{"gte", value}}), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::LT, {{"lt", value}}), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::LTE, {{"lte", value}}), 0); std::map<std::string, bufferlist> vals; EXPECT_EQ(get_vals(oid, &vals), -ENOENT); // never got created } TEST_F(CmpOmap, cmp_set_vals_noexist_str_default) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist value = string_buffer("bbb"); const bufferlist def; EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::EQ, {{"eq", value}}, def), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::NE, {{"ne", value}}, def), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::GT, {{"gt", value}}, def), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::GTE, {{"gte", value}}, def), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::LT, {{"lt", value}}, def), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::String, Op::LTE, {{"lte", value}}, def), 0); std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), 0); EXPECT_EQ(vals.count("eq"), 0); EXPECT_EQ(vals.count("ne"), 1); EXPECT_EQ(vals.count("gt"), 1); EXPECT_EQ(vals.count("gte"), 1); EXPECT_EQ(vals.count("lt"), 0); EXPECT_EQ(vals.count("lte"), 0); } TEST_F(CmpOmap, cmp_set_vals_noexist_u64) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist value = u64_buffer(0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::EQ, {{"eq", value}}), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::NE, {{"ne", value}}), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::GT, {{"gt", value}}), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::GTE, {{"gte", value}}), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::LT, {{"lt", value}}), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::LTE, {{"lte", value}}), 0); std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), -ENOENT); } TEST_F(CmpOmap, cmp_set_vals_noexist_u64_default) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist value = u64_buffer(0); const bufferlist def = u64_buffer(0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::EQ, {{"eq", value}}, def), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::NE, {{"ne", value}}, def), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::GT, {{"gt", value}}, def), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::GTE, {{"gte", value}}, def), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::LT, {{"lt", value}}, def), 0); EXPECT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::LTE, {{"lte", value}}, def), 0); std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), 0); EXPECT_EQ(vals.count("eq"), 1); EXPECT_EQ(vals.count("ne"), 0); EXPECT_EQ(vals.count("gt"), 0); EXPECT_EQ(vals.count("gte"), 1); EXPECT_EQ(vals.count("lt"), 0); EXPECT_EQ(vals.count("lte"), 1); } TEST_F(CmpOmap, cmp_set_vals_str) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist value1 = string_buffer("bbb"); const bufferlist value2 = string_buffer("ccc"); { std::map<std::string, bufferlist> vals = { {"eq", value1}, {"ne", value1}, {"gt", value1}, {"gte", value1}, {"lt", value1}, {"lte", value1}, }; ASSERT_EQ(ioctx.omap_set(oid, vals), 0); } ASSERT_EQ(do_cmp_set_vals(oid, Mode::String, Op::EQ, {{"eq", value2}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::String, Op::NE, {{"ne", value2}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::String, Op::GT, {{"gt", value2}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::String, Op::GTE, {{"gte", value2}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::String, Op::LT, {{"lt", value2}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::String, Op::LTE, {{"lte", value2}}), 0); { std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), 0); ASSERT_EQ(vals.size(), 6); EXPECT_EQ(value1, vals["eq"]); EXPECT_EQ(value2, vals["ne"]); EXPECT_EQ(value2, vals["gt"]); EXPECT_EQ(value2, vals["gte"]); EXPECT_EQ(value1, vals["lt"]); EXPECT_EQ(value1, vals["lte"]); } } TEST_F(CmpOmap, cmp_set_vals_u64) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist value1 = u64_buffer(0); const bufferlist value2 = u64_buffer(42); { std::map<std::string, bufferlist> vals = { {"eq", value1}, {"ne", value1}, {"gt", value1}, {"gte", value1}, {"lt", value1}, {"lte", value1}, }; ASSERT_EQ(ioctx.omap_set(oid, vals), 0); } ASSERT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::EQ, {{"eq", value2}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::NE, {{"ne", value2}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::GT, {{"gt", value2}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::GTE, {{"gte", value2}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::LT, {{"lt", value2}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::LTE, {{"lte", value2}}), 0); { std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), 0); ASSERT_EQ(vals.size(), 6); EXPECT_EQ(value1, vals["eq"]); EXPECT_EQ(value2, vals["ne"]); EXPECT_EQ(value2, vals["gt"]); EXPECT_EQ(value2, vals["gte"]); EXPECT_EQ(value1, vals["lt"]); EXPECT_EQ(value1, vals["lte"]); } } TEST_F(CmpOmap, cmp_set_vals_u64_einval) { const std::string oid = __PRETTY_FUNCTION__; const std::string key = "key"; const bufferlist value1 = u64_buffer(0); const bufferlist value2 = string_buffer("ccc"); ASSERT_EQ(ioctx.omap_set(oid, {{key, value1}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::EQ, {{key, value2}}), -EINVAL); } TEST_F(CmpOmap, cmp_set_vals_u64_eio) { const std::string oid = __PRETTY_FUNCTION__; const std::string key = "key"; const bufferlist value1 = string_buffer("ccc"); const bufferlist value2 = u64_buffer(0); ASSERT_EQ(ioctx.omap_set(oid, {{key, value1}}), 0); ASSERT_EQ(do_cmp_set_vals(oid, Mode::U64, Op::EQ, {{key, value2}}), 0); { std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), 0); ASSERT_EQ(vals.size(), 1); EXPECT_EQ(value1, vals[key]); } } TEST_F(CmpOmap, cmp_set_vals_at_max_keys) { ComparisonMap comparisons; const bufferlist value = u64_buffer(0); for (uint32_t i = 0; i < max_keys; i++) { comparisons.emplace(std::to_string(i), value); } librados::ObjectWriteOperation op; EXPECT_EQ(cmp_set_vals(op, Mode::U64, Op::EQ, std::move(comparisons), std::nullopt), 0); } TEST_F(CmpOmap, cmp_set_vals_over_max_keys) { ComparisonMap comparisons; const bufferlist value = u64_buffer(0); for (uint32_t i = 0; i < max_keys + 1; i++) { comparisons.emplace(std::to_string(i), value); } librados::ObjectWriteOperation op; EXPECT_EQ(cmp_set_vals(op, Mode::U64, Op::EQ, std::move(comparisons), std::nullopt), -E2BIG); } TEST_F(CmpOmap, cmp_rm_keys_noexist_str) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist empty; ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::EQ, {{"eq", empty}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::NE, {{"ne", empty}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::GT, {{"gt", empty}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::GTE, {{"gte", empty}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::LT, {{"lt", empty}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::LTE, {{"lte", empty}}), 0); std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), -ENOENT); } TEST_F(CmpOmap, cmp_rm_keys_noexist_u64) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist value = u64_buffer(0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::EQ, {{"eq", value}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::NE, {{"ne", value}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::GT, {{"gt", value}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::GTE, {{"gte", value}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::LT, {{"lt", value}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::LTE, {{"lte", value}}), 0); std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), -ENOENT); } TEST_F(CmpOmap, cmp_rm_keys_str) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist value1 = string_buffer("bbb"); const bufferlist value2 = string_buffer("ccc"); { std::map<std::string, bufferlist> vals = { {"eq", value1}, {"ne", value1}, {"gt", value1}, {"gte", value1}, {"lt", value1}, {"lte", value1}, }; ASSERT_EQ(ioctx.omap_set(oid, vals), 0); } ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::EQ, {{"eq", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::NE, {{"ne", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::GT, {{"gt", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::GTE, {{"gte", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::LT, {{"lt", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::String, Op::LTE, {{"lte", value2}}), 0); { std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), 0); EXPECT_EQ(vals.count("eq"), 1); EXPECT_EQ(vals.count("ne"), 0); EXPECT_EQ(vals.count("gt"), 0); EXPECT_EQ(vals.count("gte"), 0); EXPECT_EQ(vals.count("lt"), 1); EXPECT_EQ(vals.count("lte"), 1); } } TEST_F(CmpOmap, cmp_rm_keys_u64) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist value1 = u64_buffer(0); const bufferlist value2 = u64_buffer(42); { std::map<std::string, bufferlist> vals = { {"eq", value1}, {"ne", value1}, {"gt", value1}, {"gte", value1}, {"lt", value1}, {"lte", value1}, }; ASSERT_EQ(ioctx.omap_set(oid, vals), 0); } ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::EQ, {{"eq", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::NE, {{"ne", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::GT, {{"gt", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::GTE, {{"gte", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::LT, {{"lt", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::LTE, {{"lte", value2}}), 0); { std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), 0); EXPECT_EQ(vals.count("eq"), 1); EXPECT_EQ(vals.count("ne"), 0); EXPECT_EQ(vals.count("gt"), 0); EXPECT_EQ(vals.count("gte"), 0); EXPECT_EQ(vals.count("lt"), 1); EXPECT_EQ(vals.count("lte"), 1); } } TEST_F(CmpOmap, cmp_rm_keys_u64_einval) { const std::string oid = __PRETTY_FUNCTION__; const std::string key = "key"; const bufferlist value1 = u64_buffer(0); const bufferlist value2 = string_buffer("ccc"); ASSERT_EQ(ioctx.omap_set(oid, {{key, value1}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::EQ, {{key, value2}}), -EINVAL); } TEST_F(CmpOmap, cmp_rm_keys_u64_eio) { const std::string oid = __PRETTY_FUNCTION__; const std::string key = "key"; const bufferlist value1 = string_buffer("ccc"); const bufferlist value2 = u64_buffer(0); ASSERT_EQ(ioctx.omap_set(oid, {{key, value1}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::EQ, {{key, value2}}), 0); { std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), 0); EXPECT_EQ(vals.count(key), 1); } } TEST_F(CmpOmap, cmp_rm_keys_at_max_keys) { ComparisonMap comparisons; const bufferlist value = u64_buffer(0); for (uint32_t i = 0; i < max_keys; i++) { comparisons.emplace(std::to_string(i), value); } librados::ObjectWriteOperation op; EXPECT_EQ(cmp_rm_keys(op, Mode::U64, Op::EQ, std::move(comparisons)), 0); } TEST_F(CmpOmap, cmp_rm_keys_over_max_keys) { ComparisonMap comparisons; const bufferlist value = u64_buffer(0); for (uint32_t i = 0; i < max_keys + 1; i++) { comparisons.emplace(std::to_string(i), value); } librados::ObjectWriteOperation op; EXPECT_EQ(cmp_rm_keys(op, Mode::U64, Op::EQ, std::move(comparisons)), -E2BIG); } // test upgrades from empty omap values to u64 TEST_F(CmpOmap, cmp_rm_keys_u64_empty) { const std::string oid = __PRETTY_FUNCTION__; const bufferlist value1; // empty buffer const bufferlist value2 = u64_buffer(42); { std::map<std::string, bufferlist> vals = { {"eq", value1}, {"ne", value1}, {"gt", value1}, {"gte", value1}, {"lt", value1}, {"lte", value1}, }; ASSERT_EQ(ioctx.omap_set(oid, vals), 0); } ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::EQ, {{"eq", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::NE, {{"ne", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::GT, {{"gt", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::GTE, {{"gte", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::LT, {{"lt", value2}}), 0); ASSERT_EQ(do_cmp_rm_keys(oid, Mode::U64, Op::LTE, {{"lte", value2}}), 0); { std::map<std::string, bufferlist> vals; ASSERT_EQ(get_vals(oid, &vals), 0); EXPECT_EQ(vals.count("eq"), 1); EXPECT_EQ(vals.count("ne"), 0); EXPECT_EQ(vals.count("gt"), 0); EXPECT_EQ(vals.count("gte"), 0); EXPECT_EQ(vals.count("lt"), 1); EXPECT_EQ(vals.count("lte"), 1); } } } // namespace cls::cmpomap
27,120
36.615811
95
cc
null
ceph-main/src/test/cls_hello/test_cls_hello.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Inktank * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <iostream> #include <errno.h> #include <string> #include "include/rados/librados.hpp" #include "include/encoding.h" #include "test/librados/test_cxx.h" #include "gtest/gtest.h" #include "json_spirit/json_spirit.h" using namespace librados; TEST(ClsHello, SayHello) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); bufferlist in, out; ASSERT_EQ(-ENOENT, ioctx.exec("myobject", "hello", "say_hello", in, out)); ASSERT_EQ(0, ioctx.write_full("myobject", in)); ASSERT_EQ(0, ioctx.exec("myobject", "hello", "say_hello", in, out)); ASSERT_EQ(std::string("Hello, world!"), std::string(out.c_str(), out.length())); out.clear(); in.append("Tester"); ASSERT_EQ(0, ioctx.exec("myobject", "hello", "say_hello", in, out)); ASSERT_EQ(std::string("Hello, Tester!"), std::string(out.c_str(), out.length())); out.clear(); in.clear(); char buf[4096]; memset(buf, 1, sizeof(buf)); in.append(buf, sizeof(buf)); ASSERT_EQ(-EINVAL, ioctx.exec("myobject", "hello", "say_hello", in, out)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsHello, RecordHello) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); bufferlist in, out; ASSERT_EQ(0, ioctx.exec("myobject", "hello", "record_hello", in, out)); ASSERT_EQ(-EEXIST, ioctx.exec("myobject", "hello", "record_hello", in, out)); in.append("Tester"); ASSERT_EQ(0, ioctx.exec("myobject2", "hello", "record_hello", in, out)); ASSERT_EQ(-EEXIST, ioctx.exec("myobject2", "hello", "record_hello", in, out)); ASSERT_EQ(0u, out.length()); in.clear(); out.clear(); ASSERT_EQ(0, ioctx.exec("myobject", "hello", "replay", in, out)); ASSERT_EQ(std::string("Hello, world!"), std::string(out.c_str(), out.length())); out.clear(); ASSERT_EQ(0, ioctx.exec("myobject2", "hello", "replay", in, out)); ASSERT_EQ(std::string("Hello, Tester!"), std::string(out.c_str(), out.length())); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } static std::string _get_required_osd_release(Rados& cluster) { bufferlist inbl; std::string cmd = std::string("{\"prefix\": \"osd dump\",\"format\":\"json\"}"); bufferlist outbl; int r = cluster.mon_command(cmd, inbl, &outbl, NULL); ceph_assert(r >= 0); std::string outstr(outbl.c_str(), outbl.length()); json_spirit::Value v; if (!json_spirit::read(outstr, v)) { std::cerr <<" unable to parse json " << outstr << std::endl; return ""; } json_spirit::Object& o = v.get_obj(); for (json_spirit::Object::size_type i=0; i<o.size(); i++) { json_spirit::Pair& p = o[i]; if (p.name_ == "require_osd_release") { std::cout << "require_osd_release = " << p.value_.get_str() << std::endl; return p.value_.get_str(); } } std::cerr << "didn't find require_osd_release in " << outstr << std::endl; return ""; } TEST(ClsHello, WriteReturnData) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); // skip test if not yet mimic if (_get_required_osd_release(cluster) < "octopus") { std::cout << "cluster is not yet octopus, skipping test" << std::endl; return; } // this will return nothing -- no flag is set bufferlist in, out; ASSERT_EQ(0, ioctx.exec("myobject", "hello", "write_return_data", in, out)); ASSERT_EQ(std::string(), std::string(out.c_str(), out.length())); // this will return an error due to unexpected input. // note that we set the RETURNVEC flag here so that we *reliably* get the // "too much input data!" return data string. do it lots of times so we are // more likely to resend a request and hit the dup op handling path. char buf[4096]; memset(buf, 1, sizeof(buf)); for (unsigned i=0; i<1000; ++i) { std::cout << i << std::endl; in.clear(); in.append(buf, sizeof(buf)); int rval; ObjectWriteOperation o; o.exec("hello", "write_return_data", in, &out, &rval); librados::AioCompletion *completion = cluster.aio_create_completion(); ASSERT_EQ(0, ioctx.aio_operate("foo", completion, &o, librados::OPERATION_RETURNVEC)); completion->wait_for_complete(); ASSERT_EQ(-EINVAL, completion->get_return_value()); ASSERT_EQ(-EINVAL, rval); ASSERT_EQ(std::string("too much input data!"), std::string(out.c_str(), out.length())); } ASSERT_EQ(-ENOENT, ioctx.getxattr("myobject2", "foo", out)); // this *will* return data due to the RETURNVEC flag // using a-sync call { in.clear(); out.clear(); int rval; ObjectWriteOperation o; o.exec("hello", "write_return_data", in, &out, &rval); librados::AioCompletion *completion = cluster.aio_create_completion(); ASSERT_EQ(0, ioctx.aio_operate("foo", completion, &o, librados::OPERATION_RETURNVEC)); completion->wait_for_complete(); ASSERT_EQ(42, completion->get_return_value()); ASSERT_EQ(42, rval); out.hexdump(std::cout); ASSERT_EQ("you might see this", std::string(out.c_str(), out.length())); } // using sync call { in.clear(); out.clear(); int rval; ObjectWriteOperation o; o.exec("hello", "write_return_data", in, &out, &rval); ASSERT_EQ(42, ioctx.operate("foo", &o, librados::OPERATION_RETURNVEC)); ASSERT_EQ(42, rval); out.hexdump(std::cout); ASSERT_EQ("you might see this", std::string(out.c_str(), out.length())); } // this will overflow because the return data is too big { in.clear(); out.clear(); int rval; ObjectWriteOperation o; o.exec("hello", "write_too_much_return_data", in, &out, &rval); librados::AioCompletion *completion = cluster.aio_create_completion(); ASSERT_EQ(0, ioctx.aio_operate("foo", completion, &o, librados::OPERATION_RETURNVEC)); completion->wait_for_complete(); ASSERT_EQ(-EOVERFLOW, completion->get_return_value()); ASSERT_EQ(-EOVERFLOW, rval); ASSERT_EQ("", std::string(out.c_str(), out.length())); } ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsHello, Loud) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); bufferlist in, out; ASSERT_EQ(0, ioctx.exec("myobject", "hello", "record_hello", in, out)); ASSERT_EQ(0, ioctx.exec("myobject", "hello", "replay", in, out)); ASSERT_EQ(std::string("Hello, world!"), std::string(out.c_str(), out.length())); ASSERT_EQ(0, ioctx.exec("myobject", "hello", "turn_it_to_11", in, out)); ASSERT_EQ(0, ioctx.exec("myobject", "hello", "replay", in, out)); ASSERT_EQ(std::string("HELLO, WORLD!"), std::string(out.c_str(), out.length())); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsHello, BadMethods) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); bufferlist in, out; ASSERT_EQ(0, ioctx.write_full("myobject", in)); ASSERT_EQ(-EIO, ioctx.exec("myobject", "hello", "bad_reader", in, out)); ASSERT_EQ(-EIO, ioctx.exec("myobject", "hello", "bad_writer", in, out)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsHello, Filter) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); char buf[128]; memset(buf, 0xcc, sizeof(buf)); bufferlist obj_content; obj_content.append(buf, sizeof(buf)); std::string target_str = "content"; // Write xattr bare, no ::encod'ing bufferlist target_val; target_val.append(target_str); bufferlist nontarget_val; nontarget_val.append("rhubarb"); ASSERT_EQ(0, ioctx.write("has_xattr", obj_content, obj_content.length(), 0)); ASSERT_EQ(0, ioctx.write("has_wrong_xattr", obj_content, obj_content.length(), 0)); ASSERT_EQ(0, ioctx.write("no_xattr", obj_content, obj_content.length(), 0)); ASSERT_EQ(0, ioctx.setxattr("has_xattr", "theattr", target_val)); ASSERT_EQ(0, ioctx.setxattr("has_wrong_xattr", "theattr", nontarget_val)); bufferlist filter_bl; std::string filter_name = "hello.hello"; encode(filter_name, filter_bl); encode("_theattr", filter_bl); encode(target_str, filter_bl); NObjectIterator iter(ioctx.nobjects_begin(filter_bl)); bool foundit = false; int k = 0; while (iter != ioctx.nobjects_end()) { foundit = true; // We should only see the object that matches the filter ASSERT_EQ((*iter).get_oid(), "has_xattr"); // We should only see it once ASSERT_EQ(k, 0); ++iter; ++k; } ASSERT_TRUE(foundit); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); }
9,493
32.429577
91
cc
null
ceph-main/src/test/cls_journal/test_cls_journal.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "cls/journal/cls_journal_client.h" #include "include/stringify.h" #include "common/Cond.h" #include "test/librados/test_cxx.h" #include "gtest/gtest.h" #include <errno.h> #include <set> #include <string> using namespace cls::journal; static bool is_sparse_read_supported(librados::IoCtx &ioctx, const std::string &oid) { EXPECT_EQ(0, ioctx.create(oid, true)); bufferlist inbl; inbl.append(std::string(1, 'X')); EXPECT_EQ(0, ioctx.write(oid, inbl, inbl.length(), 1)); EXPECT_EQ(0, ioctx.write(oid, inbl, inbl.length(), 3)); std::map<uint64_t, uint64_t> m; bufferlist outbl; int r = ioctx.sparse_read(oid, m, outbl, 4, 0); ioctx.remove(oid); int expected_r = 2; std::map<uint64_t, uint64_t> expected_m = {{1, 1}, {3, 1}}; bufferlist expected_outbl; expected_outbl.append(std::string(2, 'X')); return (r == expected_r && m == expected_m && outbl.contents_equal(expected_outbl)); } class TestClsJournal : public ::testing::Test { public: static void SetUpTestCase() { _pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(_pool_name, _rados)); } static void TearDownTestCase() { ASSERT_EQ(0, destroy_one_pool_pp(_pool_name, _rados)); } std::string get_temp_image_name() { ++_image_number; return "image" + stringify(_image_number); } static std::string _pool_name; static librados::Rados _rados; static uint64_t _image_number; }; std::string TestClsJournal::_pool_name; librados::Rados TestClsJournal::_rados; uint64_t TestClsJournal::_image_number = 0; TEST_F(TestClsJournal, Create) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); uint8_t order = 1; uint8_t splay_width = 2; int64_t pool_id = ioctx.get_id(); ASSERT_EQ(0, client::create(ioctx, oid, order, splay_width, pool_id)); uint8_t read_order; uint8_t read_splay_width; int64_t read_pool_id; C_SaferCond cond; client::get_immutable_metadata(ioctx, oid, &read_order, &read_splay_width, &read_pool_id, &cond); ASSERT_EQ(0, cond.wait()); ASSERT_EQ(order, read_order); ASSERT_EQ(splay_width, read_splay_width); ASSERT_EQ(pool_id, read_pool_id); } TEST_F(TestClsJournal, MinimumSet) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); librados::ObjectWriteOperation op1; client::set_active_set(&op1, 300); ASSERT_EQ(0, ioctx.operate(oid, &op1)); uint64_t minimum_set = 123; librados::ObjectWriteOperation op2; client::set_minimum_set(&op2, minimum_set); ASSERT_EQ(0, ioctx.operate(oid, &op2)); C_SaferCond cond; uint64_t read_minimum_set; uint64_t read_active_set; std::set<cls::journal::Client> read_clients; client::get_mutable_metadata(ioctx, oid, &read_minimum_set, &read_active_set, &read_clients, &cond); ASSERT_EQ(0, cond.wait()); ASSERT_EQ(minimum_set, read_minimum_set); } TEST_F(TestClsJournal, MinimumSetStale) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); librados::ObjectWriteOperation op1; client::set_active_set(&op1, 300); ASSERT_EQ(0, ioctx.operate(oid, &op1)); uint64_t minimum_set = 123; librados::ObjectWriteOperation op2; client::set_minimum_set(&op2, minimum_set); ASSERT_EQ(0, ioctx.operate(oid, &op2)); librados::ObjectWriteOperation op3; client::set_minimum_set(&op3, 1); ASSERT_EQ(-ESTALE, ioctx.operate(oid, &op3)); C_SaferCond cond; uint64_t read_minimum_set; uint64_t read_active_set; std::set<cls::journal::Client> read_clients; client::get_mutable_metadata(ioctx, oid, &read_minimum_set, &read_active_set, &read_clients, &cond); ASSERT_EQ(0, cond.wait()); ASSERT_EQ(minimum_set, read_minimum_set); } TEST_F(TestClsJournal, MinimumSetOrderConstraint) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); librados::ObjectWriteOperation op1; client::set_minimum_set(&op1, 123); ASSERT_EQ(-EINVAL, ioctx.operate(oid, &op1)); C_SaferCond cond; uint64_t read_minimum_set; uint64_t read_active_set; std::set<cls::journal::Client> read_clients; client::get_mutable_metadata(ioctx, oid, &read_minimum_set, &read_active_set, &read_clients, &cond); ASSERT_EQ(0, cond.wait()); ASSERT_EQ(0U, read_minimum_set); } TEST_F(TestClsJournal, ActiveSet) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); uint64_t active_set = 234; librados::ObjectWriteOperation op1; client::set_active_set(&op1, active_set); ASSERT_EQ(0, ioctx.operate(oid, &op1)); C_SaferCond cond; uint64_t read_minimum_set; uint64_t read_active_set; std::set<cls::journal::Client> read_clients; client::get_mutable_metadata(ioctx, oid, &read_minimum_set, &read_active_set, &read_clients, &cond); ASSERT_EQ(0, cond.wait()); ASSERT_EQ(active_set, read_active_set); } TEST_F(TestClsJournal, ActiveSetStale) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); librados::ObjectWriteOperation op1; client::set_active_set(&op1, 345); ASSERT_EQ(0, ioctx.operate(oid, &op1)); librados::ObjectWriteOperation op2; client::set_active_set(&op2, 3); ASSERT_EQ(-ESTALE, ioctx.operate(oid, &op2)); } TEST_F(TestClsJournal, CreateDuplicate) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); ASSERT_EQ(-EEXIST, client::create(ioctx, oid, 3, 5, ioctx.get_id())); } TEST_F(TestClsJournal, GetClient) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); Client client; ASSERT_EQ(-ENOENT, client::get_client(ioctx, oid, "id", &client)); bufferlist data; data.append(std::string(128, '1')); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", data)); ASSERT_EQ(0, client::get_client(ioctx, oid, "id1", &client)); Client expected_client("id1", data); ASSERT_EQ(expected_client, client); } TEST_F(TestClsJournal, ClientRegister) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); std::set<Client> clients; ASSERT_EQ(0, client::client_list(ioctx, oid, &clients)); std::set<Client> expected_clients = {Client("id1", bufferlist())}; ASSERT_EQ(expected_clients, clients); } TEST_F(TestClsJournal, ClientRegisterDuplicate) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); ASSERT_EQ(-EEXIST, client::client_register(ioctx, oid, "id1", bufferlist())); } TEST_F(TestClsJournal, ClientUpdateData) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); ASSERT_EQ(-ENOENT, client::client_update_data(ioctx, oid, "id1", bufferlist())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); bufferlist data; data.append(std::string(128, '1')); ASSERT_EQ(0, client::client_update_data(ioctx, oid, "id1", data)); Client client; ASSERT_EQ(0, client::get_client(ioctx, oid, "id1", &client)); Client expected_client("id1", data); ASSERT_EQ(expected_client, client); } TEST_F(TestClsJournal, ClientUpdateState) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); ASSERT_EQ(-ENOENT, client::client_update_state(ioctx, oid, "id1", CLIENT_STATE_DISCONNECTED)); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); bufferlist data; data.append(std::string(128, '1')); ASSERT_EQ(0, client::client_update_state(ioctx, oid, "id1", CLIENT_STATE_DISCONNECTED)); Client client; ASSERT_EQ(0, client::get_client(ioctx, oid, "id1", &client)); Client expected_client; expected_client.id = "id1"; expected_client.state = CLIENT_STATE_DISCONNECTED; ASSERT_EQ(expected_client, client); } TEST_F(TestClsJournal, ClientUnregister) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); ASSERT_EQ(0, client::client_unregister(ioctx, oid, "id1")); } TEST_F(TestClsJournal, ClientUnregisterDNE) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 4, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); ASSERT_EQ(0, client::client_unregister(ioctx, oid, "id1")); ASSERT_EQ(-ENOENT, client::client_unregister(ioctx, oid, "id1")); } TEST_F(TestClsJournal, ClientUnregisterPruneTags) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 2, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id2", bufferlist())); ASSERT_EQ(0, client::tag_create(ioctx, oid, 0, Tag::TAG_CLASS_NEW, bufferlist())); ASSERT_EQ(0, client::tag_create(ioctx, oid, 1, Tag::TAG_CLASS_NEW, bufferlist())); for (uint32_t i = 2; i <= 96; ++i) { ASSERT_EQ(0, client::tag_create(ioctx, oid, i, 1, bufferlist())); } librados::ObjectWriteOperation op1; client::client_commit(&op1, "id1", {{{1, 32, 120}}}); ASSERT_EQ(0, ioctx.operate(oid, &op1)); ASSERT_EQ(0, client::client_unregister(ioctx, oid, "id2")); std::set<Tag> expected_tags = {{0, 0, {}}}; for (uint32_t i = 32; i <= 96; ++i) { expected_tags.insert({i, 1, {}}); } std::set<Tag> tags; ASSERT_EQ(0, client::tag_list(ioctx, oid, "id1", boost::optional<uint64_t>(), &tags)); ASSERT_EQ(expected_tags, tags); } TEST_F(TestClsJournal, ClientCommit) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 2, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); cls::journal::ObjectPositions object_positions; object_positions = { cls::journal::ObjectPosition(0, 234, 120), cls::journal::ObjectPosition(3, 235, 121)}; cls::journal::ObjectSetPosition object_set_position( object_positions); librados::ObjectWriteOperation op2; client::client_commit(&op2, "id1", object_set_position); ASSERT_EQ(0, ioctx.operate(oid, &op2)); std::set<Client> clients; ASSERT_EQ(0, client::client_list(ioctx, oid, &clients)); std::set<Client> expected_clients = { Client("id1", bufferlist(), object_set_position)}; ASSERT_EQ(expected_clients, clients); } TEST_F(TestClsJournal, ClientCommitInvalid) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 2, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); cls::journal::ObjectPositions object_positions; object_positions = { cls::journal::ObjectPosition(0, 234, 120), cls::journal::ObjectPosition(4, 234, 121), cls::journal::ObjectPosition(5, 235, 121)}; cls::journal::ObjectSetPosition object_set_position( object_positions); librados::ObjectWriteOperation op2; client::client_commit(&op2, "id1", object_set_position); ASSERT_EQ(-EINVAL, ioctx.operate(oid, &op2)); } TEST_F(TestClsJournal, ClientCommitDNE) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); cls::journal::ObjectSetPosition object_set_position; librados::ObjectWriteOperation op1; client::client_commit(&op1, "id1", object_set_position); ASSERT_EQ(-ENOENT, ioctx.operate(oid, &op1)); } TEST_F(TestClsJournal, ClientList) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 12, 5, ioctx.get_id())); std::set<Client> expected_clients; librados::ObjectWriteOperation op1; for (uint32_t i = 0; i < 512; ++i) { std::string id = "id" + stringify(i + 1); expected_clients.insert(Client(id, bufferlist())); client::client_register(&op1, id, bufferlist()); } ASSERT_EQ(0, ioctx.operate(oid, &op1)); std::set<Client> clients; ASSERT_EQ(0, client::client_list(ioctx, oid, &clients)); ASSERT_EQ(expected_clients, clients); C_SaferCond cond; uint64_t read_minimum_set; uint64_t read_active_set; std::set<cls::journal::Client> read_clients; client::get_mutable_metadata(ioctx, oid, &read_minimum_set, &read_active_set, &read_clients, &cond); ASSERT_EQ(0, cond.wait()); ASSERT_EQ(expected_clients, read_clients); } TEST_F(TestClsJournal, GetNextTagTid) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); uint64_t tag_tid; ASSERT_EQ(-ENOENT, client::get_next_tag_tid(ioctx, oid, &tag_tid)); ASSERT_EQ(0, client::create(ioctx, oid, 2, 2, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); ASSERT_EQ(0, client::get_next_tag_tid(ioctx, oid, &tag_tid)); ASSERT_EQ(0U, tag_tid); ASSERT_EQ(0, client::tag_create(ioctx, oid, 0, Tag::TAG_CLASS_NEW, bufferlist())); ASSERT_EQ(0, client::get_next_tag_tid(ioctx, oid, &tag_tid)); ASSERT_EQ(1U, tag_tid); } TEST_F(TestClsJournal, TagCreate) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(-ENOENT, client::tag_create(ioctx, oid, 0, Tag::TAG_CLASS_NEW, bufferlist())); ASSERT_EQ(0, client::create(ioctx, oid, 2, 2, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); ASSERT_EQ(-ESTALE, client::tag_create(ioctx, oid, 1, Tag::TAG_CLASS_NEW, bufferlist())); ASSERT_EQ(-EINVAL, client::tag_create(ioctx, oid, 0, 1, bufferlist())); ASSERT_EQ(0, client::tag_create(ioctx, oid, 0, Tag::TAG_CLASS_NEW, bufferlist())); ASSERT_EQ(-EEXIST, client::tag_create(ioctx, oid, 0, Tag::TAG_CLASS_NEW, bufferlist())); ASSERT_EQ(0, client::tag_create(ioctx, oid, 1, Tag::TAG_CLASS_NEW, bufferlist())); ASSERT_EQ(0, client::tag_create(ioctx, oid, 2, 1, bufferlist())); std::set<Tag> expected_tags = { {0, 0, {}}, {1, 1, {}}, {2, 1, {}}}; std::set<Tag> tags; ASSERT_EQ(0, client::tag_list(ioctx, oid, "id1", boost::optional<uint64_t>(), &tags)); ASSERT_EQ(expected_tags, tags); } TEST_F(TestClsJournal, TagCreatePrunesTags) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 2, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); ASSERT_EQ(0, client::tag_create(ioctx, oid, 0, Tag::TAG_CLASS_NEW, bufferlist())); ASSERT_EQ(0, client::tag_create(ioctx, oid, 1, Tag::TAG_CLASS_NEW, bufferlist())); ASSERT_EQ(0, client::tag_create(ioctx, oid, 2, 1, bufferlist())); librados::ObjectWriteOperation op1; client::client_commit(&op1, "id1", {{{1, 2, 120}}}); ASSERT_EQ(0, ioctx.operate(oid, &op1)); ASSERT_EQ(0, client::tag_create(ioctx, oid, 3, 0, bufferlist())); std::set<Tag> expected_tags = { {0, 0, {}}, {2, 1, {}}, {3, 0, {}}}; std::set<Tag> tags; ASSERT_EQ(0, client::tag_list(ioctx, oid, "id1", boost::optional<uint64_t>(), &tags)); ASSERT_EQ(expected_tags, tags); } TEST_F(TestClsJournal, TagList) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ASSERT_EQ(0, client::create(ioctx, oid, 2, 2, ioctx.get_id())); ASSERT_EQ(0, client::client_register(ioctx, oid, "id1", bufferlist())); std::set<Tag> expected_all_tags; std::set<Tag> expected_filtered_tags; for (uint32_t i = 0; i < 96; ++i) { uint64_t tag_class = Tag::TAG_CLASS_NEW; if (i > 1) { tag_class = i % 2 == 0 ? 0 : 1; } Tag tag(i, i % 2 == 0 ? 0 : 1, bufferlist()); expected_all_tags.insert(tag); if (i % 2 == 0) { expected_filtered_tags.insert(tag); } ASSERT_EQ(0, client::tag_create(ioctx, oid, i, tag_class, bufferlist())); } std::set<Tag> tags; ASSERT_EQ(0, client::tag_list(ioctx, oid, "id1", boost::optional<uint64_t>(), &tags)); ASSERT_EQ(expected_all_tags, tags); ASSERT_EQ(0, client::tag_list(ioctx, oid, "id1", boost::optional<uint64_t>(0), &tags)); ASSERT_EQ(expected_filtered_tags, tags); librados::ObjectWriteOperation op1; client::client_commit(&op1, "id1", {{{96, 0, 120}}}); ASSERT_EQ(0, ioctx.operate(oid, &op1)); ASSERT_EQ(0, client::tag_list(ioctx, oid, "id1", boost::optional<uint64_t>(), &tags)); ASSERT_EQ(expected_all_tags, tags); } TEST_F(TestClsJournal, GuardAppend) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); bufferlist bl; bl.append("journal entry!"); librados::ObjectWriteOperation op1; op1.append(bl); ASSERT_EQ(0, ioctx.operate(oid, &op1)); librados::ObjectWriteOperation op2; client::guard_append(&op2, 1024); ASSERT_EQ(0, ioctx.operate(oid, &op2)); } TEST_F(TestClsJournal, GuardAppendDNE) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); librados::ObjectWriteOperation op2; client::guard_append(&op2, 1024); ASSERT_EQ(0, ioctx.operate(oid, &op2)); } TEST_F(TestClsJournal, GuardAppendOverflow) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); bufferlist bl; bl.append("journal entry!"); librados::ObjectWriteOperation op1; op1.append(bl); ASSERT_EQ(0, ioctx.operate(oid, &op1)); librados::ObjectWriteOperation op2; client::guard_append(&op2, 1); ASSERT_EQ(-EOVERFLOW, ioctx.operate(oid, &op2)); } TEST_F(TestClsJournal, Append) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); ioctx.remove(oid); bool sparse_read_supported = is_sparse_read_supported(ioctx, oid); bufferlist bl; bl.append("journal entry!"); librados::ObjectWriteOperation op1; client::append(&op1, 1, bl); ASSERT_EQ(0, ioctx.operate(oid, &op1)); librados::ObjectWriteOperation op2; client::append(&op2, 1, bl); ASSERT_EQ(-EOVERFLOW, ioctx.operate(oid, &op2)); bufferlist outbl; ASSERT_LE(bl.length(), ioctx.read(oid, outbl, 0, 0)); bufferlist tmpbl; tmpbl.substr_of(outbl, 0, bl.length()); ASSERT_TRUE(bl.contents_equal(tmpbl)); if (outbl.length() == bl.length()) { std::cout << "padding is not enabled" << std::endl; return; } tmpbl.clear(); tmpbl.substr_of(outbl, bl.length(), outbl.length() - bl.length()); ASSERT_TRUE(tmpbl.is_zero()); if (!sparse_read_supported) { std::cout << "sparse_read is not supported" << std::endl; return; } librados::ObjectWriteOperation op3; client::append(&op3, 1 << 24, bl); ASSERT_EQ(0, ioctx.operate(oid, &op3)); std::map<uint64_t, uint64_t> m; uint64_t pad_len = outbl.length(); outbl.clear(); std::map<uint64_t, uint64_t> expected_m = {{0, bl.length()}, {pad_len, bl.length()}}; ASSERT_EQ(expected_m.size(), ioctx.sparse_read(oid, m, outbl, 2 * pad_len, 0)); ASSERT_EQ(m, expected_m); uint64_t buffer_offset = 0; for (auto &it : m) { tmpbl.clear(); tmpbl.substr_of(outbl, buffer_offset, it.second); ASSERT_TRUE(bl.contents_equal(tmpbl)); buffer_offset += it.second; } }
22,225
30.933908
81
cc
null
ceph-main/src/test/cls_lock/test_cls_lock.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2004-2006 Sage Weil <[email protected]> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <iostream> #include <errno.h> #include "include/types.h" #include "common/Clock.h" #include "msg/msg_types.h" #include "include/rados/librados.hpp" #include "test/librados/test_cxx.h" #include "gtest/gtest.h" #include "cls/lock/cls_lock_client.h" #include "cls/lock/cls_lock_ops.h" using namespace std; using namespace librados; using namespace rados::cls::lock; void lock_info(IoCtx *ioctx, string& oid, string& name, map<locker_id_t, locker_info_t>& lockers, ClsLockType *assert_type, string *assert_tag) { ClsLockType lock_type = ClsLockType::NONE; string tag; lockers.clear(); ASSERT_EQ(0, get_lock_info(ioctx, oid, name, &lockers, &lock_type, &tag)); cout << "lock: " << name << std::endl; cout << " lock_type: " << cls_lock_type_str(lock_type) << std::endl; cout << " tag: " << tag << std::endl; cout << " lockers:" << std::endl; if (assert_type) { ASSERT_EQ(*assert_type, lock_type); } if (assert_tag) { ASSERT_EQ(*assert_tag, tag); } map<locker_id_t, locker_info_t>::iterator liter; for (liter = lockers.begin(); liter != lockers.end(); ++liter) { const locker_id_t& locker = liter->first; cout << " " << locker.locker << " expiration=" << liter->second.expiration << " addr=" << liter->second.addr << " cookie=" << locker.cookie << std::endl; } } void lock_info(IoCtx *ioctx, string& oid, string& name, map<locker_id_t, locker_info_t>& lockers) { lock_info(ioctx, oid, name, lockers, NULL, NULL); } bool lock_expired(IoCtx *ioctx, string& oid, string& name) { ClsLockType lock_type = ClsLockType::NONE; string tag; map<locker_id_t, locker_info_t> lockers; if (0 == get_lock_info(ioctx, oid, name, &lockers, &lock_type, &tag)) return false; utime_t now = ceph_clock_now(); map<locker_id_t, locker_info_t>::iterator liter; for (liter = lockers.begin(); liter != lockers.end(); ++liter) { if (liter->second.expiration > now) return false; } return true; } TEST(ClsLock, TestMultiLocking) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); ClsLockType lock_type_shared = ClsLockType::SHARED; ClsLockType lock_type_exclusive = ClsLockType::EXCLUSIVE; Rados cluster2; IoCtx ioctx2; ASSERT_EQ("", connect_cluster_pp(cluster2)); cluster2.ioctx_create(pool_name.c_str(), ioctx2); string oid = "foo"; bufferlist bl; string lock_name = "mylock"; ASSERT_EQ(0, ioctx.write(oid, bl, bl.length(), 0)); Lock l(lock_name); // we set the duration, so the log output contains a locker with a // non-zero expiration time l.set_duration(utime_t(120, 0)); /* test lock object */ ASSERT_EQ(0, l.lock_exclusive(&ioctx, oid)); /* test exclusive lock */ ASSERT_EQ(-EEXIST, l.lock_exclusive(&ioctx, oid)); /* test idempotency */ l.set_may_renew(true); ASSERT_EQ(0, l.lock_exclusive(&ioctx, oid)); l.set_may_renew(false); /* test second client */ Lock l2(lock_name); ASSERT_EQ(-EBUSY, l2.lock_exclusive(&ioctx2, oid)); ASSERT_EQ(-EBUSY, l2.lock_shared(&ioctx2, oid)); list<string> locks; ASSERT_EQ(0, list_locks(&ioctx, oid, &locks)); ASSERT_EQ(1, (int)locks.size()); list<string>::iterator iter = locks.begin(); map<locker_id_t, locker_info_t> lockers; lock_info(&ioctx, oid, *iter, lockers, &lock_type_exclusive, NULL); ASSERT_EQ(1, (int)lockers.size()); /* test unlock */ ASSERT_EQ(0, l.unlock(&ioctx, oid)); locks.clear(); ASSERT_EQ(0, list_locks(&ioctx, oid, &locks)); /* test shared lock */ ASSERT_EQ(0, l2.lock_shared(&ioctx2, oid)); ASSERT_EQ(0, l.lock_shared(&ioctx, oid)); locks.clear(); ASSERT_EQ(0, list_locks(&ioctx, oid, &locks)); ASSERT_EQ(1, (int)locks.size()); iter = locks.begin(); lock_info(&ioctx, oid, *iter, lockers, &lock_type_shared, NULL); ASSERT_EQ(2, (int)lockers.size()); /* test break locks */ entity_name_t name = entity_name_t::CLIENT(cluster.get_instance_id()); entity_name_t name2 = entity_name_t::CLIENT(cluster2.get_instance_id()); l2.break_lock(&ioctx2, oid, name); lock_info(&ioctx, oid, *iter, lockers); ASSERT_EQ(1, (int)lockers.size()); map<locker_id_t, locker_info_t>::iterator liter = lockers.begin(); const locker_id_t& id = liter->first; ASSERT_EQ(name2, id.locker); /* test lock tag */ Lock l_tag(lock_name); l_tag.set_tag("non-default tag"); ASSERT_EQ(-EBUSY, l_tag.lock_shared(&ioctx, oid)); /* test modify description */ string description = "new description"; l.set_description(description); ASSERT_EQ(0, l.lock_shared(&ioctx, oid)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsLock, TestMeta) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); Rados cluster2; IoCtx ioctx2; ASSERT_EQ("", connect_cluster_pp(cluster2)); cluster2.ioctx_create(pool_name.c_str(), ioctx2); string oid = "foo"; bufferlist bl; string lock_name = "mylock"; ASSERT_EQ(0, ioctx.write(oid, bl, bl.length(), 0)); Lock l(lock_name); ASSERT_EQ(0, l.lock_shared(&ioctx, oid)); /* test lock tag */ Lock l_tag(lock_name); l_tag.set_tag("non-default tag"); ASSERT_EQ(-EBUSY, l_tag.lock_shared(&ioctx2, oid)); ASSERT_EQ(0, l.unlock(&ioctx, oid)); /* test description */ Lock l2(lock_name); string description = "new description"; l2.set_description(description); ASSERT_EQ(0, l2.lock_shared(&ioctx2, oid)); map<locker_id_t, locker_info_t> lockers; lock_info(&ioctx, oid, lock_name, lockers, NULL, NULL); ASSERT_EQ(1, (int)lockers.size()); map<locker_id_t, locker_info_t>::iterator iter = lockers.begin(); locker_info_t locker = iter->second; ASSERT_EQ("new description", locker.description); ASSERT_EQ(0, l2.unlock(&ioctx2, oid)); /* check new tag */ string new_tag = "new_tag"; l.set_tag(new_tag); l.set_may_renew(true); ASSERT_EQ(0, l.lock_exclusive(&ioctx, oid)); lock_info(&ioctx, oid, lock_name, lockers, NULL, &new_tag); ASSERT_EQ(1, (int)lockers.size()); l.set_tag(""); ASSERT_EQ(-EBUSY, l.lock_exclusive(&ioctx, oid)); l.set_tag(new_tag); ASSERT_EQ(0, l.lock_exclusive(&ioctx, oid)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsLock, TestCookie) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); string oid = "foo"; string lock_name = "mylock"; Lock l(lock_name); ASSERT_EQ(0, l.lock_exclusive(&ioctx, oid)); /* new cookie */ string cookie = "new cookie"; l.set_cookie(cookie); ASSERT_EQ(-EBUSY, l.lock_exclusive(&ioctx, oid)); ASSERT_EQ(-ENOENT, l.unlock(&ioctx, oid)); l.set_cookie(""); ASSERT_EQ(0, l.unlock(&ioctx, oid)); map<locker_id_t, locker_info_t> lockers; lock_info(&ioctx, oid, lock_name, lockers); ASSERT_EQ(0, (int)lockers.size()); l.set_cookie(cookie); ASSERT_EQ(0, l.lock_shared(&ioctx, oid)); l.set_cookie(""); ASSERT_EQ(0, l.lock_shared(&ioctx, oid)); lock_info(&ioctx, oid, lock_name, lockers); ASSERT_EQ(2, (int)lockers.size()); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsLock, TestMultipleLocks) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); string oid = "foo"; Lock l("lock1"); ASSERT_EQ(0, l.lock_exclusive(&ioctx, oid)); Lock l2("lock2"); ASSERT_EQ(0, l2.lock_exclusive(&ioctx, oid)); list<string> locks; ASSERT_EQ(0, list_locks(&ioctx, oid, &locks)); ASSERT_EQ(2, (int)locks.size()); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsLock, TestLockDuration) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); string oid = "foo"; Lock l("lock"); utime_t dur(5, 0); l.set_duration(dur); utime_t start = ceph_clock_now(); ASSERT_EQ(0, l.lock_exclusive(&ioctx, oid)); int r = l.lock_exclusive(&ioctx, oid); if (r == 0) { // it's possible to get success if we were just really slow... ASSERT_TRUE(ceph_clock_now() > start + dur); } else { ASSERT_EQ(-EEXIST, r); } sleep(dur.sec()); ASSERT_EQ(0, l.lock_exclusive(&ioctx, oid)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsLock, TestAssertLocked) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); string oid = "foo"; Lock l("lock1"); ASSERT_EQ(0, l.lock_exclusive(&ioctx, oid)); librados::ObjectWriteOperation op1; l.assert_locked_exclusive(&op1); ASSERT_EQ(0, ioctx.operate(oid, &op1)); librados::ObjectWriteOperation op2; l.assert_locked_shared(&op2); ASSERT_EQ(-EBUSY, ioctx.operate(oid, &op2)); l.set_tag("tag"); librados::ObjectWriteOperation op3; l.assert_locked_exclusive(&op3); ASSERT_EQ(-EBUSY, ioctx.operate(oid, &op3)); l.set_tag(""); l.set_cookie("cookie"); librados::ObjectWriteOperation op4; l.assert_locked_exclusive(&op4); ASSERT_EQ(-EBUSY, ioctx.operate(oid, &op4)); l.set_cookie(""); ASSERT_EQ(0, l.unlock(&ioctx, oid)); librados::ObjectWriteOperation op5; l.assert_locked_exclusive(&op5); ASSERT_EQ(-EBUSY, ioctx.operate(oid, &op5)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsLock, TestSetCookie) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); string oid = "foo"; string name = "name"; string tag = "tag"; string cookie = "cookie"; string new_cookie = "new cookie"; librados::ObjectWriteOperation op1; set_cookie(&op1, name, ClsLockType::SHARED, cookie, tag, new_cookie); ASSERT_EQ(-ENOENT, ioctx.operate(oid, &op1)); librados::ObjectWriteOperation op2; lock(&op2, name, ClsLockType::SHARED, cookie, tag, "", utime_t{}, 0); ASSERT_EQ(0, ioctx.operate(oid, &op2)); librados::ObjectWriteOperation op3; lock(&op3, name, ClsLockType::SHARED, "cookie 2", tag, "", utime_t{}, 0); ASSERT_EQ(0, ioctx.operate(oid, &op3)); librados::ObjectWriteOperation op4; set_cookie(&op4, name, ClsLockType::SHARED, cookie, tag, cookie); ASSERT_EQ(-EBUSY, ioctx.operate(oid, &op4)); librados::ObjectWriteOperation op5; set_cookie(&op5, name, ClsLockType::SHARED, cookie, "wrong tag", new_cookie); ASSERT_EQ(-EBUSY, ioctx.operate(oid, &op5)); librados::ObjectWriteOperation op6; set_cookie(&op6, name, ClsLockType::SHARED, "wrong cookie", tag, new_cookie); ASSERT_EQ(-EBUSY, ioctx.operate(oid, &op6)); librados::ObjectWriteOperation op7; set_cookie(&op7, name, ClsLockType::EXCLUSIVE, cookie, tag, new_cookie); ASSERT_EQ(-EBUSY, ioctx.operate(oid, &op7)); librados::ObjectWriteOperation op8; set_cookie(&op8, name, ClsLockType::SHARED, cookie, tag, "cookie 2"); ASSERT_EQ(-EBUSY, ioctx.operate(oid, &op8)); librados::ObjectWriteOperation op9; set_cookie(&op9, name, ClsLockType::SHARED, cookie, tag, new_cookie); ASSERT_EQ(0, ioctx.operate(oid, &op9)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsLock, TestRenew) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); bufferlist bl; string oid1 = "foo1"; string lock_name1 = "mylock1"; ASSERT_EQ(0, ioctx.write(oid1, bl, bl.length(), 0)); Lock l1(lock_name1); utime_t lock_duration1(5, 0); l1.set_duration(lock_duration1); ASSERT_EQ(0, l1.lock_exclusive(&ioctx, oid1)); l1.set_may_renew(true); sleep(2); ASSERT_EQ(0, l1.lock_exclusive(&ioctx, oid1)); sleep(7); ASSERT_EQ(0, l1.lock_exclusive(&ioctx, oid1)) << "when a cls_lock is set to may_renew, a relock after expiration " "should still work"; ASSERT_EQ(0, l1.unlock(&ioctx, oid1)); // *********************************************** string oid2 = "foo2"; string lock_name2 = "mylock2"; ASSERT_EQ(0, ioctx.write(oid2, bl, bl.length(), 0)); Lock l2(lock_name2); utime_t lock_duration2(5, 0); l2.set_duration(lock_duration2); ASSERT_EQ(0, l2.lock_exclusive(&ioctx, oid2)); l2.set_must_renew(true); sleep(2); ASSERT_EQ(0, l2.lock_exclusive(&ioctx, oid2)); sleep(7); ASSERT_EQ(-ENOENT, l2.lock_exclusive(&ioctx, oid2)) << "when a cls_lock is set to must_renew, a relock after expiration " "should fail"; ASSERT_EQ(-ENOENT, l2.unlock(&ioctx, oid2)); // *********************************************** string oid3 = "foo3"; string lock_name3 = "mylock3"; ASSERT_EQ(0, ioctx.write(oid3, bl, bl.length(), 0)); Lock l3(lock_name3); l3.set_duration(utime_t(5, 0)); l3.set_must_renew(true); ASSERT_EQ(-ENOENT, l3.lock_exclusive(&ioctx, oid3)) << "unable to create a lock with must_renew"; ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsLock, TestExclusiveEphemeralBasic) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); bufferlist bl; string oid1 = "foo1"; string oid2 = "foo2"; string lock_name1 = "mylock1"; string lock_name2 = "mylock2"; Lock l1(lock_name1); l1.set_duration(utime_t(5, 0)); uint64_t size; time_t mod_time; l1.set_may_renew(true); ASSERT_EQ(0, l1.lock_exclusive_ephemeral(&ioctx, oid1)); ASSERT_EQ(0, ioctx.stat(oid1, &size, &mod_time)); sleep(2); int r1 = l1.unlock(&ioctx, oid1); EXPECT_TRUE(r1 == 0 || ((r1 == -ENOENT) && (lock_expired(&ioctx, oid1, lock_name1)))) << "unlock should return 0 or -ENOENT return: " << r1; ASSERT_EQ(-ENOENT, ioctx.stat(oid1, &size, &mod_time)); // *********************************************** Lock l2(lock_name2); utime_t lock_duration2(5, 0); l2.set_duration(utime_t(5, 0)); ASSERT_EQ(0, l2.lock_exclusive(&ioctx, oid2)); ASSERT_EQ(0, ioctx.stat(oid2, &size, &mod_time)); sleep(2); int r2 = l2.unlock(&ioctx, oid2); EXPECT_TRUE(r2 == 0 || ((r2 == -ENOENT) && (lock_expired(&ioctx, oid2, lock_name2)))) << "unlock should return 0 or -ENOENT return: " << r2; ASSERT_EQ(0, ioctx.stat(oid2, &size, &mod_time)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsLock, TestExclusiveEphemeralStealEphemeral) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); bufferlist bl; string oid1 = "foo1"; string lock_name1 = "mylock1"; Lock l1(lock_name1); l1.set_duration(utime_t(3, 0)); ASSERT_EQ(0, l1.lock_exclusive_ephemeral(&ioctx, oid1)); sleep(4); // l1 is expired, l2 can take; l2 is also exclusive_ephemeral Lock l2(lock_name1); l2.set_duration(utime_t(3, 0)); ASSERT_EQ(0, l2.lock_exclusive_ephemeral(&ioctx, oid1)); sleep(1); ASSERT_EQ(0, l2.unlock(&ioctx, oid1)); // l2 cannot unlock its expired lock ASSERT_EQ(-ENOENT, l1.unlock(&ioctx, oid1)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsLock, TestExclusiveEphemeralStealExclusive) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); bufferlist bl; string oid1 = "foo1"; string lock_name1 = "mylock1"; Lock l1(lock_name1); l1.set_duration(utime_t(3, 0)); ASSERT_EQ(0, l1.lock_exclusive_ephemeral(&ioctx, oid1)); sleep(4); // l1 is expired, l2 can take; l2 is exclusive (but not ephemeral) Lock l2(lock_name1); l2.set_duration(utime_t(3, 0)); ASSERT_EQ(0, l2.lock_exclusive(&ioctx, oid1)); sleep(1); ASSERT_EQ(0, l2.unlock(&ioctx, oid1)); // l2 cannot unlock its expired lock ASSERT_EQ(-ENOENT, l1.unlock(&ioctx, oid1)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); }
16,880
27.611864
97
cc
null
ceph-main/src/test/cls_log/test_cls_log.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/types.h" #include "cls/log/cls_log_types.h" #include "cls/log/cls_log_client.h" #include "include/utime.h" #include "common/Clock.h" #include "global/global_context.h" #include "gtest/gtest.h" #include "test/librados/test_cxx.h" #include <errno.h> #include <string> #include <vector> using namespace std; /// creates a temporary pool and initializes an IoCtx for each test class cls_log : public ::testing::Test { librados::Rados rados; std::string pool_name; protected: librados::IoCtx ioctx; void SetUp() { pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); } void TearDown() { /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } }; static int read_bl(bufferlist& bl, int *i) { auto iter = bl.cbegin(); try { decode(*i, iter); } catch (buffer::error& err) { std::cout << "failed to decode buffer" << std::endl; return -EIO; } return 0; } void add_log(librados::ObjectWriteOperation *op, utime_t& timestamp, string& section, string&name, int i) { bufferlist bl; encode(i, bl); cls_log_add(*op, timestamp, section, name, bl); } string get_name(int i) { string name_prefix = "data-source"; char buf[16]; snprintf(buf, sizeof(buf), "%d", i); return name_prefix + buf; } void generate_log(librados::IoCtx& ioctx, string& oid, int max, utime_t& start_time, bool modify_time) { string section = "global"; librados::ObjectWriteOperation op; int i; for (i = 0; i < max; i++) { uint32_t secs = start_time.sec(); if (modify_time) secs += i; utime_t ts(secs, start_time.nsec()); string name = get_name(i); add_log(&op, ts, section, name, i); } ASSERT_EQ(0, ioctx.operate(oid, &op)); } utime_t get_time(utime_t& start_time, int i, bool modify_time) { uint32_t secs = start_time.sec(); if (modify_time) secs += i; return utime_t(secs, start_time.nsec()); } void check_entry(cls_log_entry& entry, utime_t& start_time, int i, bool modified_time) { string section = "global"; string name = get_name(i); utime_t ts = get_time(start_time, i, modified_time); ASSERT_EQ(section, entry.section); ASSERT_EQ(name, entry.name); ASSERT_EQ(ts, entry.timestamp); } static int log_list(librados::IoCtx& ioctx, const std::string& oid, utime_t& from, utime_t& to, const string& in_marker, int max_entries, list<cls_log_entry>& entries, string *out_marker, bool *truncated) { librados::ObjectReadOperation rop; cls_log_list(rop, from, to, in_marker, max_entries, entries, out_marker, truncated); bufferlist obl; return ioctx.operate(oid, &rop, &obl); } static int log_list(librados::IoCtx& ioctx, const std::string& oid, utime_t& from, utime_t& to, int max_entries, list<cls_log_entry>& entries, bool *truncated) { std::string marker; return log_list(ioctx, oid, from, to, marker, max_entries, entries, &marker, truncated); } static int log_list(librados::IoCtx& ioctx, const std::string& oid, list<cls_log_entry>& entries) { utime_t from, to; bool truncated{false}; return log_list(ioctx, oid, from, to, 0, entries, &truncated); } TEST_F(cls_log, test_log_add_same_time) { /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* generate log */ utime_t start_time = ceph_clock_now(); utime_t to_time = get_time(start_time, 1, true); generate_log(ioctx, oid, 10, start_time, false); list<cls_log_entry> entries; bool truncated; /* check list */ { ASSERT_EQ(0, log_list(ioctx, oid, start_time, to_time, 0, entries, &truncated)); ASSERT_EQ(10, (int)entries.size()); ASSERT_EQ(0, (int)truncated); } list<cls_log_entry>::iterator iter; /* need to sort returned entries, all were using the same time as key */ map<int, cls_log_entry> check_ents; for (iter = entries.begin(); iter != entries.end(); ++iter) { cls_log_entry& entry = *iter; int num; ASSERT_EQ(0, read_bl(entry.data, &num)); check_ents[num] = entry; } ASSERT_EQ(10, (int)check_ents.size()); map<int, cls_log_entry>::iterator ei; /* verify entries are as expected */ int i; for (i = 0, ei = check_ents.begin(); i < 10; i++, ++ei) { cls_log_entry& entry = ei->second; ASSERT_EQ(i, ei->first); check_entry(entry, start_time, i, false); } /* check list again, now want to be truncated*/ { ASSERT_EQ(0, log_list(ioctx, oid, start_time, to_time, 1, entries, &truncated)); ASSERT_EQ(1, (int)entries.size()); ASSERT_EQ(1, (int)truncated); } } TEST_F(cls_log, test_log_add_different_time) { /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* generate log */ utime_t start_time = ceph_clock_now(); generate_log(ioctx, oid, 10, start_time, true); list<cls_log_entry> entries; bool truncated; utime_t to_time = utime_t(start_time.sec() + 10, start_time.nsec()); { /* check list */ ASSERT_EQ(0, log_list(ioctx, oid, start_time, to_time, 0, entries, &truncated)); ASSERT_EQ(10, (int)entries.size()); ASSERT_EQ(0, (int)truncated); } list<cls_log_entry>::iterator iter; /* returned entries should be sorted by time */ map<int, cls_log_entry> check_ents; int i; for (i = 0, iter = entries.begin(); iter != entries.end(); ++iter, ++i) { cls_log_entry& entry = *iter; int num; ASSERT_EQ(0, read_bl(entry.data, &num)); ASSERT_EQ(i, num); check_entry(entry, start_time, i, true); } /* check list again with shifted time */ { utime_t next_time = get_time(start_time, 1, true); ASSERT_EQ(0, log_list(ioctx, oid, next_time, to_time, 0, entries, &truncated)); ASSERT_EQ(9u, entries.size()); ASSERT_FALSE(truncated); } string marker; i = 0; do { string old_marker = std::move(marker); ASSERT_EQ(0, log_list(ioctx, oid, start_time, to_time, old_marker, 1, entries, &marker, &truncated)); ASSERT_NE(old_marker, marker); ASSERT_EQ(1, (int)entries.size()); ++i; ASSERT_GE(10, i); } while (truncated); ASSERT_EQ(10, i); } int do_log_trim(librados::IoCtx& ioctx, const std::string& oid, const std::string& from_marker, const std::string& to_marker) { librados::ObjectWriteOperation op; cls_log_trim(op, {}, {}, from_marker, to_marker); return ioctx.operate(oid, &op); } int do_log_trim(librados::IoCtx& ioctx, const std::string& oid, const utime_t& from_time, const utime_t& to_time) { librados::ObjectWriteOperation op; cls_log_trim(op, from_time, to_time, "", ""); return ioctx.operate(oid, &op); } TEST_F(cls_log, trim_by_time) { /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* generate log */ utime_t start_time = ceph_clock_now(); generate_log(ioctx, oid, 10, start_time, true); list<cls_log_entry> entries; bool truncated; /* check list */ /* trim */ utime_t to_time = get_time(start_time, 10, true); for (int i = 0; i < 10; i++) { utime_t trim_time = get_time(start_time, i, true); utime_t zero_time; ASSERT_EQ(0, do_log_trim(ioctx, oid, zero_time, trim_time)); ASSERT_EQ(-ENODATA, do_log_trim(ioctx, oid, zero_time, trim_time)); ASSERT_EQ(0, log_list(ioctx, oid, start_time, to_time, 0, entries, &truncated)); ASSERT_EQ(9u - i, entries.size()); ASSERT_FALSE(truncated); } } TEST_F(cls_log, trim_by_marker) { string oid = "obj"; ASSERT_EQ(0, ioctx.create(oid, true)); utime_t start_time = ceph_clock_now(); generate_log(ioctx, oid, 10, start_time, true); utime_t zero_time; std::vector<cls_log_entry> log1; { list<cls_log_entry> entries; ASSERT_EQ(0, log_list(ioctx, oid, entries)); ASSERT_EQ(10u, entries.size()); log1.assign(std::make_move_iterator(entries.begin()), std::make_move_iterator(entries.end())); } // trim front of log { const std::string from = ""; const std::string to = log1[0].id; ASSERT_EQ(0, do_log_trim(ioctx, oid, from, to)); list<cls_log_entry> entries; ASSERT_EQ(0, log_list(ioctx, oid, entries)); ASSERT_EQ(9u, entries.size()); EXPECT_EQ(log1[1].id, entries.begin()->id); ASSERT_EQ(-ENODATA, do_log_trim(ioctx, oid, from, to)); } // trim back of log { const std::string from = log1[8].id; const std::string to = "9"; ASSERT_EQ(0, do_log_trim(ioctx, oid, from, to)); list<cls_log_entry> entries; ASSERT_EQ(0, log_list(ioctx, oid, entries)); ASSERT_EQ(8u, entries.size()); EXPECT_EQ(log1[8].id, entries.rbegin()->id); ASSERT_EQ(-ENODATA, do_log_trim(ioctx, oid, from, to)); } // trim a key from the middle { const std::string from = log1[3].id; const std::string to = log1[4].id; ASSERT_EQ(0, do_log_trim(ioctx, oid, from, to)); list<cls_log_entry> entries; ASSERT_EQ(0, log_list(ioctx, oid, entries)); ASSERT_EQ(7u, entries.size()); ASSERT_EQ(-ENODATA, do_log_trim(ioctx, oid, from, to)); } // trim full log { const std::string from = ""; const std::string to = "9"; ASSERT_EQ(0, do_log_trim(ioctx, oid, from, to)); list<cls_log_entry> entries; ASSERT_EQ(0, log_list(ioctx, oid, entries)); ASSERT_EQ(0u, entries.size()); ASSERT_EQ(-ENODATA, do_log_trim(ioctx, oid, from, to)); } }
9,906
24.665803
105
cc
null
ceph-main/src/test/cls_lua/test_cls_lua.cc
#include <errno.h> #include <lua.hpp> #include "include/types.h" #include "include/rados/librados.hpp" #include "gtest/gtest.h" #include "test/librados/test_cxx.h" #include "cls/lua/cls_lua_client.h" #include "cls/lua/cls_lua.h" using namespace std; /* * JSON script to test JSON I/O protocol with cls_lua */ const std::string json_test_script = R"jsonscript( { "script": "function json_echo(input, output) output:append(input:str()); end objclass.register(json_echo)", "handler": "json_echo", "input": "omg it works", } )jsonscript"; /* * Lua test script thanks to the magical c++11 string literal syntax */ const std::string test_script = R"luascript( -- -- This Lua script file contains all of the handlers used in the cls_lua unit -- tests (src/test/cls_lua/test_cls_lua.cc). Each section header corresponds -- to the ClsLua.XYZ test. -- -- -- Read -- function read(input, output) size = objclass.stat() bl = objclass.read(0, size) output:append(bl:str()) end objclass.register(read) -- -- Write -- function write(input, output) objclass.write(0, #input, input) end objclass.register(write) -- -- MapGetVal -- function map_get_val_foo(input, output) bl = objclass.map_get_val('foo') output:append(bl:str()) end function map_get_val_dne() bl = objclass.map_get_val('dne') end objclass.register(map_get_val_foo) objclass.register(map_get_val_dne) -- -- Stat -- function stat_ret(input, output) size, mtime = objclass.stat() output:append(size .. "," .. mtime) end function stat_sdne() size, mtime = objclass.stat() end function stat_sdne_pcall() ok, ret, size, mtime = pcall(objclass.stat, o) assert(ok == false) assert(ret == -objclass.ENOENT) return ret end objclass.register(stat_ret) objclass.register(stat_sdne) objclass.register(stat_sdne_pcall) -- -- RetVal -- function rv_h() end function rv_h1() return 1; end function rv_h0() return 0; end function rv_hn1() return -1; end function rv_hs1() return '1'; end function rv_hs0() return '0'; end function rv_hsn1() return '-1'; end function rv_hnil() return nil; end function rv_ht() return {}; end function rv_hstr() return 'asdf'; end objclass.register(rv_h) objclass.register(rv_h1) objclass.register(rv_h0) objclass.register(rv_hn1) objclass.register(rv_hs1) objclass.register(rv_hs0) objclass.register(rv_hsn1) objclass.register(rv_hnil) objclass.register(rv_ht) objclass.register(rv_hstr) -- -- Create -- function create_c() objclass.create(true); end function create_cne() objclass.create(false); end objclass.register(create_c) objclass.register(create_cne) -- -- Pcall -- function pcall_c() objclass.create(true); end function pcall_pc() ok, ret = pcall(objclass.create, true) assert(ok == false) assert(ret == -objclass.EEXIST) end function pcall_pcr() ok, ret = pcall(objclass.create, true) assert(ok == false) assert(ret == -objclass.EEXIST) return ret end function pcall_pcr2() ok, ret = pcall(objclass.create, true) assert(ok == false) assert(ret == -objclass.EEXIST) ok, ret = pcall(objclass.create, true) assert(ok == false) assert(ret == -objclass.EEXIST) return -9999 end objclass.register(pcall_c) objclass.register(pcall_pc) objclass.register(pcall_pcr) objclass.register(pcall_pcr2) -- -- Remove -- function remove_c() objclass.create(true); end function remove_r() objclass.remove(); end objclass.register(remove_c) objclass.register(remove_r) -- -- MapSetVal -- function map_set_val(input, output) objclass.map_set_val('foo', input) end objclass.register(map_set_val) -- -- MapClear -- function map_clear() objclass.map_clear() end objclass.register(map_clear) -- -- BufferlistEquality -- function bl_eq_empty_equal(input, output) bl1 = bufferlist.new() bl2 = bufferlist.new() assert(bl1 == bl2) end function bl_eq_empty_selfequal() bl1 = bufferlist.new() assert(bl1 == bl1) end function bl_eq_selfequal() bl1 = bufferlist.new() bl1:append('asdf') assert(bl1 == bl1) end function bl_eq_equal() bl1 = bufferlist.new() bl2 = bufferlist.new() bl1:append('abc') bl2:append('abc') assert(bl1 == bl2) end function bl_eq_notequal() bl1 = bufferlist.new() bl2 = bufferlist.new() bl1:append('abc') bl2:append('abcd') assert(bl1 ~= bl2) end objclass.register(bl_eq_empty_equal) objclass.register(bl_eq_empty_selfequal) objclass.register(bl_eq_selfequal) objclass.register(bl_eq_equal) objclass.register(bl_eq_notequal) -- -- Bufferlist Compare -- function bl_lt() local a = bufferlist.new() local b = bufferlist.new() a:append('A') b:append('B') assert(a < b) end function bl_le() local a = bufferlist.new() local b = bufferlist.new() a:append('A') b:append('B') assert(a <= b) end objclass.register(bl_lt) objclass.register(bl_le) -- -- Bufferlist concat -- function bl_concat_eq() local a = bufferlist.new() local b = bufferlist.new() local ab = bufferlist.new() a:append('A') b:append('B') ab:append('AB') assert(a .. b == ab) end function bl_concat_ne() local a = bufferlist.new() local b = bufferlist.new() local ab = bufferlist.new() a:append('A') b:append('B') ab:append('AB') assert(b .. a ~= ab) end function bl_concat_immut() local a = bufferlist.new() local b = bufferlist.new() local ab = bufferlist.new() a:append('A') b:append('B') ab:append('AB') x = a .. b assert(x == ab) b:append('C') assert(x == ab) local bc = bufferlist.new() bc:append('BC') assert(b == bc) end objclass.register(bl_concat_eq) objclass.register(bl_concat_ne) objclass.register(bl_concat_immut) -- -- RunError -- function runerr_a() error('error_a') end function runerr_b() runerr_a() end function runerr_c() runerr_b() end -- only runerr_c is called objclass.register(runerr_c) -- -- GetXattr -- function getxattr(input, output) bl = objclass.getxattr("fooz") output:append(bl:str()) end objclass.register(getxattr) -- -- SetXattr -- function setxattr(input, output) objclass.setxattr("fooz2", input) end objclass.register(setxattr) -- -- WriteFull -- function write_full(input, output) objclass.write_full(input) end objclass.register(write_full) -- -- GetXattrs -- function getxattrs(input, output) -- result xattrs = objclass.getxattrs() -- sort for determisitic test arr = {} for n in pairs(xattrs) do table.insert(arr, n) end table.sort(arr) output_str = "" for i,key in ipairs(arr) do output_str = output_str .. key .. "/" .. xattrs[key]:str() .. "/" end output:append(output_str) end objclass.register(getxattrs) -- -- MapGetKeys -- function map_get_keys(input, output) -- result keys = objclass.map_get_keys("", 5) -- sort for determisitic test arr = {} for n in pairs(keys) do table.insert(arr, n) end table.sort(arr) output_str = "" for i,key in ipairs(arr) do output_str = output_str .. key .. "/" end output:append(output_str) end objclass.register(map_get_keys) -- -- MapGetVals -- function map_get_vals(input, output) -- result kvs = objclass.map_get_vals("", "", 10) -- sort for determisitic test arr = {} for n in pairs(kvs) do table.insert(arr, n) end table.sort(arr) output_str = "" for i,key in ipairs(arr) do output_str = output_str .. key .. "/" .. kvs[key]:str() .. "/" end output:append(output_str) end objclass.register(map_get_vals) -- -- MapHeader (write) -- function map_write_header(input, output) objclass.map_write_header(input) end objclass.register(map_write_header) -- -- MapHeader (read) -- function map_read_header(input, output) hdr = objclass.map_read_header() output:append(hdr:str()) end objclass.register(map_read_header) -- -- MapSetVals -- function map_set_vals_empty(input, output) record = {} objclass.map_set_vals(record) end function map_set_vals_one(input, output) record = { a = "a_val" } objclass.map_set_vals(record) end function map_set_vals_two(input, output) record = { a = "a_val", b = "b_val" } objclass.map_set_vals(record) end function map_set_vals_three(input, output) record = { a = "a_val", b = "b_val", c = "c_val" } objclass.map_set_vals(record) end function map_set_vals_array(input, output) array = {} array[1] = "1_val" array[2] = "2_val" objclass.map_set_vals(array) end function map_set_vals_mixed(input, output) record = { a = "a_val", b = "b_val" } record[1] = "1_val" record[2] = "2_val" objclass.map_set_vals(record) end function map_set_vals_bad_val(input, output) record = { a = {} } objclass.map_set_vals(record) end objclass.register(map_set_vals_empty) objclass.register(map_set_vals_one) objclass.register(map_set_vals_two) objclass.register(map_set_vals_three) objclass.register(map_set_vals_array) objclass.register(map_set_vals_mixed) objclass.register(map_set_vals_bad_val) -- -- MapRemoveKey -- function map_remove_key(input, output) objclass.map_remove_key("a") end objclass.register(map_remove_key) -- -- Version/Subop -- function current_version(input, output) ret = objclass.current_version() output:append("" .. ret) objclass.log(0, ret) end function current_subop_num(input, output) ret = objclass.current_subop_num() output:append("" .. ret) objclass.log(0, ret) end function current_subop_version(input, output) ret = objclass.current_subop_version() output:append("" .. ret) objclass.log(0, ret) end objclass.register(current_version) objclass.register(current_subop_num) objclass.register(current_subop_version) )luascript"; /* * Test harness uses single pool for the entire test case, and generates * unique object names for each test. */ class ClsLua : public ::testing::Test { protected: static void SetUpTestCase() { pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); } static void TearDownTestCase() { ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } void SetUp() override { /* Grab test names to build unique objects */ const ::testing::TestInfo* const test_info = ::testing::UnitTest::GetInstance()->current_test_info(); /* Create unique string using test/testname/pid */ std::stringstream ss_oid; ss_oid << test_info->test_case_name() << "_" << test_info->name() << "_" << getpid(); /* Unique object for test to use */ oid = ss_oid.str(); } void TearDown() override { } /* * Helper function. This functionality should eventually make its way into * a clslua client library of some sort. */ int __clslua_exec(const string& oid, const string& script, librados::bufferlist *input = NULL, const string& funcname = "") { bufferlist inbl; if (input) inbl = *input; reply_output.clear(); return cls_lua_client::exec(ioctx, oid, script, funcname, inbl, reply_output); } int clslua_exec(const string& script, librados::bufferlist *input = NULL, const string& funcname = "") { return __clslua_exec(oid, script, input, funcname); } static librados::Rados rados; static librados::IoCtx ioctx; static string pool_name; string oid; bufferlist reply_output; }; librados::Rados ClsLua::rados; librados::IoCtx ClsLua::ioctx; string ClsLua::pool_name; TEST_F(ClsLua, Write) { /* write some data into object */ string written = "Hello World"; bufferlist inbl; encode(written, inbl); ASSERT_EQ(0, clslua_exec(test_script, &inbl, "write")); /* have Lua read out of the object */ uint64_t size; bufferlist outbl; ASSERT_EQ(0, ioctx.stat(oid, &size, NULL)); ASSERT_EQ(size, (uint64_t)ioctx.read(oid, outbl, size, 0) ); /* compare what Lua read to what we wrote */ string read; decode(read, outbl); ASSERT_EQ(read, written); } TEST_F(ClsLua, SyntaxError) { ASSERT_EQ(-EIO, clslua_exec("-")); } TEST_F(ClsLua, EmptyScript) { ASSERT_EQ(0, clslua_exec("")); } TEST_F(ClsLua, RetVal) { /* handlers can return numeric values */ ASSERT_EQ(1, clslua_exec(test_script, NULL, "rv_h1")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "rv_h0")); ASSERT_EQ(-1, clslua_exec(test_script, NULL, "rv_hn1")); ASSERT_EQ(1, clslua_exec(test_script, NULL, "rv_hs1")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "rv_hs0")); ASSERT_EQ(-1, clslua_exec(test_script, NULL, "rv_hsn1")); /* no return value is success */ ASSERT_EQ(0, clslua_exec(test_script, NULL, "rv_h")); /* non-numeric return values are errors */ ASSERT_EQ(-EIO, clslua_exec(test_script, NULL, "rv_hnil")); ASSERT_EQ(-EIO, clslua_exec(test_script, NULL, "rv_ht")); ASSERT_EQ(-EIO, clslua_exec(test_script, NULL, "rv_hstr")); } TEST_F(ClsLua, Create) { /* create works */ ASSERT_EQ(0, clslua_exec(test_script, NULL, "create_c")); /* exclusive works */ ASSERT_EQ(-EEXIST, clslua_exec(test_script, NULL, "create_c")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "create_cne")); } TEST_F(ClsLua, Pcall) { /* create and error works */ ASSERT_EQ(0, clslua_exec(test_script, NULL, "pcall_c")); ASSERT_EQ(-EEXIST, clslua_exec(test_script, NULL, "pcall_c")); /* pcall masks the error */ ASSERT_EQ(0, clslua_exec(test_script, NULL, "pcall_pc")); /* pcall lets us get the failed return value */ ASSERT_EQ(-EEXIST, clslua_exec(test_script, NULL, "pcall_pcr")); /* * the first call in pcr2 will fail (check ret != 0), and the second pcall * should also fail (we check with a bogus return value to mask real * errors). This is also an important check for our error handling because * we need a case where two functions in the same handler fail to exercise * our internal error book keeping. */ ASSERT_EQ(-9999, clslua_exec(test_script, NULL, "pcall_pcr2")); } TEST_F(ClsLua, Remove) { /* object doesn't exist */ ASSERT_EQ(-ENOENT, clslua_exec(test_script, NULL, "remove_r")); /* can remove */ ASSERT_EQ(0, clslua_exec(test_script, NULL, "remove_c")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "remove_r")); ASSERT_EQ(-ENOENT, clslua_exec(test_script, NULL, "remove_r")); } TEST_F(ClsLua, Stat) { /* build object and stat */ char buf[1024] = {}; bufferlist bl; bl.append(buf, sizeof(buf)); ASSERT_EQ(0, ioctx.write_full(oid, bl)); uint64_t size; time_t mtime; ASSERT_EQ(0, ioctx.stat(oid, &size, &mtime)); /* test stat success */ ASSERT_EQ(0, clslua_exec(test_script, NULL, "stat_ret")); // size,mtime from ioctx call std::stringstream s1; s1 << size << "," << mtime; // lua constructed size,mtime string std::string s2(reply_output.c_str(), reply_output.length()); ASSERT_EQ(s1.str(), s2); /* test object dne */ ASSERT_EQ(-ENOENT, __clslua_exec("dne", test_script, NULL, "stat_sdne")); /* can capture error with pcall */ ASSERT_EQ(-ENOENT, __clslua_exec("dne", test_script, NULL, "stat_sdne_pcall")); } TEST_F(ClsLua, MapClear) { /* write some data into a key */ string msg = "This is a test message"; bufferlist val; val.append(msg.c_str(), msg.size()); map<string, bufferlist> map; map["foo"] = val; ASSERT_EQ(0, ioctx.omap_set(oid, map)); /* test we can get it back out */ set<string> keys; keys.insert("foo"); map.clear(); ASSERT_EQ(0, (int)map.count("foo")); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys(oid, keys, &map)); ASSERT_EQ(1, (int)map.count("foo")); /* now clear it */ ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_clear")); /* test that the map we get back is empty now */ map.clear(); ASSERT_EQ(0, (int)map.count("foo")); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys(oid, keys, &map)); ASSERT_EQ(0, (int)map.count("foo")); } TEST_F(ClsLua, MapSetVal) { /* build some input value */ bufferlist orig_val; encode("this is the original value yay", orig_val); /* have the lua script stuff the data into a map value */ ASSERT_EQ(0, clslua_exec(test_script, &orig_val, "map_set_val")); /* grap the key now and compare to orig */ map<string, bufferlist> out_map; set<string> out_keys; out_keys.insert("foo"); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys(oid, out_keys, &out_map)); bufferlist out_bl = out_map["foo"]; string out_val; decode(out_val, out_bl); ASSERT_EQ(out_val, "this is the original value yay"); } TEST_F(ClsLua, MapGetVal) { /* write some data into a key */ string msg = "This is a test message"; bufferlist orig_val; orig_val.append(msg.c_str(), msg.size()); map<string, bufferlist> orig_map; orig_map["foo"] = orig_val; ASSERT_EQ(0, ioctx.omap_set(oid, orig_map)); /* now compare to what we put it */ ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_get_val_foo")); /* check return */ string ret_val; ret_val.assign(reply_output.c_str(), reply_output.length()); ASSERT_EQ(ret_val, msg); /* error case */ ASSERT_EQ(-ENOENT, clslua_exec(test_script, NULL, "map_get_val_dne")); } TEST_F(ClsLua, Read) { /* put data into object */ string msg = "This is a test message"; bufferlist bl; bl.append(msg.c_str(), msg.size()); ASSERT_EQ(0, ioctx.write_full(oid, bl)); /* get lua to read it and send it back */ ASSERT_EQ(0, clslua_exec(test_script, NULL, "read")); /* check return */ string ret_val; ret_val.assign(reply_output.c_str(), reply_output.length()); ASSERT_EQ(ret_val, msg); } TEST_F(ClsLua, Log) { ASSERT_EQ(0, clslua_exec("objclass.log()")); ASSERT_EQ(0, clslua_exec("s = objclass.log(); objclass.log(s);")); ASSERT_EQ(0, clslua_exec("objclass.log(1)")); ASSERT_EQ(0, clslua_exec("objclass.log(-1)")); ASSERT_EQ(0, clslua_exec("objclass.log('x')")); ASSERT_EQ(0, clslua_exec("objclass.log(0, 0)")); ASSERT_EQ(0, clslua_exec("objclass.log(1, 1)")); ASSERT_EQ(0, clslua_exec("objclass.log(-10, -10)")); ASSERT_EQ(0, clslua_exec("objclass.log('x', 'y')")); ASSERT_EQ(0, clslua_exec("objclass.log(1, 'one')")); ASSERT_EQ(0, clslua_exec("objclass.log(1, 'one', 'two')")); ASSERT_EQ(0, clslua_exec("objclass.log('one', 'two', 'three')")); ASSERT_EQ(0, clslua_exec("s = objclass.log('one', 'two', 'three'); objclass.log(s);")); } TEST_F(ClsLua, BufferlistEquality) { ASSERT_EQ(0, clslua_exec(test_script, NULL, "bl_eq_empty_equal")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "bl_eq_empty_selfequal")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "bl_eq_selfequal")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "bl_eq_equal")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "bl_eq_notequal")); } TEST_F(ClsLua, RunError) { ASSERT_EQ(-EIO, clslua_exec(test_script, NULL, "runerr_c")); } TEST_F(ClsLua, HandleNotFunc) { string script = "x = 1;"; ASSERT_EQ(-EOPNOTSUPP, clslua_exec(script, NULL, "x")); } TEST_F(ClsLua, Register) { /* normal cases: register and maybe call the handler */ string script = "function h() end; objclass.register(h);"; ASSERT_EQ(0, clslua_exec(script, NULL, "")); ASSERT_EQ(0, clslua_exec(script, NULL, "h")); /* can register and call multiple handlers */ script = "function h1() end; function h2() end;" "objclass.register(h1); objclass.register(h2);"; ASSERT_EQ(0, clslua_exec(script, NULL, "")); ASSERT_EQ(0, clslua_exec(script, NULL, "h1")); ASSERT_EQ(0, clslua_exec(script, NULL, "h2")); /* normal cases: register before function is defined */ script = "objclass.register(h); function h() end;"; ASSERT_EQ(-EIO, clslua_exec(script, NULL, "")); ASSERT_EQ(-EIO, clslua_exec(script, NULL, "h")); /* cannot call handler that isn't registered */ script = "function h() end;"; ASSERT_EQ(-EIO, clslua_exec(script, NULL, "h")); /* handler doesn't exist */ script = "objclass.register(lalala);"; ASSERT_EQ(-EIO, clslua_exec(script, NULL, "")); /* handler isn't a function */ script = "objclass.register('some string');"; ASSERT_EQ(-EIO, clslua_exec(script, NULL, "")); /* cannot register handler multiple times */ script = "function h() end; objclass.register(h); objclass.register(h);"; ASSERT_EQ(-EIO, clslua_exec(script, NULL, "")); } TEST_F(ClsLua, BufferlistCompare) { ASSERT_EQ(0, clslua_exec(test_script, NULL, "bl_lt")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "bl_le")); } TEST_F(ClsLua, BufferlistConcat) { ASSERT_EQ(0, clslua_exec(test_script, NULL, "bl_concat_eq")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "bl_concat_ne")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "bl_concat_immut")); } TEST_F(ClsLua, GetXattr) { bufferlist bl; bl.append("blahblahblahblahblah"); ASSERT_EQ(0, ioctx.setxattr(oid, "fooz", bl)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "getxattr")); ASSERT_TRUE(reply_output == bl); } TEST_F(ClsLua, SetXattr) { bufferlist inbl; inbl.append("blahblahblahblahblah"); ASSERT_EQ(0, clslua_exec(test_script, &inbl, "setxattr")); bufferlist outbl; ASSERT_EQ((int)inbl.length(), ioctx.getxattr(oid, "fooz2", outbl)); ASSERT_TRUE(outbl == inbl); } TEST_F(ClsLua, WriteFull) { // write some data char buf[1024] = {}; bufferlist blin; blin.append(buf, sizeof(buf)); ASSERT_EQ(0, ioctx.write(oid, blin, blin.length(), 0)); bufferlist blout; ASSERT_EQ((int)blin.length(), ioctx.read(oid, blout, 0, 0)); ASSERT_EQ(blin, blout); // execute write_full from lua blin.clear(); char buf2[200]; sprintf(buf2, "%s", "data replacing content"); blin.append(buf2, sizeof(buf2)); ASSERT_EQ(0, clslua_exec(test_script, &blin, "write_full")); // read it back blout.clear(); ASSERT_EQ((int)blin.length(), ioctx.read(oid, blout, 0, 0)); ASSERT_EQ(blin, blout); } TEST_F(ClsLua, GetXattrs) { ASSERT_EQ(0, ioctx.create(oid, false)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "getxattrs")); ASSERT_EQ(0, (int)reply_output.length()); string key1str("key1str"); bufferlist key1bl; key1bl.append(key1str); ASSERT_EQ(0, ioctx.setxattr(oid, "key1", key1bl)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "getxattrs")); string out1(reply_output.c_str(), reply_output.length()); // add the trailing \0 ASSERT_STREQ(out1.c_str(), "key1/key1str/"); string key2str("key2str"); bufferlist key2bl; key2bl.append(key2str); ASSERT_EQ(0, ioctx.setxattr(oid, "key2", key2bl)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "getxattrs")); string out2(reply_output.c_str(), reply_output.length()); // add the trailing \0 ASSERT_STREQ(out2.c_str(), "key1/key1str/key2/key2str/"); string key3str("key3str"); bufferlist key3bl; key3bl.append(key3str); ASSERT_EQ(0, ioctx.setxattr(oid, "key3", key3bl)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "getxattrs")); string out3(reply_output.c_str(), reply_output.length()); // add the trailing \0 ASSERT_STREQ(out3.c_str(), "key1/key1str/key2/key2str/key3/key3str/"); } TEST_F(ClsLua, MapGetKeys) { ASSERT_EQ(0, ioctx.create(oid, false)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_get_keys")); ASSERT_EQ(0, (int)reply_output.length()); map<string, bufferlist> kvpairs; kvpairs["k1"] = bufferlist(); ASSERT_EQ(0, ioctx.omap_set(oid, kvpairs)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_get_keys")); string out1(reply_output.c_str(), reply_output.length()); // add the trailing \0 ASSERT_STREQ(out1.c_str(), "k1/"); kvpairs["k2"] = bufferlist(); ASSERT_EQ(0, ioctx.omap_set(oid, kvpairs)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_get_keys")); string out2(reply_output.c_str(), reply_output.length()); // add the trailing \0 ASSERT_STREQ(out2.c_str(), "k1/k2/"); kvpairs["xxx"] = bufferlist(); ASSERT_EQ(0, ioctx.omap_set(oid, kvpairs)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_get_keys")); string out3(reply_output.c_str(), reply_output.length()); // add the trailing \0 ASSERT_STREQ(out3.c_str(), "k1/k2/xxx/"); } TEST_F(ClsLua, MapGetVals) { ASSERT_EQ(0, ioctx.create(oid, false)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_get_vals")); ASSERT_EQ(0, (int)reply_output.length()); map<string, bufferlist> kvpairs; kvpairs["key1"] = bufferlist(); kvpairs["key1"].append(string("key1str")); ASSERT_EQ(0, ioctx.omap_set(oid, kvpairs)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_get_vals")); string out1(reply_output.c_str(), reply_output.length()); // add the trailing \0 ASSERT_STREQ(out1.c_str(), "key1/key1str/"); kvpairs["key2"] = bufferlist(); kvpairs["key2"].append(string("key2str")); ASSERT_EQ(0, ioctx.omap_set(oid, kvpairs)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_get_vals")); string out2(reply_output.c_str(), reply_output.length()); // add the trailing \0 ASSERT_STREQ(out2.c_str(), "key1/key1str/key2/key2str/"); kvpairs["key3"] = bufferlist(); kvpairs["key3"].append(string("key3str")); ASSERT_EQ(0, ioctx.omap_set(oid, kvpairs)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_get_vals")); string out3(reply_output.c_str(), reply_output.length()); // add the trailing \0 ASSERT_STREQ(out3.c_str(), "key1/key1str/key2/key2str/key3/key3str/"); } TEST_F(ClsLua, MapHeader) { ASSERT_EQ(0, ioctx.create(oid, false)); bufferlist bl_out; ASSERT_EQ(0, ioctx.omap_get_header(oid, &bl_out)); ASSERT_EQ(0, (int)bl_out.length()); std::string val("this is a value"); bufferlist hdr; hdr.append(val); ASSERT_EQ(0, clslua_exec(test_script, &hdr, "map_write_header")); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_read_header")); ASSERT_EQ(reply_output, hdr); } TEST_F(ClsLua, MapSetVals) { ASSERT_EQ(0, ioctx.create(oid, false)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_set_vals_empty")); std::map<string, bufferlist> out_vals; ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_set_vals_one")); ASSERT_EQ(0, ioctx.omap_get_vals(oid, "", 100, &out_vals)); ASSERT_EQ(1, (int)out_vals.size()); ASSERT_STREQ("a_val", std::string(out_vals["a"].c_str(), out_vals["a"].length()).c_str()); out_vals.clear(); ASSERT_EQ(0, ioctx.omap_clear(oid)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_set_vals_two")); ASSERT_EQ(0, ioctx.omap_get_vals(oid, "", 100, &out_vals)); ASSERT_EQ(2, (int)out_vals.size()); ASSERT_STREQ("a_val", std::string(out_vals["a"].c_str(), out_vals["a"].length()).c_str()); ASSERT_STREQ("b_val", std::string(out_vals["b"].c_str(), out_vals["b"].length()).c_str()); out_vals.clear(); ASSERT_EQ(0, ioctx.omap_clear(oid)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_set_vals_three")); ASSERT_EQ(0, ioctx.omap_get_vals(oid, "", 100, &out_vals)); ASSERT_EQ(3, (int)out_vals.size()); ASSERT_STREQ("a_val", std::string(out_vals["a"].c_str(), out_vals["a"].length()).c_str()); ASSERT_STREQ("b_val", std::string(out_vals["b"].c_str(), out_vals["b"].length()).c_str()); ASSERT_STREQ("c_val", std::string(out_vals["c"].c_str(), out_vals["c"].length()).c_str()); out_vals.clear(); ASSERT_EQ(0, ioctx.omap_clear(oid)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_set_vals_array")); ASSERT_EQ(0, ioctx.omap_get_vals(oid, "", 100, &out_vals)); ASSERT_EQ(2, (int)out_vals.size()); ASSERT_STREQ("1_val", std::string(out_vals["1"].c_str(), out_vals["1"].length()).c_str()); ASSERT_STREQ("2_val", std::string(out_vals["2"].c_str(), out_vals["2"].length()).c_str()); out_vals.clear(); ASSERT_EQ(0, ioctx.omap_clear(oid)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_set_vals_mixed")); ASSERT_EQ(0, ioctx.omap_get_vals(oid, "", 100, &out_vals)); ASSERT_EQ(4, (int)out_vals.size()); ASSERT_STREQ("a_val", std::string(out_vals["a"].c_str(), out_vals["a"].length()).c_str()); ASSERT_STREQ("b_val", std::string(out_vals["b"].c_str(), out_vals["b"].length()).c_str()); ASSERT_STREQ("1_val", std::string(out_vals["1"].c_str(), out_vals["1"].length()).c_str()); ASSERT_STREQ("2_val", std::string(out_vals["2"].c_str(), out_vals["2"].length()).c_str()); ASSERT_EQ(-EINVAL, clslua_exec(test_script, NULL, "map_set_vals_bad_val")); } TEST_F(ClsLua, MapRemoveKey) { ASSERT_EQ(0, ioctx.create(oid, false)); std::map<string, bufferlist> out_vals; ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_set_vals_two")); ASSERT_EQ(0, ioctx.omap_get_vals(oid, "", 100, &out_vals)); ASSERT_EQ(2, (int)out_vals.size()); ASSERT_STREQ("a_val", std::string(out_vals["a"].c_str(), out_vals["a"].length()).c_str()); ASSERT_STREQ("b_val", std::string(out_vals["b"].c_str(), out_vals["b"].length()).c_str()); out_vals.clear(); ASSERT_EQ(0, clslua_exec(test_script, NULL, "map_remove_key")); ASSERT_EQ(0, ioctx.omap_get_vals(oid, "", 100, &out_vals)); ASSERT_EQ(1, (int)out_vals.size()); ASSERT_STREQ("b_val", std::string(out_vals["b"].c_str(), out_vals["b"].length()).c_str()); } TEST_F(ClsLua, VersionSubop) { ASSERT_EQ(0, ioctx.create(oid, false)); ASSERT_EQ(0, clslua_exec(test_script, NULL, "current_version")); ASSERT_GT((int)reply_output.length(), 0); ASSERT_EQ(0, clslua_exec(test_script, NULL, "current_subop_num")); ASSERT_GT((int)reply_output.length(), 0); ASSERT_EQ(0, clslua_exec(test_script, NULL, "current_subop_version")); ASSERT_GT((int)reply_output.length(), 0); } TEST_F(ClsLua, Json) { ASSERT_EQ(0, ioctx.create(oid, false)); bufferlist inbl, outbl; inbl.append(json_test_script); int ret = ioctx.exec(oid, "lua", "eval_json", inbl, outbl); ASSERT_EQ(ret, 0); std::string out(outbl.c_str(), outbl.length()); ASSERT_STREQ(out.c_str(), "omg it works"); }
29,635
25.723174
109
cc
null
ceph-main/src/test/cls_numops/test_cls_numops.cc
/* * Ceph - scalable distributed file system * * Copyright (C) 2015 CERN * * Author: Joaquim Rocha <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <iostream> #include <errno.h> #include <set> #include <sstream> #include <string> #include "cls/numops/cls_numops_client.h" #include "gtest/gtest.h" #include "include/rados/librados.hpp" #include "test/librados/test_cxx.h" using namespace librados; TEST(ClsNumOps, Add) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); // exec numops add method with an empty bufferlist bufferlist in, out; ASSERT_EQ(-EINVAL, ioctx.exec("myobject", "numops", "add", in, out)); // add a number to a non-existing key std::string key = "my-key"; double value_in = 0.5; std::stringstream stream; stream << value_in; ASSERT_EQ(0, rados::cls::numops::add(&ioctx, "myobject", key, value_in)); // check that the omap entry was set and the value matches std::set<std::string> keys; std::map<std::string, bufferlist> omap; keys.insert(key); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); std::map<std::string, bufferlist>::iterator it = omap.find(key); ASSERT_NE(omap.end(), it); bufferlist bl = (*it).second; std::string value_out(bl.c_str(), bl.length()); EXPECT_EQ(stream.str(), value_out); // add another value to the existing one double new_value_in = 3.001; ASSERT_EQ(0, rados::cls::numops::add(&ioctx, "myobject", key, new_value_in)); // check that the omap entry's value matches omap.clear(); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); it = omap.find(key); ASSERT_NE(omap.end(), it); bl = (*it).second; value_out.assign(bl.c_str(), bl.length()); stream.str(""); stream << (value_in + new_value_in); EXPECT_EQ(stream.str(), value_out); // set the omap entry with some non-numeric value omap.clear(); std::string non_numeric_value("some-non-numeric-text"); omap[key].append(non_numeric_value); ASSERT_EQ(0, ioctx.omap_set("myobject", omap)); // check that adding a number does not succeed omap.clear(); ASSERT_EQ(-EBADMSG, rados::cls::numops::add(&ioctx, "myobject", key, 2.0)); // check that the omap entry was not changed ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); it = omap.find(key); ASSERT_NE(omap.end(), it); bl = (*it).second; value_out.assign(bl.c_str(), bl.length()); EXPECT_EQ(non_numeric_value, value_out); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsNumOps, Sub) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); // subtract a number from a non-existing key std::string key = "my-key"; double value_in = 0.5; std::stringstream stream; stream << value_in; ASSERT_EQ(0, rados::cls::numops::sub(&ioctx, "myobject", key, value_in)); // check that the omap entry was set and the value matches std::set<std::string> keys; std::map<std::string, bufferlist> omap; keys.insert(key); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); std::map<std::string, bufferlist>::iterator it = omap.find(key); ASSERT_NE(omap.end(), it); bufferlist bl = (*it).second; std::string value_out(bl.c_str(), bl.length()); EXPECT_EQ("-" + stream.str(), value_out); // subtract another value to the existing one double new_value_in = 3.001; ASSERT_EQ(0, rados::cls::numops::sub(&ioctx, "myobject", key, new_value_in)); // check that the omap entry's value matches omap.clear(); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); it = omap.find(key); ASSERT_NE(omap.end(), it); bl = (*it).second; value_out.assign(bl.c_str(), bl.length()); stream.str(""); stream << -(value_in + new_value_in); EXPECT_EQ(stream.str(), value_out); // set the omap entry with some non-numeric value omap.clear(); std::string non_numeric_value("some-non-numeric-text"); omap[key].append(non_numeric_value); ASSERT_EQ(0, ioctx.omap_set("myobject", omap)); // check that subtracting a number does not succeed omap.clear(); ASSERT_EQ(-EBADMSG, rados::cls::numops::sub(&ioctx, "myobject", key, 2.0)); // check that the omap entry was not changed ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); it = omap.find(key); ASSERT_NE(omap.end(), it); bl = (*it).second; value_out.assign(bl.c_str(), bl.length()); EXPECT_EQ(non_numeric_value, value_out); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsNumOps, Mul) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); // exec numops mul method with an empty bufferlist bufferlist in, out; ASSERT_EQ(-EINVAL, ioctx.exec("myobject", "numops", "mul", in, out)); // multiply a number to a non-existing key std::string key = "my-key"; double value_in = 0.5; std::stringstream stream; stream << value_in; ASSERT_EQ(0, rados::cls::numops::mul(&ioctx, "myobject", key, value_in)); // check that the omap entry was set and the value is zero std::set<std::string> keys; std::map<std::string, bufferlist> omap; keys.insert(key); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); std::map<std::string, bufferlist>::iterator it = omap.find(key); ASSERT_NE(omap.end(), it); bufferlist bl = (*it).second; std::string value_out(bl.c_str(), bl.length()); EXPECT_EQ("0", value_out); // set a non-zero value so we can effectively test multiplications omap.clear(); omap[key].append(stream.str()); ASSERT_EQ(0, ioctx.omap_set("myobject", omap)); // multiply another value to the existing one double new_value_in = 3.001; ASSERT_EQ(0, rados::cls::numops::mul(&ioctx, "myobject", key, new_value_in)); // check that the omap entry's value matches omap.clear(); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); it = omap.find(key); ASSERT_NE(omap.end(), it); bl = (*it).second; value_out.assign(bl.c_str(), bl.length()); stream.str(""); stream << (value_in * new_value_in); EXPECT_EQ(stream.str(), value_out); // set the omap entry with some non-numeric value omap.clear(); std::string non_numeric_value("some-non-numeric-text"); omap[key].append(non_numeric_value); ASSERT_EQ(0, ioctx.omap_set("myobject", omap)); // check that adding a number does not succeed ASSERT_EQ(-EBADMSG, rados::cls::numops::mul(&ioctx, "myobject", key, 2.0)); // check that the omap entry was not changed omap.clear(); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); it = omap.find(key); ASSERT_NE(omap.end(), it); bl = (*it).second; value_out.assign(bl.c_str(), bl.length()); EXPECT_EQ(non_numeric_value, value_out); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsNumOps, Div) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); // divide a non-existing key by a number std::string key = "my-key"; double value_in = 0.5; std::stringstream stream; stream << value_in; ASSERT_EQ(0, rados::cls::numops::div(&ioctx, "myobject", key, value_in)); // check that the omap entry was set and the value is zero std::set<std::string> keys; std::map<std::string, bufferlist> omap; keys.insert(key); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); std::map<std::string, bufferlist>::iterator it = omap.find(key); ASSERT_NE(omap.end(), it); bufferlist bl = (*it).second; std::string value_out(bl.c_str(), bl.length()); EXPECT_EQ("0", value_out); // check that division by zero is not allowed ASSERT_EQ(-EINVAL, rados::cls::numops::div(&ioctx, "myobject", key, 0)); // set a non-zero value so we can effectively test divisions omap.clear(); omap[key].append(stream.str()); ASSERT_EQ(0, ioctx.omap_set("myobject", omap)); // divide another value to the existing one double new_value_in = 3.001; ASSERT_EQ(0, rados::cls::numops::div(&ioctx, "myobject", key, new_value_in)); // check that the omap entry's value matches omap.clear(); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); it = omap.find(key); ASSERT_NE(omap.end(), it); bl = (*it).second; value_out.assign(bl.c_str(), bl.length()); stream.str(""); stream << (value_in / new_value_in); EXPECT_EQ(stream.str(), value_out); omap.clear(); // set the omap entry with some non-numeric value std::string non_numeric_value("some-non-numeric-text"); omap[key].append(non_numeric_value); ASSERT_EQ(0, ioctx.omap_set("myobject", omap)); // check that adding a number does not succeed ASSERT_EQ(-EBADMSG, rados::cls::numops::div(&ioctx, "myobject", key, 2.0)); // check that the omap entry was not changed omap.clear(); ASSERT_EQ(0, ioctx.omap_get_vals_by_keys("myobject", keys, &omap)); it = omap.find(key); ASSERT_NE(omap.end(), it); bl = (*it).second; value_out.assign(bl.c_str(), bl.length()); EXPECT_EQ(non_numeric_value, value_out); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); }
9,859
22.759036
79
cc
null
ceph-main/src/test/cls_queue/test_cls_queue.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/types.h" #include "cls/queue/cls_queue_types.h" #include "cls/queue/cls_queue_client.h" #include "cls/queue/cls_queue_ops.h" #include "gtest/gtest.h" #include "test/librados/test_cxx.h" #include "global/global_context.h" #include <string> #include <vector> #include <algorithm> #include <thread> #include <chrono> #include <atomic> using namespace std; class TestClsQueue : public ::testing::Test { protected: librados::Rados rados; std::string pool_name; librados::IoCtx ioctx; void SetUp() override { pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); } void TearDown() override { ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } void test_enqueue(const std::string& queue_name, int number_of_ops, int number_of_elements, int expected_rc) { librados::ObjectWriteOperation op; // test multiple enqueues for (auto i = 0; i < number_of_ops; ++i) { const std::string element_prefix("op-" +to_string(i) + "-element-"); std::vector<bufferlist> data(number_of_elements); // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); return bl; }); // enqueue vector cls_queue_enqueue(op, 0, data); ASSERT_EQ(expected_rc, ioctx.operate(queue_name, &op)); } } }; TEST_F(TestClsQueue, GetCapacity) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size; const int ret = cls_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(queue_size, size); } TEST_F(TestClsQueue, Enqueue) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); // test multiple enqueues // 10 iterations, 100 elelemts each // expect 0 (OK) test_enqueue(queue_name, 10, 100, 0); } TEST_F(TestClsQueue, QueueFull) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); // 8 iterations, 5 elelemts each // expect 0 (OK) test_enqueue(queue_name, 8, 5, 0); // 2 iterations, 5 elelemts each // expect -28 (Q FULL) test_enqueue(queue_name, 2, 5, -28); } TEST_F(TestClsQueue, List) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); const auto number_of_ops = 10; const auto number_of_elements = 100; // test multiple enqueues test_enqueue(queue_name, number_of_ops, number_of_elements, 0); const auto max_elements = 42; std::string marker; bool truncated = false; std::string next_marker; auto total_elements = 0; do { std::vector<cls_queue_entry> entries; const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, next_marker); ASSERT_EQ(0, ret); marker = next_marker; total_elements += entries.size(); } while (truncated); ASSERT_EQ(total_elements, number_of_ops*number_of_elements); } TEST_F(TestClsQueue, Dequeue) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); // test multiple enqueues test_enqueue(queue_name, 10, 100, 0); // get the end marker for 42 elements const auto remove_elements = 42; const std::string marker; bool truncated; std::string end_marker; std::vector<cls_queue_entry> entries; const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, remove_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); ASSERT_EQ(truncated, true); // remove up to end marker cls_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } TEST_F(TestClsQueue, DequeueMarker) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); // test multiple enqueues test_enqueue(queue_name, 10, 1000, 0); const auto remove_elements = 1024; const std::string marker; bool truncated; std::string end_marker; std::vector<cls_queue_entry> entries; auto ret = cls_queue_list_entries(ioctx, queue_name, marker, remove_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); ASSERT_EQ(truncated, true); cls_queue_marker after_deleted_marker; // remove specific markers for (const auto& entry : entries) { cls_queue_marker marker; marker.from_str(entry.marker.c_str()); ASSERT_EQ(marker.from_str(entry.marker.c_str()), 0); if (marker.offset > 0 && marker.offset % 2 == 0) { after_deleted_marker = marker; cls_queue_remove_entries(op, marker.to_str()); } } ASSERT_EQ(0, ioctx.operate(queue_name, &op)); entries.clear(); ret = cls_queue_list_entries(ioctx, queue_name, marker, remove_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); for (const auto& entry : entries) { cls_queue_marker marker; marker.from_str(entry.marker.c_str()); ASSERT_EQ(marker.from_str(entry.marker.c_str()), 0); ASSERT_GE(marker.gen, after_deleted_marker.gen); ASSERT_GE(marker.offset, after_deleted_marker.offset); } } TEST_F(TestClsQueue, ListEmpty) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); const auto max_elements = 50; const std::string marker; bool truncated; std::string next_marker; std::vector<cls_queue_entry> entries; const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, next_marker); ASSERT_EQ(0, ret); ASSERT_EQ(truncated, false); ASSERT_EQ(entries.size(), 0); } TEST_F(TestClsQueue, DequeueEmpty) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); const auto max_elements = 50; const std::string marker; bool truncated; std::string end_marker; std::vector<cls_queue_entry> entries; const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); cls_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } TEST_F(TestClsQueue, ListAll) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); // test multiple enqueues test_enqueue(queue_name, 10, 100, 0); const auto total_elements = 10*100; std::string marker; bool truncated; std::string next_marker; std::vector<cls_queue_entry> entries; const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, total_elements, entries, &truncated, next_marker); ASSERT_EQ(0, ret); ASSERT_EQ(entries.size(), total_elements); ASSERT_EQ(truncated, false); } TEST_F(TestClsQueue, DeleteAll) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); // test multiple enqueues test_enqueue(queue_name, 10, 100, 0); const auto total_elements = 10*100; const std::string marker; bool truncated; std::string end_marker; std::vector<cls_queue_entry> entries; auto ret = cls_queue_list_entries(ioctx, queue_name, marker, total_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); cls_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); // list again to make sure that queue is empty ret = cls_queue_list_entries(ioctx, queue_name, marker, 10, entries, &truncated, end_marker); ASSERT_EQ(0, ret); ASSERT_EQ(truncated, false); ASSERT_EQ(entries.size(), 0); } TEST_F(TestClsQueue, EnqueueDequeue) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); bool done = false; const int number_of_ops = 10; const int number_of_elements = 100; std::thread producer([this, &queue_name, &done] { test_enqueue(queue_name, number_of_ops, number_of_elements, 0); done = true; }); auto consume_count = 0U; std::thread consumer([this, &queue_name, &consume_count, &done] { librados::ObjectWriteOperation op; const auto max_elements = 42; const std::string marker; bool truncated = false; std::string end_marker; std::vector<cls_queue_entry> entries; while (!done || truncated) { const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); consume_count += entries.size(); cls_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } }); producer.join(); consumer.join(); ASSERT_EQ(consume_count, number_of_ops*number_of_elements); } TEST_F(TestClsQueue, QueueFullDequeue) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 4096; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); bool done = false; const auto number_of_ops = 100; const auto number_of_elements = 50; std::thread producer([this, &queue_name, &done] { librados::ObjectWriteOperation op; // test multiple enqueues for (auto i = 0; i < number_of_ops; ++i) { const std::string element_prefix("op-" +to_string(i) + "-element-"); std::vector<bufferlist> data(number_of_elements); // create vector of buffer lists std::generate(data.begin(), data.end(), [j = 0, &element_prefix] () mutable { bufferlist bl; bl.append(element_prefix + to_string(j++)); return bl; }); // enqueue vector cls_queue_enqueue(op, 0, data); if (ioctx.operate(queue_name, &op) == -28) { // queue is full - wait and retry --i; std::this_thread::sleep_for(std::chrono::milliseconds(100)); } } done = true; }); auto consume_count = 0; std::thread consumer([this, &queue_name, &consume_count, &done] { librados::ObjectWriteOperation op; const auto max_elements = 42; std::string marker; bool truncated = false; std::string end_marker; std::vector<cls_queue_entry> entries; while (!done || truncated) { auto ret = cls_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); consume_count += entries.size(); cls_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } }); producer.join(); consumer.join(); ASSERT_EQ(consume_count, number_of_ops*number_of_elements); } TEST_F(TestClsQueue, MultiProducer) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); const int max_producer_count = 10; int producer_count = max_producer_count; const int number_of_ops = 10; const int number_of_elements = 100; std::vector<std::thread> producers(max_producer_count); for (auto& p : producers) { p = std::thread([this, &queue_name, &producer_count] { test_enqueue(queue_name, number_of_ops, number_of_elements, 0); --producer_count; }); } auto consume_count = 0U; std::thread consumer([this, &queue_name, &consume_count, &producer_count] { librados::ObjectWriteOperation op; const auto max_elements = 42; const std::string marker; bool truncated = false; std::string end_marker; std::vector<cls_queue_entry> entries; while (producer_count > 0 || truncated) { const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); consume_count += entries.size(); cls_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } }); for (auto& p : producers) { p.join(); } consumer.join(); ASSERT_EQ(consume_count, number_of_ops*number_of_elements*max_producer_count); } TEST_F(TestClsQueue, MultiConsumer) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); bool done = false; const int number_of_ops = 10; const int number_of_elements = 100; std::thread producer([this, &queue_name, &done] { test_enqueue(queue_name, number_of_ops, number_of_elements, 0); done = true; }); int consume_count = 0; std::mutex list_and_remove_lock; std::vector<std::thread> consumers(10); for (auto& c : consumers) { c = std::thread([this, &queue_name, &consume_count, &done, &list_and_remove_lock] { librados::ObjectWriteOperation op; const auto max_elements = 42; const std::string marker; bool truncated = false; std::string end_marker; std::vector<cls_queue_entry> entries; while (!done || truncated) { std::lock_guard lock(list_and_remove_lock); const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); consume_count += entries.size(); cls_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } }); } producer.join(); for (auto& c : consumers) { c.join(); } ASSERT_EQ(consume_count, number_of_ops*number_of_elements); } TEST_F(TestClsQueue, NoLockMultiConsumer) { const std::string queue_name = "my-queue"; const uint64_t queue_size = 1024*1024; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); bool done = false; const int number_of_ops = 10; const int number_of_elements = 100; std::thread producer([this, &queue_name, &done] { test_enqueue(queue_name, number_of_ops, number_of_elements, 0); done = true; }); std::vector<std::thread> consumers(5); for (auto& c : consumers) { c = std::thread([this, &queue_name, &done] { librados::ObjectWriteOperation op; const auto max_elements = 42; const std::string marker; bool truncated = false; std::string end_marker; std::vector<cls_queue_entry> entries; while (!done || truncated) { const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); cls_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } }); } producer.join(); for (auto& c : consumers) { c.join(); } // make sure queue is empty const auto max_elements = 1000; const std::string marker; bool truncated = false; std::string end_marker; std::vector<cls_queue_entry> entries; const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); ASSERT_EQ(entries.size(), 0); ASSERT_EQ(truncated, false); } TEST_F(TestClsQueue, WrapAround) { const std::string queue_name = "my-queue"; const auto number_of_entries = 10U; const auto max_entry_size = 2000; const auto min_entry_size = 1000; const uint64_t queue_size = number_of_entries*max_entry_size; const auto entry_overhead = 10; librados::ObjectWriteOperation op; op.create(true); cls_queue_init(op, queue_name, queue_size); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); std::list<bufferlist> total_bl; // fill up the queue for (auto i = 0U; i < number_of_entries; ++i) { const auto entry_size = rand()%(max_entry_size - min_entry_size + 1) + min_entry_size; std::string entry_str(entry_size-entry_overhead, 0); std::generate_n(entry_str.begin(), entry_str.size(), [](){return (char)(rand());}); bufferlist entry_bl; entry_bl.append(entry_str); std::vector<bufferlist> data{{entry_bl}}; // enqueue vector cls_queue_enqueue(op, 0, data); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); total_bl.push_back(entry_bl); } std::string marker; for (auto j = 0; j < 10; ++j) { // empty half+1 of the queue const auto max_elements = number_of_entries/2 + 1; bool truncated; std::string end_marker; std::vector<cls_queue_entry> entries; const auto ret = cls_queue_list_entries(ioctx, queue_name, marker, max_elements, entries, &truncated, end_marker); ASSERT_EQ(0, ret); for (auto& entry : entries) { ASSERT_EQ(entry.data, total_bl.front()); total_bl.pop_front(); } marker = end_marker; cls_queue_remove_entries(op, end_marker); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); // fill half+1 of the queue for (auto i = 0U; i < number_of_entries/2 + 1; ++i) { const auto entry_size = rand()%(max_entry_size - min_entry_size + 1) + min_entry_size; std::string entry_str(entry_size-entry_overhead, 0); std::generate_n(entry_str.begin(), entry_str.size(), [](){return (char)(rand());}); bufferlist entry_bl; entry_bl.append(entry_str); std::vector<bufferlist> data{{entry_bl}}; cls_queue_enqueue(op, 0, data); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); total_bl.push_back(entry_bl); } } }
19,661
31.338816
126
cc
null
ceph-main/src/test/cls_rbd/test_cls_rbd.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/compat.h" #include "common/ceph_context.h" #include "common/config.h" #include "common/snap_types.h" #include "common/Clock.h" #include "common/bit_vector.hpp" #include "include/encoding.h" #include "include/types.h" #include "include/rados/librados.h" #include "include/rbd/object_map_types.h" #include "include/rbd_types.h" #include "include/stringify.h" #include "cls/rbd/cls_rbd.h" #include "cls/rbd/cls_rbd_client.h" #include "cls/rbd/cls_rbd_types.h" #include "librbd/Types.h" #include "gtest/gtest.h" #include "test/librados/test_cxx.h" #include <errno.h> #include <string> #include <vector> using namespace std; using namespace librbd::cls_client; using cls::rbd::MIRROR_PEER_DIRECTION_RX; using cls::rbd::MIRROR_PEER_DIRECTION_TX; using cls::rbd::MIRROR_PEER_DIRECTION_RX_TX; using ::librbd::ParentImageInfo; using ceph::encode; using ceph::decode; static int snapshot_add(librados::IoCtx *ioctx, const std::string &oid, uint64_t snap_id, const std::string &snap_name) { librados::ObjectWriteOperation op; ::librbd::cls_client::snapshot_add(&op, snap_id, snap_name, cls::rbd::UserSnapshotNamespace()); return ioctx->operate(oid, &op); } static int snapshot_remove(librados::IoCtx *ioctx, const std::string &oid, uint64_t snap_id) { librados::ObjectWriteOperation op; ::librbd::cls_client::snapshot_remove(&op, snap_id); return ioctx->operate(oid, &op); } static int snapshot_rename(librados::IoCtx *ioctx, const std::string &oid, uint64_t snap_id, const std::string &snap_name) { librados::ObjectWriteOperation op; ::librbd::cls_client::snapshot_rename(&op, snap_id, snap_name); return ioctx->operate(oid, &op); } static int old_snapshot_add(librados::IoCtx *ioctx, const std::string &oid, uint64_t snap_id, const std::string &snap_name) { librados::ObjectWriteOperation op; ::librbd::cls_client::old_snapshot_add(&op, snap_id, snap_name); return ioctx->operate(oid, &op); } static char *random_buf(size_t len) { char *b = new char[len]; for (size_t i = 0; i < len; i++) b[i] = (rand() % (128 - 32)) + 32; return b; } static bool is_sparse_read_supported(librados::IoCtx &ioctx, const std::string &oid) { EXPECT_EQ(0, ioctx.create(oid, true)); bufferlist inbl; inbl.append(std::string(1, 'X')); EXPECT_EQ(0, ioctx.write(oid, inbl, inbl.length(), 1)); EXPECT_EQ(0, ioctx.write(oid, inbl, inbl.length(), 3)); std::map<uint64_t, uint64_t> m; bufferlist outbl; int r = ioctx.sparse_read(oid, m, outbl, 4, 0); ioctx.remove(oid); int expected_r = 2; std::map<uint64_t, uint64_t> expected_m = {{1, 1}, {3, 1}}; bufferlist expected_outbl; expected_outbl.append(std::string(2, 'X')); return (r == expected_r && m == expected_m && outbl.contents_equal(expected_outbl)); } class TestClsRbd : public ::testing::Test { public: static void SetUpTestCase() { _pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(_pool_name, _rados)); } static void TearDownTestCase() { ASSERT_EQ(0, destroy_one_pool_pp(_pool_name, _rados)); } std::string get_temp_image_name() { ++_image_number; return "image" + stringify(_image_number); } static std::string _pool_name; static librados::Rados _rados; static uint64_t _image_number; }; std::string TestClsRbd::_pool_name; librados::Rados TestClsRbd::_rados; uint64_t TestClsRbd::_image_number = 0; TEST_F(TestClsRbd, get_all_features) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, ioctx.create(oid, false)); uint64_t all_features = 0; ASSERT_EQ(0, get_all_features(&ioctx, oid, &all_features)); ASSERT_EQ(static_cast<uint64_t>(RBD_FEATURES_ALL), static_cast<uint64_t>(all_features & RBD_FEATURES_ALL)); ioctx.close(); } TEST_F(TestClsRbd, copyup) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); bufferlist inbl, outbl; // copyup of 0-len nonexistent object should create new 0-len object ioctx.remove(oid); ASSERT_EQ(0, copyup(&ioctx, oid, inbl)); uint64_t size; ASSERT_EQ(0, ioctx.stat(oid, &size, NULL)); ASSERT_EQ(0U, size); // create some random data to write size_t l = 4 << 20; char *b = random_buf(l); inbl.append(b, l); delete [] b; ASSERT_EQ(l, inbl.length()); // copyup to nonexistent object should create new object ioctx.remove(oid); ASSERT_EQ(-ENOENT, ioctx.remove(oid)); ASSERT_EQ(0, copyup(&ioctx, oid, inbl)); // and its contents should match ASSERT_EQ(l, (size_t)ioctx.read(oid, outbl, l, 0)); ASSERT_TRUE(outbl.contents_equal(inbl)); // now send different data, but with a preexisting object bufferlist inbl2; b = random_buf(l); inbl2.append(b, l); delete [] b; ASSERT_EQ(l, inbl2.length()); // should still succeed ASSERT_EQ(0, copyup(&ioctx, oid, inbl)); ASSERT_EQ(l, (size_t)ioctx.read(oid, outbl, l, 0)); // but contents should not have changed ASSERT_FALSE(outbl.contents_equal(inbl2)); ASSERT_TRUE(outbl.contents_equal(inbl)); ASSERT_EQ(0, ioctx.remove(oid)); ioctx.close(); } TEST_F(TestClsRbd, sparse_copyup) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ioctx.remove(oid); bool sparse_read_supported = is_sparse_read_supported(ioctx, oid); // copyup of 0-len nonexistent object should create new 0-len object uint64_t size; ASSERT_EQ(-ENOENT, ioctx.stat(oid, &size, nullptr)); std::map<uint64_t, uint64_t> m; bufferlist inbl; ASSERT_EQ(0, sparse_copyup(&ioctx, oid, m, inbl)); ASSERT_EQ(0, ioctx.stat(oid, &size, nullptr)); ASSERT_EQ(0U, size); // create some data to write inbl.append(std::string(4096, '1')); inbl.append(std::string(4096, '2')); m = {{1024, 4096}, {8192, 4096}}; // copyup to nonexistent object should create new object ioctx.remove(oid); ASSERT_EQ(-ENOENT, ioctx.remove(oid)); ASSERT_EQ(0, sparse_copyup(&ioctx, oid, m, inbl)); // and its contents should match bufferlist outbl; bufferlist expected_outbl; expected_outbl.append(std::string(1024, '\0')); expected_outbl.append(std::string(4096, '1')); expected_outbl.append(std::string(8192 - 4096 - 1024, '\0')); expected_outbl.append(std::string(4096, '2')); ASSERT_EQ((int)expected_outbl.length(), ioctx.read(oid, outbl, expected_outbl.length() + 1, 0)); ASSERT_TRUE(outbl.contents_equal(expected_outbl)); std::map<uint64_t, uint64_t> expected_m; if (sparse_read_supported) { expected_m = m; expected_outbl = inbl; } else { expected_m = {{0, expected_outbl.length()}}; } m.clear(); outbl.clear(); ASSERT_EQ((int)expected_m.size(), ioctx.sparse_read(oid, m, outbl, 65536, 0)); ASSERT_EQ(m, expected_m); ASSERT_TRUE(outbl.contents_equal(expected_outbl)); // now send different data, but with a preexisting object bufferlist inbl2; inbl2.append(std::string(1024, 'X')); // should still succeed ASSERT_EQ(0, sparse_copyup(&ioctx, oid, {{0, 1024}}, inbl2)); // but contents should not have changed m.clear(); outbl.clear(); ASSERT_EQ((int)expected_m.size(), ioctx.sparse_read(oid, m, outbl, 65536, 0)); ASSERT_EQ(m, expected_m); ASSERT_TRUE(outbl.contents_equal(expected_outbl)); ASSERT_EQ(0, ioctx.remove(oid)); ioctx.close(); } TEST_F(TestClsRbd, get_and_set_id) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); string id; string valid_id = "0123abcxyzZYXCBA"; string invalid_id = ".abc"; string empty_id; ASSERT_EQ(-ENOENT, get_id(&ioctx, oid, &id)); ASSERT_EQ(-ENOENT, set_id(&ioctx, oid, valid_id)); ASSERT_EQ(0, ioctx.create(oid, true)); ASSERT_EQ(-EINVAL, set_id(&ioctx, oid, invalid_id)); ASSERT_EQ(-EINVAL, set_id(&ioctx, oid, empty_id)); ASSERT_EQ(-ENOENT, get_id(&ioctx, oid, &id)); ASSERT_EQ(0, set_id(&ioctx, oid, valid_id)); ASSERT_EQ(-EEXIST, set_id(&ioctx, oid, valid_id)); ASSERT_EQ(-EEXIST, set_id(&ioctx, oid, valid_id + valid_id)); ASSERT_EQ(0, get_id(&ioctx, oid, &id)); ASSERT_EQ(id, valid_id); ioctx.close(); } TEST_F(TestClsRbd, add_remove_child) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, ioctx.create(oid, true)); string snapname = "parent_snap"; snapid_t snapid(10); string parent_image = "parent_id"; set<string>children; cls::rbd::ParentImageSpec pspec(ioctx.get_id(), "", parent_image, snapid); // nonexistent children cannot be listed or removed ASSERT_EQ(-ENOENT, get_children(&ioctx, oid, pspec, children)); ASSERT_EQ(-ENOENT, remove_child(&ioctx, oid, pspec, "child1")); // create the parent and snapshot ASSERT_EQ(0, create_image(&ioctx, parent_image, 2<<20, 0, RBD_FEATURE_LAYERING, parent_image, -1)); ASSERT_EQ(0, snapshot_add(&ioctx, parent_image, snapid, snapname)); // add child to it, verify it showed up ASSERT_EQ(0, add_child(&ioctx, oid, pspec, "child1")); ASSERT_EQ(0, get_children(&ioctx, oid, pspec, children)); ASSERT_TRUE(children.find("child1") != children.end()); // add another child to it, verify it showed up ASSERT_EQ(0, add_child(&ioctx, oid, pspec, "child2")); ASSERT_EQ(0, get_children(&ioctx, oid, pspec, children)); ASSERT_TRUE(children.find("child2") != children.end()); // add child2 again, expect -EEXIST ASSERT_EQ(-EEXIST, add_child(&ioctx, oid, pspec, "child2")); // remove first, verify it's gone ASSERT_EQ(0, remove_child(&ioctx, oid, pspec, "child1")); ASSERT_EQ(0, get_children(&ioctx, oid, pspec, children)); ASSERT_FALSE(children.find("child1") != children.end()); // remove second, verify list empty ASSERT_EQ(0, remove_child(&ioctx, oid, pspec, "child2")); ASSERT_EQ(-ENOENT, get_children(&ioctx, oid, pspec, children)); // try to remove again, validate -ENOENT to that as well ASSERT_EQ(-ENOENT, remove_child(&ioctx, oid, pspec, "child2")); ioctx.close(); } TEST_F(TestClsRbd, directory_methods) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); string id, name; string imgname = get_temp_image_name(); string imgname2 = get_temp_image_name(); string imgname3 = get_temp_image_name(); string valid_id = "0123abcxyzZYXCBA"; string valid_id2 = "5"; string invalid_id = ".abc"; string empty; ASSERT_EQ(-ENOENT, dir_state_assert(&ioctx, oid, cls::rbd::DIRECTORY_STATE_READY)); ASSERT_EQ(-ENOENT, dir_state_set(&ioctx, oid, cls::rbd::DIRECTORY_STATE_ADD_DISABLED)); ASSERT_EQ(-ENOENT, dir_get_id(&ioctx, oid, imgname, &id)); ASSERT_EQ(-ENOENT, dir_get_name(&ioctx, oid, valid_id, &name)); ASSERT_EQ(-ENOENT, dir_remove_image(&ioctx, oid, imgname, valid_id)); ASSERT_EQ(-EINVAL, dir_add_image(&ioctx, oid, imgname, invalid_id)); ASSERT_EQ(-EINVAL, dir_add_image(&ioctx, oid, imgname, empty)); ASSERT_EQ(-EINVAL, dir_add_image(&ioctx, oid, empty, valid_id)); map<string, string> images; ASSERT_EQ(-ENOENT, dir_list(&ioctx, oid, "", 30, &images)); ASSERT_EQ(0, ioctx.create(oid, true)); ASSERT_EQ(0, dir_list(&ioctx, oid, "", 30, &images)); ASSERT_EQ(0u, images.size()); ASSERT_EQ(0, ioctx.remove(oid)); ASSERT_EQ(0, dir_state_set(&ioctx, oid, cls::rbd::DIRECTORY_STATE_READY)); ASSERT_EQ(0, dir_state_assert(&ioctx, oid, cls::rbd::DIRECTORY_STATE_READY)); ASSERT_EQ(0, dir_add_image(&ioctx, oid, imgname, valid_id)); ASSERT_EQ(-EBUSY, dir_state_set(&ioctx, oid, cls::rbd::DIRECTORY_STATE_ADD_DISABLED)); ASSERT_EQ(-EEXIST, dir_add_image(&ioctx, oid, imgname, valid_id2)); ASSERT_EQ(-EBADF, dir_add_image(&ioctx, oid, imgname2, valid_id)); ASSERT_EQ(0, dir_list(&ioctx, oid, "", 30, &images)); ASSERT_EQ(1u, images.size()); ASSERT_EQ(valid_id, images[imgname]); ASSERT_EQ(0, dir_list(&ioctx, oid, "", 0, &images)); ASSERT_EQ(0u, images.size()); ASSERT_EQ(0, dir_get_name(&ioctx, oid, valid_id, &name)); ASSERT_EQ(imgname, name); ASSERT_EQ(0, dir_get_id(&ioctx, oid, imgname, &id)); ASSERT_EQ(valid_id, id); ASSERT_EQ(0, dir_add_image(&ioctx, oid, imgname2, valid_id2)); ASSERT_EQ(0, dir_list(&ioctx, oid, "", 30, &images)); ASSERT_EQ(2u, images.size()); ASSERT_EQ(valid_id, images[imgname]); ASSERT_EQ(valid_id2, images[imgname2]); ASSERT_EQ(0, dir_list(&ioctx, oid, imgname, 0, &images)); ASSERT_EQ(0u, images.size()); ASSERT_EQ(0, dir_list(&ioctx, oid, imgname, 2, &images)); ASSERT_EQ(1u, images.size()); ASSERT_EQ(valid_id2, images[imgname2]); ASSERT_EQ(0, dir_get_name(&ioctx, oid, valid_id2, &name)); ASSERT_EQ(imgname2, name); ASSERT_EQ(0, dir_get_id(&ioctx, oid, imgname2, &id)); ASSERT_EQ(valid_id2, id); librados::ObjectWriteOperation op1; dir_rename_image(&op1, imgname, imgname2, valid_id2); ASSERT_EQ(-ESTALE, ioctx.operate(oid, &op1)); ASSERT_EQ(-ESTALE, dir_remove_image(&ioctx, oid, imgname, valid_id2)); librados::ObjectWriteOperation op2; dir_rename_image(&op2, imgname, imgname2, valid_id); ASSERT_EQ(-EEXIST, ioctx.operate(oid, &op2)); ASSERT_EQ(0, dir_get_id(&ioctx, oid, imgname, &id)); ASSERT_EQ(valid_id, id); ASSERT_EQ(0, dir_get_name(&ioctx, oid, valid_id2, &name)); ASSERT_EQ(imgname2, name); librados::ObjectWriteOperation op3; dir_rename_image(&op3, imgname, imgname3, valid_id); ASSERT_EQ(0, ioctx.operate(oid, &op3)); ASSERT_EQ(0, dir_get_id(&ioctx, oid, imgname3, &id)); ASSERT_EQ(valid_id, id); ASSERT_EQ(0, dir_get_name(&ioctx, oid, valid_id, &name)); ASSERT_EQ(imgname3, name); librados::ObjectWriteOperation op4; dir_rename_image(&op4, imgname3, imgname, valid_id); ASSERT_EQ(0, ioctx.operate(oid, &op4)); ASSERT_EQ(0, dir_remove_image(&ioctx, oid, imgname, valid_id)); ASSERT_EQ(0, dir_list(&ioctx, oid, "", 30, &images)); ASSERT_EQ(1u, images.size()); ASSERT_EQ(valid_id2, images[imgname2]); ASSERT_EQ(0, dir_list(&ioctx, oid, imgname2, 30, &images)); ASSERT_EQ(0u, images.size()); ASSERT_EQ(0, dir_get_name(&ioctx, oid, valid_id2, &name)); ASSERT_EQ(imgname2, name); ASSERT_EQ(0, dir_get_id(&ioctx, oid, imgname2, &id)); ASSERT_EQ(valid_id2, id); ASSERT_EQ(-ENOENT, dir_get_name(&ioctx, oid, valid_id, &name)); ASSERT_EQ(-ENOENT, dir_get_id(&ioctx, oid, imgname, &id)); ASSERT_EQ(0, dir_add_image(&ioctx, oid, imgname, valid_id)); ASSERT_EQ(0, dir_list(&ioctx, oid, "", 30, &images)); ASSERT_EQ(2u, images.size()); ASSERT_EQ(valid_id, images[imgname]); ASSERT_EQ(valid_id2, images[imgname2]); ASSERT_EQ(0, dir_remove_image(&ioctx, oid, imgname, valid_id)); ASSERT_EQ(-ENOENT, dir_remove_image(&ioctx, oid, imgname, valid_id)); ASSERT_EQ(0, dir_remove_image(&ioctx, oid, imgname2, valid_id2)); ASSERT_EQ(0, dir_list(&ioctx, oid, "", 30, &images)); ASSERT_EQ(0u, images.size()); ioctx.close(); } TEST_F(TestClsRbd, create) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); uint64_t size = 20ULL << 30; uint64_t features = 0; uint8_t order = 22; string object_prefix = oid; ASSERT_EQ(0, create_image(&ioctx, oid, size, order, features, object_prefix, -1)); ASSERT_EQ(-EEXIST, create_image(&ioctx, oid, size, order, features, object_prefix, -1)); ASSERT_EQ(0, ioctx.remove(oid)); ASSERT_EQ(-EINVAL, create_image(&ioctx, oid, size, order, features, "", -1)); ASSERT_EQ(-ENOENT, ioctx.remove(oid)); ASSERT_EQ(0, create_image(&ioctx, oid, 0, order, features, object_prefix, -1)); ASSERT_EQ(0, ioctx.remove(oid)); ASSERT_EQ(-ENOSYS, create_image(&ioctx, oid, size, order, -1, object_prefix, -1)); ASSERT_EQ(-ENOENT, ioctx.remove(oid)); ASSERT_EQ(0, create_image(&ioctx, oid, size, order, RBD_FEATURE_DATA_POOL, object_prefix, 123)); ASSERT_EQ(0, ioctx.remove(oid)); ASSERT_EQ(-EINVAL, create_image(&ioctx, oid, size, order, RBD_FEATURE_OPERATIONS, object_prefix, -1)); ASSERT_EQ(-EINVAL, create_image(&ioctx, oid, size, order, RBD_FEATURE_DATA_POOL, object_prefix, -1)); ASSERT_EQ(-EINVAL, create_image(&ioctx, oid, size, order, 0, object_prefix, 123)); bufferlist inbl, outbl; ASSERT_EQ(-EINVAL, ioctx.exec(oid, "rbd", "create", inbl, outbl)); ioctx.close(); } TEST_F(TestClsRbd, get_features) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); uint64_t features; uint64_t incompatible_features; ASSERT_EQ(-ENOENT, get_features(&ioctx, oid, false, &features, &incompatible_features)); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); ASSERT_EQ(0, get_features(&ioctx, oid, false, &features, &incompatible_features)); ASSERT_EQ(0u, features); ioctx.close(); } TEST_F(TestClsRbd, get_object_prefix) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); string object_prefix; ASSERT_EQ(-ENOENT, get_object_prefix(&ioctx, oid, &object_prefix)); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); ASSERT_EQ(0, get_object_prefix(&ioctx, oid, &object_prefix)); ASSERT_EQ(oid, object_prefix); ioctx.close(); } TEST_F(TestClsRbd, get_create_timestamp) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); utime_t timestamp; ASSERT_EQ(0, get_create_timestamp(&ioctx, oid, &timestamp)); ASSERT_LT(0U, timestamp.tv.tv_sec); ioctx.close(); } TEST_F(TestClsRbd, get_access_timestamp) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); utime_t timestamp; ASSERT_EQ(0, get_access_timestamp(&ioctx, oid, &timestamp)); ASSERT_LT(0U, timestamp.tv.tv_sec); ioctx.close(); } TEST_F(TestClsRbd, get_modify_timestamp) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); utime_t timestamp; ASSERT_EQ(0, get_modify_timestamp(&ioctx, oid, &timestamp)); ASSERT_LT(0U, timestamp.tv.tv_sec); ioctx.close(); } TEST_F(TestClsRbd, get_data_pool) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); int64_t data_pool_id; ASSERT_EQ(0, ioctx.create(oid, true)); ASSERT_EQ(0, get_data_pool(&ioctx, oid, &data_pool_id)); ASSERT_EQ(-1, data_pool_id); ASSERT_EQ(0, ioctx.remove(oid)); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, RBD_FEATURE_DATA_POOL, oid, 12)); ASSERT_EQ(0, get_data_pool(&ioctx, oid, &data_pool_id)); ASSERT_EQ(12, data_pool_id); } TEST_F(TestClsRbd, get_size) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); uint64_t size; uint8_t order; ASSERT_EQ(-ENOENT, get_size(&ioctx, oid, CEPH_NOSNAP, &size, &order)); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); ASSERT_EQ(0, get_size(&ioctx, oid, CEPH_NOSNAP, &size, &order)); ASSERT_EQ(0u, size); ASSERT_EQ(22, order); ASSERT_EQ(0, ioctx.remove(oid)); ASSERT_EQ(0, create_image(&ioctx, oid, 2 << 22, 0, 0, oid, -1)); ASSERT_EQ(0, get_size(&ioctx, oid, CEPH_NOSNAP, &size, &order)); ASSERT_EQ(2u << 22, size); ASSERT_EQ(0, order); ASSERT_EQ(-ENOENT, get_size(&ioctx, oid, 1, &size, &order)); ioctx.close(); } TEST_F(TestClsRbd, set_size) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(-ENOENT, set_size(&ioctx, oid, 5)); uint64_t size; uint8_t order; ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); ASSERT_EQ(0, get_size(&ioctx, oid, CEPH_NOSNAP, &size, &order)); ASSERT_EQ(0u, size); ASSERT_EQ(22, order); ASSERT_EQ(0, set_size(&ioctx, oid, 0)); ASSERT_EQ(0, get_size(&ioctx, oid, CEPH_NOSNAP, &size, &order)); ASSERT_EQ(0u, size); ASSERT_EQ(22, order); ASSERT_EQ(0, set_size(&ioctx, oid, 3 << 22)); ASSERT_EQ(0, get_size(&ioctx, oid, CEPH_NOSNAP, &size, &order)); ASSERT_EQ(3u << 22, size); ASSERT_EQ(22, order); ioctx.close(); } TEST_F(TestClsRbd, protection_status) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); string oid2 = get_temp_image_name(); uint8_t status = RBD_PROTECTION_STATUS_UNPROTECTED; ASSERT_EQ(-ENOENT, get_protection_status(&ioctx, oid, CEPH_NOSNAP, &status)); ASSERT_EQ(-ENOENT, set_protection_status(&ioctx, oid, CEPH_NOSNAP, status)); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, RBD_FEATURE_LAYERING, oid, -1)); ASSERT_EQ(0, create_image(&ioctx, oid2, 0, 22, 0, oid, -1)); ASSERT_EQ(-EINVAL, get_protection_status(&ioctx, oid2, CEPH_NOSNAP, &status)); ASSERT_EQ(-ENOEXEC, set_protection_status(&ioctx, oid2, CEPH_NOSNAP, status)); ASSERT_EQ(-EINVAL, get_protection_status(&ioctx, oid, CEPH_NOSNAP, &status)); ASSERT_EQ(-EINVAL, set_protection_status(&ioctx, oid, CEPH_NOSNAP, status)); ASSERT_EQ(-ENOENT, get_protection_status(&ioctx, oid, 2, &status)); ASSERT_EQ(-ENOENT, set_protection_status(&ioctx, oid, 2, status)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 10, "snap1")); ASSERT_EQ(0, get_protection_status(&ioctx, oid, 10, &status)); ASSERT_EQ(+RBD_PROTECTION_STATUS_UNPROTECTED, status); ASSERT_EQ(0, set_protection_status(&ioctx, oid, 10, RBD_PROTECTION_STATUS_PROTECTED)); ASSERT_EQ(0, get_protection_status(&ioctx, oid, 10, &status)); ASSERT_EQ(+RBD_PROTECTION_STATUS_PROTECTED, status); ASSERT_EQ(-EBUSY, snapshot_remove(&ioctx, oid, 10)); ASSERT_EQ(0, set_protection_status(&ioctx, oid, 10, RBD_PROTECTION_STATUS_UNPROTECTING)); ASSERT_EQ(0, get_protection_status(&ioctx, oid, 10, &status)); ASSERT_EQ(+RBD_PROTECTION_STATUS_UNPROTECTING, status); ASSERT_EQ(-EBUSY, snapshot_remove(&ioctx, oid, 10)); ASSERT_EQ(-EINVAL, set_protection_status(&ioctx, oid, 10, RBD_PROTECTION_STATUS_LAST)); ASSERT_EQ(0, get_protection_status(&ioctx, oid, 10, &status)); ASSERT_EQ(+RBD_PROTECTION_STATUS_UNPROTECTING, status); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 20, "snap2")); ASSERT_EQ(0, get_protection_status(&ioctx, oid, 20, &status)); ASSERT_EQ(+RBD_PROTECTION_STATUS_UNPROTECTED, status); ASSERT_EQ(0, set_protection_status(&ioctx, oid, 10, RBD_PROTECTION_STATUS_UNPROTECTED)); ASSERT_EQ(0, get_protection_status(&ioctx, oid, 10, &status)); ASSERT_EQ(+RBD_PROTECTION_STATUS_UNPROTECTED, status); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 10)); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 20)); ioctx.close(); } TEST_F(TestClsRbd, snapshot_limits) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); librados::ObjectWriteOperation op; string oid = get_temp_image_name(); uint64_t limit; ASSERT_EQ(-ENOENT, snapshot_get_limit(&ioctx, oid, &limit)); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, RBD_FEATURE_LAYERING, oid, -1)); // if snapshot doesn't set limit, the limit is UINT64_MAX ASSERT_EQ(0, snapshot_get_limit(&ioctx, oid, &limit)); ASSERT_EQ(UINT64_MAX, limit); snapshot_set_limit(&op, 2); ASSERT_EQ(0, ioctx.operate(oid, &op)); ASSERT_EQ(0, snapshot_get_limit(&ioctx, oid, &limit)); ASSERT_EQ(2U, limit); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 10, "snap1")); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 20, "snap2")); ASSERT_EQ(-EDQUOT, snapshot_add(&ioctx, oid, 30, "snap3")); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 10)); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 20)); ioctx.close(); } TEST_F(TestClsRbd, parents_v1) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); cls::rbd::ParentImageSpec pspec; uint64_t size; ASSERT_EQ(-ENOENT, get_parent(&ioctx, "doesnotexist", CEPH_NOSNAP, &pspec, &size)); // old image should fail std::string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 33<<20, 22, 0, "old_blk.", -1)); // get nonexistent parent: succeed, return (-1, "", CEPH_NOSNAP), overlap 0 ASSERT_EQ(0, get_parent(&ioctx, oid, CEPH_NOSNAP, &pspec, &size)); ASSERT_EQ(pspec.pool_id, -1); ASSERT_STREQ("", pspec.image_id.c_str()); ASSERT_EQ(pspec.snap_id, CEPH_NOSNAP); ASSERT_EQ(size, 0ULL); pspec = {-1, "", "parent", 3}; ASSERT_EQ(-ENOEXEC, set_parent(&ioctx, oid, {-1, "", "parent", 3}, 10<<20)); ASSERT_EQ(-ENOEXEC, remove_parent(&ioctx, oid)); // new image will work oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 33<<20, 22, RBD_FEATURE_LAYERING, "foo.", -1)); ASSERT_EQ(0, get_parent(&ioctx, oid, CEPH_NOSNAP, &pspec, &size)); ASSERT_EQ(-1, pspec.pool_id); ASSERT_EQ(0, get_parent(&ioctx, oid, 123, &pspec, &size)); ASSERT_EQ(-1, pspec.pool_id); ASSERT_EQ(-EINVAL, set_parent(&ioctx, oid, {-1, "", "parent", 3}, 10<<20)); ASSERT_EQ(-EINVAL, set_parent(&ioctx, oid, {1, "", "", 3}, 10<<20)); ASSERT_EQ(-EINVAL, set_parent(&ioctx, oid, {1, "", "parent", CEPH_NOSNAP}, 10<<20)); ASSERT_EQ(-EINVAL, set_parent(&ioctx, oid, {1, "", "parent", 3}, 0)); pspec = {1, "", "parent", 3}; ASSERT_EQ(0, set_parent(&ioctx, oid, pspec, 10<<20)); ASSERT_EQ(-EEXIST, set_parent(&ioctx, oid, pspec, 10<<20)); ASSERT_EQ(-EEXIST, set_parent(&ioctx, oid, {2, "", "parent", 34}, 10<<20)); ASSERT_EQ(0, get_parent(&ioctx, oid, CEPH_NOSNAP, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(0, remove_parent(&ioctx, oid)); ASSERT_EQ(-ENOENT, remove_parent(&ioctx, oid)); ASSERT_EQ(0, get_parent(&ioctx, oid, CEPH_NOSNAP, &pspec, &size)); ASSERT_EQ(-1, pspec.pool_id); // snapshots ASSERT_EQ(0, set_parent(&ioctx, oid, {1, "", "parent", 3}, 10<<20)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 10, "snap1")); ASSERT_EQ(0, get_parent(&ioctx, oid, 10, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 10ull<<20); ASSERT_EQ(0, remove_parent(&ioctx, oid)); ASSERT_EQ(0, set_parent(&ioctx, oid, {1, "", "parent", 3}, 5<<20)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 11, "snap2")); ASSERT_EQ(0, get_parent(&ioctx, oid, 10, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 10ull<<20); ASSERT_EQ(0, get_parent(&ioctx, oid, 11, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 5ull<<20); ASSERT_EQ(0, remove_parent(&ioctx, oid)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 12, "snap3")); ASSERT_EQ(0, get_parent(&ioctx, oid, 10, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 10ull<<20); ASSERT_EQ(0, get_parent(&ioctx, oid, 11, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 5ull<<20); ASSERT_EQ(0, get_parent(&ioctx, oid, 12, &pspec, &size)); ASSERT_EQ(-1, pspec.pool_id); // make sure set_parent takes min of our size and parent's size ASSERT_EQ(0, set_parent(&ioctx, oid, {1, "", "parent", 3}, 1<<20)); ASSERT_EQ(0, get_parent(&ioctx, oid, CEPH_NOSNAP, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 1ull<<20); ASSERT_EQ(0, remove_parent(&ioctx, oid)); ASSERT_EQ(0, set_parent(&ioctx, oid, {1, "", "parent", 3}, 100<<20)); ASSERT_EQ(0, get_parent(&ioctx, oid, CEPH_NOSNAP, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 33ull<<20); ASSERT_EQ(0, remove_parent(&ioctx, oid)); // make sure resize adjust parent overlap ASSERT_EQ(0, set_parent(&ioctx, oid, {1, "", "parent", 3}, 10<<20)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 14, "snap4")); ASSERT_EQ(0, set_size(&ioctx, oid, 3 << 20)); ASSERT_EQ(0, get_parent(&ioctx, oid, CEPH_NOSNAP, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 3ull<<20); ASSERT_EQ(0, get_parent(&ioctx, oid, 14, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 10ull<<20); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 15, "snap5")); ASSERT_EQ(0, set_size(&ioctx, oid, 30 << 20)); ASSERT_EQ(0, get_parent(&ioctx, oid, CEPH_NOSNAP, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 3ull<<20); ASSERT_EQ(0, get_parent(&ioctx, oid, 14, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 10ull<<20); ASSERT_EQ(0, get_parent(&ioctx, oid, 15, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 3ull<<20); ASSERT_EQ(0, set_size(&ioctx, oid, 2 << 20)); ASSERT_EQ(0, get_parent(&ioctx, oid, CEPH_NOSNAP, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 2ull<<20); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 16, "snap6")); ASSERT_EQ(0, get_parent(&ioctx, oid, 16, &pspec, &size)); ASSERT_EQ(pspec.pool_id, 1); ASSERT_EQ(pspec.image_id, "parent"); ASSERT_EQ(pspec.snap_id, snapid_t(3)); ASSERT_EQ(size, 2ull<<20); ASSERT_EQ(0, ioctx.remove(oid)); ASSERT_EQ(0, create_image(&ioctx, oid, 33<<20, 22, RBD_FEATURE_LAYERING | RBD_FEATURE_DEEP_FLATTEN, "foo.", -1)); ASSERT_EQ(0, set_parent(&ioctx, oid, {1, "", "parent", 3}, 100<<20)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 1, "snap1")); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 2, "snap2")); ASSERT_EQ(0, remove_parent(&ioctx, oid)); ASSERT_EQ(0, get_parent(&ioctx, oid, 1, &pspec, &size)); ASSERT_EQ(-1, pspec.pool_id); ASSERT_EQ(0, get_parent(&ioctx, oid, 2, &pspec, &size)); ASSERT_EQ(-1, pspec.pool_id); ASSERT_EQ(0, get_parent(&ioctx, oid, CEPH_NOSNAP, &pspec, &size)); ASSERT_EQ(-1, pspec.pool_id); ioctx.close(); } TEST_F(TestClsRbd, parents_v2) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); std::string oid = get_temp_image_name(); cls::rbd::ParentImageSpec parent_image_spec; std::optional<uint64_t> parent_overlap; ASSERT_EQ(-ENOENT, parent_get(&ioctx, oid, &parent_image_spec)); ASSERT_EQ(-ENOENT, parent_overlap_get(&ioctx, oid, CEPH_NOSNAP, &parent_overlap)); ASSERT_EQ(-ENOENT, parent_attach(&ioctx, oid, parent_image_spec, 0ULL, false)); ASSERT_EQ(-ENOENT, parent_detach(&ioctx, oid)); // no layering support should fail oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 33<<20, 22, 0, "old_blk.", -1)); ASSERT_EQ(0, parent_get(&ioctx, oid, &parent_image_spec)); ASSERT_FALSE(parent_image_spec.exists()); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, CEPH_NOSNAP, &parent_overlap)); ASSERT_EQ(std::nullopt, parent_overlap); ASSERT_EQ(-ENOEXEC, parent_attach(&ioctx, oid, parent_image_spec, 0ULL, false)); ASSERT_EQ(-ENOEXEC, parent_detach(&ioctx, oid)); // layering support available -- no pool namespaces oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 33<<20, 22, RBD_FEATURE_LAYERING, "foo.", -1)); ASSERT_EQ(0, parent_get(&ioctx, oid, &parent_image_spec)); ASSERT_FALSE(parent_image_spec.exists()); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, CEPH_NOSNAP, &parent_overlap)); ASSERT_EQ(std::nullopt, parent_overlap); ASSERT_EQ(-EINVAL, parent_attach(&ioctx, oid, parent_image_spec, 0ULL, false)); ASSERT_EQ(-ENOENT, parent_detach(&ioctx, oid)); parent_image_spec = {1, "", "parent", 2}; parent_overlap = (33 << 20) + 1; ASSERT_EQ(0, parent_attach(&ioctx, oid, parent_image_spec, *parent_overlap, false)); ASSERT_EQ(-EEXIST, parent_attach(&ioctx, oid, parent_image_spec, *parent_overlap, false)); ASSERT_EQ(0, parent_attach(&ioctx, oid, parent_image_spec, *parent_overlap, true)); --(*parent_overlap); cls::rbd::ParentImageSpec on_disk_parent_image_spec; std::optional<uint64_t> on_disk_parent_overlap; ASSERT_EQ(0, parent_get(&ioctx, oid, &on_disk_parent_image_spec)); ASSERT_EQ(parent_image_spec, on_disk_parent_image_spec); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, CEPH_NOSNAP, &on_disk_parent_overlap)); ASSERT_EQ(parent_overlap, on_disk_parent_overlap); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 10, "snap1")); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, 10, &on_disk_parent_overlap)); std::optional<uint64_t> snap_1_parent_overlap = parent_overlap; ASSERT_EQ(snap_1_parent_overlap, on_disk_parent_overlap); parent_overlap = (32 << 20); ASSERT_EQ(0, set_size(&ioctx, oid, *parent_overlap)); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, CEPH_NOSNAP, &on_disk_parent_overlap)); ASSERT_EQ(parent_overlap, on_disk_parent_overlap); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, 10, &on_disk_parent_overlap)); ASSERT_EQ(snap_1_parent_overlap, on_disk_parent_overlap); ASSERT_EQ(0, parent_detach(&ioctx, oid)); ASSERT_EQ(-ENOENT, parent_detach(&ioctx, oid)); ASSERT_EQ(0, parent_get(&ioctx, oid, &on_disk_parent_image_spec)); ASSERT_EQ(parent_image_spec, on_disk_parent_image_spec); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, CEPH_NOSNAP, &on_disk_parent_overlap)); ASSERT_EQ(std::nullopt, on_disk_parent_overlap); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 10)); ASSERT_EQ(0, parent_get(&ioctx, oid, &on_disk_parent_image_spec)); ASSERT_FALSE(on_disk_parent_image_spec.exists()); // clone across pool namespaces parent_image_spec.pool_namespace = "ns"; parent_overlap = 31 << 20; ASSERT_EQ(0, parent_attach(&ioctx, oid, parent_image_spec, *parent_overlap, false)); ASSERT_EQ(-EEXIST, parent_attach(&ioctx, oid, parent_image_spec, *parent_overlap, false)); ASSERT_EQ(0, parent_attach(&ioctx, oid, parent_image_spec, *parent_overlap, true)); ASSERT_EQ(0, parent_get(&ioctx, oid, &on_disk_parent_image_spec)); ASSERT_EQ(parent_image_spec, on_disk_parent_image_spec); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, CEPH_NOSNAP, &on_disk_parent_overlap)); ASSERT_EQ(parent_overlap, on_disk_parent_overlap); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 10, "snap1")); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, 10, &on_disk_parent_overlap)); snap_1_parent_overlap = parent_overlap; ASSERT_EQ(snap_1_parent_overlap, on_disk_parent_overlap); parent_overlap = (30 << 20); ASSERT_EQ(0, set_size(&ioctx, oid, *parent_overlap)); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, CEPH_NOSNAP, &on_disk_parent_overlap)); ASSERT_EQ(parent_overlap, on_disk_parent_overlap); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, 10, &on_disk_parent_overlap)); ASSERT_EQ(snap_1_parent_overlap, on_disk_parent_overlap); ASSERT_EQ(-EXDEV, remove_parent(&ioctx, oid)); ASSERT_EQ(0, parent_detach(&ioctx, oid)); ASSERT_EQ(-ENOENT, parent_detach(&ioctx, oid)); cls::rbd::ParentImageSpec on_disk_parent_spec; uint64_t legacy_parent_overlap; ASSERT_EQ(-EXDEV, get_parent(&ioctx, oid, CEPH_NOSNAP, &on_disk_parent_spec, &legacy_parent_overlap)); ASSERT_EQ(-EXDEV, get_parent(&ioctx, oid, 10, &on_disk_parent_spec, &legacy_parent_overlap)); ASSERT_EQ(0, parent_get(&ioctx, oid, &on_disk_parent_image_spec)); ASSERT_EQ(parent_image_spec, on_disk_parent_image_spec); ASSERT_EQ(0, parent_overlap_get(&ioctx, oid, CEPH_NOSNAP, &on_disk_parent_overlap)); ASSERT_EQ(std::nullopt, on_disk_parent_overlap); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 10)); ASSERT_EQ(0, parent_get(&ioctx, oid, &on_disk_parent_image_spec)); ASSERT_FALSE(on_disk_parent_image_spec.exists()); } TEST_F(TestClsRbd, snapshots) { cls::rbd::SnapshotNamespace userSnapNamespace = cls::rbd::UserSnapshotNamespace(); librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(-ENOENT, snapshot_add(&ioctx, oid, 0, "snap1")); ASSERT_EQ(0, create_image(&ioctx, oid, 10, 22, 0, oid, -1)); SnapContext snapc; cls::rbd::SnapshotInfo snap; std::string snap_name; uint64_t snap_size; uint8_t snap_order; ParentImageInfo parent; uint8_t protection_status; utime_t snap_timestamp; ASSERT_EQ(0, get_snapcontext(&ioctx, oid, &snapc)); ASSERT_EQ(0u, snapc.snaps.size()); ASSERT_EQ(0u, snapc.seq); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 0, "snap1")); ASSERT_EQ(0, get_snapcontext(&ioctx, oid, &snapc)); ASSERT_EQ(1u, snapc.snaps.size()); ASSERT_EQ(0u, snapc.snaps[0]); ASSERT_EQ(0u, snapc.seq); ASSERT_EQ(0, snapshot_get(&ioctx, oid, 0, &snap)); ASSERT_EQ("snap1", snap.name); ASSERT_EQ(userSnapNamespace, snap.snapshot_namespace); ASSERT_EQ(0, get_snapshot_name(&ioctx, oid, 0, &snap_name)); ASSERT_EQ("snap1", snap_name); ASSERT_EQ(0, get_size(&ioctx, oid, 0, &snap_size, &snap_order)); ASSERT_EQ(10U, snap_size); ASSERT_EQ(0, get_parent(&ioctx, oid, 0, &parent.spec, &parent.overlap)); ASSERT_EQ(0, get_protection_status(&ioctx, oid, 0, &protection_status)); ASSERT_EQ(0, get_snapshot_timestamp(&ioctx, oid, 0, &snap_timestamp)); // snap with same id and name ASSERT_EQ(-EEXIST, snapshot_add(&ioctx, oid, 0, "snap1")); ASSERT_EQ(0, get_snapcontext(&ioctx, oid, &snapc)); ASSERT_EQ(1u, snapc.snaps.size()); ASSERT_EQ(0u, snapc.snaps[0]); ASSERT_EQ(0u, snapc.seq); // snap with same id, different name ASSERT_EQ(-EEXIST, snapshot_add(&ioctx, oid, 0, "snap2")); ASSERT_EQ(0, get_snapcontext(&ioctx, oid, &snapc)); ASSERT_EQ(1u, snapc.snaps.size()); ASSERT_EQ(0u, snapc.snaps[0]); ASSERT_EQ(0u, snapc.seq); // snap with different id, same name ASSERT_EQ(-EEXIST, snapshot_add(&ioctx, oid, 1, "snap1")); ASSERT_EQ(0, get_snapcontext(&ioctx, oid, &snapc)); ASSERT_EQ(1u, snapc.snaps.size()); ASSERT_EQ(0u, snapc.snaps[0]); ASSERT_EQ(0u, snapc.seq); // snap with different id, different name ASSERT_EQ(0, snapshot_add(&ioctx, oid, 1, "snap2")); ASSERT_EQ(0, get_snapcontext(&ioctx, oid, &snapc)); ASSERT_EQ(2u, snapc.snaps.size()); ASSERT_EQ(1u, snapc.snaps[0]); ASSERT_EQ(0u, snapc.snaps[1]); ASSERT_EQ(1u, snapc.seq); // snap id less than current snap seq ASSERT_EQ(-ESTALE, snapshot_add(&ioctx, oid, 0, "snap3")); ASSERT_EQ(0, snapshot_get(&ioctx, oid, 1, &snap)); ASSERT_EQ("snap2", snap.name); ASSERT_EQ(userSnapNamespace, snap.snapshot_namespace); ASSERT_EQ(0, get_snapshot_name(&ioctx, oid, 1, &snap_name)); ASSERT_EQ("snap2", snap_name); ASSERT_EQ(0, get_size(&ioctx, oid, 1, &snap_size, &snap_order)); ASSERT_EQ(10U, snap_size); ASSERT_EQ(0, get_parent(&ioctx, oid, 1, &parent.spec, &parent.overlap)); ASSERT_EQ(0, get_protection_status(&ioctx, oid, 1, &protection_status)); ASSERT_EQ(0, get_snapshot_timestamp(&ioctx, oid, 1, &snap_timestamp)); ASSERT_EQ(0, snapshot_rename(&ioctx, oid, 0, "snap1-rename")); ASSERT_EQ(0, snapshot_get(&ioctx, oid, 0, &snap)); ASSERT_EQ("snap1-rename", snap.name); ASSERT_EQ(0, get_snapshot_name(&ioctx, oid, 0, &snap_name)); ASSERT_EQ("snap1-rename", snap_name); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 0)); ASSERT_EQ(0, get_snapcontext(&ioctx, oid, &snapc)); ASSERT_EQ(1u, snapc.snaps.size()); ASSERT_EQ(1u, snapc.snaps[0]); ASSERT_EQ(1u, snapc.seq); uint64_t size; uint8_t order; ASSERT_EQ(0, set_size(&ioctx, oid, 0)); ASSERT_EQ(0, get_size(&ioctx, oid, CEPH_NOSNAP, &size, &order)); ASSERT_EQ(0u, size); ASSERT_EQ(22u, order); uint64_t large_snap_id = 1ull << 63; ASSERT_EQ(0, snapshot_add(&ioctx, oid, large_snap_id, "snap3")); ASSERT_EQ(0, get_snapcontext(&ioctx, oid, &snapc)); ASSERT_EQ(2u, snapc.snaps.size()); ASSERT_EQ(large_snap_id, snapc.snaps[0]); ASSERT_EQ(1u, snapc.snaps[1]); ASSERT_EQ(large_snap_id, snapc.seq); ASSERT_EQ(0, snapshot_get(&ioctx, oid, large_snap_id, &snap)); ASSERT_EQ("snap3", snap.name); ASSERT_EQ(0, get_snapshot_name(&ioctx, oid, large_snap_id, &snap_name)); ASSERT_EQ("snap3", snap_name); ASSERT_EQ(0, get_size(&ioctx, oid, large_snap_id, &snap_size, &snap_order)); ASSERT_EQ(0U, snap_size); ASSERT_EQ(22u, snap_order); ASSERT_EQ(0, get_size(&ioctx, oid, 1, &snap_size, &snap_order)); ASSERT_EQ(10u, snap_size); ASSERT_EQ(22u, snap_order); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, large_snap_id)); ASSERT_EQ(0, get_snapcontext(&ioctx, oid, &snapc)); ASSERT_EQ(1u, snapc.snaps.size()); ASSERT_EQ(1u, snapc.snaps[0]); ASSERT_EQ(large_snap_id, snapc.seq); ASSERT_EQ(-ENOENT, snapshot_remove(&ioctx, oid, large_snap_id)); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 1)); ASSERT_EQ(0, get_snapcontext(&ioctx, oid, &snapc)); ASSERT_EQ(0u, snapc.snaps.size()); ASSERT_EQ(large_snap_id, snapc.seq); ioctx.close(); } TEST_F(TestClsRbd, snapid_race) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); buffer::list bl; buffer::ptr bp(4096); bp.zero(); bl.append(bp); string oid = get_temp_image_name(); ASSERT_EQ(0, ioctx.write(oid, bl, 4096, 0)); ASSERT_EQ(0, old_snapshot_add(&ioctx, oid, 1, "test1")); ASSERT_EQ(0, old_snapshot_add(&ioctx, oid, 3, "test3")); ASSERT_EQ(-ESTALE, old_snapshot_add(&ioctx, oid, 2, "test2")); ioctx.close(); } TEST_F(TestClsRbd, stripingv2) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); string oid2 = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 10, 22, 0, oid, -1)); uint64_t su = 65536, sc = 12; ASSERT_EQ(-ENOEXEC, get_stripe_unit_count(&ioctx, oid, &su, &sc)); ASSERT_EQ(-ENOEXEC, set_stripe_unit_count(&ioctx, oid, su, sc)); ASSERT_EQ(0, create_image(&ioctx, oid2, 10, 22, RBD_FEATURE_STRIPINGV2, oid2, -1)); ASSERT_EQ(0, get_stripe_unit_count(&ioctx, oid2, &su, &sc)); ASSERT_EQ(1ull << 22, su); ASSERT_EQ(1ull, sc); su = 8192; sc = 456; ASSERT_EQ(0, set_stripe_unit_count(&ioctx, oid2, su, sc)); su = sc = 0; ASSERT_EQ(0, get_stripe_unit_count(&ioctx, oid2, &su, &sc)); ASSERT_EQ(8192ull, su); ASSERT_EQ(456ull, sc); // su must not be larger than an object ASSERT_EQ(-EINVAL, set_stripe_unit_count(&ioctx, oid2, 1 << 23, 1)); // su must be a factor of object size ASSERT_EQ(-EINVAL, set_stripe_unit_count(&ioctx, oid2, 511, 1)); // su and sc must be non-zero ASSERT_EQ(-EINVAL, set_stripe_unit_count(&ioctx, oid2, 0, 1)); ASSERT_EQ(-EINVAL, set_stripe_unit_count(&ioctx, oid2, 1, 0)); ASSERT_EQ(-EINVAL, set_stripe_unit_count(&ioctx, oid2, 0, 0)); ioctx.close(); } TEST_F(TestClsRbd, object_map_save) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); BitVector<2> ref_bit_vector; ref_bit_vector.resize(32); for (uint64_t i = 0; i < ref_bit_vector.size(); ++i) { ref_bit_vector[i] = 1; } librados::ObjectWriteOperation op; object_map_save(&op, ref_bit_vector); ASSERT_EQ(0, ioctx.operate(oid, &op)); BitVector<2> osd_bit_vector; ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); } TEST_F(TestClsRbd, object_map_resize) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); BitVector<2> ref_bit_vector; ref_bit_vector.resize(32); for (uint64_t i = 0; i < ref_bit_vector.size(); ++i) { ref_bit_vector[i] = 1; } librados::ObjectWriteOperation op1; object_map_resize(&op1, ref_bit_vector.size(), 1); ASSERT_EQ(0, ioctx.operate(oid, &op1)); BitVector<2> osd_bit_vector; ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); ref_bit_vector.resize(64); for (uint64_t i = 32; i < ref_bit_vector.size(); ++i) { ref_bit_vector[i] = 2; } librados::ObjectWriteOperation op2; object_map_resize(&op2, ref_bit_vector.size(), 2); ASSERT_EQ(0, ioctx.operate(oid, &op2)); ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); ref_bit_vector.resize(32); librados::ObjectWriteOperation op3; object_map_resize(&op3, ref_bit_vector.size(), 1); ASSERT_EQ(-ESTALE, ioctx.operate(oid, &op3)); librados::ObjectWriteOperation op4; object_map_resize(&op4, ref_bit_vector.size(), 2); ASSERT_EQ(0, ioctx.operate(oid, &op4)); ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); ioctx.close(); } TEST_F(TestClsRbd, object_map_update) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); BitVector<2> ref_bit_vector; ref_bit_vector.resize(16); for (uint64_t i = 0; i < ref_bit_vector.size(); ++i) { ref_bit_vector[i] = 2; } BitVector<2> osd_bit_vector; librados::ObjectWriteOperation op1; object_map_resize(&op1, ref_bit_vector.size(), 2); ASSERT_EQ(0, ioctx.operate(oid, &op1)); ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); ref_bit_vector[7] = 1; ref_bit_vector[8] = 1; librados::ObjectWriteOperation op2; object_map_update(&op2, 7, 9, 1, boost::optional<uint8_t>()); ASSERT_EQ(0, ioctx.operate(oid, &op2)); ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); ref_bit_vector[7] = 3; ref_bit_vector[8] = 3; librados::ObjectWriteOperation op3; object_map_update(&op3, 6, 10, 3, 1); ASSERT_EQ(0, ioctx.operate(oid, &op3)); ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); ioctx.close(); } TEST_F(TestClsRbd, object_map_load_enoent) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); BitVector<2> osd_bit_vector; ASSERT_EQ(-ENOENT, object_map_load(&ioctx, oid, &osd_bit_vector)); ioctx.close(); } TEST_F(TestClsRbd, object_map_snap_add) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); BitVector<2> ref_bit_vector; ref_bit_vector.resize(16); for (uint64_t i = 0; i < ref_bit_vector.size(); ++i) { if (i < 4) { ref_bit_vector[i] = OBJECT_NONEXISTENT; } else { ref_bit_vector[i] = OBJECT_EXISTS; } } BitVector<2> osd_bit_vector; librados::ObjectWriteOperation op1; object_map_resize(&op1, ref_bit_vector.size(), OBJECT_EXISTS); ASSERT_EQ(0, ioctx.operate(oid, &op1)); librados::ObjectWriteOperation op2; object_map_update(&op2, 0, 4, OBJECT_NONEXISTENT, boost::optional<uint8_t>()); ASSERT_EQ(0, ioctx.operate(oid, &op2)); ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); librados::ObjectWriteOperation op3; object_map_snap_add(&op3); ASSERT_EQ(0, ioctx.operate(oid, &op3)); for (uint64_t i = 0; i < ref_bit_vector.size(); ++i) { if (ref_bit_vector[i] == OBJECT_EXISTS) { ref_bit_vector[i] = OBJECT_EXISTS_CLEAN; } } ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); } TEST_F(TestClsRbd, object_map_snap_remove) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); BitVector<2> ref_bit_vector; ref_bit_vector.resize(16); for (uint64_t i = 0; i < ref_bit_vector.size(); ++i) { if (i < 4) { ref_bit_vector[i] = OBJECT_EXISTS_CLEAN; } else { ref_bit_vector[i] = OBJECT_EXISTS; } } BitVector<2> osd_bit_vector; librados::ObjectWriteOperation op1; object_map_resize(&op1, ref_bit_vector.size(), OBJECT_EXISTS); ASSERT_EQ(0, ioctx.operate(oid, &op1)); librados::ObjectWriteOperation op2; object_map_update(&op2, 0, 4, OBJECT_EXISTS_CLEAN, boost::optional<uint8_t>()); ASSERT_EQ(0, ioctx.operate(oid, &op2)); ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); BitVector<2> snap_bit_vector; snap_bit_vector.resize(4); for (uint64_t i = 0; i < snap_bit_vector.size(); ++i) { if (i == 1 || i == 2) { snap_bit_vector[i] = OBJECT_EXISTS; } else { snap_bit_vector[i] = OBJECT_NONEXISTENT; } } librados::ObjectWriteOperation op3; object_map_snap_remove(&op3, snap_bit_vector); ASSERT_EQ(0, ioctx.operate(oid, &op3)); ref_bit_vector[1] = OBJECT_EXISTS; ref_bit_vector[2] = OBJECT_EXISTS; ASSERT_EQ(0, object_map_load(&ioctx, oid, &osd_bit_vector)); ASSERT_EQ(ref_bit_vector, osd_bit_vector); } TEST_F(TestClsRbd, flags) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); uint64_t flags; ASSERT_EQ(0, get_flags(&ioctx, oid, CEPH_NOSNAP, &flags)); ASSERT_EQ(0U, flags); librados::ObjectWriteOperation op1; set_flags(&op1, CEPH_NOSNAP, 3, 2); ASSERT_EQ(0, ioctx.operate(oid, &op1)); ASSERT_EQ(0, get_flags(&ioctx, oid, CEPH_NOSNAP, &flags)); ASSERT_EQ(2U, flags); uint64_t snap_id = 10; ASSERT_EQ(-ENOENT, get_flags(&ioctx, oid, snap_id, &flags)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, snap_id, "snap")); librados::ObjectWriteOperation op2; set_flags(&op2, snap_id, 31, 4); ASSERT_EQ(0, ioctx.operate(oid, &op2)); ASSERT_EQ(0, get_flags(&ioctx, oid, snap_id, &flags)); ASSERT_EQ(6U, flags); ioctx.close(); } TEST_F(TestClsRbd, metadata) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); map<string, bufferlist> pairs; string value; ASSERT_EQ(0, metadata_list(&ioctx, oid, "", 0, &pairs)); ASSERT_TRUE(pairs.empty()); pairs["key1"].append("value1"); pairs["key2"].append("value2"); ASSERT_EQ(0, metadata_set(&ioctx, oid, pairs)); ASSERT_EQ(0, metadata_get(&ioctx, oid, "key1", &value)); ASSERT_EQ(0, strcmp("value1", value.c_str())); pairs.clear(); ASSERT_EQ(0, metadata_list(&ioctx, oid, "", 0, &pairs)); ASSERT_EQ(2U, pairs.size()); ASSERT_EQ(0, strncmp("value1", pairs["key1"].c_str(), 6)); ASSERT_EQ(0, strncmp("value2", pairs["key2"].c_str(), 6)); pairs.clear(); ASSERT_EQ(0, metadata_remove(&ioctx, oid, "key1")); ASSERT_EQ(0, metadata_remove(&ioctx, oid, "key3")); ASSERT_TRUE(metadata_get(&ioctx, oid, "key1", &value) < 0); ASSERT_EQ(0, metadata_list(&ioctx, oid, "", 0, &pairs)); ASSERT_EQ(1U, pairs.size()); ASSERT_EQ(0, strncmp("value2", pairs["key2"].c_str(), 6)); pairs.clear(); char key[10], val[20]; for (int i = 0; i < 1024; i++) { sprintf(key, "key%d", i); sprintf(val, "value%d", i); pairs[key].append(val, strlen(val)); } ASSERT_EQ(0, metadata_set(&ioctx, oid, pairs)); string last_read = ""; uint64_t max_read = 48, r; uint64_t size = 0; map<string, bufferlist> data; do { map<string, bufferlist> cur; metadata_list(&ioctx, oid, last_read, max_read, &cur); size += cur.size(); for (map<string, bufferlist>::iterator it = cur.begin(); it != cur.end(); ++it) data[it->first] = it->second; last_read = cur.rbegin()->first; r = cur.size(); } while (r == max_read); ASSERT_EQ(size, 1024U); for (map<string, bufferlist>::iterator it = data.begin(); it != data.end(); ++it) { ASSERT_TRUE(it->second.contents_equal(pairs[it->first])); } ioctx.close(); } TEST_F(TestClsRbd, set_features) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); uint64_t base_features = RBD_FEATURE_LAYERING | RBD_FEATURE_DEEP_FLATTEN; ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, base_features, oid, -1)); uint64_t features = RBD_FEATURES_MUTABLE; uint64_t mask = RBD_FEATURES_MUTABLE; ASSERT_EQ(0, set_features(&ioctx, oid, features, mask)); uint64_t actual_features; uint64_t incompatible_features; ASSERT_EQ(0, get_features(&ioctx, oid, true, &actual_features, &incompatible_features)); uint64_t expected_features = RBD_FEATURES_MUTABLE | base_features; ASSERT_EQ(expected_features, actual_features); features = 0; mask = RBD_FEATURE_OBJECT_MAP; ASSERT_EQ(0, set_features(&ioctx, oid, features, mask)); ASSERT_EQ(0, get_features(&ioctx, oid, true, &actual_features, &incompatible_features)); expected_features = (RBD_FEATURES_MUTABLE | base_features) & ~RBD_FEATURE_OBJECT_MAP; ASSERT_EQ(expected_features, actual_features); ASSERT_EQ(0, set_features(&ioctx, oid, 0, RBD_FEATURE_DEEP_FLATTEN)); ASSERT_EQ(-EINVAL, set_features(&ioctx, oid, RBD_FEATURE_DEEP_FLATTEN, RBD_FEATURE_DEEP_FLATTEN)); ASSERT_EQ(-EINVAL, set_features(&ioctx, oid, 0, RBD_FEATURE_LAYERING)); ASSERT_EQ(-EINVAL, set_features(&ioctx, oid, 0, RBD_FEATURE_OPERATIONS)); } TEST_F(TestClsRbd, mirror) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); ioctx.remove(RBD_MIRRORING); std::vector<cls::rbd::MirrorPeer> peers; ASSERT_EQ(-ENOENT, mirror_peer_list(&ioctx, &peers)); std::string uuid; ASSERT_EQ(-ENOENT, mirror_uuid_get(&ioctx, &uuid)); ASSERT_EQ(-EINVAL, mirror_peer_add(&ioctx, {"uuid1", MIRROR_PEER_DIRECTION_RX, "siteA", "client", "mirror uuid"})); ASSERT_EQ(-EINVAL, mirror_peer_ping(&ioctx, "siteA", "mirror uuid")); cls::rbd::MirrorMode mirror_mode; ASSERT_EQ(0, mirror_mode_get(&ioctx, &mirror_mode)); ASSERT_EQ(cls::rbd::MIRROR_MODE_DISABLED, mirror_mode); ASSERT_EQ(-EINVAL, mirror_mode_set(&ioctx, cls::rbd::MIRROR_MODE_IMAGE)); ASSERT_EQ(-EINVAL, mirror_uuid_set(&ioctx, "")); ASSERT_EQ(0, mirror_uuid_set(&ioctx, "mirror-uuid")); ASSERT_EQ(0, mirror_uuid_get(&ioctx, &uuid)); ASSERT_EQ("mirror-uuid", uuid); ASSERT_EQ(0, mirror_mode_set(&ioctx, cls::rbd::MIRROR_MODE_IMAGE)); ASSERT_EQ(0, mirror_mode_get(&ioctx, &mirror_mode)); ASSERT_EQ(cls::rbd::MIRROR_MODE_IMAGE, mirror_mode); ASSERT_EQ(-EINVAL, mirror_uuid_set(&ioctx, "new-mirror-uuid")); ASSERT_EQ(0, mirror_mode_set(&ioctx, cls::rbd::MIRROR_MODE_POOL)); ASSERT_EQ(0, mirror_mode_get(&ioctx, &mirror_mode)); ASSERT_EQ(cls::rbd::MIRROR_MODE_POOL, mirror_mode); ASSERT_EQ(-EINVAL, mirror_peer_add(&ioctx, {"mirror-uuid", MIRROR_PEER_DIRECTION_RX, "siteA", "client", ""})); ASSERT_EQ(-EINVAL, mirror_peer_add(&ioctx, {"uuid1", MIRROR_PEER_DIRECTION_TX, "siteA", "client", "mirror uuid"})); ASSERT_EQ(0, mirror_peer_add(&ioctx, {"uuid1", MIRROR_PEER_DIRECTION_RX, "siteA", "client", "fsidA"})); ASSERT_EQ(0, mirror_peer_add(&ioctx, {"uuid2", MIRROR_PEER_DIRECTION_RX, "siteB", "admin", ""})); ASSERT_EQ(-ESTALE, mirror_peer_add(&ioctx, {"uuid2", MIRROR_PEER_DIRECTION_RX, "siteC", "foo", ""})); ASSERT_EQ(-EEXIST, mirror_peer_add(&ioctx, {"uuid3", MIRROR_PEER_DIRECTION_RX, "siteA", "foo", ""})); ASSERT_EQ(-EEXIST, mirror_peer_add(&ioctx, {"uuid3", MIRROR_PEER_DIRECTION_RX, "siteC", "client", "fsidA"})); ASSERT_EQ(0, mirror_peer_add(&ioctx, {"uuid3", MIRROR_PEER_DIRECTION_RX, "siteC", "admin", ""})); ASSERT_EQ(0, mirror_peer_add(&ioctx, {"uuid4", MIRROR_PEER_DIRECTION_RX, "siteD", "admin", ""})); ASSERT_EQ(0, mirror_peer_list(&ioctx, &peers)); std::vector<cls::rbd::MirrorPeer> expected_peers = { {"uuid1", MIRROR_PEER_DIRECTION_RX, "siteA", "client", "fsidA"}, {"uuid2", MIRROR_PEER_DIRECTION_RX, "siteB", "admin", ""}, {"uuid3", MIRROR_PEER_DIRECTION_RX, "siteC", "admin", ""}, {"uuid4", MIRROR_PEER_DIRECTION_RX, "siteD", "admin", ""}}; ASSERT_EQ(expected_peers, peers); ASSERT_EQ(0, mirror_peer_remove(&ioctx, "uuid5")); ASSERT_EQ(0, mirror_peer_remove(&ioctx, "uuid4")); ASSERT_EQ(0, mirror_peer_remove(&ioctx, "uuid2")); ASSERT_EQ(0, mirror_peer_list(&ioctx, &peers)); expected_peers = { {"uuid1", MIRROR_PEER_DIRECTION_RX, "siteA", "client", "fsidA"}, {"uuid3", MIRROR_PEER_DIRECTION_RX, "siteC", "admin", ""}}; ASSERT_EQ(expected_peers, peers); ASSERT_EQ(-ENOENT, mirror_peer_set_client(&ioctx, "uuid4", "new client")); ASSERT_EQ(0, mirror_peer_set_client(&ioctx, "uuid1", "new client")); ASSERT_EQ(-ENOENT, mirror_peer_set_cluster(&ioctx, "uuid4", "new site")); ASSERT_EQ(0, mirror_peer_set_cluster(&ioctx, "uuid3", "new site")); ASSERT_EQ(0, mirror_peer_list(&ioctx, &peers)); expected_peers = { {"uuid1", MIRROR_PEER_DIRECTION_RX, "siteA", "new client", "fsidA"}, {"uuid3", MIRROR_PEER_DIRECTION_RX, "new site", "admin", ""}}; ASSERT_EQ(expected_peers, peers); ASSERT_EQ(0, mirror_peer_remove(&ioctx, "uuid1")); ASSERT_EQ(0, mirror_peer_list(&ioctx, &peers)); expected_peers = { {"uuid3", MIRROR_PEER_DIRECTION_RX, "new site", "admin", ""}}; ASSERT_EQ(expected_peers, peers); ASSERT_EQ(-EINVAL, mirror_peer_ping(&ioctx, "", "mirror uuid")); ASSERT_EQ(-EINVAL, mirror_peer_ping(&ioctx, "new site", "")); ASSERT_EQ(0, mirror_peer_ping(&ioctx, "new site", "mirror uuid")); ASSERT_EQ(0, mirror_peer_list(&ioctx, &peers)); ASSERT_EQ(1U, peers.size()); ASSERT_LT(utime_t{}, peers[0].last_seen); expected_peers = { {"uuid3", MIRROR_PEER_DIRECTION_RX_TX, "new site", "admin", "mirror uuid"}}; expected_peers[0].last_seen = peers[0].last_seen; ASSERT_EQ(expected_peers, peers); ASSERT_EQ(0, mirror_peer_remove(&ioctx, "uuid3")); ASSERT_EQ(0, mirror_peer_ping(&ioctx, "siteA", "mirror uuid")); ASSERT_EQ(0, mirror_peer_list(&ioctx, &peers)); ASSERT_EQ(1U, peers.size()); ASSERT_FALSE(peers[0].uuid.empty()); ASSERT_LT(utime_t{}, peers[0].last_seen); expected_peers = { {peers[0].uuid, MIRROR_PEER_DIRECTION_TX, "siteA", "", "mirror uuid"}}; expected_peers[0].last_seen = peers[0].last_seen; ASSERT_EQ(expected_peers, peers); ASSERT_EQ(-EBUSY, mirror_mode_set(&ioctx, cls::rbd::MIRROR_MODE_DISABLED)); ASSERT_EQ(0, mirror_peer_remove(&ioctx, peers[0].uuid)); ASSERT_EQ(0, mirror_peer_remove(&ioctx, "DNE")); ASSERT_EQ(0, mirror_peer_list(&ioctx, &peers)); expected_peers = {}; ASSERT_EQ(expected_peers, peers); ASSERT_EQ(0, mirror_mode_set(&ioctx, cls::rbd::MIRROR_MODE_DISABLED)); ASSERT_EQ(0, mirror_mode_get(&ioctx, &mirror_mode)); ASSERT_EQ(cls::rbd::MIRROR_MODE_DISABLED, mirror_mode); ASSERT_EQ(-ENOENT, mirror_uuid_get(&ioctx, &uuid)); } TEST_F(TestClsRbd, mirror_image) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); ioctx.remove(RBD_MIRRORING); std::map<std::string, std::string> mirror_image_ids; ASSERT_EQ(-ENOENT, mirror_image_list(&ioctx, "", 0, &mirror_image_ids)); cls::rbd::MirrorImage image1(cls::rbd::MIRROR_IMAGE_MODE_JOURNAL, "uuid1", cls::rbd::MIRROR_IMAGE_STATE_ENABLED); cls::rbd::MirrorImage image2(cls::rbd::MIRROR_IMAGE_MODE_JOURNAL, "uuid2", cls::rbd::MIRROR_IMAGE_STATE_DISABLING); cls::rbd::MirrorImage image3(cls::rbd::MIRROR_IMAGE_MODE_JOURNAL, "uuid3", cls::rbd::MIRROR_IMAGE_STATE_ENABLED); ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id1", image1)); ASSERT_EQ(-ENOENT, mirror_image_set(&ioctx, "image_id2", image2)); image2.state = cls::rbd::MIRROR_IMAGE_STATE_ENABLED; ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id2", image2)); image2.state = cls::rbd::MIRROR_IMAGE_STATE_DISABLING; ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id2", image2)); ASSERT_EQ(-EINVAL, mirror_image_set(&ioctx, "image_id1", image2)); ASSERT_EQ(-EEXIST, mirror_image_set(&ioctx, "image_id3", image2)); ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id3", image3)); std::string image_id; ASSERT_EQ(0, mirror_image_get_image_id(&ioctx, "uuid2", &image_id)); ASSERT_EQ("image_id2", image_id); cls::rbd::MirrorImage read_image; ASSERT_EQ(0, mirror_image_get(&ioctx, "image_id1", &read_image)); ASSERT_EQ(read_image, image1); ASSERT_EQ(0, mirror_image_get(&ioctx, "image_id2", &read_image)); ASSERT_EQ(read_image, image2); ASSERT_EQ(0, mirror_image_get(&ioctx, "image_id3", &read_image)); ASSERT_EQ(read_image, image3); ASSERT_EQ(0, mirror_image_list(&ioctx, "", 1, &mirror_image_ids)); std::map<std::string, std::string> expected_mirror_image_ids = { {"image_id1", "uuid1"}}; ASSERT_EQ(expected_mirror_image_ids, mirror_image_ids); ASSERT_EQ(0, mirror_image_list(&ioctx, "image_id1", 2, &mirror_image_ids)); expected_mirror_image_ids = {{"image_id2", "uuid2"}, {"image_id3", "uuid3"}}; ASSERT_EQ(expected_mirror_image_ids, mirror_image_ids); ASSERT_EQ(0, mirror_image_remove(&ioctx, "image_id2")); ASSERT_EQ(-ENOENT, mirror_image_get_image_id(&ioctx, "uuid2", &image_id)); ASSERT_EQ(-EBUSY, mirror_image_remove(&ioctx, "image_id1")); ASSERT_EQ(0, mirror_image_list(&ioctx, "", 3, &mirror_image_ids)); expected_mirror_image_ids = {{"image_id1", "uuid1"}, {"image_id3", "uuid3"}}; ASSERT_EQ(expected_mirror_image_ids, mirror_image_ids); image1.state = cls::rbd::MIRROR_IMAGE_STATE_DISABLING; image3.state = cls::rbd::MIRROR_IMAGE_STATE_DISABLING; ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id1", image1)); ASSERT_EQ(0, mirror_image_get(&ioctx, "image_id1", &read_image)); ASSERT_EQ(read_image, image1); ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id3", image3)); ASSERT_EQ(0, mirror_image_remove(&ioctx, "image_id1")); ASSERT_EQ(0, mirror_image_remove(&ioctx, "image_id3")); ASSERT_EQ(0, mirror_image_list(&ioctx, "", 3, &mirror_image_ids)); expected_mirror_image_ids = {}; ASSERT_EQ(expected_mirror_image_ids, mirror_image_ids); } TEST_F(TestClsRbd, mirror_image_status) { struct WatchCtx : public librados::WatchCtx2 { librados::IoCtx *m_ioctx; explicit WatchCtx(librados::IoCtx *ioctx) : m_ioctx(ioctx) {} void handle_notify(uint64_t notify_id, uint64_t cookie, uint64_t notifier_id, bufferlist& bl_) override { bufferlist bl; m_ioctx->notify_ack(RBD_MIRRORING, notify_id, cookie, bl); } void handle_error(uint64_t cookie, int err) override {} }; map<std::string, cls::rbd::MirrorImage> images; map<std::string, cls::rbd::MirrorImageStatus> statuses; std::map<cls::rbd::MirrorImageStatusState, int32_t> states; std::map<std::string, entity_inst_t> instances; cls::rbd::MirrorImageStatus read_status; entity_inst_t read_instance; uint64_t watch_handle; librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); ioctx.remove(RBD_MIRRORING); int64_t instance_id = librados::Rados(ioctx).get_instance_id(); // Test list fails on nonexistent RBD_MIRRORING object ASSERT_EQ(-ENOENT, mirror_image_status_list(&ioctx, "", 1024, &images, &statuses)); // Test status set cls::rbd::MirrorImage image1(cls::rbd::MIRROR_IMAGE_MODE_JOURNAL, "uuid1", cls::rbd::MIRROR_IMAGE_STATE_ENABLED); cls::rbd::MirrorImage image2(cls::rbd::MIRROR_IMAGE_MODE_JOURNAL, "uuid2", cls::rbd::MIRROR_IMAGE_STATE_ENABLED); cls::rbd::MirrorImage image3(cls::rbd::MIRROR_IMAGE_MODE_JOURNAL, "uuid3", cls::rbd::MIRROR_IMAGE_STATE_ENABLED); ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id1", image1)); ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id2", image2)); ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id3", image3)); cls::rbd::MirrorImageSiteStatus status1( "", cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN, ""); cls::rbd::MirrorImageSiteStatus status2( "", cls::rbd::MIRROR_IMAGE_STATUS_STATE_REPLAYING, ""); cls::rbd::MirrorImageSiteStatus status3( "", cls::rbd::MIRROR_IMAGE_STATUS_STATE_ERROR, ""); ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid1", status1)); images.clear(); statuses.clear(); ASSERT_EQ(0, mirror_image_status_list(&ioctx, "", 1024, &images, &statuses)); ASSERT_EQ(3U, images.size()); ASSERT_EQ(1U, statuses.size()); // Test status is down due to RBD_MIRRORING is not watched status1.up = false; ASSERT_EQ(statuses["image_id1"], cls::rbd::MirrorImageStatus{{status1}}); ASSERT_EQ(0, mirror_image_status_get(&ioctx, "uuid1", &read_status)); ASSERT_EQ(read_status, cls::rbd::MirrorImageStatus{{status1}}); // Test status summary. All statuses are unknown due to down. states.clear(); cls::rbd::MirrorPeer mirror_peer{ "uuid", cls::rbd::MIRROR_PEER_DIRECTION_RX, "siteA", "client", "fsidA"}; ASSERT_EQ(0, mirror_image_status_get_summary(&ioctx, {mirror_peer}, &states)); ASSERT_EQ(1U, states.size()); ASSERT_EQ(3, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN]); // Test get instance return -ESTALE due to down. ASSERT_EQ(-ESTALE, mirror_image_instance_get(&ioctx, "uuid1", &read_instance)); instances.clear(); ASSERT_EQ(0, mirror_image_instance_list(&ioctx, "", 1024, &instances)); ASSERT_TRUE(instances.empty()); // Test remove_down removes stale statuses ASSERT_EQ(0, mirror_image_status_remove_down(&ioctx)); ASSERT_EQ(-ENOENT, mirror_image_status_get(&ioctx, "uuid1", &read_status)); ASSERT_EQ(-ENOENT, mirror_image_instance_get(&ioctx, "uuid1", &read_instance)); ASSERT_EQ(0, mirror_image_status_list(&ioctx, "", 1024, &images, &statuses)); ASSERT_EQ(3U, images.size()); ASSERT_TRUE(statuses.empty()); ASSERT_EQ(0, mirror_image_status_get_summary(&ioctx, {mirror_peer}, &states)); ASSERT_EQ(1U, states.size()); ASSERT_EQ(3, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN]); // Test remove of status ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid1", status1)); ASSERT_EQ(0, mirror_image_status_remove(&ioctx, "uuid1")); ASSERT_EQ(-ENOENT, mirror_image_instance_get(&ioctx, "uuid1", &read_instance)); // Test statuses are not down after watcher is started ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid1", status1)); WatchCtx watch_ctx(&ioctx); ASSERT_EQ(0, ioctx.watch2(RBD_MIRRORING, &watch_handle, &watch_ctx)); ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid2", status2)); ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid3", status3)); ASSERT_EQ(0, mirror_image_status_get(&ioctx, "uuid1", &read_status)); status1.up = true; ASSERT_EQ(read_status, cls::rbd::MirrorImageStatus{{status1}}); ASSERT_EQ(0, mirror_image_status_get(&ioctx, "uuid2", &read_status)); status2.up = true; ASSERT_EQ(read_status, cls::rbd::MirrorImageStatus{{status2}}); ASSERT_EQ(0, mirror_image_status_get(&ioctx, "uuid3", &read_status)); status3.up = true; ASSERT_EQ(read_status, cls::rbd::MirrorImageStatus{{status3}}); images.clear(); statuses.clear(); ASSERT_EQ(0, mirror_image_status_list(&ioctx, "", 1024, &images, &statuses)); ASSERT_EQ(3U, images.size()); ASSERT_EQ(3U, statuses.size()); ASSERT_EQ(statuses["image_id1"], cls::rbd::MirrorImageStatus{{status1}}); ASSERT_EQ(statuses["image_id2"], cls::rbd::MirrorImageStatus{{status2}}); ASSERT_EQ(statuses["image_id3"], cls::rbd::MirrorImageStatus{{status3}}); read_instance = {}; ASSERT_EQ(0, mirror_image_instance_get(&ioctx, "uuid1", &read_instance)); ASSERT_EQ(read_instance.name.num(), instance_id); instances.clear(); ASSERT_EQ(0, mirror_image_instance_list(&ioctx, "", 1024, &instances)); ASSERT_EQ(3U, instances.size()); ASSERT_EQ(instances["image_id1"].name.num(), instance_id); ASSERT_EQ(instances["image_id2"].name.num(), instance_id); ASSERT_EQ(instances["image_id3"].name.num(), instance_id); ASSERT_EQ(0, mirror_image_status_remove_down(&ioctx)); ASSERT_EQ(0, mirror_image_status_get(&ioctx, "uuid1", &read_status)); ASSERT_EQ(read_status, cls::rbd::MirrorImageStatus{{status1}}); images.clear(); statuses.clear(); ASSERT_EQ(0, mirror_image_status_list(&ioctx, "", 1024, &images, &statuses)); ASSERT_EQ(3U, images.size()); ASSERT_EQ(3U, statuses.size()); ASSERT_EQ(statuses["image_id1"], cls::rbd::MirrorImageStatus{{status1}}); ASSERT_EQ(statuses["image_id2"], cls::rbd::MirrorImageStatus{{status2}}); ASSERT_EQ(statuses["image_id3"], cls::rbd::MirrorImageStatus{{status3}}); states.clear(); ASSERT_EQ(0, mirror_image_status_get_summary(&ioctx, {mirror_peer}, &states)); ASSERT_EQ(3U, states.size()); ASSERT_EQ(1, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN]); ASSERT_EQ(1, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_REPLAYING]); ASSERT_EQ(1, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_ERROR]); // Test update status1.state = status3.state = cls::rbd::MIRROR_IMAGE_STATUS_STATE_REPLAYING; ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid1", status1)); ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid3", status3)); ASSERT_EQ(0, mirror_image_status_get(&ioctx, "uuid3", &read_status)); ASSERT_EQ(read_status, cls::rbd::MirrorImageStatus{{status3}}); states.clear(); ASSERT_EQ(0, mirror_image_status_get_summary(&ioctx, {mirror_peer}, &states)); ASSERT_EQ(1U, states.size()); ASSERT_EQ(3, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_REPLAYING]); // Remote status ASSERT_EQ(0, mirror_uuid_set(&ioctx, "mirror-uuid")); ASSERT_EQ(0, mirror_mode_set(&ioctx, cls::rbd::MIRROR_MODE_POOL)); ASSERT_EQ(0, mirror_image_status_get(&ioctx, "uuid1", &read_status)); cls::rbd::MirrorImageStatus expected_status1({status1}); ASSERT_EQ(expected_status1, read_status); cls::rbd::MirrorImageSiteStatus remote_status1( "fsidA", cls::rbd::MIRROR_IMAGE_STATUS_STATE_REPLAYING, ""); ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid1", remote_status1)); ASSERT_EQ(0, mirror_image_status_get(&ioctx, "uuid1", &read_status)); remote_status1.up = true; expected_status1 = {{status1, remote_status1}}; ASSERT_EQ(expected_status1, read_status); // summary under different modes cls::rbd::MirrorImageSiteStatus remote_status2( "fsidA", cls::rbd::MIRROR_IMAGE_STATUS_STATE_REPLAYING, ""); remote_status2.up = true; cls::rbd::MirrorImageSiteStatus remote_status3( "fsidA", cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN, ""); remote_status3.up = true; status1.state = cls::rbd::MIRROR_IMAGE_STATUS_STATE_ERROR; ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid1", status1)); ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid2", status2)); ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid3", status3)); ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid2", remote_status2)); ASSERT_EQ(0, mirror_image_status_set(&ioctx, "uuid3", remote_status3)); expected_status1 = {{status1, remote_status1}}; cls::rbd::MirrorImageStatus expected_status2({status2, remote_status2}); cls::rbd::MirrorImageStatus expected_status3({status3, remote_status3}); images.clear(); statuses.clear(); ASSERT_EQ(0, mirror_image_status_list(&ioctx, "", 1024, &images, &statuses)); ASSERT_EQ(3U, images.size()); ASSERT_EQ(3U, statuses.size()); ASSERT_EQ(statuses["image_id1"], expected_status1); ASSERT_EQ(statuses["image_id2"], expected_status2); ASSERT_EQ(statuses["image_id3"], expected_status3); states.clear(); mirror_peer.mirror_peer_direction = cls::rbd::MIRROR_PEER_DIRECTION_RX; ASSERT_EQ(0, mirror_image_status_get_summary(&ioctx, {mirror_peer}, &states)); ASSERT_EQ(2U, states.size()); ASSERT_EQ(2, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_REPLAYING]); ASSERT_EQ(1, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_ERROR]); states.clear(); mirror_peer.mirror_peer_direction = cls::rbd::MIRROR_PEER_DIRECTION_TX; ASSERT_EQ(0, mirror_image_status_get_summary(&ioctx, {mirror_peer}, &states)); ASSERT_EQ(2U, states.size()); ASSERT_EQ(2, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_REPLAYING]); ASSERT_EQ(1, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN]); states.clear(); mirror_peer.mirror_peer_direction = cls::rbd::MIRROR_PEER_DIRECTION_RX_TX; ASSERT_EQ(0, mirror_image_status_get_summary(&ioctx, {mirror_peer}, &states)); ASSERT_EQ(3U, states.size()); ASSERT_EQ(1, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_REPLAYING]); ASSERT_EQ(1, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN]); ASSERT_EQ(1, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_ERROR]); // Test statuses are down after removing watcher ioctx.unwatch2(watch_handle); ASSERT_EQ(0, mirror_image_status_list(&ioctx, "", 1024, &images, &statuses)); ASSERT_EQ(3U, images.size()); ASSERT_EQ(3U, statuses.size()); status1.up = false; remote_status1.up = false; expected_status1 = {{status1, remote_status1}}; ASSERT_EQ(statuses["image_id1"], expected_status1); status2.up = false; remote_status2.up = false; expected_status2 = {{status2, remote_status2}}; ASSERT_EQ(statuses["image_id2"], expected_status2); status3.up = false; remote_status3.up = false; expected_status3 = {{status3, remote_status3}}; ASSERT_EQ(statuses["image_id3"], expected_status3); ASSERT_EQ(0, mirror_image_status_get(&ioctx, "uuid1", &read_status)); ASSERT_EQ(read_status, expected_status1); states.clear(); ASSERT_EQ(0, mirror_image_status_get_summary(&ioctx, {mirror_peer}, &states)); ASSERT_EQ(1U, states.size()); ASSERT_EQ(3, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN]); ASSERT_EQ(-ESTALE, mirror_image_instance_get(&ioctx, "uuid1", &read_instance)); instances.clear(); ASSERT_EQ(0, mirror_image_instance_list(&ioctx, "", 1024, &instances)); ASSERT_TRUE(instances.empty()); ASSERT_EQ(0, mirror_image_status_remove_down(&ioctx)); ASSERT_EQ(-ENOENT, mirror_image_status_get(&ioctx, "uuid1", &read_status)); images.clear(); statuses.clear(); ASSERT_EQ(0, mirror_image_status_list(&ioctx, "", 1024, &images, &statuses)); ASSERT_EQ(3U, images.size()); ASSERT_TRUE(statuses.empty()); states.clear(); ASSERT_EQ(0, mirror_image_status_get_summary(&ioctx, {mirror_peer}, &states)); ASSERT_EQ(1U, states.size()); ASSERT_EQ(3, states[cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN]); // Remove images image1.state = cls::rbd::MIRROR_IMAGE_STATE_DISABLING; image2.state = cls::rbd::MIRROR_IMAGE_STATE_DISABLING; image3.state = cls::rbd::MIRROR_IMAGE_STATE_DISABLING; ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id1", image1)); ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id2", image2)); ASSERT_EQ(0, mirror_image_set(&ioctx, "image_id3", image3)); ASSERT_EQ(0, mirror_image_remove(&ioctx, "image_id1")); ASSERT_EQ(0, mirror_image_remove(&ioctx, "image_id2")); ASSERT_EQ(0, mirror_image_remove(&ioctx, "image_id3")); states.clear(); ASSERT_EQ(0, mirror_image_status_get_summary(&ioctx, {}, &states)); ASSERT_EQ(0U, states.size()); // Test status list with large number of images size_t N = 1024; ASSERT_EQ(0U, N % 2); for (size_t i = 0; i < N; i++) { std::string id = "id" + stringify(i); std::string uuid = "uuid" + stringify(i); cls::rbd::MirrorImage image(cls::rbd::MIRROR_IMAGE_MODE_JOURNAL, uuid, cls::rbd::MIRROR_IMAGE_STATE_ENABLED); cls::rbd::MirrorImageSiteStatus status( "", cls::rbd::MIRROR_IMAGE_STATUS_STATE_UNKNOWN, ""); ASSERT_EQ(0, mirror_image_set(&ioctx, id, image)); ASSERT_EQ(0, mirror_image_status_set(&ioctx, uuid, status)); } std::string last_read = ""; images.clear(); statuses.clear(); ASSERT_EQ(0, mirror_image_status_list(&ioctx, last_read, N * 2, &images, &statuses)); ASSERT_EQ(N, images.size()); ASSERT_EQ(N, statuses.size()); images.clear(); statuses.clear(); ASSERT_EQ(0, mirror_image_status_list(&ioctx, last_read, N / 2, &images, &statuses)); ASSERT_EQ(N / 2, images.size()); ASSERT_EQ(N / 2, statuses.size()); last_read = images.rbegin()->first; images.clear(); statuses.clear(); ASSERT_EQ(0, mirror_image_status_list(&ioctx, last_read, N / 2, &images, &statuses)); ASSERT_EQ(N / 2, images.size()); ASSERT_EQ(N / 2, statuses.size()); last_read = images.rbegin()->first; images.clear(); statuses.clear(); ASSERT_EQ(0, mirror_image_status_list(&ioctx, last_read, N / 2, &images, &statuses)); ASSERT_EQ(0U, images.size()); ASSERT_EQ(0U, statuses.size()); } TEST_F(TestClsRbd, mirror_image_map) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); ioctx.remove(RBD_MIRRORING); std::map<std::string, cls::rbd::MirrorImageMap> image_mapping; ASSERT_EQ(-ENOENT, mirror_image_map_list(&ioctx, "", 0, &image_mapping)); utime_t expected_time = ceph_clock_now(); bufferlist expected_data; expected_data.append("test"); std::map<std::string, cls::rbd::MirrorImageMap> expected_image_mapping; while (expected_image_mapping.size() < 1024) { librados::ObjectWriteOperation op; for (uint32_t i = 0; i < 32; ++i) { std::string global_image_id{stringify(expected_image_mapping.size())}; cls::rbd::MirrorImageMap mirror_image_map{ stringify(i), expected_time, expected_data}; expected_image_mapping.emplace(global_image_id, mirror_image_map); mirror_image_map_update(&op, global_image_id, mirror_image_map); } ASSERT_EQ(0, ioctx.operate(RBD_MIRRORING, &op)); } ASSERT_EQ(0, mirror_image_map_list(&ioctx, "", 1000, &image_mapping)); ASSERT_EQ(1000U, image_mapping.size()); ASSERT_EQ(0, mirror_image_map_list(&ioctx, image_mapping.rbegin()->first, 1000, &image_mapping)); ASSERT_EQ(24U, image_mapping.size()); const auto& image_map = *image_mapping.begin(); ASSERT_EQ("978", image_map.first); cls::rbd::MirrorImageMap expected_mirror_image_map{ stringify(18), expected_time, expected_data}; ASSERT_EQ(expected_mirror_image_map, image_map.second); expected_time = ceph_clock_now(); expected_mirror_image_map.mapped_time = expected_time; expected_data.append("update"); expected_mirror_image_map.data = expected_data; librados::ObjectWriteOperation op; mirror_image_map_remove(&op, "1"); mirror_image_map_update(&op, "10", expected_mirror_image_map); ASSERT_EQ(0, ioctx.operate(RBD_MIRRORING, &op)); ASSERT_EQ(0, mirror_image_map_list(&ioctx, "0", 1, &image_mapping)); ASSERT_EQ(1U, image_mapping.size()); const auto& updated_image_map = *image_mapping.begin(); ASSERT_EQ("10", updated_image_map.first); ASSERT_EQ(expected_mirror_image_map, updated_image_map.second); } TEST_F(TestClsRbd, mirror_instances) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); ioctx.remove(RBD_MIRROR_LEADER); std::vector<std::string> instance_ids; ASSERT_EQ(-ENOENT, mirror_instances_list(&ioctx, &instance_ids)); ASSERT_EQ(0, ioctx.create(RBD_MIRROR_LEADER, true)); ASSERT_EQ(0, mirror_instances_list(&ioctx, &instance_ids)); ASSERT_EQ(0U, instance_ids.size()); ASSERT_EQ(0, mirror_instances_add(&ioctx, "instance_id1")); ASSERT_EQ(0, mirror_instances_list(&ioctx, &instance_ids)); ASSERT_EQ(1U, instance_ids.size()); ASSERT_EQ(instance_ids[0], "instance_id1"); ASSERT_EQ(0, mirror_instances_add(&ioctx, "instance_id1")); ASSERT_EQ(0, mirror_instances_add(&ioctx, "instance_id2")); ASSERT_EQ(0, mirror_instances_list(&ioctx, &instance_ids)); ASSERT_EQ(2U, instance_ids.size()); ASSERT_EQ(0, mirror_instances_remove(&ioctx, "instance_id1")); ASSERT_EQ(0, mirror_instances_list(&ioctx, &instance_ids)); ASSERT_EQ(1U, instance_ids.size()); ASSERT_EQ(instance_ids[0], "instance_id2"); ASSERT_EQ(0, mirror_instances_remove(&ioctx, "instance_id2")); ASSERT_EQ(0, mirror_instances_list(&ioctx, &instance_ids)); ASSERT_EQ(0U, instance_ids.size()); } TEST_F(TestClsRbd, mirror_snapshot) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 10, 22, 0, oid, -1)); cls::rbd::MirrorSnapshotNamespace primary = { cls::rbd::MIRROR_SNAPSHOT_STATE_PRIMARY, {"peer1", "peer2"}, "", CEPH_NOSNAP}; cls::rbd::MirrorSnapshotNamespace non_primary = { cls::rbd::MIRROR_SNAPSHOT_STATE_NON_PRIMARY, {"peer1"}, "uuid", 123}; librados::ObjectWriteOperation op; ::librbd::cls_client::snapshot_add(&op, 1, "primary", primary); ::librbd::cls_client::snapshot_add(&op, 2, "non_primary", non_primary); ASSERT_EQ(0, ioctx.operate(oid, &op)); cls::rbd::SnapshotInfo snap; ASSERT_EQ(0, snapshot_get(&ioctx, oid, 1, &snap)); auto sn = std::get_if<cls::rbd::MirrorSnapshotNamespace>( &snap.snapshot_namespace); ASSERT_NE(nullptr, sn); ASSERT_EQ(primary, *sn); ASSERT_EQ(2U, sn->mirror_peer_uuids.size()); ASSERT_EQ(1U, sn->mirror_peer_uuids.count("peer1")); ASSERT_EQ(1U, sn->mirror_peer_uuids.count("peer2")); ASSERT_EQ(-ENOENT, mirror_image_snapshot_unlink_peer(&ioctx, oid, 1, "peer")); ASSERT_EQ(0, mirror_image_snapshot_unlink_peer(&ioctx, oid, 1, "peer1")); ASSERT_EQ(-ENOENT, mirror_image_snapshot_unlink_peer(&ioctx, oid, 1, "peer1")); ASSERT_EQ(0, snapshot_get(&ioctx, oid, 1, &snap)); sn = std::get_if<cls::rbd::MirrorSnapshotNamespace>( &snap.snapshot_namespace); ASSERT_NE(nullptr, sn); ASSERT_EQ(1U, sn->mirror_peer_uuids.size()); ASSERT_EQ(1U, sn->mirror_peer_uuids.count("peer2")); ASSERT_EQ(0, mirror_image_snapshot_unlink_peer(&ioctx, oid, 1, "peer2")); ASSERT_EQ(-ENOENT, mirror_image_snapshot_unlink_peer(&ioctx, oid, 1, "peer2")); ASSERT_EQ(0, snapshot_get(&ioctx, oid, 1, &snap)); sn = std::get_if<cls::rbd::MirrorSnapshotNamespace>( &snap.snapshot_namespace); ASSERT_NE(nullptr, sn); ASSERT_EQ(0U, sn->mirror_peer_uuids.size()); ASSERT_EQ(0, snapshot_get(&ioctx, oid, 2, &snap)); auto nsn = std::get_if<cls::rbd::MirrorSnapshotNamespace>( &snap.snapshot_namespace); ASSERT_NE(nullptr, nsn); ASSERT_EQ(non_primary, *nsn); ASSERT_EQ(1U, nsn->mirror_peer_uuids.size()); ASSERT_EQ(1U, nsn->mirror_peer_uuids.count("peer1")); ASSERT_FALSE(nsn->complete); ASSERT_EQ(nsn->last_copied_object_number, 0); ASSERT_EQ(0, mirror_image_snapshot_set_copy_progress(&ioctx, oid, 2, true, 10)); ASSERT_EQ(0, snapshot_get(&ioctx, oid, 2, &snap)); nsn = std::get_if<cls::rbd::MirrorSnapshotNamespace>( &snap.snapshot_namespace); ASSERT_NE(nullptr, nsn); ASSERT_TRUE(nsn->complete); ASSERT_EQ(nsn->last_copied_object_number, 10); ASSERT_EQ(0, mirror_image_snapshot_unlink_peer(&ioctx, oid, 2, "peer1")); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 1)); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 2)); } TEST_F(TestClsRbd, group_dir_list) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id1 = "cgid1"; string group_name1 = "cgname1"; string group_id2 = "cgid2"; string group_name2 = "cgname2"; ASSERT_EQ(0, group_dir_add(&ioctx, RBD_GROUP_DIRECTORY, group_name1, group_id1)); ASSERT_EQ(0, group_dir_add(&ioctx, RBD_GROUP_DIRECTORY, group_name2, group_id2)); map<string, string> cgs; ASSERT_EQ(0, group_dir_list(&ioctx, RBD_GROUP_DIRECTORY, "", 10, &cgs)); ASSERT_EQ(2U, cgs.size()); auto it = cgs.begin(); ASSERT_EQ(group_id1, it->second); ASSERT_EQ(group_name1, it->first); ++it; ASSERT_EQ(group_id2, it->second); ASSERT_EQ(group_name2, it->first); } void add_group_to_dir(librados::IoCtx ioctx, string group_id, string group_name) { ASSERT_EQ(0, group_dir_add(&ioctx, RBD_GROUP_DIRECTORY, group_name, group_id)); set<string> keys; ASSERT_EQ(0, ioctx.omap_get_keys(RBD_GROUP_DIRECTORY, "", 10, &keys)); ASSERT_EQ(2U, keys.size()); ASSERT_EQ("id_" + group_id, *keys.begin()); ASSERT_EQ("name_" + group_name, *keys.rbegin()); } TEST_F(TestClsRbd, group_dir_add) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); ioctx.remove(RBD_GROUP_DIRECTORY); string group_id = "cgid"; string group_name = "cgname"; add_group_to_dir(ioctx, group_id, group_name); } TEST_F(TestClsRbd, dir_add_already_existing) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); ioctx.remove(RBD_GROUP_DIRECTORY); string group_id = "cgidexisting"; string group_name = "cgnameexisting"; add_group_to_dir(ioctx, group_id, group_name); ASSERT_EQ(-EEXIST, group_dir_add(&ioctx, RBD_GROUP_DIRECTORY, group_name, group_id)); } TEST_F(TestClsRbd, group_dir_rename) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); ioctx.remove(RBD_GROUP_DIRECTORY); string group_id = "cgid"; string src_name = "cgnamesrc"; string dest_name = "cgnamedest"; add_group_to_dir(ioctx, group_id, src_name); ASSERT_EQ(0, group_dir_rename(&ioctx, RBD_GROUP_DIRECTORY, src_name, dest_name, group_id)); map<string, string> cgs; ASSERT_EQ(0, group_dir_list(&ioctx, RBD_GROUP_DIRECTORY, "", 10, &cgs)); ASSERT_EQ(1U, cgs.size()); auto it = cgs.begin(); ASSERT_EQ(group_id, it->second); ASSERT_EQ(dest_name, it->first); // destination group name existing ASSERT_EQ(-EEXIST, group_dir_rename(&ioctx, RBD_GROUP_DIRECTORY, dest_name, dest_name, group_id)); ASSERT_EQ(0, group_dir_remove(&ioctx, RBD_GROUP_DIRECTORY, dest_name, group_id)); // source group name missing ASSERT_EQ(-ENOENT, group_dir_rename(&ioctx, RBD_GROUP_DIRECTORY, dest_name, src_name, group_id)); } TEST_F(TestClsRbd, group_dir_remove) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); ioctx.remove(RBD_GROUP_DIRECTORY); string group_id = "cgidtodel"; string group_name = "cgnametodel"; add_group_to_dir(ioctx, group_id, group_name); ASSERT_EQ(0, group_dir_remove(&ioctx, RBD_GROUP_DIRECTORY, group_name, group_id)); set<string> keys; ASSERT_EQ(0, ioctx.omap_get_keys(RBD_GROUP_DIRECTORY, "", 10, &keys)); ASSERT_EQ(0U, keys.size()); } TEST_F(TestClsRbd, group_dir_remove_missing) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); ioctx.remove(RBD_GROUP_DIRECTORY); string group_id = "cgidtodelmissing"; string group_name = "cgnametodelmissing"; // These two lines ensure that RBD_GROUP_DIRECTORY exists. It's important for the // last two lines. add_group_to_dir(ioctx, group_id, group_name); ASSERT_EQ(0, group_dir_remove(&ioctx, RBD_GROUP_DIRECTORY, group_name, group_id)); // Removing missing ASSERT_EQ(-ENOENT, group_dir_remove(&ioctx, RBD_GROUP_DIRECTORY, group_name, group_id)); set<string> keys; ASSERT_EQ(0, ioctx.omap_get_keys(RBD_GROUP_DIRECTORY, "", 10, &keys)); ASSERT_EQ(0U, keys.size()); } void test_image_add(librados::IoCtx &ioctx, const string& group_id, const string& image_id, int64_t pool_id) { cls::rbd::GroupImageStatus st(image_id, pool_id, cls::rbd::GROUP_IMAGE_LINK_STATE_INCOMPLETE); ASSERT_EQ(0, group_image_set(&ioctx, group_id, st)); set<string> keys; ASSERT_EQ(0, ioctx.omap_get_keys(group_id, "", 10, &keys)); auto it = keys.begin(); ASSERT_EQ(1U, keys.size()); string image_key = cls::rbd::GroupImageSpec(image_id, pool_id).image_key(); ASSERT_EQ(image_key, *it); } TEST_F(TestClsRbd, group_image_add) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id"; ASSERT_EQ(0, ioctx.create(group_id, true)); int64_t pool_id = ioctx.get_id(); string image_id = "image_id"; test_image_add(ioctx, group_id, image_id, pool_id); } TEST_F(TestClsRbd, group_image_remove) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id1"; ASSERT_EQ(0, ioctx.create(group_id, true)); int64_t pool_id = ioctx.get_id(); string image_id = "image_id"; test_image_add(ioctx, group_id, image_id, pool_id); cls::rbd::GroupImageSpec spec(image_id, pool_id); ASSERT_EQ(0, group_image_remove(&ioctx, group_id, spec)); set<string> keys; ASSERT_EQ(0, ioctx.omap_get_keys(group_id, "", 10, &keys)); ASSERT_EQ(0U, keys.size()); } TEST_F(TestClsRbd, group_image_list) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id2"; ASSERT_EQ(0, ioctx.create(group_id, true)); int64_t pool_id = ioctx.get_id(); string image_id = "imageid"; // Image id shouldn't contain underscores test_image_add(ioctx, group_id, image_id, pool_id); vector<cls::rbd::GroupImageStatus> images; cls::rbd::GroupImageSpec empty_image_spec = cls::rbd::GroupImageSpec(); ASSERT_EQ(0, group_image_list(&ioctx, group_id, empty_image_spec, 1024, &images)); ASSERT_EQ(1U, images.size()); ASSERT_EQ(image_id, images[0].spec.image_id); ASSERT_EQ(pool_id, images[0].spec.pool_id); ASSERT_EQ(cls::rbd::GROUP_IMAGE_LINK_STATE_INCOMPLETE, images[0].state); cls::rbd::GroupImageStatus last_image = *images.rbegin(); ASSERT_EQ(0, group_image_list(&ioctx, group_id, last_image.spec, 1024, &images)); ASSERT_EQ(0U, images.size()); } TEST_F(TestClsRbd, group_image_clean) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id3"; ASSERT_EQ(0, ioctx.create(group_id, true)); int64_t pool_id = ioctx.get_id(); string image_id = "image_id"; test_image_add(ioctx, group_id, image_id, pool_id); cls::rbd::GroupImageStatus incomplete_st(image_id, pool_id, cls::rbd::GROUP_IMAGE_LINK_STATE_INCOMPLETE); ASSERT_EQ(0, group_image_set(&ioctx, group_id, incomplete_st)); // Set to dirty first in order to make sure that group_image_clean // actually does something. cls::rbd::GroupImageStatus attached_st(image_id, pool_id, cls::rbd::GROUP_IMAGE_LINK_STATE_ATTACHED); ASSERT_EQ(0, group_image_set(&ioctx, group_id, attached_st)); string image_key = cls::rbd::GroupImageSpec(image_id, pool_id).image_key(); map<string, bufferlist> vals; ASSERT_EQ(0, ioctx.omap_get_vals(group_id, "", 10, &vals)); cls::rbd::GroupImageLinkState ref_state; auto it = vals[image_key].cbegin(); decode(ref_state, it); ASSERT_EQ(cls::rbd::GROUP_IMAGE_LINK_STATE_ATTACHED, ref_state); } TEST_F(TestClsRbd, image_group_add) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); int64_t pool_id = ioctx.get_id(); string image_id = "imageid"; ASSERT_EQ(0, create_image(&ioctx, image_id, 2<<20, 0, RBD_FEATURE_LAYERING, image_id, -1)); string group_id = "group_id"; cls::rbd::GroupSpec spec(group_id, pool_id); ASSERT_EQ(0, image_group_add(&ioctx, image_id, spec)); map<string, bufferlist> vals; ASSERT_EQ(0, ioctx.omap_get_vals(image_id, "", RBD_GROUP_REF, 10, &vals)); cls::rbd::GroupSpec val_spec; auto it = vals[RBD_GROUP_REF].cbegin(); decode(val_spec, it); ASSERT_EQ(group_id, val_spec.group_id); ASSERT_EQ(pool_id, val_spec.pool_id); } TEST_F(TestClsRbd, image_group_remove) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); int64_t pool_id = ioctx.get_id(); string image_id = "image_id"; ASSERT_EQ(0, create_image(&ioctx, image_id, 2<<20, 0, RBD_FEATURE_LAYERING, image_id, -1)); string group_id = "group_id"; cls::rbd::GroupSpec spec(group_id, pool_id); ASSERT_EQ(0, image_group_add(&ioctx, image_id, spec)); // Add reference in order to make sure that image_group_remove actually // does something. ASSERT_EQ(0, image_group_remove(&ioctx, image_id, spec)); map<string, bufferlist> vals; ASSERT_EQ(0, ioctx.omap_get_vals(image_id, "", RBD_GROUP_REF, 10, &vals)); ASSERT_EQ(0U, vals.size()); } TEST_F(TestClsRbd, image_group_get) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); int64_t pool_id = ioctx.get_id(); string image_id = "imageidgroupspec"; ASSERT_EQ(0, create_image(&ioctx, image_id, 2<<20, 0, RBD_FEATURE_LAYERING, image_id, -1)); string group_id = "group_id_get_group_spec"; cls::rbd::GroupSpec spec_add(group_id, pool_id); ASSERT_EQ(0, image_group_add(&ioctx, image_id, spec_add)); cls::rbd::GroupSpec spec; ASSERT_EQ(0, image_group_get(&ioctx, image_id, &spec)); ASSERT_EQ(group_id, spec.group_id); ASSERT_EQ(pool_id, spec.pool_id); } TEST_F(TestClsRbd, group_snap_set_empty_name) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id_snap_add_empty_name"; ASSERT_EQ(0, ioctx.create(group_id, true)); string snap_id = "snap_id"; cls::rbd::GroupSnapshot snap = {snap_id, "", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(-EINVAL, group_snap_set(&ioctx, group_id, snap)); } TEST_F(TestClsRbd, group_snap_set_empty_id) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id_snap_add_empty_id"; ASSERT_EQ(0, ioctx.create(group_id, true)); string snap_id = "snap_id"; cls::rbd::GroupSnapshot snap = {"", "snap_name", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(-EINVAL, group_snap_set(&ioctx, group_id, snap)); } TEST_F(TestClsRbd, group_snap_set_duplicate_id) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id_snap_add_duplicate_id"; ASSERT_EQ(0, ioctx.create(group_id, true)); string snap_id = "snap_id"; cls::rbd::GroupSnapshot snap = {snap_id, "snap_name", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(0, group_snap_set(&ioctx, group_id, snap)); cls::rbd::GroupSnapshot snap1 = {snap_id, "snap_name1", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(-EEXIST, group_snap_set(&ioctx, group_id, snap1)); } TEST_F(TestClsRbd, group_snap_set_duplicate_name) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id_snap_add_duplicate_name"; ASSERT_EQ(0, ioctx.create(group_id, true)); string snap_id1 = "snap_id1"; cls::rbd::GroupSnapshot snap = {snap_id1, "snap_name", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(0, group_snap_set(&ioctx, group_id, snap)); string snap_id2 = "snap_id2"; cls::rbd::GroupSnapshot snap1 = {snap_id2, "snap_name", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(-EEXIST, group_snap_set(&ioctx, group_id, snap1)); } TEST_F(TestClsRbd, group_snap_set) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id_snap_add"; ASSERT_EQ(0, ioctx.create(group_id, true)); string snap_id = "snap_id"; cls::rbd::GroupSnapshot snap = {snap_id, "test_snapshot", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(0, group_snap_set(&ioctx, group_id, snap)); set<string> keys; ASSERT_EQ(0, ioctx.omap_get_keys(group_id, "", 10, &keys)); auto it = keys.begin(); ASSERT_EQ(1U, keys.size()); string snap_key = "snapshot_" + stringify(snap.id); ASSERT_EQ(snap_key, *it); } TEST_F(TestClsRbd, group_snap_list) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id_snap_list"; ASSERT_EQ(0, ioctx.create(group_id, true)); string snap_id1 = "snap_id1"; cls::rbd::GroupSnapshot snap1 = {snap_id1, "test_snapshot1", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(0, group_snap_set(&ioctx, group_id, snap1)); string snap_id2 = "snap_id2"; cls::rbd::GroupSnapshot snap2 = {snap_id2, "test_snapshot2", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(0, group_snap_set(&ioctx, group_id, snap2)); std::vector<cls::rbd::GroupSnapshot> snapshots; ASSERT_EQ(0, group_snap_list(&ioctx, group_id, cls::rbd::GroupSnapshot(), 10, &snapshots)); ASSERT_EQ(2U, snapshots.size()); ASSERT_EQ(snap_id1, snapshots[0].id); ASSERT_EQ(snap_id2, snapshots[1].id); } static std::string hexify(int v) { ostringstream oss; oss << std::setw(8) << std::setfill('0') << std::hex << v; //oss << v; return oss.str(); } TEST_F(TestClsRbd, group_snap_list_max_return) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id_snap_list_max_return"; ASSERT_EQ(0, ioctx.create(group_id, true)); for (int i = 0; i < 15; ++i) { string snap_id = "snap_id" + hexify(i); cls::rbd::GroupSnapshot snap = {snap_id, "test_snapshot" + hexify(i), cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(0, group_snap_set(&ioctx, group_id, snap)); } std::vector<cls::rbd::GroupSnapshot> snapshots; ASSERT_EQ(0, group_snap_list(&ioctx, group_id, cls::rbd::GroupSnapshot(), 10, &snapshots)); ASSERT_EQ(10U, snapshots.size()); for (int i = 0; i < 10; ++i) { string snap_id = "snap_id" + hexify(i); ASSERT_EQ(snap_id, snapshots[i].id); } cls::rbd::GroupSnapshot last_snap = *snapshots.rbegin(); ASSERT_EQ(0, group_snap_list(&ioctx, group_id, last_snap, 10, &snapshots)); ASSERT_EQ(5U, snapshots.size()); for (int i = 10; i < 15; ++i) { string snap_id = "snap_id" + hexify(i); ASSERT_EQ(snap_id, snapshots[i - 10].id); } } TEST_F(TestClsRbd, group_snap_list_max_read) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id_snap_list_max_read"; ASSERT_EQ(0, ioctx.create(group_id, true)); // 2 * RBD_MAX_KEYS_READ + a few for (int i = 0; i < 150; ++i) { string snap_id = "snap_id" + hexify(i); cls::rbd::GroupSnapshot snap = {snap_id, "test_snapshot" + hexify(i), cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(0, group_snap_set(&ioctx, group_id, snap)); } std::vector<cls::rbd::GroupSnapshot> snapshots; ASSERT_EQ(0, group_snap_list(&ioctx, group_id, cls::rbd::GroupSnapshot(), 500, &snapshots)); ASSERT_EQ(150U, snapshots.size()); for (int i = 0; i < 150; ++i) { string snap_id = "snap_id" + hexify(i); ASSERT_EQ(snap_id, snapshots[i].id); } } TEST_F(TestClsRbd, group_snap_remove) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id_snap_remove"; ASSERT_EQ(0, ioctx.create(group_id, true)); string snap_id = "snap_id"; cls::rbd::GroupSnapshot snap = {snap_id, "test_snapshot", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(0, group_snap_set(&ioctx, group_id, snap)); set<string> keys; ASSERT_EQ(0, ioctx.omap_get_keys(group_id, "", 10, &keys)); auto it = keys.begin(); ASSERT_EQ(1U, keys.size()); string snap_key = "snapshot_" + stringify(snap.id); ASSERT_EQ(snap_key, *it); // Remove the snapshot ASSERT_EQ(0, group_snap_remove(&ioctx, group_id, snap_id)); ASSERT_EQ(0, ioctx.omap_get_keys(group_id, "", 10, &keys)); ASSERT_EQ(0U, keys.size()); } TEST_F(TestClsRbd, group_snap_get_by_id) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string group_id = "group_id_snap_get_by_id"; ASSERT_EQ(0, ioctx.create(group_id, true)); string snap_id = "snap_id"; cls::rbd::GroupSnapshot snap = {snap_id, "test_snapshot", cls::rbd::GROUP_SNAPSHOT_STATE_INCOMPLETE}; ASSERT_EQ(0, group_snap_set(&ioctx, group_id, snap)); cls::rbd::GroupSnapshot received_snap; ASSERT_EQ(0, group_snap_get_by_id(&ioctx, group_id, snap_id, &received_snap)); ASSERT_EQ(snap.id, received_snap.id); ASSERT_EQ(snap.name, received_snap.name); ASSERT_EQ(snap.state, received_snap.state); } TEST_F(TestClsRbd, trash_methods) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string id = "123456789"; string id2 = "123456780"; std::map<string, cls::rbd::TrashImageSpec> entries; ASSERT_EQ(-ENOENT, trash_list(&ioctx, "", 1024, &entries)); utime_t now1 = ceph_clock_now(); utime_t now1_delay = now1; now1_delay += 380; cls::rbd::TrashImageSpec trash_spec(cls::rbd::TRASH_IMAGE_SOURCE_USER, "name", now1, now1_delay); ASSERT_EQ(0, trash_add(&ioctx, id, trash_spec)); utime_t now2 = ceph_clock_now(); utime_t now2_delay = now2; now2_delay += 480; cls::rbd::TrashImageSpec trash_spec2(cls::rbd::TRASH_IMAGE_SOURCE_MIRRORING, "name2", now2, now2_delay); ASSERT_EQ(-EEXIST, trash_add(&ioctx, id, trash_spec2)); ASSERT_EQ(0, trash_remove(&ioctx, id)); ASSERT_EQ(-ENOENT, trash_remove(&ioctx, id)); ASSERT_EQ(0, trash_list(&ioctx, "", 1024, &entries)); ASSERT_TRUE(entries.empty()); ASSERT_EQ(0, trash_add(&ioctx, id, trash_spec2)); ASSERT_EQ(0, trash_add(&ioctx, id2, trash_spec)); ASSERT_EQ(0, trash_list(&ioctx, "", 1, &entries)); ASSERT_TRUE(entries.find(id2) != entries.end()); ASSERT_EQ(cls::rbd::TRASH_IMAGE_SOURCE_USER, entries[id2].source); ASSERT_EQ(std::string("name"), entries[id2].name); ASSERT_EQ(now1, entries[id2].deletion_time); ASSERT_EQ(now1_delay, entries[id2].deferment_end_time); ASSERT_EQ(0, trash_list(&ioctx, id2, 1, &entries)); ASSERT_TRUE(entries.find(id) != entries.end()); ASSERT_EQ(cls::rbd::TRASH_IMAGE_SOURCE_MIRRORING, entries[id].source); ASSERT_EQ(std::string("name2"), entries[id].name); ASSERT_EQ(now2, entries[id].deletion_time); ASSERT_EQ(now2_delay, entries[id].deferment_end_time); ASSERT_EQ(0, trash_list(&ioctx, id, 1, &entries)); ASSERT_TRUE(entries.empty()); cls::rbd::TrashImageSpec spec_res1; ASSERT_EQ(0, trash_get(&ioctx, id, &spec_res1)); cls::rbd::TrashImageSpec spec_res2; ASSERT_EQ(0, trash_get(&ioctx, id2, &spec_res2)); ASSERT_EQ(spec_res1.name, "name2"); ASSERT_EQ(spec_res1.deletion_time, now2); ASSERT_EQ(spec_res1.deferment_end_time, now2_delay); ASSERT_EQ(spec_res2.name, "name"); ASSERT_EQ(spec_res2.deletion_time, now1); ASSERT_EQ(spec_res2.deferment_end_time, now1_delay); ioctx.close(); } TEST_F(TestClsRbd, op_features) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); uint64_t op_features = RBD_OPERATION_FEATURE_CLONE_PARENT; uint64_t mask = ~RBD_OPERATION_FEATURES_ALL; ASSERT_EQ(-EINVAL, op_features_set(&ioctx, oid, op_features, mask)); mask = 0; ASSERT_EQ(0, op_features_set(&ioctx, oid, op_features, mask)); uint64_t actual_op_features; ASSERT_EQ(0, op_features_get(&ioctx, oid, &actual_op_features)); ASSERT_EQ(0u, actual_op_features); uint64_t features; uint64_t incompatible_features; ASSERT_EQ(0, get_features(&ioctx, oid, true, &features, &incompatible_features)); ASSERT_EQ(0u, features); op_features = RBD_OPERATION_FEATURES_ALL; mask = RBD_OPERATION_FEATURES_ALL; ASSERT_EQ(0, op_features_set(&ioctx, oid, op_features, mask)); ASSERT_EQ(0, op_features_get(&ioctx, oid, &actual_op_features)); ASSERT_EQ(mask, actual_op_features); ASSERT_EQ(0, get_features(&ioctx, oid, true, &features, &incompatible_features)); ASSERT_EQ(RBD_FEATURE_OPERATIONS, features); op_features = 0; mask = RBD_OPERATION_FEATURE_CLONE_PARENT; ASSERT_EQ(0, op_features_set(&ioctx, oid, op_features, mask)); ASSERT_EQ(0, op_features_get(&ioctx, oid, &actual_op_features)); uint64_t expected_op_features = RBD_OPERATION_FEATURES_ALL & ~RBD_OPERATION_FEATURE_CLONE_PARENT; ASSERT_EQ(expected_op_features, actual_op_features); mask = RBD_OPERATION_FEATURES_ALL; ASSERT_EQ(0, op_features_set(&ioctx, oid, op_features, mask)); ASSERT_EQ(0, get_features(&ioctx, oid, true, &features, &incompatible_features)); ASSERT_EQ(0u, features); } TEST_F(TestClsRbd, clone_parent) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 123, "user_snap")); ASSERT_EQ(-ENOENT, child_attach(&ioctx, oid, 345, {})); ASSERT_EQ(-ENOENT, child_detach(&ioctx, oid, 123, {})); ASSERT_EQ(-ENOENT, child_detach(&ioctx, oid, 345, {})); ASSERT_EQ(0, child_attach(&ioctx, oid, 123, {1, "", "image1"})); ASSERT_EQ(-EEXIST, child_attach(&ioctx, oid, 123, {1, "", "image1"})); ASSERT_EQ(0, child_attach(&ioctx, oid, 123, {1, "", "image2"})); ASSERT_EQ(0, child_attach(&ioctx, oid, 123, {2, "", "image2"})); cls::rbd::SnapshotInfo snap; ASSERT_EQ(0, snapshot_get(&ioctx, oid, 123, &snap)); ASSERT_EQ(3U, snap.child_count); // op feature should have been enabled uint64_t op_features; uint64_t expected_op_features = RBD_OPERATION_FEATURE_CLONE_PARENT; ASSERT_EQ(0, op_features_get(&ioctx, oid, &op_features)); ASSERT_TRUE((op_features & expected_op_features) == expected_op_features); // cannot attach to trashed snapshot librados::ObjectWriteOperation op1; ::librbd::cls_client::snapshot_add(&op1, 234, "trash_snap", cls::rbd::UserSnapshotNamespace()); ASSERT_EQ(0, ioctx.operate(oid, &op1)); librados::ObjectWriteOperation op2; ::librbd::cls_client::snapshot_trash_add(&op2, 234); ASSERT_EQ(0, ioctx.operate(oid, &op2)); ASSERT_EQ(-ENOENT, child_attach(&ioctx, oid, 234, {})); cls::rbd::ChildImageSpecs child_images; ASSERT_EQ(0, children_list(&ioctx, oid, 123, &child_images)); cls::rbd::ChildImageSpecs expected_child_images = { {1, "", "image1"}, {1, "", "image2"}, {2, "", "image2"}}; ASSERT_EQ(expected_child_images, child_images); // move snapshot to the trash ASSERT_EQ(-EBUSY, snapshot_remove(&ioctx, oid, 123)); librados::ObjectWriteOperation op3; ::librbd::cls_client::snapshot_trash_add(&op3, 123); ASSERT_EQ(0, ioctx.operate(oid, &op3)); ASSERT_EQ(0, snapshot_get(&ioctx, oid, 123, &snap)); ASSERT_EQ(cls::rbd::SNAPSHOT_NAMESPACE_TYPE_TRASH, cls::rbd::get_snap_namespace_type(snap.snapshot_namespace)); expected_op_features |= RBD_OPERATION_FEATURE_SNAP_TRASH; ASSERT_EQ(0, op_features_get(&ioctx, oid, &op_features)); ASSERT_TRUE((op_features & expected_op_features) == expected_op_features); expected_child_images = {{1, "", "image1"}, {2, "", "image2"}}; ASSERT_EQ(0, child_detach(&ioctx, oid, 123, {1, "", "image2"})); ASSERT_EQ(0, children_list(&ioctx, oid, 123, &child_images)); ASSERT_EQ(expected_child_images, child_images); ASSERT_EQ(0, child_detach(&ioctx, oid, 123, {2, "", "image2"})); ASSERT_EQ(0, op_features_get(&ioctx, oid, &op_features)); ASSERT_TRUE((op_features & expected_op_features) == expected_op_features); ASSERT_EQ(0, child_detach(&ioctx, oid, 123, {1, "", "image1"})); ASSERT_EQ(-ENOENT, children_list(&ioctx, oid, 123, &child_images)); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 234)); ASSERT_EQ(0, op_features_get(&ioctx, oid, &op_features)); ASSERT_TRUE((op_features & expected_op_features) == RBD_OPERATION_FEATURE_SNAP_TRASH); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 123)); ASSERT_EQ(0, op_features_get(&ioctx, oid, &op_features)); ASSERT_TRUE((op_features & expected_op_features) == 0); } TEST_F(TestClsRbd, clone_parent_ns) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 123, "user_snap")); ASSERT_EQ(0, child_attach(&ioctx, oid, 123, {1, "ns1", "image1"})); ASSERT_EQ(-EEXIST, child_attach(&ioctx, oid, 123, {1, "ns1", "image1"})); ASSERT_EQ(0, child_attach(&ioctx, oid, 123, {1, "ns2", "image1"})); cls::rbd::ChildImageSpecs child_images; ASSERT_EQ(0, children_list(&ioctx, oid, 123, &child_images)); cls::rbd::ChildImageSpecs expected_child_images = { {1, "ns1", "image1"}, {1, "ns2", "image1"}}; ASSERT_EQ(expected_child_images, child_images); expected_child_images = {{1, "ns1", "image1"}}; ASSERT_EQ(0, child_detach(&ioctx, oid, 123, {1, "ns2", "image1"})); ASSERT_EQ(0, children_list(&ioctx, oid, 123, &child_images)); ASSERT_EQ(expected_child_images, child_images); ASSERT_EQ(0, child_detach(&ioctx, oid, 123, {1, "ns1", "image1"})); ASSERT_EQ(-ENOENT, children_list(&ioctx, oid, 123, &child_images)); ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 123)); } TEST_F(TestClsRbd, clone_child) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, RBD_FEATURE_LAYERING | RBD_FEATURE_DEEP_FLATTEN, oid, -1)); ASSERT_EQ(0, set_parent(&ioctx, oid, {1, "", "parent", 2}, 1)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 123, "user_snap1")); ASSERT_EQ(0, op_features_set(&ioctx, oid, RBD_OPERATION_FEATURE_CLONE_CHILD, RBD_OPERATION_FEATURE_CLONE_CHILD)); // clone child should be disabled due to deep flatten ASSERT_EQ(0, remove_parent(&ioctx, oid)); uint64_t op_features; ASSERT_EQ(0, op_features_get(&ioctx, oid, &op_features)); ASSERT_TRUE((op_features & RBD_OPERATION_FEATURE_CLONE_CHILD) == 0ULL); ASSERT_EQ(0, set_features(&ioctx, oid, 0, RBD_FEATURE_DEEP_FLATTEN)); ASSERT_EQ(0, set_parent(&ioctx, oid, {1, "", "parent", 2}, 1)); ASSERT_EQ(0, snapshot_add(&ioctx, oid, 124, "user_snap2")); ASSERT_EQ(0, op_features_set(&ioctx, oid, RBD_OPERATION_FEATURE_CLONE_CHILD, RBD_OPERATION_FEATURE_CLONE_CHILD)); // clone child should remain enabled w/o deep flatten ASSERT_EQ(0, remove_parent(&ioctx, oid)); ASSERT_EQ(0, op_features_get(&ioctx, oid, &op_features)); ASSERT_TRUE((op_features & RBD_OPERATION_FEATURE_CLONE_CHILD) == RBD_OPERATION_FEATURE_CLONE_CHILD); // ... but removing the last linked snapshot should disable it ASSERT_EQ(0, snapshot_remove(&ioctx, oid, 124)); ASSERT_EQ(0, op_features_get(&ioctx, oid, &op_features)); ASSERT_TRUE((op_features & RBD_OPERATION_FEATURE_CLONE_CHILD) == 0ULL); } TEST_F(TestClsRbd, namespace_methods) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string name1 = "123456789"; string name2 = "123456780"; std::list<std::string> entries; ASSERT_EQ(-ENOENT, namespace_list(&ioctx, "", 1024, &entries)); ASSERT_EQ(0, namespace_add(&ioctx, name1)); ASSERT_EQ(-EEXIST, namespace_add(&ioctx, name1)); ASSERT_EQ(0, namespace_remove(&ioctx, name1)); ASSERT_EQ(-ENOENT, namespace_remove(&ioctx, name1)); ASSERT_EQ(0, namespace_list(&ioctx, "", 1024, &entries)); ASSERT_TRUE(entries.empty()); ASSERT_EQ(0, namespace_add(&ioctx, name1)); ASSERT_EQ(0, namespace_add(&ioctx, name2)); ASSERT_EQ(0, namespace_list(&ioctx, "", 1, &entries)); ASSERT_EQ(1U, entries.size()); ASSERT_EQ(name2, entries.front()); ASSERT_EQ(0, namespace_list(&ioctx, name2, 1, &entries)); ASSERT_EQ(1U, entries.size()); ASSERT_EQ(name1, entries.front()); ASSERT_EQ(0, namespace_list(&ioctx, name1, 1, &entries)); ASSERT_TRUE(entries.empty()); } TEST_F(TestClsRbd, migration) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, create_image(&ioctx, oid, 0, 22, 0, oid, -1)); cls::rbd::MigrationSpec migration_spec(cls::rbd::MIGRATION_HEADER_TYPE_DST, -1, "", "", "", "{\"format\": \"raw\"}", {}, 0, false, cls::rbd::MIRROR_IMAGE_MODE_JOURNAL, false, cls::rbd::MIGRATION_STATE_PREPARING, "123"); cls::rbd::MigrationSpec read_migration_spec; ASSERT_EQ(-EINVAL, migration_get(&ioctx, oid, &read_migration_spec)); uint64_t features; uint64_t incompatible_features; ASSERT_EQ(0, get_features(&ioctx, oid, CEPH_NOSNAP, &features, &incompatible_features)); ASSERT_EQ(0U, features); ASSERT_EQ(0, migration_set(&ioctx, oid, migration_spec)); ASSERT_EQ(0, migration_get(&ioctx, oid, &read_migration_spec)); ASSERT_EQ(migration_spec, read_migration_spec); ASSERT_EQ(0, get_features(&ioctx, oid, CEPH_NOSNAP, &features, &incompatible_features)); ASSERT_EQ(RBD_FEATURE_MIGRATING, features); ASSERT_EQ(-EEXIST, migration_set(&ioctx, oid, migration_spec)); migration_spec.state = cls::rbd::MIGRATION_STATE_PREPARED; migration_spec.state_description = "456"; ASSERT_EQ(0, migration_set_state(&ioctx, oid, migration_spec.state, migration_spec.state_description)); ASSERT_EQ(0, migration_get(&ioctx, oid, &read_migration_spec)); ASSERT_EQ(migration_spec, read_migration_spec); ASSERT_EQ(0, migration_remove(&ioctx, oid)); ASSERT_EQ(0, get_features(&ioctx, oid, CEPH_NOSNAP, &features, &incompatible_features)); ASSERT_EQ(0U, features); ASSERT_EQ(-EINVAL, migration_get(&ioctx, oid, &read_migration_spec)); ASSERT_EQ(-EINVAL, migration_set_state(&ioctx, oid, migration_spec.state, migration_spec.state_description)); migration_spec.header_type = cls::rbd::MIGRATION_HEADER_TYPE_SRC; ASSERT_EQ(0, migration_set(&ioctx, oid, migration_spec)); ASSERT_EQ(0, get_features(&ioctx, oid, CEPH_NOSNAP, &features, &incompatible_features)); ASSERT_EQ(RBD_FEATURE_MIGRATING, features); ASSERT_EQ(0, migration_remove(&ioctx, oid)); ASSERT_EQ(-EINVAL, migration_get(&ioctx, oid, &read_migration_spec)); ASSERT_EQ(0, get_features(&ioctx, oid, CEPH_NOSNAP, &features, &incompatible_features)); ASSERT_EQ(0U, features); ioctx.close(); } TEST_F(TestClsRbd, migration_v1) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); bufferlist header; header.append(RBD_HEADER_TEXT, sizeof(RBD_HEADER_TEXT)); string oid = get_temp_image_name(); ASSERT_EQ(0, ioctx.write(oid, header, header.length(), 0)); cls::rbd::MigrationSpec migration_spec(cls::rbd::MIGRATION_HEADER_TYPE_DST, 1, "name", "ns", "id", "", {}, 0, false, cls::rbd::MIRROR_IMAGE_MODE_JOURNAL, false, cls::rbd::MIGRATION_STATE_PREPARING, "123"); cls::rbd::MigrationSpec read_migration_spec; ASSERT_EQ(-EINVAL, migration_get(&ioctx, oid, &read_migration_spec)); // v1 format image can only be migration source ASSERT_EQ(-EINVAL, migration_set(&ioctx, oid, migration_spec)); migration_spec.header_type = cls::rbd::MIGRATION_HEADER_TYPE_SRC; ASSERT_EQ(0, migration_set(&ioctx, oid, migration_spec)); ASSERT_EQ(0, migration_get(&ioctx, oid, &read_migration_spec)); ASSERT_EQ(migration_spec, read_migration_spec); header.clear(); ASSERT_EQ(static_cast<int>(sizeof(RBD_MIGRATE_HEADER_TEXT)), ioctx.read(oid, header, sizeof(RBD_MIGRATE_HEADER_TEXT), 0)); ASSERT_STREQ(RBD_MIGRATE_HEADER_TEXT, header.c_str()); ASSERT_EQ(-EEXIST, migration_set(&ioctx, oid, migration_spec)); migration_spec.state = cls::rbd::MIGRATION_STATE_PREPARED; migration_spec.state_description = "456"; ASSERT_EQ(0, migration_set_state(&ioctx, oid, migration_spec.state, migration_spec.state_description)); ASSERT_EQ(0, migration_get(&ioctx, oid, &read_migration_spec)); ASSERT_EQ(migration_spec, read_migration_spec); ASSERT_EQ(0, migration_remove(&ioctx, oid)); ASSERT_EQ(-EINVAL, migration_get(&ioctx, oid, &read_migration_spec)); ASSERT_EQ(-EINVAL, migration_set_state(&ioctx, oid, migration_spec.state, migration_spec.state_description)); header.clear(); ASSERT_EQ(static_cast<int>(sizeof(RBD_HEADER_TEXT)), ioctx.read(oid, header, sizeof(RBD_HEADER_TEXT), 0)); ASSERT_STREQ(RBD_HEADER_TEXT, header.c_str()); ioctx.close(); } TEST_F(TestClsRbd, assert_snapc_seq) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ASSERT_EQ(0, assert_snapc_seq(&ioctx, oid, 0, cls::rbd::ASSERT_SNAPC_SEQ_GT_SNAPSET_SEQ)); ASSERT_EQ(-ERANGE, assert_snapc_seq(&ioctx, oid, 0, cls::rbd::ASSERT_SNAPC_SEQ_LE_SNAPSET_SEQ)); ASSERT_EQ(0, ioctx.create(oid, true)); uint64_t snapc_seq = 0; ASSERT_EQ(-ERANGE, assert_snapc_seq(&ioctx, oid, snapc_seq, cls::rbd::ASSERT_SNAPC_SEQ_GT_SNAPSET_SEQ)); ASSERT_EQ(0, assert_snapc_seq(&ioctx, oid, snapc_seq, cls::rbd::ASSERT_SNAPC_SEQ_LE_SNAPSET_SEQ)); std::vector<uint64_t> snaps; snaps.push_back(CEPH_NOSNAP); ASSERT_EQ(0, ioctx.selfmanaged_snap_create(&snaps.back())); snapc_seq = snaps[0]; ASSERT_EQ(0, assert_snapc_seq(&ioctx, oid, snapc_seq, cls::rbd::ASSERT_SNAPC_SEQ_GT_SNAPSET_SEQ)); ASSERT_EQ(-ERANGE, assert_snapc_seq(&ioctx, oid, snapc_seq, cls::rbd::ASSERT_SNAPC_SEQ_LE_SNAPSET_SEQ)); ASSERT_EQ(0, ioctx.selfmanaged_snap_set_write_ctx(snaps[0], snaps)); bufferlist bl; bl.append("foo"); ASSERT_EQ(0, ioctx.write(oid, bl, bl.length(), 0)); ASSERT_EQ(-ERANGE, assert_snapc_seq(&ioctx, oid, snapc_seq, cls::rbd::ASSERT_SNAPC_SEQ_GT_SNAPSET_SEQ)); ASSERT_EQ(0, assert_snapc_seq(&ioctx, oid, snapc_seq, cls::rbd::ASSERT_SNAPC_SEQ_LE_SNAPSET_SEQ)); ASSERT_EQ(0, assert_snapc_seq(&ioctx, oid, snapc_seq + 1, cls::rbd::ASSERT_SNAPC_SEQ_GT_SNAPSET_SEQ)); ASSERT_EQ(-ERANGE, assert_snapc_seq(&ioctx, oid, snapc_seq + 1, cls::rbd::ASSERT_SNAPC_SEQ_LE_SNAPSET_SEQ)); ASSERT_EQ(0, ioctx.selfmanaged_snap_remove(snapc_seq)); } TEST_F(TestClsRbd, sparsify) { librados::IoCtx ioctx; ASSERT_EQ(0, _rados.ioctx_create(_pool_name.c_str(), ioctx)); string oid = get_temp_image_name(); ioctx.remove(oid); bool sparse_read_supported = is_sparse_read_supported(ioctx, oid); // test sparsify on a non-existent object ASSERT_EQ(-ENOENT, sparsify(&ioctx, oid, 16, false)); uint64_t size; ASSERT_EQ(-ENOENT, ioctx.stat(oid, &size, NULL)); ASSERT_EQ(-ENOENT, sparsify(&ioctx, oid, 16, true)); ASSERT_EQ(-ENOENT, ioctx.stat(oid, &size, NULL)); // test sparsify on an empty object ASSERT_EQ(0, ioctx.create(oid, true)); ASSERT_EQ(0, sparsify(&ioctx, oid, 16, false)); ASSERT_EQ(0, sparsify(&ioctx, oid, 16, true)); ASSERT_EQ(-ENOENT, sparsify(&ioctx, oid, 16, false)); // test sparsify on a zeroed object bufferlist inbl; inbl.append(std::string(4096, '\0')); ASSERT_EQ(0, ioctx.write(oid, inbl, inbl.length(), 0)); ASSERT_EQ(0, sparsify(&ioctx, oid, 16, false)); std::map<uint64_t, uint64_t> m; bufferlist outbl; std::map<uint64_t, uint64_t> expected_m; bufferlist expected_outbl; switch (int r = ioctx.sparse_read(oid, m, outbl, inbl.length(), 0); r) { case 0: expected_m = {}; ASSERT_EQ(expected_m, m); break; case 1: expected_m = {{0, 0}}; ASSERT_EQ(expected_m, m); break; default: FAIL() << r << " is odd"; } ASSERT_EQ(m, expected_m); ASSERT_EQ(0, sparsify(&ioctx, oid, 16, true)); ASSERT_EQ(-ENOENT, sparsify(&ioctx, oid, 16, true)); ASSERT_EQ(0, ioctx.write(oid, inbl, inbl.length(), 0)); ASSERT_EQ(0, sparsify(&ioctx, oid, 16, true)); ASSERT_EQ(-ENOENT, sparsify(&ioctx, oid, 16, true)); // test sparsify on an object with zeroes inbl.append(std::string(4096, '1')); inbl.append(std::string(4096, '\0')); inbl.append(std::string(4096, '2')); inbl.append(std::string(4096, '\0')); ASSERT_EQ(0, ioctx.write(oid, inbl, inbl.length(), 0)); // try to sparsify with sparse_size too large ASSERT_EQ(0, sparsify(&ioctx, oid, inbl.length(), true)); expected_m = {{0, inbl.length()}}; expected_outbl = inbl; ASSERT_EQ((int)expected_m.size(), ioctx.sparse_read(oid, m, outbl, inbl.length(), 0)); ASSERT_EQ(m, expected_m); ASSERT_TRUE(outbl.contents_equal(expected_outbl)); // sparsify with small sparse_size ASSERT_EQ(0, sparsify(&ioctx, oid, 16, true)); outbl.clear(); ASSERT_EQ((int)(inbl.length() - 4096), ioctx.read(oid, outbl, inbl.length(), 0)); outbl.append(std::string(4096, '\0')); ASSERT_TRUE(outbl.contents_equal(expected_outbl)); if (sparse_read_supported) { expected_m = {{4096 * 1, 4096}, {4096 * 3, 4096}}; expected_outbl.clear(); expected_outbl.append(std::string(4096, '1')); expected_outbl.append(std::string(4096, '2')); } else { expected_m = {{0, 4 * 4096}}; expected_outbl.clear(); expected_outbl.append(std::string(4096, '\0')); expected_outbl.append(std::string(4096, '1')); expected_outbl.append(std::string(4096, '\0')); expected_outbl.append(std::string(4096, '2')); } m.clear(); outbl.clear(); ASSERT_EQ((int)expected_m.size(), ioctx.sparse_read(oid, m, outbl, inbl.length(), 0)); ASSERT_EQ(m, expected_m); ASSERT_TRUE(outbl.contents_equal(expected_outbl)); // test it is the same after yet another sparsify ASSERT_EQ(0, sparsify(&ioctx, oid, 16, true)); m.clear(); outbl.clear(); ASSERT_EQ((int)expected_m.size(), ioctx.sparse_read(oid, m, outbl, inbl.length(), 0)); ASSERT_EQ(m, expected_m); ASSERT_TRUE(outbl.contents_equal(expected_outbl)); ASSERT_EQ(0, ioctx.remove(oid)); ioctx.close(); }
125,005
35.455526
106
cc
null
ceph-main/src/test/cls_refcount/test_cls_refcount.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/types.h" #include "cls/refcount/cls_refcount_client.h" #include "gtest/gtest.h" #include "test/librados/test_cxx.h" #include <errno.h> #include <string> #include <vector> using namespace std; static librados::ObjectWriteOperation *new_op() { return new librados::ObjectWriteOperation(); } TEST(cls_refcount, test_implicit) /* test refcount using implicit referencing of newly created objects */ { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; string oldtag = "oldtag"; string newtag = "newtag"; /* get on a missing object will fail */ librados::ObjectWriteOperation *op = new_op(); cls_refcount_get(*op, newtag, true); ASSERT_EQ(-ENOENT, ioctx.operate(oid, op)); delete op; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* read reference, should return a single wildcard entry */ list<string> refs; ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); string wildcard_tag; string tag = refs.front(); ASSERT_EQ(wildcard_tag, tag); /* take another reference, verify */ op = new_op(); cls_refcount_get(*op, newtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(2, (int)refs.size()); map<string, bool> refs_map; for (list<string>::iterator iter = refs.begin(); iter != refs.end(); ++iter) { refs_map[*iter] = true; } ASSERT_EQ(1, (int)refs_map.count(wildcard_tag)); ASSERT_EQ(1, (int)refs_map.count(newtag)); delete op; /* drop reference to oldtag */ op = new_op(); cls_refcount_put(*op, oldtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); tag = refs.front(); ASSERT_EQ(newtag, tag); delete op; /* drop oldtag reference again, op should return success, wouldn't do anything */ op = new_op(); cls_refcount_put(*op, oldtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); tag = refs.front(); ASSERT_EQ(newtag, tag); delete op; /* drop newtag reference, make sure object removed */ op = new_op(); cls_refcount_put(*op, newtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(-ENOENT, ioctx.stat(oid, NULL, NULL)); delete op; /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } /* * similar to test_implicit, just changes the order of the tags removal * see issue #20107 */ TEST(cls_refcount, test_implicit_idempotent) /* test refcount using implicit referencing of newly created objects */ { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; string oldtag = "oldtag"; string newtag = "newtag"; /* get on a missing object will fail */ librados::ObjectWriteOperation *op = new_op(); cls_refcount_get(*op, newtag, true); ASSERT_EQ(-ENOENT, ioctx.operate(oid, op)); delete op; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* read reference, should return a single wildcard entry */ list<string> refs; ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); string wildcard_tag; string tag = refs.front(); ASSERT_EQ(wildcard_tag, tag); /* take another reference, verify */ op = new_op(); cls_refcount_get(*op, newtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(2, (int)refs.size()); map<string, bool> refs_map; for (list<string>::iterator iter = refs.begin(); iter != refs.end(); ++iter) { refs_map[*iter] = true; } ASSERT_EQ(1, (int)refs_map.count(wildcard_tag)); ASSERT_EQ(1, (int)refs_map.count(newtag)); delete op; /* drop reference to newtag */ op = new_op(); cls_refcount_put(*op, newtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); tag = refs.front(); ASSERT_EQ(string(), tag); delete op; /* drop newtag reference again, op should return success, wouldn't do anything */ op = new_op(); cls_refcount_put(*op, newtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); tag = refs.front(); ASSERT_EQ(string(), tag); delete op; /* drop oldtag reference, make sure object removed */ op = new_op(); cls_refcount_put(*op, oldtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(-ENOENT, ioctx.stat(oid, NULL, NULL)); delete op; /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } TEST(cls_refcount, test_put_snap) { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); bufferlist bl; bl.append("hi there"); ASSERT_EQ(0, ioctx.write("foo", bl, bl.length(), 0)); ASSERT_EQ(0, ioctx.snap_create("snapfoo")); ASSERT_EQ(0, ioctx.remove("foo")); sleep(2); ASSERT_EQ(0, ioctx.snap_create("snapbar")); librados::ObjectWriteOperation *op = new_op(); cls_refcount_put(*op, "notag", true); ASSERT_EQ(-ENOENT, ioctx.operate("foo", op)); EXPECT_EQ(0, ioctx.snap_remove("snapfoo")); EXPECT_EQ(0, ioctx.snap_remove("snapbar")); delete op; /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } TEST(cls_refcount, test_explicit) /* test refcount using implicit referencing of newly created objects */ { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* read reference, should return a single wildcard entry */ list<string> refs; ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs)); ASSERT_EQ(0, (int)refs.size()); /* take first reference, verify */ string newtag = "newtag"; librados::ObjectWriteOperation *op = new_op(); cls_refcount_get(*op, newtag); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs)); ASSERT_EQ(1, (int)refs.size()); map<string, bool> refs_map; for (list<string>::iterator iter = refs.begin(); iter != refs.end(); ++iter) { refs_map[*iter] = true; } ASSERT_EQ(1, (int)refs_map.count(newtag)); delete op; /* try to drop reference to unexisting tag */ string nosuchtag = "nosuchtag"; op = new_op(); cls_refcount_put(*op, nosuchtag); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs)); ASSERT_EQ(1, (int)refs.size()); string tag = refs.front(); ASSERT_EQ(newtag, tag); delete op; /* drop newtag reference, make sure object removed */ op = new_op(); cls_refcount_put(*op, newtag); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(-ENOENT, ioctx.stat(oid, NULL, NULL)); delete op; /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } TEST(cls_refcount, set) /* test refcount using implicit referencing of newly created objects */ { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* read reference, should return a single wildcard entry */ list<string> tag_refs, refs; #define TAGS_NUM 5 string tags[TAGS_NUM]; char buf[16]; for (int i = 0; i < TAGS_NUM; i++) { snprintf(buf, sizeof(buf), "tag%d", i); tags[i] = buf; tag_refs.push_back(tags[i]); } ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs)); ASSERT_EQ(0, (int)refs.size()); /* set reference list, verify */ librados::ObjectWriteOperation *op = new_op(); cls_refcount_set(*op, tag_refs); ASSERT_EQ(0, ioctx.operate(oid, op)); refs.clear(); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs)); ASSERT_EQ(TAGS_NUM, (int)refs.size()); map<string, bool> refs_map; for (list<string>::iterator iter = refs.begin(); iter != refs.end(); ++iter) { refs_map[*iter] = true; } for (int i = 0; i < TAGS_NUM; i++) { ASSERT_EQ(1, (int)refs_map.count(tags[i])); } delete op; /* remove all refs */ for (int i = 0; i < TAGS_NUM; i++) { op = new_op(); cls_refcount_put(*op, tags[i]); ASSERT_EQ(0, ioctx.operate(oid, op)); delete op; } ASSERT_EQ(-ENOENT, ioctx.stat(oid, NULL, NULL)); /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } TEST(cls_refcount, test_implicit_ec) /* test refcount using implicit referencing of newly created objects */ { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_ec_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; string oldtag = "oldtag"; string newtag = "newtag"; /* get on a missing object will fail */ librados::ObjectWriteOperation *op = new_op(); cls_refcount_get(*op, newtag, true); ASSERT_EQ(-ENOENT, ioctx.operate(oid, op)); delete op; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* read reference, should return a single wildcard entry */ list<string> refs; ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); string wildcard_tag; string tag = refs.front(); ASSERT_EQ(wildcard_tag, tag); /* take another reference, verify */ op = new_op(); cls_refcount_get(*op, newtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(2, (int)refs.size()); map<string, bool> refs_map; for (list<string>::iterator iter = refs.begin(); iter != refs.end(); ++iter) { refs_map[*iter] = true; } ASSERT_EQ(1, (int)refs_map.count(wildcard_tag)); ASSERT_EQ(1, (int)refs_map.count(newtag)); delete op; /* drop reference to oldtag */ op = new_op(); cls_refcount_put(*op, oldtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); tag = refs.front(); ASSERT_EQ(newtag, tag); delete op; /* drop oldtag reference again, op should return success, wouldn't do anything */ op = new_op(); cls_refcount_put(*op, oldtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); tag = refs.front(); ASSERT_EQ(newtag, tag); delete op; /* drop newtag reference, make sure object removed */ op = new_op(); cls_refcount_put(*op, newtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(-ENOENT, ioctx.stat(oid, NULL, NULL)); delete op; /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_ec_pool_pp(pool_name, rados)); } /* * similar to test_implicit, just changes the order of the tags removal * see issue #20107 */ TEST(cls_refcount, test_implicit_idempotent_ec) /* test refcount using implicit referencing of newly created objects */ { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_ec_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; string oldtag = "oldtag"; string newtag = "newtag"; /* get on a missing object will fail */ librados::ObjectWriteOperation *op = new_op(); cls_refcount_get(*op, newtag, true); ASSERT_EQ(-ENOENT, ioctx.operate(oid, op)); delete op; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* read reference, should return a single wildcard entry */ list<string> refs; ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); string wildcard_tag; string tag = refs.front(); ASSERT_EQ(wildcard_tag, tag); /* take another reference, verify */ op = new_op(); cls_refcount_get(*op, newtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(2, (int)refs.size()); map<string, bool> refs_map; for (list<string>::iterator iter = refs.begin(); iter != refs.end(); ++iter) { refs_map[*iter] = true; } ASSERT_EQ(1, (int)refs_map.count(wildcard_tag)); ASSERT_EQ(1, (int)refs_map.count(newtag)); delete op; /* drop reference to newtag */ op = new_op(); cls_refcount_put(*op, newtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); tag = refs.front(); ASSERT_EQ(string(), tag); delete op; /* drop newtag reference again, op should return success, wouldn't do anything */ op = new_op(); cls_refcount_put(*op, newtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs, true)); ASSERT_EQ(1, (int)refs.size()); tag = refs.front(); ASSERT_EQ(string(), tag); delete op; /* drop oldtag reference, make sure object removed */ op = new_op(); cls_refcount_put(*op, oldtag, true); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(-ENOENT, ioctx.stat(oid, NULL, NULL)); delete op; /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_ec_pool_pp(pool_name, rados)); } TEST(cls_refcount, test_put_snap_ec) { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_ec_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); bufferlist bl; bl.append("hi there"); ASSERT_EQ(0, ioctx.write("foo", bl, bl.length(), 0)); ASSERT_EQ(0, ioctx.snap_create("snapfoo")); ASSERT_EQ(0, ioctx.remove("foo")); sleep(2); ASSERT_EQ(0, ioctx.snap_create("snapbar")); librados::ObjectWriteOperation *op = new_op(); cls_refcount_put(*op, "notag", true); ASSERT_EQ(-ENOENT, ioctx.operate("foo", op)); EXPECT_EQ(0, ioctx.snap_remove("snapfoo")); EXPECT_EQ(0, ioctx.snap_remove("snapbar")); delete op; /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_ec_pool_pp(pool_name, rados)); } TEST(cls_refcount, test_explicit_ec) /* test refcount using implicit referencing of newly created objects */ { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_ec_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* read reference, should return a single wildcard entry */ list<string> refs; ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs)); ASSERT_EQ(0, (int)refs.size()); /* take first reference, verify */ string newtag = "newtag"; librados::ObjectWriteOperation *op = new_op(); cls_refcount_get(*op, newtag); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs)); ASSERT_EQ(1, (int)refs.size()); map<string, bool> refs_map; for (list<string>::iterator iter = refs.begin(); iter != refs.end(); ++iter) { refs_map[*iter] = true; } ASSERT_EQ(1, (int)refs_map.count(newtag)); delete op; /* try to drop reference to unexisting tag */ string nosuchtag = "nosuchtag"; op = new_op(); cls_refcount_put(*op, nosuchtag); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs)); ASSERT_EQ(1, (int)refs.size()); string tag = refs.front(); ASSERT_EQ(newtag, tag); delete op; /* drop newtag reference, make sure object removed */ op = new_op(); cls_refcount_put(*op, newtag); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(-ENOENT, ioctx.stat(oid, NULL, NULL)); delete op; /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_ec_pool_pp(pool_name, rados)); } TEST(cls_refcount, set_ec) /* test refcount using implicit referencing of newly created objects */ { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_ec_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); /* read reference, should return a single wildcard entry */ list<string> tag_refs, refs; #define TAGS_NUM 5 string tags[TAGS_NUM]; char buf[16]; for (int i = 0; i < TAGS_NUM; i++) { snprintf(buf, sizeof(buf), "tag%d", i); tags[i] = buf; tag_refs.push_back(tags[i]); } ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs)); ASSERT_EQ(0, (int)refs.size()); /* set reference list, verify */ librados::ObjectWriteOperation *op = new_op(); cls_refcount_set(*op, tag_refs); ASSERT_EQ(0, ioctx.operate(oid, op)); refs.clear(); ASSERT_EQ(0, cls_refcount_read(ioctx, oid, &refs)); ASSERT_EQ(TAGS_NUM, (int)refs.size()); map<string, bool> refs_map; for (list<string>::iterator iter = refs.begin(); iter != refs.end(); ++iter) { refs_map[*iter] = true; } for (int i = 0; i < TAGS_NUM; i++) { ASSERT_EQ(1, (int)refs_map.count(tags[i])); } delete op; /* remove all refs */ for (int i = 0; i < TAGS_NUM; i++) { op = new_op(); cls_refcount_put(*op, tags[i]); ASSERT_EQ(0, ioctx.operate(oid, op)); delete op; } ASSERT_EQ(-ENOENT, ioctx.stat(oid, NULL, NULL)); /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_ec_pool_pp(pool_name, rados)); }
18,789
23.120668
119
cc
null
ceph-main/src/test/cls_rgw/test_cls_rgw.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/types.h" #include "cls/rgw/cls_rgw_client.h" #include "cls/rgw/cls_rgw_ops.h" #include "gtest/gtest.h" #include "test/librados/test_cxx.h" #include "global/global_context.h" #include "common/ceph_context.h" #include <errno.h> #include <string> #include <vector> #include <map> #include <set> using namespace std; using namespace librados; // creates a temporary pool and initializes an IoCtx shared by all tests class cls_rgw : public ::testing::Test { static librados::Rados rados; static std::string pool_name; protected: static librados::IoCtx ioctx; static void SetUpTestCase() { pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); } static void TearDownTestCase() { /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); } }; librados::Rados cls_rgw::rados; std::string cls_rgw::pool_name; librados::IoCtx cls_rgw::ioctx; string str_int(string s, int i) { char buf[32]; snprintf(buf, sizeof(buf), "-%d", i); s.append(buf); return s; } void test_stats(librados::IoCtx& ioctx, string& oid, RGWObjCategory category, uint64_t num_entries, uint64_t total_size) { map<int, struct rgw_cls_list_ret> results; map<int, string> oids; oids[0] = oid; ASSERT_EQ(0, CLSRGWIssueGetDirHeader(ioctx, oids, results, 8)()); uint64_t entries = 0; uint64_t size = 0; map<int, struct rgw_cls_list_ret>::iterator iter = results.begin(); for (; iter != results.end(); ++iter) { entries += (iter->second).dir.header.stats[category].num_entries; size += (iter->second).dir.header.stats[category].total_size; } ASSERT_EQ(total_size, size); ASSERT_EQ(num_entries, entries); } void index_prepare(librados::IoCtx& ioctx, string& oid, RGWModifyOp index_op, string& tag, const cls_rgw_obj_key& key, string& loc, uint16_t bi_flags = 0, bool log_op = true) { ObjectWriteOperation op; rgw_zone_set zones_trace; cls_rgw_bucket_prepare_op(op, index_op, tag, key, loc, log_op, bi_flags, zones_trace); ASSERT_EQ(0, ioctx.operate(oid, &op)); } void index_complete(librados::IoCtx& ioctx, string& oid, RGWModifyOp index_op, string& tag, int epoch, const cls_rgw_obj_key& key, rgw_bucket_dir_entry_meta& meta, uint16_t bi_flags = 0, bool log_op = true) { ObjectWriteOperation op; rgw_bucket_entry_ver ver; ver.pool = ioctx.get_id(); ver.epoch = epoch; meta.accounted_size = meta.size; cls_rgw_bucket_complete_op(op, index_op, tag, ver, key, meta, nullptr, log_op, bi_flags, nullptr); ASSERT_EQ(0, ioctx.operate(oid, &op)); if (!key.instance.empty()) { bufferlist olh_tag; olh_tag.append(tag); rgw_zone_set zone_set; ASSERT_EQ(0, cls_rgw_bucket_link_olh(ioctx, oid, key, olh_tag, false, tag, &meta, epoch, ceph::real_time{}, true, true, zone_set)); } } TEST_F(cls_rgw, index_basic) { string bucket_oid = str_int("bucket", 0); ObjectWriteOperation op; cls_rgw_bucket_init_index(op); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); uint64_t epoch = 1; uint64_t obj_size = 1024; #define NUM_OBJS 10 for (int i = 0; i < NUM_OBJS; i++) { cls_rgw_obj_key obj = str_int("obj", i); string tag = str_int("tag", i); string loc = str_int("loc", i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc); test_stats(ioctx, bucket_oid, RGWObjCategory::None, i, obj_size * i); rgw_bucket_dir_entry_meta meta; meta.category = RGWObjCategory::None; meta.size = obj_size; index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, epoch, obj, meta); } test_stats(ioctx, bucket_oid, RGWObjCategory::None, NUM_OBJS, obj_size * NUM_OBJS); } TEST_F(cls_rgw, index_multiple_obj_writers) { string bucket_oid = str_int("bucket", 1); ObjectWriteOperation op; cls_rgw_bucket_init_index(op); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); uint64_t obj_size = 1024; cls_rgw_obj_key obj = str_int("obj", 0); string loc = str_int("loc", 0); /* multi prepare on a single object */ for (int i = 0; i < NUM_OBJS; i++) { string tag = str_int("tag", i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc); test_stats(ioctx, bucket_oid, RGWObjCategory::None, 0, 0); } for (int i = NUM_OBJS; i > 0; i--) { string tag = str_int("tag", i - 1); rgw_bucket_dir_entry_meta meta; meta.category = RGWObjCategory::None; meta.size = obj_size * i; index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, i, obj, meta); /* verify that object size doesn't change, as we went back with epoch */ test_stats(ioctx, bucket_oid, RGWObjCategory::None, 1, obj_size * NUM_OBJS); } } TEST_F(cls_rgw, index_remove_object) { string bucket_oid = str_int("bucket", 2); ObjectWriteOperation op; cls_rgw_bucket_init_index(op); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); uint64_t obj_size = 1024; uint64_t total_size = 0; int epoch = 0; /* prepare multiple objects */ for (int i = 0; i < NUM_OBJS; i++) { cls_rgw_obj_key obj = str_int("obj", i); string tag = str_int("tag", i); string loc = str_int("loc", i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc); test_stats(ioctx, bucket_oid, RGWObjCategory::None, i, total_size); rgw_bucket_dir_entry_meta meta; meta.category = RGWObjCategory::None; meta.size = i * obj_size; total_size += i * obj_size; index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, ++epoch, obj, meta); test_stats(ioctx, bucket_oid, RGWObjCategory::None, i + 1, total_size); } int i = NUM_OBJS / 2; string tag_remove = "tag-rm"; string tag_modify = "tag-mod"; cls_rgw_obj_key obj = str_int("obj", i); string loc = str_int("loc", i); /* prepare both removal and modification on the same object */ index_prepare(ioctx, bucket_oid, CLS_RGW_OP_DEL, tag_remove, obj, loc); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag_modify, obj, loc); test_stats(ioctx, bucket_oid, RGWObjCategory::None, NUM_OBJS, total_size); rgw_bucket_dir_entry_meta meta; /* complete object removal */ index_complete(ioctx, bucket_oid, CLS_RGW_OP_DEL, tag_remove, ++epoch, obj, meta); /* verify stats correct */ total_size -= i * obj_size; test_stats(ioctx, bucket_oid, RGWObjCategory::None, NUM_OBJS - 1, total_size); meta.size = 512; meta.category = RGWObjCategory::None; /* complete object modification */ index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag_modify, ++epoch, obj, meta); /* verify stats correct */ total_size += meta.size; test_stats(ioctx, bucket_oid, RGWObjCategory::None, NUM_OBJS, total_size); /* prepare both removal and modification on the same object, this time we'll * first complete modification then remove*/ index_prepare(ioctx, bucket_oid, CLS_RGW_OP_DEL, tag_remove, obj, loc); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_DEL, tag_modify, obj, loc); /* complete modification */ total_size -= meta.size; meta.size = i * obj_size * 2; meta.category = RGWObjCategory::None; /* complete object modification */ index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag_modify, ++epoch, obj, meta); /* verify stats correct */ total_size += meta.size; test_stats(ioctx, bucket_oid, RGWObjCategory::None, NUM_OBJS, total_size); /* complete object removal */ index_complete(ioctx, bucket_oid, CLS_RGW_OP_DEL, tag_remove, ++epoch, obj, meta); /* verify stats correct */ total_size -= meta.size; test_stats(ioctx, bucket_oid, RGWObjCategory::None, NUM_OBJS - 1, total_size); } TEST_F(cls_rgw, index_suggest) { string bucket_oid = str_int("suggest", 1); { ObjectWriteOperation op; cls_rgw_bucket_init_index(op); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); } uint64_t total_size = 0; int epoch = 0; int num_objs = 100; uint64_t obj_size = 1024; /* create multiple objects */ for (int i = 0; i < num_objs; i++) { cls_rgw_obj_key obj = str_int("obj", i); string tag = str_int("tag", i); string loc = str_int("loc", i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc); test_stats(ioctx, bucket_oid, RGWObjCategory::None, i, total_size); rgw_bucket_dir_entry_meta meta; meta.category = RGWObjCategory::None; meta.size = obj_size; total_size += meta.size; index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, ++epoch, obj, meta); test_stats(ioctx, bucket_oid, RGWObjCategory::None, i + 1, total_size); } /* prepare (without completion) some of the objects */ for (int i = 0; i < num_objs; i += 2) { cls_rgw_obj_key obj = str_int("obj", i); string tag = str_int("tag-prepare", i); string loc = str_int("loc", i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc); test_stats(ioctx, bucket_oid, RGWObjCategory::None, num_objs, total_size); } int actual_num_objs = num_objs; /* remove half of the objects */ for (int i = num_objs / 2; i < num_objs; i++) { cls_rgw_obj_key obj = str_int("obj", i); string tag = str_int("tag-rm", i); string loc = str_int("loc", i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc); test_stats(ioctx, bucket_oid, RGWObjCategory::None, actual_num_objs, total_size); rgw_bucket_dir_entry_meta meta; index_complete(ioctx, bucket_oid, CLS_RGW_OP_DEL, tag, ++epoch, obj, meta); total_size -= obj_size; actual_num_objs--; test_stats(ioctx, bucket_oid, RGWObjCategory::None, actual_num_objs, total_size); } bufferlist updates; for (int i = 0; i < num_objs; i += 2) { cls_rgw_obj_key obj = str_int("obj", i); string tag = str_int("tag-rm", i); string loc = str_int("loc", i); rgw_bucket_dir_entry dirent; dirent.key.name = obj.name; dirent.locator = loc; dirent.exists = (i < num_objs / 2); // we removed half the objects dirent.meta.size = 1024; dirent.meta.accounted_size = 1024; char suggest_op = (i < num_objs / 2 ? CEPH_RGW_UPDATE : CEPH_RGW_REMOVE); cls_rgw_encode_suggestion(suggest_op, dirent, updates); } map<int, string> bucket_objs; bucket_objs[0] = bucket_oid; int r = CLSRGWIssueSetTagTimeout(ioctx, bucket_objs, 8 /* max aio */, 1)(); ASSERT_EQ(0, r); sleep(1); /* suggest changes! */ { ObjectWriteOperation op; cls_rgw_suggest_changes(op, updates); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); } /* suggest changes twice! */ { ObjectWriteOperation op; cls_rgw_suggest_changes(op, updates); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); } test_stats(ioctx, bucket_oid, RGWObjCategory::None, num_objs / 2, total_size); } static void list_entries(librados::IoCtx& ioctx, const std::string& oid, uint32_t num_entries, std::map<int, rgw_cls_list_ret>& results) { std::map<int, std::string> oids = { {0, oid} }; cls_rgw_obj_key start_key; string empty_prefix; string empty_delimiter; ASSERT_EQ(0, CLSRGWIssueBucketList(ioctx, start_key, empty_prefix, empty_delimiter, num_entries, true, oids, results, 1)()); } TEST_F(cls_rgw, index_suggest_complete) { string bucket_oid = str_int("suggest", 2); { ObjectWriteOperation op; cls_rgw_bucket_init_index(op); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); } cls_rgw_obj_key obj = str_int("obj", 0); string tag = str_int("tag-prepare", 0); string loc = str_int("loc", 0); // prepare entry index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc); // list entry before completion rgw_bucket_dir_entry dirent; { std::map<int, rgw_cls_list_ret> listing; list_entries(ioctx, bucket_oid, 1, listing); ASSERT_EQ(1, listing.size()); const auto& entries = listing.begin()->second.dir.m; ASSERT_EQ(1, entries.size()); dirent = entries.begin()->second; ASSERT_EQ(obj, dirent.key); } // complete entry { rgw_bucket_dir_entry_meta meta; index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, 1, obj, meta); } // suggest removal of listed entry { bufferlist updates; cls_rgw_encode_suggestion(CEPH_RGW_REMOVE, dirent, updates); ObjectWriteOperation op; cls_rgw_suggest_changes(op, updates); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); } // list entry again, verify that suggested removal was not applied { std::map<int, rgw_cls_list_ret> listing; list_entries(ioctx, bucket_oid, 1, listing); ASSERT_EQ(1, listing.size()); const auto& entries = listing.begin()->second.dir.m; ASSERT_EQ(1, entries.size()); EXPECT_TRUE(entries.begin()->second.exists); } } /* * This case is used to test whether get_obj_vals will * return all validate utf8 objnames and filter out those * in BI_PREFIX_CHAR private namespace. */ TEST_F(cls_rgw, index_list) { string bucket_oid = str_int("bucket", 4); ObjectWriteOperation op; cls_rgw_bucket_init_index(op); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); uint64_t epoch = 1; uint64_t obj_size = 1024; const int num_objs = 4; const string keys[num_objs] = { /* single byte utf8 character */ { static_cast<char>(0x41) }, /* double byte utf8 character */ { static_cast<char>(0xCF), static_cast<char>(0x8F) }, /* treble byte utf8 character */ { static_cast<char>(0xDF), static_cast<char>(0x8F), static_cast<char>(0x8F) }, /* quadruble byte utf8 character */ { static_cast<char>(0xF7), static_cast<char>(0x8F), static_cast<char>(0x8F), static_cast<char>(0x8F) }, }; for (int i = 0; i < num_objs; i++) { string obj = keys[i]; string tag = str_int("tag", i); string loc = str_int("loc", i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc, 0 /* bi_flags */, false /* log_op */); rgw_bucket_dir_entry_meta meta; meta.category = RGWObjCategory::None; meta.size = obj_size; index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, epoch, obj, meta, 0 /* bi_flags */, false /* log_op */); } map<string, bufferlist> entries; /* insert 998 omap key starts with BI_PREFIX_CHAR, * so bucket list first time will get one key before 0x80 and one key after */ for (int i = 0; i < 998; ++i) { char buf[10]; snprintf(buf, sizeof(buf), "%c%s%d", 0x80, "1000_", i); entries.emplace(string{buf}, bufferlist{}); } ioctx.omap_set(bucket_oid, entries); test_stats(ioctx, bucket_oid, RGWObjCategory::None, num_objs, obj_size * num_objs); map<int, string> oids = { {0, bucket_oid} }; map<int, struct rgw_cls_list_ret> list_results; cls_rgw_obj_key start_key("", ""); string empty_prefix; string empty_delimiter; int r = CLSRGWIssueBucketList(ioctx, start_key, empty_prefix, empty_delimiter, 1000, true, oids, list_results, 1)(); ASSERT_EQ(r, 0); ASSERT_EQ(1u, list_results.size()); auto it = list_results.begin(); auto m = (it->second).dir.m; ASSERT_EQ(4u, m.size()); int i = 0; for(auto it2 = m.cbegin(); it2 != m.cend(); it2++, i++) { ASSERT_EQ(it2->first.compare(keys[i]), 0); } } /* * This case is used to test when bucket index list that includes a * delimiter can handle the first chunk ending in a delimiter. */ TEST_F(cls_rgw, index_list_delimited) { string bucket_oid = str_int("bucket", 7); ObjectWriteOperation op; cls_rgw_bucket_init_index(op); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); uint64_t epoch = 1; uint64_t obj_size = 1024; const int file_num_objs = 5; const int dir_num_objs = 1005; std::vector<std::string> file_prefixes = { "a", "c", "e", "g", "i", "k", "m", "o", "q", "s", "u" }; std::vector<std::string> dir_prefixes = { "b/", "d/", "f/", "h/", "j/", "l/", "n/", "p/", "r/", "t/" }; rgw_bucket_dir_entry_meta meta; meta.category = RGWObjCategory::None; meta.size = obj_size; // create top-level files for (const auto& p : file_prefixes) { for (int i = 0; i < file_num_objs; i++) { string tag = str_int("tag", i); string loc = str_int("loc", i); const string obj = str_int(p, i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc, 0 /* bi_flags */, false /* log_op */); index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, epoch, obj, meta, 0 /* bi_flags */, false /* log_op */); } } // create large directories for (const auto& p : dir_prefixes) { for (int i = 0; i < dir_num_objs; i++) { string tag = str_int("tag", i); string loc = str_int("loc", i); const string obj = p + str_int("f", i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc, 0 /* bi_flags */, false /* log_op */); index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, epoch, obj, meta, 0 /* bi_flags */, false /* log_op */); } } map<int, string> oids = { {0, bucket_oid} }; map<int, struct rgw_cls_list_ret> list_results; cls_rgw_obj_key start_key("", ""); const string empty_prefix; const string delimiter = "/"; int r = CLSRGWIssueBucketList(ioctx, start_key, empty_prefix, delimiter, 1000, true, oids, list_results, 1)(); ASSERT_EQ(r, 0); ASSERT_EQ(1u, list_results.size()) << "Because we only have one bucket index shard, we should " "only get one list_result."; auto it = list_results.begin(); auto id_entry_map = it->second.dir.m; bool truncated = it->second.is_truncated; // the cls code will make 4 tries to get 1000 entries; however // because each of the subdirectories is so large, each attempt will // only retrieve the first part of the subdirectory ASSERT_EQ(48u, id_entry_map.size()) << "We should get 40 top-level entries and the tops of 8 \"subdirectories\"."; ASSERT_EQ(true, truncated) << "We did not get all entries."; ASSERT_EQ("a-0", id_entry_map.cbegin()->first); ASSERT_EQ("p/", id_entry_map.crbegin()->first); // now let's get the rest of the entries list_results.clear(); cls_rgw_obj_key start_key2("p/", ""); r = CLSRGWIssueBucketList(ioctx, start_key2, empty_prefix, delimiter, 1000, true, oids, list_results, 1)(); ASSERT_EQ(r, 0); it = list_results.begin(); id_entry_map = it->second.dir.m; truncated = it->second.is_truncated; ASSERT_EQ(17u, id_entry_map.size()) << "We should get 15 top-level entries and the tops of 2 \"subdirectories\"."; ASSERT_EQ(false, truncated) << "We now have all entries."; ASSERT_EQ("q-0", id_entry_map.cbegin()->first); ASSERT_EQ("u-4", id_entry_map.crbegin()->first); } TEST_F(cls_rgw, bi_list) { string bucket_oid = str_int("bucket", 5); CephContext *cct = reinterpret_cast<CephContext *>(ioctx.cct()); ObjectWriteOperation op; cls_rgw_bucket_init_index(op); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); const std::string empty_name_filter; uint64_t max = 10; std::list<rgw_cls_bi_entry> entries; bool is_truncated; std::string marker; int ret = cls_rgw_bi_list(ioctx, bucket_oid, empty_name_filter, marker, max, &entries, &is_truncated); ASSERT_EQ(ret, 0); ASSERT_EQ(entries.size(), 0u) << "The listing of an empty bucket as 0 entries."; ASSERT_EQ(is_truncated, false) << "The listing of an empty bucket is not truncated."; uint64_t epoch = 1; uint64_t obj_size = 1024; const uint64_t num_objs = 35; for (uint64_t i = 0; i < num_objs; i++) { string obj = str_int(i % 4 ? "obj" : "об'єкт", i); string tag = str_int("tag", i); string loc = str_int("loc", i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc, RGW_BILOG_FLAG_VERSIONED_OP); rgw_bucket_dir_entry_meta meta; meta.category = RGWObjCategory::None; meta.size = obj_size; index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, epoch, obj, meta, RGW_BILOG_FLAG_VERSIONED_OP); } ret = cls_rgw_bi_list(ioctx, bucket_oid, empty_name_filter, marker, num_objs + 10, &entries, &is_truncated); ASSERT_EQ(ret, 0); if (is_truncated) { ASSERT_LT(entries.size(), num_objs); } else { ASSERT_EQ(entries.size(), num_objs); } uint64_t num_entries = 0; is_truncated = true; marker.clear(); while(is_truncated) { ret = cls_rgw_bi_list(ioctx, bucket_oid, empty_name_filter, marker, max, &entries, &is_truncated); ASSERT_EQ(ret, 0); if (is_truncated) { ASSERT_LT(entries.size(), num_objs - num_entries); } else { ASSERT_EQ(entries.size(), num_objs - num_entries); } num_entries += entries.size(); marker = entries.back().idx; } // try with marker as final entry ret = cls_rgw_bi_list(ioctx, bucket_oid, empty_name_filter, marker, max, &entries, &is_truncated); ASSERT_EQ(ret, 0); ASSERT_EQ(entries.size(), 0u); ASSERT_EQ(is_truncated, false); if (cct->_conf->osd_max_omap_entries_per_request < 15) { num_entries = 0; max = 15; is_truncated = true; marker.clear(); while(is_truncated) { ret = cls_rgw_bi_list(ioctx, bucket_oid, empty_name_filter, marker, max, &entries, &is_truncated); ASSERT_EQ(ret, 0); if (is_truncated) { ASSERT_LT(entries.size(), num_objs - num_entries); } else { ASSERT_EQ(entries.size(), num_objs - num_entries); } num_entries += entries.size(); marker = entries.back().idx; } // try with marker as final entry ret = cls_rgw_bi_list(ioctx, bucket_oid, empty_name_filter, marker, max, &entries, &is_truncated); ASSERT_EQ(ret, 0); ASSERT_EQ(entries.size(), 0u); ASSERT_EQ(is_truncated, false); } // test with name filters; pairs contain filter and expected number of elements returned const std::list<std::pair<const std::string,unsigned>> filters_results = { { str_int("obj", 9), 1 }, { str_int("об'єкт", 8), 1 }, { str_int("obj", 8), 0 } }; for (const auto& filter_result : filters_results) { is_truncated = true; entries.clear(); marker.clear(); ret = cls_rgw_bi_list(ioctx, bucket_oid, filter_result.first, marker, max, &entries, &is_truncated); ASSERT_EQ(ret, 0) << "bi list test with name filters should succeed"; ASSERT_EQ(entries.size(), filter_result.second) << "bi list test with filters should return the correct number of results"; ASSERT_EQ(is_truncated, false) << "bi list test with filters should return correct truncation indicator"; } // test whether combined segment count is correcgt is_truncated = false; entries.clear(); marker.clear(); ret = cls_rgw_bi_list(ioctx, bucket_oid, empty_name_filter, marker, num_objs - 1, &entries, &is_truncated); ASSERT_EQ(ret, 0) << "combined segment count should succeed"; ASSERT_EQ(entries.size(), num_objs - 1) << "combined segment count should return the correct number of results"; ASSERT_EQ(is_truncated, true) << "combined segment count should return correct truncation indicator"; marker = entries.back().idx; // advance marker ret = cls_rgw_bi_list(ioctx, bucket_oid, empty_name_filter, marker, num_objs - 1, &entries, &is_truncated); ASSERT_EQ(ret, 0) << "combined segment count should succeed"; ASSERT_EQ(entries.size(), 1) << "combined segment count should return the correct number of results"; ASSERT_EQ(is_truncated, false) << "combined segment count should return correct truncation indicator"; } /* test garbage collection */ static void create_obj(cls_rgw_obj& obj, int i, int j) { char buf[32]; snprintf(buf, sizeof(buf), "-%d.%d", i, j); obj.pool = "pool"; obj.pool.append(buf); obj.key.name = "oid"; obj.key.name.append(buf); obj.loc = "loc"; obj.loc.append(buf); } static bool cmp_objs(cls_rgw_obj& obj1, cls_rgw_obj& obj2) { return (obj1.pool == obj2.pool) && (obj1.key == obj2.key) && (obj1.loc == obj2.loc); } TEST_F(cls_rgw, gc_set) { /* add chains */ string oid = "obj"; for (int i = 0; i < 10; i++) { char buf[32]; snprintf(buf, sizeof(buf), "chain-%d", i); string tag = buf; librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); op.create(false); // create object info.tag = tag; cls_rgw_gc_set_entry(op, 0, info); ASSERT_EQ(0, ioctx.operate(oid, &op)); } bool truncated; list<cls_rgw_gc_obj_info> entries; string marker; string next_marker; /* list chains, verify truncated */ ASSERT_EQ(0, cls_rgw_gc_list(ioctx, oid, marker, 8, true, entries, &truncated, next_marker)); ASSERT_EQ(8, (int)entries.size()); ASSERT_EQ(1, truncated); entries.clear(); next_marker.clear(); /* list all chains, verify not truncated */ ASSERT_EQ(0, cls_rgw_gc_list(ioctx, oid, marker, 10, true, entries, &truncated, next_marker)); ASSERT_EQ(10, (int)entries.size()); ASSERT_EQ(0, truncated); /* verify all chains are valid */ list<cls_rgw_gc_obj_info>::iterator iter = entries.begin(); for (int i = 0; i < 10; i++, ++iter) { cls_rgw_gc_obj_info& entry = *iter; /* create expected chain name */ char buf[32]; snprintf(buf, sizeof(buf), "chain-%d", i); string tag = buf; /* verify chain name as expected */ ASSERT_EQ(entry.tag, tag); /* verify expected num of objects in chain */ ASSERT_EQ(2, (int)entry.chain.objs.size()); list<cls_rgw_obj>::iterator oiter = entry.chain.objs.begin(); cls_rgw_obj obj1, obj2; /* create expected objects */ create_obj(obj1, i, 1); create_obj(obj2, i, 2); /* assign returned object names */ cls_rgw_obj& ret_obj1 = *oiter++; cls_rgw_obj& ret_obj2 = *oiter; /* verify objects are as expected */ ASSERT_EQ(1, (int)cmp_objs(obj1, ret_obj1)); ASSERT_EQ(1, (int)cmp_objs(obj2, ret_obj2)); } } TEST_F(cls_rgw, gc_list) { /* add chains */ string oid = "obj"; for (int i = 0; i < 10; i++) { char buf[32]; snprintf(buf, sizeof(buf), "chain-%d", i); string tag = buf; librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); op.create(false); // create object info.tag = tag; cls_rgw_gc_set_entry(op, 0, info); ASSERT_EQ(0, ioctx.operate(oid, &op)); } bool truncated; list<cls_rgw_gc_obj_info> entries; list<cls_rgw_gc_obj_info> entries2; string marker; string next_marker; /* list chains, verify truncated */ ASSERT_EQ(0, cls_rgw_gc_list(ioctx, oid, marker, 8, true, entries, &truncated, next_marker)); ASSERT_EQ(8, (int)entries.size()); ASSERT_EQ(1, truncated); marker = next_marker; next_marker.clear(); ASSERT_EQ(0, cls_rgw_gc_list(ioctx, oid, marker, 8, true, entries2, &truncated, next_marker)); ASSERT_EQ(2, (int)entries2.size()); ASSERT_EQ(0, truncated); entries.splice(entries.end(), entries2); /* verify all chains are valid */ list<cls_rgw_gc_obj_info>::iterator iter = entries.begin(); for (int i = 0; i < 10; i++, ++iter) { cls_rgw_gc_obj_info& entry = *iter; /* create expected chain name */ char buf[32]; snprintf(buf, sizeof(buf), "chain-%d", i); string tag = buf; /* verify chain name as expected */ ASSERT_EQ(entry.tag, tag); /* verify expected num of objects in chain */ ASSERT_EQ(2, (int)entry.chain.objs.size()); list<cls_rgw_obj>::iterator oiter = entry.chain.objs.begin(); cls_rgw_obj obj1, obj2; /* create expected objects */ create_obj(obj1, i, 1); create_obj(obj2, i, 2); /* assign returned object names */ cls_rgw_obj& ret_obj1 = *oiter++; cls_rgw_obj& ret_obj2 = *oiter; /* verify objects are as expected */ ASSERT_EQ(1, (int)cmp_objs(obj1, ret_obj1)); ASSERT_EQ(1, (int)cmp_objs(obj2, ret_obj2)); } } TEST_F(cls_rgw, gc_defer) { librados::IoCtx ioctx; librados::Rados rados; string gc_pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(gc_pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(gc_pool_name.c_str(), ioctx)); string oid = "obj"; string tag = "mychain"; librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; op.create(false); info.tag = tag; /* create chain */ cls_rgw_gc_set_entry(op, 0, info); ASSERT_EQ(0, ioctx.operate(oid, &op)); bool truncated; list<cls_rgw_gc_obj_info> entries; string marker; string next_marker; /* list chains, verify num entries as expected */ ASSERT_EQ(0, cls_rgw_gc_list(ioctx, oid, marker, 1, true, entries, &truncated, next_marker)); ASSERT_EQ(1, (int)entries.size()); ASSERT_EQ(0, truncated); librados::ObjectWriteOperation op2; /* defer chain */ cls_rgw_gc_defer_entry(op2, 5, tag); ASSERT_EQ(0, ioctx.operate(oid, &op2)); entries.clear(); next_marker.clear(); /* verify list doesn't show deferred entry (this may fail if cluster is thrashing) */ ASSERT_EQ(0, cls_rgw_gc_list(ioctx, oid, marker, 1, true, entries, &truncated, next_marker)); ASSERT_EQ(0, (int)entries.size()); ASSERT_EQ(0, truncated); /* wait enough */ sleep(5); next_marker.clear(); /* verify list shows deferred entry */ ASSERT_EQ(0, cls_rgw_gc_list(ioctx, oid, marker, 1, true, entries, &truncated, next_marker)); ASSERT_EQ(1, (int)entries.size()); ASSERT_EQ(0, truncated); librados::ObjectWriteOperation op3; vector<string> tags; tags.push_back(tag); /* remove chain */ cls_rgw_gc_remove(op3, tags); ASSERT_EQ(0, ioctx.operate(oid, &op3)); entries.clear(); next_marker.clear(); /* verify entry was removed */ ASSERT_EQ(0, cls_rgw_gc_list(ioctx, oid, marker, 1, true, entries, &truncated, next_marker)); ASSERT_EQ(0, (int)entries.size()); ASSERT_EQ(0, truncated); /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(gc_pool_name, rados)); } auto populate_usage_log_info(std::string user, std::string payer, int total_usage_entries) { rgw_usage_log_info info; for (int i=0; i < total_usage_entries; i++){ auto bucket = str_int("bucket", i); info.entries.emplace_back(rgw_usage_log_entry(user, payer, bucket)); } return info; } auto gen_usage_log_info(std::string payer, std::string bucket, int total_usage_entries) { rgw_usage_log_info info; for (int i=0; i < total_usage_entries; i++){ auto user = str_int("user", i); info.entries.emplace_back(rgw_usage_log_entry(user, payer, bucket)); } return info; } TEST_F(cls_rgw, usage_basic) { string oid="usage.1"; string user="user1"; uint64_t start_epoch{0}, end_epoch{(uint64_t) -1}; int total_usage_entries = 512; uint64_t max_entries = 2000; string payer; auto info = populate_usage_log_info(user, payer, total_usage_entries); ObjectWriteOperation op; cls_rgw_usage_log_add(op, info); ASSERT_EQ(0, ioctx.operate(oid, &op)); string read_iter; map <rgw_user_bucket, rgw_usage_log_entry> usage, usage2; bool truncated; int ret = cls_rgw_usage_log_read(ioctx, oid, user, "", start_epoch, end_epoch, max_entries, read_iter, usage, &truncated); // read the entries, and see that we have all the added entries ASSERT_EQ(0, ret); ASSERT_FALSE(truncated); ASSERT_EQ(static_cast<uint64_t>(total_usage_entries), usage.size()); // delete and read to assert that we've deleted all the values ASSERT_EQ(0, cls_rgw_usage_log_trim(ioctx, oid, user, "", start_epoch, end_epoch)); ret = cls_rgw_usage_log_read(ioctx, oid, user, "", start_epoch, end_epoch, max_entries, read_iter, usage2, &truncated); ASSERT_EQ(0, ret); ASSERT_EQ(0u, usage2.size()); // add and read to assert that bucket option is valid for usage reading string bucket1 = "bucket-usage-1"; string bucket2 = "bucket-usage-2"; info = gen_usage_log_info(payer, bucket1, 100); cls_rgw_usage_log_add(op, info); ASSERT_EQ(0, ioctx.operate(oid, &op)); info = gen_usage_log_info(payer, bucket2, 100); cls_rgw_usage_log_add(op, info); ASSERT_EQ(0, ioctx.operate(oid, &op)); ret = cls_rgw_usage_log_read(ioctx, oid, "", bucket1, start_epoch, end_epoch, max_entries, read_iter, usage2, &truncated); ASSERT_EQ(0, ret); ASSERT_EQ(100u, usage2.size()); // delete and read to assert that bucket option is valid for usage trim ASSERT_EQ(0, cls_rgw_usage_log_trim(ioctx, oid, "", bucket1, start_epoch, end_epoch)); ret = cls_rgw_usage_log_read(ioctx, oid, "", bucket1, start_epoch, end_epoch, max_entries, read_iter, usage2, &truncated); ASSERT_EQ(0, ret); ASSERT_EQ(0u, usage2.size()); ASSERT_EQ(0, cls_rgw_usage_log_trim(ioctx, oid, "", bucket2, start_epoch, end_epoch)); } TEST_F(cls_rgw, usage_clear_no_obj) { string user="user1"; string oid="usage.10"; librados::ObjectWriteOperation op; cls_rgw_usage_log_clear(op); int ret = ioctx.operate(oid, &op); ASSERT_EQ(0, ret); } TEST_F(cls_rgw, usage_clear) { string user="user1"; string payer; string oid="usage.10"; librados::ObjectWriteOperation op; int max_entries=2000; auto info = populate_usage_log_info(user, payer, max_entries); cls_rgw_usage_log_add(op, info); ASSERT_EQ(0, ioctx.operate(oid, &op)); ObjectWriteOperation op2; cls_rgw_usage_log_clear(op2); int ret = ioctx.operate(oid, &op2); ASSERT_EQ(0, ret); map <rgw_user_bucket, rgw_usage_log_entry> usage; bool truncated; uint64_t start_epoch{0}, end_epoch{(uint64_t) -1}; string read_iter; ret = cls_rgw_usage_log_read(ioctx, oid, user, "", start_epoch, end_epoch, max_entries, read_iter, usage, &truncated); ASSERT_EQ(0, ret); ASSERT_EQ(0u, usage.size()); } static int bilog_list(librados::IoCtx& ioctx, const std::string& oid, cls_rgw_bi_log_list_ret *result) { int retcode = 0; librados::ObjectReadOperation op; cls_rgw_bilog_list(op, "", 128, result, &retcode); int ret = ioctx.operate(oid, &op, nullptr); if (ret < 0) { return ret; } return retcode; } static int bilog_trim(librados::IoCtx& ioctx, const std::string& oid, const std::string& start_marker, const std::string& end_marker) { librados::ObjectWriteOperation op; cls_rgw_bilog_trim(op, start_marker, end_marker); return ioctx.operate(oid, &op); } TEST_F(cls_rgw, bi_log_trim) { string bucket_oid = str_int("bucket", 6); ObjectWriteOperation op; cls_rgw_bucket_init_index(op); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); // create 10 versioned entries. this generates instance and olh bi entries, // allowing us to check that bilog trim doesn't remove any of those for (int i = 0; i < 10; i++) { cls_rgw_obj_key obj{str_int("obj", i), "inst"}; string tag = str_int("tag", i); string loc = str_int("loc", i); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc); rgw_bucket_dir_entry_meta meta; index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, 1, obj, meta); } // bi list { list<rgw_cls_bi_entry> entries; bool truncated{false}; ASSERT_EQ(0, cls_rgw_bi_list(ioctx, bucket_oid, "", "", 128, &entries, &truncated)); // prepare/complete/instance/olh entry for each EXPECT_EQ(40u, entries.size()); EXPECT_FALSE(truncated); } // bilog list vector<rgw_bi_log_entry> bilog1; { cls_rgw_bi_log_list_ret bilog; ASSERT_EQ(0, bilog_list(ioctx, bucket_oid, &bilog)); // complete/olh entry for each EXPECT_EQ(20u, bilog.entries.size()); bilog1.assign(std::make_move_iterator(bilog.entries.begin()), std::make_move_iterator(bilog.entries.end())); } // trim front of bilog { const std::string from = ""; const std::string to = bilog1[0].id; ASSERT_EQ(0, bilog_trim(ioctx, bucket_oid, from, to)); cls_rgw_bi_log_list_ret bilog; ASSERT_EQ(0, bilog_list(ioctx, bucket_oid, &bilog)); EXPECT_EQ(19u, bilog.entries.size()); EXPECT_EQ(bilog1[1].id, bilog.entries.begin()->id); ASSERT_EQ(-ENODATA, bilog_trim(ioctx, bucket_oid, from, to)); } // trim back of bilog { const std::string from = bilog1[18].id; const std::string to = "9"; ASSERT_EQ(0, bilog_trim(ioctx, bucket_oid, from, to)); cls_rgw_bi_log_list_ret bilog; ASSERT_EQ(0, bilog_list(ioctx, bucket_oid, &bilog)); EXPECT_EQ(18u, bilog.entries.size()); EXPECT_EQ(bilog1[18].id, bilog.entries.rbegin()->id); ASSERT_EQ(-ENODATA, bilog_trim(ioctx, bucket_oid, from, to)); } // trim middle of bilog { const std::string from = bilog1[13].id; const std::string to = bilog1[14].id; ASSERT_EQ(0, bilog_trim(ioctx, bucket_oid, from, to)); cls_rgw_bi_log_list_ret bilog; ASSERT_EQ(0, bilog_list(ioctx, bucket_oid, &bilog)); EXPECT_EQ(17u, bilog.entries.size()); ASSERT_EQ(-ENODATA, bilog_trim(ioctx, bucket_oid, from, to)); } // trim full bilog { const std::string from = ""; const std::string to = "9"; ASSERT_EQ(0, bilog_trim(ioctx, bucket_oid, from, to)); cls_rgw_bi_log_list_ret bilog; ASSERT_EQ(0, bilog_list(ioctx, bucket_oid, &bilog)); EXPECT_EQ(0u, bilog.entries.size()); ASSERT_EQ(-ENODATA, bilog_trim(ioctx, bucket_oid, from, to)); } // bi list should be the same { list<rgw_cls_bi_entry> entries; bool truncated{false}; ASSERT_EQ(0, cls_rgw_bi_list(ioctx, bucket_oid, "", "", 128, &entries, &truncated)); EXPECT_EQ(40u, entries.size()); EXPECT_FALSE(truncated); } } TEST_F(cls_rgw, index_racing_removes) { string bucket_oid = str_int("bucket", 8); ObjectWriteOperation op; cls_rgw_bucket_init_index(op); ASSERT_EQ(0, ioctx.operate(bucket_oid, &op)); int epoch = 0; rgw_bucket_dir_entry dirent; rgw_bucket_dir_entry_meta meta; // prepare/complete add for single object const cls_rgw_obj_key obj{"obj"}; std::string loc = "loc"; { std::string tag = "tag-add"; index_prepare(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, obj, loc); index_complete(ioctx, bucket_oid, CLS_RGW_OP_ADD, tag, ++epoch, obj, meta); test_stats(ioctx, bucket_oid, RGWObjCategory::None, 1, 0); } // list to verify no pending ops { std::map<int, rgw_cls_list_ret> results; list_entries(ioctx, bucket_oid, 1, results); ASSERT_EQ(1, results.size()); const auto& entries = results.begin()->second.dir.m; ASSERT_EQ(1, entries.size()); dirent = std::move(entries.begin()->second); ASSERT_EQ(obj, dirent.key); ASSERT_TRUE(dirent.exists); ASSERT_TRUE(dirent.pending_map.empty()); } // prepare three racing removals std::string tag1 = "tag-rm1"; std::string tag2 = "tag-rm2"; std::string tag3 = "tag-rm3"; index_prepare(ioctx, bucket_oid, CLS_RGW_OP_DEL, tag1, obj, loc); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_DEL, tag2, obj, loc); index_prepare(ioctx, bucket_oid, CLS_RGW_OP_DEL, tag3, obj, loc); test_stats(ioctx, bucket_oid, RGWObjCategory::None, 1, 0); // complete on tag2 index_complete(ioctx, bucket_oid, CLS_RGW_OP_DEL, tag2, ++epoch, obj, meta); { std::map<int, rgw_cls_list_ret> results; list_entries(ioctx, bucket_oid, 1, results); ASSERT_EQ(1, results.size()); const auto& entries = results.begin()->second.dir.m; ASSERT_EQ(1, entries.size()); dirent = std::move(entries.begin()->second); ASSERT_EQ(obj, dirent.key); ASSERT_FALSE(dirent.exists); ASSERT_FALSE(dirent.pending_map.empty()); } // cancel on tag1 index_complete(ioctx, bucket_oid, CLS_RGW_OP_CANCEL, tag1, ++epoch, obj, meta); { std::map<int, rgw_cls_list_ret> results; list_entries(ioctx, bucket_oid, 1, results); ASSERT_EQ(1, results.size()); const auto& entries = results.begin()->second.dir.m; ASSERT_EQ(1, entries.size()); dirent = std::move(entries.begin()->second); ASSERT_EQ(obj, dirent.key); ASSERT_FALSE(dirent.exists); ASSERT_FALSE(dirent.pending_map.empty()); } // final cancel on tag3 index_complete(ioctx, bucket_oid, CLS_RGW_OP_CANCEL, tag3, ++epoch, obj, meta); // verify that the key was removed { std::map<int, rgw_cls_list_ret> results; list_entries(ioctx, bucket_oid, 1, results); EXPECT_EQ(1, results.size()); const auto& entries = results.begin()->second.dir.m; ASSERT_EQ(0, entries.size()); } test_stats(ioctx, bucket_oid, RGWObjCategory::None, 0, 0); }
40,907
29.460164
120
cc
null
ceph-main/src/test/cls_rgw/test_cls_rgw_stats.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <vector> #include <boost/circular_buffer.hpp> #include <boost/intrusive/set.hpp> #include <gtest/gtest.h> #include "cls/rgw/cls_rgw_client.h" #include "common/debug.h" #include "common/dout.h" #include "common/errno.h" #include "common/random_string.h" #include "global/global_context.h" #include "test/librados/test_cxx.h" #define dout_subsys ceph_subsys_rgw #define dout_context g_ceph_context // simulation parameters: // total number of index operations to prepare constexpr size_t max_operations = 2048; // total number of object names. each operation chooses one at random constexpr size_t max_entries = 32; // maximum number of pending operations. once the limit is reached, the oldest // pending operation is finished before another can start constexpr size_t max_pending = 16; // object size is randomly distributed between 0 and 4M constexpr size_t max_object_size = 4*1024*1024; // multipart upload threshold constexpr size_t max_part_size = 1024*1024; // create/destroy a pool that's shared by all tests in the process struct RadosEnv : public ::testing::Environment { static std::optional<std::string> pool_name; public: static librados::Rados rados; static librados::IoCtx ioctx; void SetUp() override { // create pool std::string name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(name, rados)); pool_name = name; ASSERT_EQ(rados.ioctx_create(name.c_str(), ioctx), 0); } void TearDown() override { ioctx.close(); if (pool_name) { ASSERT_EQ(destroy_one_pool_pp(*pool_name, rados), 0); } } }; std::optional<std::string> RadosEnv::pool_name; librados::Rados RadosEnv::rados; librados::IoCtx RadosEnv::ioctx; auto *const rados_env = ::testing::AddGlobalTestEnvironment(new RadosEnv); std::ostream& operator<<(std::ostream& out, const rgw_bucket_category_stats& c) { return out << "{count=" << c.num_entries << " size=" << c.total_size << '}'; } // librados helpers rgw_bucket_entry_ver last_version(librados::IoCtx& ioctx) { rgw_bucket_entry_ver ver; ver.pool = ioctx.get_id(); ver.epoch = ioctx.get_last_version(); return ver; } int index_init(librados::IoCtx& ioctx, const std::string& oid) { librados::ObjectWriteOperation op; cls_rgw_bucket_init_index(op); return ioctx.operate(oid, &op); } int index_prepare(librados::IoCtx& ioctx, const std::string& oid, const cls_rgw_obj_key& key, const std::string& tag, RGWModifyOp type) { librados::ObjectWriteOperation op; const std::string loc; // empty constexpr bool log_op = false; constexpr int flags = 0; rgw_zone_set zones; cls_rgw_bucket_prepare_op(op, type, tag, key, loc, log_op, flags, zones); return ioctx.operate(oid, &op); } int index_complete(librados::IoCtx& ioctx, const std::string& oid, const cls_rgw_obj_key& key, const std::string& tag, RGWModifyOp type, const rgw_bucket_entry_ver& ver, const rgw_bucket_dir_entry_meta& meta, std::list<cls_rgw_obj_key>* remove_objs) { librados::ObjectWriteOperation op; constexpr bool log_op = false; constexpr int flags = 0; constexpr rgw_zone_set* zones = nullptr; cls_rgw_bucket_complete_op(op, type, tag, ver, key, meta, remove_objs, log_op, flags, zones); return ioctx.operate(oid, &op); } void read_stats(librados::IoCtx& ioctx, const std::string& oid, rgw_bucket_dir_stats& stats) { auto oids = std::map<int, std::string>{{0, oid}}; std::map<int, rgw_cls_list_ret> results; ASSERT_EQ(0, CLSRGWIssueGetDirHeader(ioctx, oids, results, 8)()); ASSERT_EQ(1, results.size()); stats = std::move(results.begin()->second.dir.header.stats); } static void account_entry(rgw_bucket_dir_stats& stats, const rgw_bucket_dir_entry_meta& meta) { rgw_bucket_category_stats& c = stats[meta.category]; c.num_entries++; c.total_size += meta.accounted_size; c.total_size_rounded += cls_rgw_get_rounded_size(meta.accounted_size); c.actual_size += meta.size; } static void unaccount_entry(rgw_bucket_dir_stats& stats, const rgw_bucket_dir_entry_meta& meta) { rgw_bucket_category_stats& c = stats[meta.category]; c.num_entries--; c.total_size -= meta.accounted_size; c.total_size_rounded -= cls_rgw_get_rounded_size(meta.accounted_size); c.actual_size -= meta.size; } // a map of cached dir entries representing the expected state of cls_rgw struct object : rgw_bucket_dir_entry, boost::intrusive::set_base_hook<> { explicit object(const cls_rgw_obj_key& key) { this->key = key; } }; struct object_key { using type = cls_rgw_obj_key; const type& operator()(const object& o) const { return o.key; } }; using object_map_base = boost::intrusive::set<object, boost::intrusive::key_of_value<object_key>>; struct object_map : object_map_base { ~object_map() { clear_and_dispose(std::default_delete<object>{}); } }; // models a bucket index operation, starting with cls_rgw_bucket_prepare_op(). // stores all of the state necessary to complete the operation, either with // cls_rgw_bucket_complete_op() or cls_rgw_suggest_changes(). uploads larger // than max_part_size are modeled as multipart uploads struct operation { RGWModifyOp type; cls_rgw_obj_key key; std::string tag; rgw_bucket_entry_ver ver; std::string upload_id; // empty unless multipart rgw_bucket_dir_entry_meta meta; }; class simulator { public: simulator(librados::IoCtx& ioctx, std::string oid) : ioctx(ioctx), oid(std::move(oid)), pending(max_pending) { // generate a set of object keys. each operation chooses one at random keys.reserve(max_entries); for (size_t i = 0; i < max_entries; i++) { keys.emplace_back(gen_rand_alphanumeric_upper(g_ceph_context, 12)); } } void run(); private: void start(); int try_start(const cls_rgw_obj_key& key, const std::string& tag); void finish(const operation& op); void complete(const operation& op, RGWModifyOp type); void suggest(const operation& op, char suggestion); int init_multipart(const operation& op); void complete_multipart(const operation& op); object_map::iterator find_or_create(const cls_rgw_obj_key& key); librados::IoCtx& ioctx; std::string oid; std::vector<cls_rgw_obj_key> keys; object_map objects; boost::circular_buffer<operation> pending; rgw_bucket_dir_stats stats; }; void simulator::run() { // init the bucket index object ASSERT_EQ(0, index_init(ioctx, oid)); // run the simulation for N steps for (size_t i = 0; i < max_operations; i++) { if (pending.full()) { // if we're at max_pending, finish the oldest operation auto& op = pending.front(); finish(op); pending.pop_front(); // verify bucket stats rgw_bucket_dir_stats stored_stats; read_stats(ioctx, oid, stored_stats); const rgw_bucket_dir_stats& expected_stats = stats; ASSERT_EQ(expected_stats, stored_stats); } // initiate the next operation start(); // verify bucket stats rgw_bucket_dir_stats stored_stats; read_stats(ioctx, oid, stored_stats); const rgw_bucket_dir_stats& expected_stats = stats; ASSERT_EQ(expected_stats, stored_stats); } } object_map::iterator simulator::find_or_create(const cls_rgw_obj_key& key) { object_map::insert_commit_data commit; auto result = objects.insert_check(key, std::less<cls_rgw_obj_key>{}, commit); if (result.second) { // inserting new entry auto p = new object(key); result.first = objects.insert_commit(*p, commit); } return result.first; } int simulator::try_start(const cls_rgw_obj_key& key, const std::string& tag) { // choose randomly betwen create and delete const auto type = static_cast<RGWModifyOp>( ceph::util::generate_random_number<size_t, size_t>(CLS_RGW_OP_ADD, CLS_RGW_OP_DEL)); auto op = operation{type, key, tag}; op.meta.category = RGWObjCategory::Main; op.meta.size = op.meta.accounted_size = ceph::util::generate_random_number(1, max_object_size); if (type == CLS_RGW_OP_ADD && op.meta.size > max_part_size) { // simulate multipart for uploads over the max_part_size threshold op.upload_id = gen_rand_alphanumeric_upper(g_ceph_context, 12); int r = init_multipart(op); if (r != 0) { derr << "> failed to prepare multipart upload key=" << key << " upload=" << op.upload_id << " tag=" << tag << " type=" << type << ": " << cpp_strerror(r) << dendl; return r; } dout(1) << "> prepared multipart upload key=" << key << " upload=" << op.upload_id << " tag=" << tag << " type=" << type << " size=" << op.meta.size << dendl; } else { // prepare operation int r = index_prepare(ioctx, oid, op.key, op.tag, op.type); if (r != 0) { derr << "> failed to prepare operation key=" << key << " tag=" << tag << " type=" << type << ": " << cpp_strerror(r) << dendl; return r; } dout(1) << "> prepared operation key=" << key << " tag=" << tag << " type=" << type << " size=" << op.meta.size << dendl; } op.ver = last_version(ioctx); ceph_assert(!pending.full()); pending.push_back(std::move(op)); return 0; } void simulator::start() { // choose a random object key const size_t index = ceph::util::generate_random_number(0, keys.size() - 1); const auto& key = keys[index]; // generate a random tag const auto tag = gen_rand_alphanumeric_upper(g_ceph_context, 12); // retry until success. failures don't count towards max_operations while (try_start(key, tag) != 0) ; } void simulator::finish(const operation& op) { if (op.type == CLS_RGW_OP_ADD && !op.upload_id.empty()) { // multipart uploads either complete or abort based on part uploads complete_multipart(op); return; } // complete most operations, but finish some with cancel or dir suggest constexpr int cancel_percent = 10; constexpr int suggest_update_percent = 10; constexpr int suggest_remove_percent = 10; int result = ceph::util::generate_random_number(0, 99); if (result < cancel_percent) { complete(op, CLS_RGW_OP_CANCEL); return; } result -= cancel_percent; if (result < suggest_update_percent) { suggest(op, CEPH_RGW_UPDATE); return; } result -= suggest_update_percent; if (result < suggest_remove_percent) { suggest(op, CEPH_RGW_REMOVE); return; } complete(op, op.type); } void simulator::complete(const operation& op, RGWModifyOp type) { int r = index_complete(ioctx, oid, op.key, op.tag, type, op.ver, op.meta, nullptr); if (r != 0) { derr << "< failed to complete operation key=" << op.key << " tag=" << op.tag << " type=" << op.type << " size=" << op.meta.size << ": " << cpp_strerror(r) << dendl; return; } if (type == CLS_RGW_OP_CANCEL) { dout(1) << "< canceled operation key=" << op.key << " tag=" << op.tag << " type=" << op.type << " size=" << op.meta.size << dendl; } else if (type == CLS_RGW_OP_ADD) { auto obj = find_or_create(op.key); if (obj->exists) { unaccount_entry(stats, obj->meta); } obj->exists = true; obj->meta = op.meta; account_entry(stats, obj->meta); dout(1) << "< completed write operation key=" << op.key << " tag=" << op.tag << " type=" << type << " size=" << op.meta.size << dendl; } else { ceph_assert(type == CLS_RGW_OP_DEL); auto obj = objects.find(op.key, std::less<cls_rgw_obj_key>{}); if (obj != objects.end()) { if (obj->exists) { unaccount_entry(stats, obj->meta); } objects.erase_and_dispose(obj, std::default_delete<object>{}); } dout(1) << "< completed delete operation key=" << op.key << " tag=" << op.tag << " type=" << type << dendl; } } void simulator::suggest(const operation& op, char suggestion) { // read and decode the current dir entry rgw_cls_bi_entry bi_entry; int r = cls_rgw_bi_get(ioctx, oid, BIIndexType::Plain, op.key, &bi_entry); if (r != 0) { derr << "< no bi entry to suggest for operation key=" << op.key << " tag=" << op.tag << " type=" << op.type << " size=" << op.meta.size << ": " << cpp_strerror(r) << dendl; return; } ASSERT_EQ(bi_entry.type, BIIndexType::Plain); rgw_bucket_dir_entry entry; auto p = bi_entry.data.cbegin(); ASSERT_NO_THROW(decode(entry, p)); ASSERT_EQ(entry.key, op.key); // clear pending info and write it back; this cancels those pending // operations (we'll see EINVAL when we try to complete them), but dir // suggest is ignored unless the pending_map is empty entry.pending_map.clear(); bi_entry.data.clear(); encode(entry, bi_entry.data); r = cls_rgw_bi_put(ioctx, oid, bi_entry); ASSERT_EQ(0, r); // now suggest changes for this entry entry.ver = last_version(ioctx); entry.exists = (suggestion == CEPH_RGW_UPDATE); entry.meta = op.meta; bufferlist update; cls_rgw_encode_suggestion(suggestion, entry, update); librados::ObjectWriteOperation write_op; cls_rgw_suggest_changes(write_op, update); r = ioctx.operate(oid, &write_op); if (r != 0) { derr << "< failed to suggest operation key=" << op.key << " tag=" << op.tag << " type=" << op.type << " size=" << op.meta.size << ": " << cpp_strerror(r) << dendl; return; } // update our cache accordingly if (suggestion == CEPH_RGW_UPDATE) { auto obj = find_or_create(op.key); if (obj->exists) { unaccount_entry(stats, obj->meta); } obj->exists = true; obj->meta = op.meta; account_entry(stats, obj->meta); dout(1) << "< suggested update operation key=" << op.key << " tag=" << op.tag << " type=" << op.type << " size=" << op.meta.size << dendl; } else { ceph_assert(suggestion == CEPH_RGW_REMOVE); auto obj = objects.find(op.key, std::less<cls_rgw_obj_key>{}); if (obj != objects.end()) { if (obj->exists) { unaccount_entry(stats, obj->meta); } objects.erase_and_dispose(obj, std::default_delete<object>{}); } dout(1) << "< suggested remove operation key=" << op.key << " tag=" << op.tag << " type=" << op.type << dendl; } } int simulator::init_multipart(const operation& op) { // create (not just prepare) the meta object const auto meta_key = cls_rgw_obj_key{ fmt::format("_multipart_{}.2~{}.meta", op.key.name, op.upload_id)}; const std::string empty_tag; // empty tag enables complete without prepare const rgw_bucket_entry_ver empty_ver; rgw_bucket_dir_entry_meta meta_meta; meta_meta.category = RGWObjCategory::MultiMeta; int r = index_complete(ioctx, oid, meta_key, empty_tag, CLS_RGW_OP_ADD, empty_ver, meta_meta, nullptr); if (r != 0) { derr << " < failed to create multipart meta key=" << meta_key << ": " << cpp_strerror(r) << dendl; return r; } else { // account for meta object auto obj = find_or_create(meta_key); if (obj->exists) { unaccount_entry(stats, obj->meta); } obj->exists = true; obj->meta = meta_meta; account_entry(stats, obj->meta); } // prepare part uploads std::list<cls_rgw_obj_key> remove_objs; size_t part_id = 0; size_t remaining = op.meta.size; while (remaining > max_part_size) { remaining -= max_part_size; const auto part_size = std::min(remaining, max_part_size); const auto part_key = cls_rgw_obj_key{ fmt::format("_multipart_{}.2~{}.{}", op.key.name, op.upload_id, part_id)}; part_id++; r = index_prepare(ioctx, oid, part_key, op.tag, op.type); if (r != 0) { // if part prepare fails, remove the meta object and remove_objs [[maybe_unused]] int ignored = index_complete(ioctx, oid, meta_key, empty_tag, CLS_RGW_OP_DEL, empty_ver, meta_meta, &remove_objs); derr << " > failed to prepare part key=" << part_key << " size=" << part_size << dendl; return r; // return the error from prepare } dout(1) << " > prepared part key=" << part_key << " size=" << part_size << dendl; remove_objs.push_back(part_key); } return 0; } void simulator::complete_multipart(const operation& op) { const std::string empty_tag; // empty tag enables complete without prepare const rgw_bucket_entry_ver empty_ver; // try to finish part uploads size_t part_id = 0; std::list<cls_rgw_obj_key> remove_objs; RGWModifyOp type = op.type; // OP_ADD, or OP_CANCEL for abort size_t remaining = op.meta.size; while (remaining > max_part_size) { remaining -= max_part_size; const auto part_size = std::min(remaining, max_part_size); const auto part_key = cls_rgw_obj_key{ fmt::format("_multipart_{}.2~{}.{}", op.key.name, op.upload_id, part_id)}; part_id++; // cancel 10% of part uploads (and abort the multipart upload) constexpr int cancel_percent = 10; const int result = ceph::util::generate_random_number(0, 99); if (result < cancel_percent) { type = CLS_RGW_OP_CANCEL; // abort multipart dout(1) << " < canceled part key=" << part_key << " size=" << part_size << dendl; } else { rgw_bucket_dir_entry_meta meta; meta.category = op.meta.category; meta.size = meta.accounted_size = part_size; int r = index_complete(ioctx, oid, part_key, op.tag, op.type, empty_ver, meta, nullptr); if (r != 0) { derr << " < failed to complete part key=" << part_key << " size=" << meta.size << ": " << cpp_strerror(r) << dendl; type = CLS_RGW_OP_CANCEL; // abort multipart } else { dout(1) << " < completed part key=" << part_key << " size=" << meta.size << dendl; // account for successful part upload auto obj = find_or_create(part_key); if (obj->exists) { unaccount_entry(stats, obj->meta); } obj->exists = true; obj->meta = meta; account_entry(stats, obj->meta); } } remove_objs.push_back(part_key); } // delete the multipart meta object const auto meta_key = cls_rgw_obj_key{ fmt::format("_multipart_{}.2~{}.meta", op.key.name, op.upload_id)}; rgw_bucket_dir_entry_meta meta_meta; meta_meta.category = RGWObjCategory::MultiMeta; int r = index_complete(ioctx, oid, meta_key, empty_tag, CLS_RGW_OP_DEL, empty_ver, meta_meta, nullptr); if (r != 0) { derr << " < failed to remove multipart meta key=" << meta_key << ": " << cpp_strerror(r) << dendl; } else { // unaccount for meta object auto obj = objects.find(meta_key, std::less<cls_rgw_obj_key>{}); if (obj != objects.end()) { if (obj->exists) { unaccount_entry(stats, obj->meta); } objects.erase_and_dispose(obj, std::default_delete<object>{}); } } // create or cancel the head object r = index_complete(ioctx, oid, op.key, empty_tag, type, empty_ver, op.meta, &remove_objs); if (r != 0) { derr << "< failed to complete multipart upload key=" << op.key << " upload=" << op.upload_id << " tag=" << op.tag << " type=" << type << " size=" << op.meta.size << ": " << cpp_strerror(r) << dendl; return; } if (type == CLS_RGW_OP_ADD) { dout(1) << "< completed multipart upload key=" << op.key << " upload=" << op.upload_id << " tag=" << op.tag << " type=" << op.type << " size=" << op.meta.size << dendl; // account for head stats auto obj = find_or_create(op.key); if (obj->exists) { unaccount_entry(stats, obj->meta); } obj->exists = true; obj->meta = op.meta; account_entry(stats, obj->meta); } else { dout(1) << "< canceled multipart upload key=" << op.key << " upload=" << op.upload_id << " tag=" << op.tag << " type=" << op.type << " size=" << op.meta.size << dendl; } // unaccount for remove_objs for (const auto& part_key : remove_objs) { auto obj = objects.find(part_key, std::less<cls_rgw_obj_key>{}); if (obj != objects.end()) { if (obj->exists) { unaccount_entry(stats, obj->meta); } objects.erase_and_dispose(obj, std::default_delete<object>{}); } } } TEST(cls_rgw_stats, simulate) { const char* bucket_oid = __func__; auto sim = simulator{RadosEnv::ioctx, bucket_oid}; sim.run(); }
20,798
31.146832
81
cc
null
ceph-main/src/test/cls_rgw_gc/test_cls_rgw_gc.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/types.h" #include "cls/rgw/cls_rgw_types.h" #include "cls/rgw_gc/cls_rgw_gc_client.h" #include "cls/rgw_gc/cls_rgw_gc_ops.h" #include "gtest/gtest.h" #include "test/librados/test_cxx.h" #include "global/global_context.h" #include <errno.h> #include <string> #include <vector> #include <map> #include <set> using namespace std; using namespace librados; librados::Rados rados; librados::IoCtx ioctx; string pool_name; /* must be the first test! */ TEST(cls_rgw_gc, init) { pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); } string str_int(string s, int i) { char buf[32]; snprintf(buf, sizeof(buf), "-%d", i); s.append(buf); return s; } /* test garbage collection */ static void create_obj(cls_rgw_obj& obj, int i, int j) { char buf[32]; snprintf(buf, sizeof(buf), "-%d.%d", i, j); obj.pool = "pool"; obj.pool.append(buf); obj.key.name = "oid"; obj.key.name.append(buf); obj.loc = "loc"; obj.loc.append(buf); } TEST(cls_rgw_gc, gc_queue_ops1) { //Testing queue ops when data size is NOT a multiple of queue size string queue_name = "my-queue"; uint64_t queue_size = 322, num_urgent_data_entries = 10; librados::ObjectWriteOperation op; op.create(true); cls_rgw_gc_queue_init(op, queue_size, num_urgent_data_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size = 0; int ret = cls_rgw_gc_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(queue_size, size); //Test enqueue for (int i = 0; i < 2; i++) { string tag = "chain-" + to_string(i); librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = tag; cls_rgw_gc_queue_enqueue(op, 0, info); if (i == 1) { ASSERT_EQ(-ENOSPC, ioctx.operate(queue_name, &op)); } else { ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } } //Test remove queue entries librados::ObjectWriteOperation remove_op; string marker1; uint64_t num_entries = 1; cls_rgw_gc_queue_remove_entries(remove_op, num_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &remove_op)); //Test enqueue again for (int i = 0; i < 1; i++) { string tag = "chain-" + to_string(i); librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = tag; cls_rgw_gc_queue_enqueue(op, 0, info); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } //Test list queue list<cls_rgw_gc_obj_info> list_info1; string marker, next_marker; uint64_t max = 1; bool expired_only = false, truncated; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info1, &truncated, next_marker); ASSERT_EQ(1, list_info1.size()); for (auto it : list_info1) { std::cerr << "[ ] list info tag = " << it.tag << std::endl; ASSERT_EQ("chain-0", it.tag); } } TEST(cls_rgw_gc, gc_queue_ops2) { //Testing list queue string queue_name = "my-second-queue"; uint64_t queue_size = 334, num_urgent_data_entries = 10; librados::ObjectWriteOperation op; op.create(true); cls_rgw_gc_queue_init(op, queue_size, num_urgent_data_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size = 0; int ret = cls_rgw_gc_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(size, queue_size); //Test list queue, when queue is empty list<cls_rgw_gc_obj_info> list_info; string marker1, next_marker1; uint64_t max1 = 2; bool expired_only1 = false, truncated1; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker1, max1, expired_only1, list_info, &truncated1, next_marker1); ASSERT_EQ(0, list_info.size()); //Test enqueue for (int i = 0; i < 3; i++) { string tag = "chain-" + to_string(i); librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = tag; cls_rgw_gc_queue_enqueue(op, 0, info); if (i == 2) { ASSERT_EQ(-ENOSPC, ioctx.operate(queue_name, &op)); } else { ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } } //Test list queue list<cls_rgw_gc_obj_info> list_info1, list_info2, list_info3; string marker, next_marker; uint64_t max = 2; bool expired_only = false, truncated; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info1, &truncated, next_marker); ASSERT_EQ(2, list_info1.size()); int i = 0; for (auto it : list_info1) { string tag = "chain-" + to_string(i); ASSERT_EQ(tag, it.tag); i++; } max = 1; truncated = false; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info2, &truncated, next_marker); auto it = list_info2.front(); ASSERT_EQ(1, list_info2.size()); ASSERT_EQ(true, truncated); ASSERT_EQ("chain-0", it.tag); std::cerr << "[ ] next_marker is: = " << next_marker << std::endl; marker = next_marker; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info3, &truncated, next_marker); it = list_info3.front(); ASSERT_EQ(1, list_info3.size()); ASSERT_EQ(false, truncated); ASSERT_EQ("chain-1", it.tag); } #if 0 // TODO: fix or remove defer_gc() TEST(cls_rgw_gc, gc_queue_ops3) { //Testing remove queue entries string queue_name = "my-third-queue"; uint64_t queue_size = 501, num_urgent_data_entries = 10; librados::ObjectWriteOperation op; op.create(true); cls_rgw_gc_queue_init(op, queue_size, num_urgent_data_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size = 0; int ret = cls_rgw_gc_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(size, queue_size); //Test remove queue, when queue is empty librados::ObjectWriteOperation remove_op; string marker1; uint64_t num_entries = 2; cls_rgw_gc_queue_remove_entries(remove_op, num_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &remove_op)); cls_rgw_gc_obj_info defer_info; //Test enqueue for (int i = 0; i < 2; i++) { string tag = "chain-" + to_string(i); librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = tag; cls_rgw_gc_queue_enqueue(op, 5, info); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); if (i == 0) defer_info = info; } //Test defer entry for 1st element librados::ObjectWriteOperation defer_op; cls_rgw_gc_queue_defer_entry(defer_op, 10, defer_info); ASSERT_EQ(0, ioctx.operate(queue_name, &defer_op)); //Test list queue list<cls_rgw_gc_obj_info> list_info1, list_info2; string marker, next_marker; uint64_t max = 2; bool expired_only = false, truncated; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info1, &truncated, next_marker); ASSERT_EQ(2, list_info1.size()); int i = 0; for (auto it : list_info1) { std::cerr << "[ ] list info tag = " << it.tag << std::endl; if (i == 0) { ASSERT_EQ("chain-1", it.tag); } if (i == 1) { ASSERT_EQ("chain-0", it.tag); } i++; } //Test remove entries num_entries = 2; cls_rgw_gc_queue_remove_entries(remove_op, num_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &remove_op)); //Test list queue again cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info2, &truncated, next_marker); ASSERT_EQ(0, list_info2.size()); } TEST(cls_rgw_gc, gc_queue_ops4) { //Testing remove queue entries string queue_name = "my-fourth-queue"; uint64_t queue_size = 501, num_urgent_data_entries = 10; librados::ObjectWriteOperation op; op.create(true); cls_rgw_gc_queue_init(op, queue_size, num_urgent_data_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size = 0; int ret = cls_rgw_gc_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(size, queue_size); //Test remove queue, when queue is empty librados::ObjectWriteOperation remove_op; string marker1; uint64_t num_entries = 2; cls_rgw_gc_queue_remove_entries(remove_op, num_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &remove_op)); cls_rgw_gc_obj_info defer_info; //Test enqueue for (int i = 0; i < 2; i++) { string tag = "chain-" + to_string(i); librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = tag; cls_rgw_gc_queue_enqueue(op, 5, info); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); defer_info = info; } //Test defer entry for last element librados::ObjectWriteOperation defer_op; cls_rgw_gc_queue_defer_entry(defer_op, 10, defer_info); ASSERT_EQ(0, ioctx.operate(queue_name, &defer_op)); //Test list queue list<cls_rgw_gc_obj_info> list_info1, list_info2; string marker, next_marker; uint64_t max = 2; bool expired_only = false, truncated; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info1, &truncated, next_marker); ASSERT_EQ(2, list_info1.size()); int i = 0; for (auto it : list_info1) { string tag = "chain-" + to_string(i); ASSERT_EQ(tag, it.tag); i++; } //Test remove entries num_entries = 2; cls_rgw_gc_queue_remove_entries(remove_op, num_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &remove_op)); //Test list queue again cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info2, &truncated, next_marker); ASSERT_EQ(0, list_info2.size()); } #endif // defer_gc() disabled TEST(cls_rgw_gc, gc_queue_ops5) { //Testing remove queue entries string queue_name = "my-fifth-queue"; uint64_t queue_size = 501, num_urgent_data_entries = 10; librados::ObjectWriteOperation op; op.create(true); cls_rgw_gc_queue_init(op, queue_size, num_urgent_data_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size = 0; int ret = cls_rgw_gc_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(size, queue_size); //Test enqueue for (int i = 0; i < 3; i++) { string tag = "chain-" + to_string(i); librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = tag; if (i == 2) { cls_rgw_gc_queue_enqueue(op, 300, info); } else { cls_rgw_gc_queue_enqueue(op, 0, info); } ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } //Test list queue for expired entries only list<cls_rgw_gc_obj_info> list_info1, list_info2; string marker, next_marker, marker1; uint64_t max = 10; bool expired_only = true, truncated; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info1, &truncated, next_marker); ASSERT_EQ(2, list_info1.size()); int i = 0; for (auto it : list_info1) { string tag = "chain-" + to_string(i); ASSERT_EQ(tag, it.tag); i++; } //Test remove entries librados::ObjectWriteOperation remove_op; auto num_entries = list_info1.size(); cls_rgw_gc_queue_remove_entries(remove_op, num_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &remove_op)); //Test list queue again for all entries expired_only = false; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info2, &truncated, next_marker); ASSERT_EQ(1, list_info2.size()); } TEST(cls_rgw_gc, gc_queue_ops6) { //Testing list queue, when data size is split at the end of the queue string queue_name = "my-sixth-queue"; uint64_t queue_size = 341, num_urgent_data_entries = 10; librados::ObjectWriteOperation op; op.create(true); cls_rgw_gc_queue_init(op, queue_size, num_urgent_data_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size = 0; int ret = cls_rgw_gc_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(size, queue_size); //Test enqueue for (int i = 0; i < 2; i++) { string tag = "chain-" + to_string(i); librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = tag; cls_rgw_gc_queue_enqueue(op, 0, info); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } //Remove one element from queue librados::ObjectWriteOperation remove_op; string marker1; uint64_t num_entries = 1; cls_rgw_gc_queue_remove_entries(remove_op, num_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &remove_op)); //Enqueue one more element librados::ObjectWriteOperation enq_op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, 2, 1); create_obj(obj2, 2, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = "chain-2"; cls_rgw_gc_queue_enqueue(enq_op, 0, info); ASSERT_EQ(0, ioctx.operate(queue_name, &enq_op)); //Test list queue list<cls_rgw_gc_obj_info> list_info1, list_info2, list_info3; string marker, next_marker; uint64_t max = 2; bool expired_only = false, truncated; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info1, &truncated, next_marker); ASSERT_EQ(2, list_info1.size()); int i = 1; for (auto it : list_info1) { string tag = "chain-" + to_string(i); ASSERT_EQ(tag, it.tag); i++; } } TEST(cls_rgw_gc, gc_queue_ops7) { //Testing list queue, when data size is written at the end of queue and data is written after wrap around string queue_name = "my-seventh-queue"; uint64_t queue_size = 342, num_urgent_data_entries = 10; librados::ObjectWriteOperation op; op.create(true); cls_rgw_gc_queue_init(op, queue_size, num_urgent_data_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size = 0; int ret = cls_rgw_gc_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(size, queue_size); //Test enqueue for (int i = 0; i < 2; i++) { string tag = "chain-" + to_string(i); librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = tag; cls_rgw_gc_queue_enqueue(op, 0, info); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } //Remove one element from queue librados::ObjectWriteOperation remove_op; string marker1; uint64_t num_entries = 1; cls_rgw_gc_queue_remove_entries(remove_op, num_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &remove_op)); //Enqueue one more element librados::ObjectWriteOperation enq_op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, 2, 1); create_obj(obj2, 2, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = "chain-2"; cls_rgw_gc_queue_enqueue(enq_op, 0, info); ASSERT_EQ(0, ioctx.operate(queue_name, &enq_op)); //Test list queue list<cls_rgw_gc_obj_info> list_info1, list_info2, list_info3; string marker, next_marker; uint64_t max = 2; bool expired_only = false, truncated; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info1, &truncated, next_marker); ASSERT_EQ(2, list_info1.size()); int i = 1; for (auto it : list_info1) { string tag = "chain-" + to_string(i); ASSERT_EQ(tag, it.tag); i++; } } TEST(cls_rgw_gc, gc_queue_ops8) { //Testing list queue, when data is split at the end of the queue string queue_name = "my-eighth-queue"; uint64_t queue_size = 344, num_urgent_data_entries = 10; librados::ObjectWriteOperation op; op.create(true); cls_rgw_gc_queue_init(op, queue_size, num_urgent_data_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size = 0; int ret = cls_rgw_gc_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(size, queue_size); //Test enqueue for (int i = 0; i < 2; i++) { string tag = "chain-" + to_string(i); librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = tag; cls_rgw_gc_queue_enqueue(op, 0, info); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); } //Remove one element from queue librados::ObjectWriteOperation remove_op; string marker1; uint64_t num_entries = 1; cls_rgw_gc_queue_remove_entries(remove_op, num_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &remove_op)); //Enqueue one more element librados::ObjectWriteOperation enq_op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, 2, 1); create_obj(obj2, 2, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = "chain-2"; cls_rgw_gc_queue_enqueue(enq_op, 0, info); ASSERT_EQ(0, ioctx.operate(queue_name, &enq_op)); //Test list queue list<cls_rgw_gc_obj_info> list_info1, list_info2, list_info3; string marker, next_marker; uint64_t max = 2; bool expired_only = false, truncated; cls_rgw_gc_queue_list_entries(ioctx, queue_name, marker, max, expired_only, list_info1, &truncated, next_marker); ASSERT_EQ(2, list_info1.size()); int i = 1; for (auto it : list_info1) { string tag = "chain-" + to_string(i); ASSERT_EQ(tag, it.tag); i++; } } TEST(cls_rgw_gc, gc_queue_ops9) { //Testing remove queue entries string queue_name = "my-ninth-queue"; uint64_t queue_size = 668, num_urgent_data_entries = 1; librados::ObjectWriteOperation op; op.create(true); cls_rgw_gc_queue_init(op, queue_size, num_urgent_data_entries); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); uint64_t size = 0; int ret = cls_rgw_gc_queue_get_capacity(ioctx, queue_name, size); ASSERT_EQ(0, ret); ASSERT_EQ(size, queue_size); cls_rgw_gc_obj_info defer_info1, defer_info2; //Test enqueue for (int i = 0; i < 2; i++) { string tag = "chain-" + to_string(i); librados::ObjectWriteOperation op; cls_rgw_gc_obj_info info; cls_rgw_obj obj1, obj2; create_obj(obj1, i, 1); create_obj(obj2, i, 2); info.chain.objs.push_back(obj1); info.chain.objs.push_back(obj2); info.tag = tag; cls_rgw_gc_queue_enqueue(op, 5, info); ASSERT_EQ(0, ioctx.operate(queue_name, &op)); if (i == 0) { defer_info1 = info; } if (i == 1) { defer_info2 = info; } } //Test defer entry for last element librados::ObjectWriteOperation defer_op; cls_rgw_gc_queue_defer_entry(defer_op, 10, defer_info2); ASSERT_EQ(0, ioctx.operate(queue_name, &defer_op)); //Test defer entry for first element cls_rgw_gc_queue_defer_entry(defer_op, 10, defer_info1); ASSERT_EQ(-ENOSPC, ioctx.operate(queue_name, &defer_op)); } /* must be last test! */ TEST(cls_rgw_gc, finalize) { /* remove pool */ ioctx.close(); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, rados)); }
19,975
27.496434
119
cc
null
ceph-main/src/test/cls_sdk/test_cls_sdk.cc
#include <iostream> #include <errno.h> #include "test/librados/test_cxx.h" #include "gtest/gtest.h" using namespace librados; TEST(ClsSDK, TestSDKCoverageWrite) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); bufferlist in, out; ASSERT_EQ(0, ioctx.exec("myobject", "sdk", "test_coverage_write", in, out)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); } TEST(ClsSDK, TestSDKCoverageReplay) { Rados cluster; std::string pool_name = get_temp_pool_name(); ASSERT_EQ("", create_one_pool_pp(pool_name, cluster)); IoCtx ioctx; cluster.ioctx_create(pool_name.c_str(), ioctx); bufferlist in, out; ASSERT_EQ(0, ioctx.exec("myobject", "sdk", "test_coverage_write", in, out)); ASSERT_EQ(0, ioctx.exec("myobject", "sdk", "test_coverage_replay", in, out)); ASSERT_EQ(0, destroy_one_pool_pp(pool_name, cluster)); }
984
26.361111
79
cc
null
ceph-main/src/test/cls_version/test_cls_version.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/rados/librados.hpp" #include "include/types.h" #include "cls/version/cls_version_types.h" #include "cls/version/cls_version_client.h" #include "gtest/gtest.h" #include "test/librados/test_cxx.h" #include <errno.h> #include <string> #include <vector> using namespace std; static librados::ObjectWriteOperation *new_op() { return new librados::ObjectWriteOperation(); } static librados::ObjectReadOperation *new_rop() { return new librados::ObjectReadOperation(); } TEST(cls_rgw, test_version_inc_read) { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); obj_version ver; ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver)); ASSERT_EQ(0, (long long)ver.ver); ASSERT_EQ(0, (int)ver.tag.size()); /* inc version */ librados::ObjectWriteOperation *op = new_op(); cls_version_inc(*op); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver)); ASSERT_GT((long long)ver.ver, 0); ASSERT_NE(0, (int)ver.tag.size()); /* inc version again! */ delete op; op = new_op(); cls_version_inc(*op); ASSERT_EQ(0, ioctx.operate(oid, op)); obj_version ver2; ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver2)); ASSERT_GT((long long)ver2.ver, (long long)ver.ver); ASSERT_EQ(0, (int)ver2.tag.compare(ver.tag)); delete op; obj_version ver3; librados::ObjectReadOperation *rop = new_rop(); cls_version_read(*rop, &ver3); bufferlist outbl; ASSERT_EQ(0, ioctx.operate(oid, rop, &outbl)); ASSERT_EQ(ver2.ver, ver3.ver); ASSERT_EQ(1, (long long)ver2.compare(&ver3)); delete rop; } TEST(cls_rgw, test_version_set) { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); obj_version ver; ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver)); ASSERT_EQ(0, (long long)ver.ver); ASSERT_EQ(0, (int)ver.tag.size()); ver.ver = 123; ver.tag = "foo"; /* set version */ librados::ObjectWriteOperation *op = new_op(); cls_version_set(*op, ver); ASSERT_EQ(0, ioctx.operate(oid, op)); /* read version */ obj_version ver2; ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver2)); ASSERT_EQ((long long)ver2.ver, (long long)ver.ver); ASSERT_EQ(0, (int)ver2.tag.compare(ver.tag)); delete op; } TEST(cls_rgw, test_version_inc_cond) { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); obj_version ver; ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver)); ASSERT_EQ(0, (long long)ver.ver); ASSERT_EQ(0, (int)ver.tag.size()); /* inc version */ librados::ObjectWriteOperation *op = new_op(); cls_version_inc(*op); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver)); ASSERT_GT((long long)ver.ver, 0); ASSERT_NE(0, (int)ver.tag.size()); obj_version cond_ver = ver; /* inc version again! */ delete op; op = new_op(); cls_version_inc(*op); ASSERT_EQ(0, ioctx.operate(oid, op)); obj_version ver2; ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver2)); ASSERT_GT((long long)ver2.ver, (long long)ver.ver); ASSERT_EQ(0, (int)ver2.tag.compare(ver.tag)); /* now check various condition tests */ cls_version_inc(*op, cond_ver, VER_COND_NONE); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver2)); ASSERT_GT((long long)ver2.ver, (long long)ver.ver); ASSERT_EQ(0, (int)ver2.tag.compare(ver.tag)); /* a bunch of conditions that should fail */ delete op; op = new_op(); cls_version_inc(*op, cond_ver, VER_COND_EQ); ASSERT_EQ(-ECANCELED, ioctx.operate(oid, op)); delete op; op = new_op(); cls_version_inc(*op, cond_ver, VER_COND_LT); ASSERT_EQ(-ECANCELED, ioctx.operate(oid, op)); delete op; op = new_op(); cls_version_inc(*op, cond_ver, VER_COND_LE); ASSERT_EQ(-ECANCELED, ioctx.operate(oid, op)); delete op; op = new_op(); cls_version_inc(*op, cond_ver, VER_COND_TAG_NE); ASSERT_EQ(-ECANCELED, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver2)); ASSERT_GT((long long)ver2.ver, (long long)ver.ver); ASSERT_EQ(0, (int)ver2.tag.compare(ver.tag)); /* a bunch of conditions that should succeed */ delete op; op = new_op(); cls_version_inc(*op, ver2, VER_COND_EQ); ASSERT_EQ(0, ioctx.operate(oid, op)); delete op; op = new_op(); cls_version_inc(*op, cond_ver, VER_COND_GT); ASSERT_EQ(0, ioctx.operate(oid, op)); delete op; op = new_op(); cls_version_inc(*op, cond_ver, VER_COND_GE); ASSERT_EQ(0, ioctx.operate(oid, op)); delete op; op = new_op(); cls_version_inc(*op, cond_ver, VER_COND_TAG_EQ); ASSERT_EQ(0, ioctx.operate(oid, op)); delete op; } TEST(cls_rgw, test_version_inc_check) { librados::Rados rados; librados::IoCtx ioctx; string pool_name = get_temp_pool_name(); /* create pool */ ASSERT_EQ("", create_one_pool_pp(pool_name, rados)); ASSERT_EQ(0, rados.ioctx_create(pool_name.c_str(), ioctx)); /* add chains */ string oid = "obj"; /* create object */ ASSERT_EQ(0, ioctx.create(oid, true)); obj_version ver; ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver)); ASSERT_EQ(0, (long long)ver.ver); ASSERT_EQ(0, (int)ver.tag.size()); /* inc version */ librados::ObjectWriteOperation *op = new_op(); cls_version_inc(*op); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver)); ASSERT_GT((long long)ver.ver, 0); ASSERT_NE(0, (int)ver.tag.size()); obj_version cond_ver = ver; /* a bunch of conditions that should succeed */ librados::ObjectReadOperation *rop = new_rop(); cls_version_check(*rop, cond_ver, VER_COND_EQ); bufferlist bl; ASSERT_EQ(0, ioctx.operate(oid, rop, &bl)); delete rop; rop = new_rop(); cls_version_check(*rop, cond_ver, VER_COND_GE); ASSERT_EQ(0, ioctx.operate(oid, rop, &bl)); delete rop; rop = new_rop(); cls_version_check(*rop, cond_ver, VER_COND_LE); ASSERT_EQ(0, ioctx.operate(oid, rop, &bl)); delete rop; rop = new_rop(); cls_version_check(*rop, cond_ver, VER_COND_TAG_EQ); ASSERT_EQ(0, ioctx.operate(oid, rop, &bl)); obj_version ver2; delete op; op = new_op(); cls_version_inc(*op); ASSERT_EQ(0, ioctx.operate(oid, op)); ASSERT_EQ(0, cls_version_read(ioctx, oid, &ver2)); ASSERT_GT((long long)ver2.ver, (long long)ver.ver); ASSERT_EQ(0, (int)ver2.tag.compare(ver.tag)); delete op; /* a bunch of conditions that should fail */ delete rop; rop = new_rop(); cls_version_check(*rop, ver, VER_COND_LT); ASSERT_EQ(-ECANCELED, ioctx.operate(oid, rop, &bl)); delete rop; rop = new_rop(); cls_version_check(*rop, cond_ver, VER_COND_LE); ASSERT_EQ(-ECANCELED, ioctx.operate(oid, rop, &bl)); delete rop; rop = new_rop(); cls_version_check(*rop, cond_ver, VER_COND_TAG_NE); ASSERT_EQ(-ECANCELED, ioctx.operate(oid, rop, &bl)); delete rop; }
7,728
22.928793
70
cc
null
ceph-main/src/test/common/ObjectContents.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- #include "ObjectContents.h" #include "include/buffer.h" #include <iostream> #include <map> bool test_object_contents() { ObjectContents c, d; ceph_assert(!c.exists()); c.debug(std::cerr); c.write(10, 10, 10); ceph_assert(c.exists()); ceph_assert(c.size() == 20); c.debug(std::cerr); bufferlist bl; for (ObjectContents::Iterator iter = c.get_iterator(); iter.valid(); ++iter) { bl.append(*iter); } ceph_assert(bl.length() == 20); bufferlist bl2; for (unsigned i = 0; i < 8; ++i) bl2.append(bl[i]); c.write(10, 8, 4); c.debug(std::cerr); ObjectContents::Iterator iter = c.get_iterator(); iter.seek_to(8); for (uint64_t i = 8; i < 12; ++i, ++iter) { bl2.append(*iter); } for (unsigned i = 12; i < 20; ++i) bl2.append(bl[i]); ceph_assert(bl2.length() == 20); for (ObjectContents::Iterator iter3 = c.get_iterator(); iter.valid(); ++iter) { ceph_assert(bl2[iter3.get_pos()] == *iter3); } ceph_assert(bl2[0] == '\0'); ceph_assert(bl2[7] == '\0'); interval_set<uint64_t> to_clone; to_clone.insert(5, 10); d.clone_range(c, to_clone); ceph_assert(d.size() == 15); c.debug(std::cerr); d.debug(std::cerr); ObjectContents::Iterator iter2 = d.get_iterator(); iter2.seek_to(5); for (uint64_t i = 5; i < 15; ++i, ++iter2) { std::cerr << "i is " << i << std::endl; ceph_assert(iter2.get_pos() == i); ceph_assert(*iter2 == bl2[i]); } return true; } unsigned int ObjectContents::Iterator::get_state(uint64_t _pos) { if (parent->seeds.count(_pos)) { return parent->seeds[_pos]; } seek_to(_pos - 1); return current_state; } void ObjectContents::clone_range(ObjectContents &other, interval_set<uint64_t> &intervals) { interval_set<uint64_t> written_to_clone; written_to_clone.intersection_of(intervals, other.written); interval_set<uint64_t> zeroed = intervals; zeroed.subtract(written_to_clone); written.union_of(intervals); written.subtract(zeroed); for (interval_set<uint64_t>::iterator i = written_to_clone.begin(); i != written_to_clone.end(); ++i) { uint64_t start = i.get_start(); uint64_t len = i.get_len(); unsigned int seed = get_iterator().get_state(start+len); seeds[start+len] = seed; seeds.erase(seeds.lower_bound(start), seeds.lower_bound(start+len)); seeds[start] = other.get_iterator().get_state(start); seeds.insert(other.seeds.upper_bound(start), other.seeds.lower_bound(start+len)); } if (intervals.range_end() > _size) _size = intervals.range_end(); _exists = true; return; } void ObjectContents::write(unsigned int seed, uint64_t start, uint64_t len) { _exists = true; unsigned int _seed = get_iterator().get_state(start+len); seeds[start+len] = _seed; seeds.erase(seeds.lower_bound(start), seeds.lower_bound(start+len)); seeds[start] = seed; interval_set<uint64_t> to_write; to_write.insert(start, len); written.union_of(to_write); if (start + len > _size) _size = start + len; return; }
3,150
23.426357
72
cc
null
ceph-main/src/test/common/ObjectContents.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- #include "include/interval_set.h" #include "include/buffer_fwd.h" #include <map> #ifndef COMMON_OBJECT_H #define COMMON_OBJECT_H enum { RANDOMWRITEFULL, DELETED, CLONERANGE }; bool test_object_contents(); class ObjectContents { uint64_t _size; std::map<uint64_t, unsigned int> seeds; interval_set<uint64_t> written; bool _exists; public: class Iterator { ObjectContents *parent; std::map<uint64_t, unsigned int>::iterator iter; unsigned int current_state; int current_val; uint64_t pos; private: unsigned int get_state(uint64_t pos); public: explicit Iterator(ObjectContents *parent) : parent(parent), iter(parent->seeds.end()), current_state(0), current_val(0), pos(-1) { seek_to_first(); } char operator*() { return parent->written.contains(pos) ? static_cast<char>(current_val % 256) : '\0'; } uint64_t get_pos() { return pos; } void seek_to(uint64_t _pos) { if (pos > _pos || (iter != parent->seeds.end() && _pos >= iter->first)) { iter = parent->seeds.upper_bound(_pos); --iter; current_state = iter->second; current_val = rand_r(&current_state); pos = iter->first; ++iter; } while (pos < _pos) ++(*this); } void seek_to_first() { seek_to(0); } Iterator &operator++() { ++pos; if (iter != parent->seeds.end() && pos >= iter->first) { ceph_assert(pos == iter->first); current_state = iter->second; ++iter; } current_val = rand_r(&current_state); return *this; } bool valid() { return pos < parent->size(); } friend class ObjectContents; }; ObjectContents() : _size(0), _exists(false) { seeds[0] = 0; } explicit ObjectContents(bufferlist::const_iterator &bp) { decode(_size, bp); decode(seeds, bp); decode(written, bp); decode(_exists, bp); } void clone_range(ObjectContents &other, interval_set<uint64_t> &intervals); void write(unsigned int seed, uint64_t from, uint64_t len); Iterator get_iterator() { return Iterator(this); } uint64_t size() const { return _size; } bool exists() { return _exists; } void debug(std::ostream &out) { out << "_size is " << _size << std::endl; out << "seeds is: ("; for (std::map<uint64_t, unsigned int>::iterator i = seeds.begin(); i != seeds.end(); ++i) { out << "[" << i->first << "," << i->second << "], "; } out << ")" << std::endl; out << "written is " << written << std::endl; out << "_exists is " << _exists << std::endl; } void encode(bufferlist &bl) const { using ceph::encode; encode(_size, bl); encode(seeds, bl); encode(written, bl); encode(_exists, bl); } }; #endif
2,837
22.073171
70
h
null
ceph-main/src/test/common/Readahead.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014 Adam Crume <[email protected]> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/Readahead.h" #include "gtest/gtest.h" #include <stdint.h> #include <boost/foreach.hpp> #include <cstdarg> #define ASSERT_RA(expected_offset, expected_length, ra) \ do { \ Readahead::extent_t e = ra; \ ASSERT_EQ((uint64_t)expected_length, e.second); \ if (expected_length) { \ ASSERT_EQ((uint64_t)expected_offset, e.first); \ } \ } while(0) using namespace std; TEST(Readahead, random_access) { Readahead r; r.set_trigger_requests(2); ASSERT_RA(0, 0, r.update(1000, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1010, 10, Readahead::NO_LIMIT)); ASSERT_RA(1030, 20, r.update(1020, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1040, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1060, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1080, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1100, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1200, 10, Readahead::NO_LIMIT)); } TEST(Readahead, min_size_limit) { Readahead r; r.set_trigger_requests(2); r.set_min_readahead_size(40); ASSERT_RA(0, 0, r.update(1000, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1010, 10, Readahead::NO_LIMIT)); ASSERT_RA(1030, 40, r.update(1020, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1030, 10, Readahead::NO_LIMIT)); ASSERT_RA(1070, 80, r.update(1040, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1050, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1060, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1070, 10, Readahead::NO_LIMIT)); } TEST(Readahead, max_size_limit) { Readahead r; r.set_trigger_requests(2); r.set_max_readahead_size(50); ASSERT_RA(0, 0, r.update(1000, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1010, 10, Readahead::NO_LIMIT)); ASSERT_RA(1030, 20, r.update(1020, 10, Readahead::NO_LIMIT)); ASSERT_RA(1050, 40, r.update(1030, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1040, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1050, 10, Readahead::NO_LIMIT)); ASSERT_RA(1090, 50, r.update(1060, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1070, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1080, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1090, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1100, 10, Readahead::NO_LIMIT)); ASSERT_RA(1140, 50, r.update(1110, 10, Readahead::NO_LIMIT)); } TEST(Readahead, limit) { Readahead r; r.set_trigger_requests(2); r.set_max_readahead_size(50); uint64_t limit = 1100; ASSERT_RA(0, 0, r.update(1000, 10, limit)); ASSERT_RA(0, 0, r.update(1010, 10, limit)); ASSERT_RA(1030, 20, r.update(1020, 10, limit)); ASSERT_RA(1050, 40, r.update(1030, 10, limit)); ASSERT_RA(0, 0, r.update(1040, 10, limit)); ASSERT_RA(0, 0, r.update(1050, 10, limit)); ASSERT_RA(1090, 10, r.update(1060, 10, limit)); ASSERT_RA(0, 0, r.update(1070, 10, limit)); ASSERT_RA(0, 0, r.update(1080, 10, limit)); ASSERT_RA(0, 0, r.update(1090, 10, limit)); } TEST(Readahead, alignment) { Readahead r; r.set_trigger_requests(2); vector<uint64_t> alignment; alignment.push_back(100); r.set_alignments(alignment); ASSERT_RA(0, 0, r.update(1000, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1010, 10, Readahead::NO_LIMIT)); ASSERT_RA(1030, 20, r.update(1020, 10, Readahead::NO_LIMIT)); ASSERT_RA(1050, 50, r.update(1030, 10, Readahead::NO_LIMIT)); // internal readahead size 40 ASSERT_RA(0, 0, r.update(1040, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1050, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1060, 10, Readahead::NO_LIMIT)); ASSERT_RA(1100, 100, r.update(1070, 10, Readahead::NO_LIMIT)); // internal readahead size 80 ASSERT_RA(0, 0, r.update(1080, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1090, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1100, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1110, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1120, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1130, 10, Readahead::NO_LIMIT)); ASSERT_RA(1200, 200, r.update(1140, 10, Readahead::NO_LIMIT)); // internal readahead size 160 ASSERT_RA(0, 0, r.update(1150, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1160, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1170, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1180, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1190, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1200, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1210, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1220, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1230, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1240, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1250, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1260, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1270, 10, Readahead::NO_LIMIT)); ASSERT_RA(0, 0, r.update(1280, 10, Readahead::NO_LIMIT)); ASSERT_RA(1400, 300, r.update(1290, 10, Readahead::NO_LIMIT)); // internal readahead size 320 ASSERT_RA(0, 0, r.update(1300, 10, Readahead::NO_LIMIT)); }
5,616
41.233083
95
cc
null
ceph-main/src/test/common/Throttle.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library Public License for more details. * */ #include <stdio.h> #include <signal.h> #include <chrono> #include <list> #include <mutex> #include <random> #include <thread> #include "gtest/gtest.h" #include "common/Thread.h" #include "common/Throttle.h" #include "common/ceph_argparse.h" using namespace std; class ThrottleTest : public ::testing::Test { protected: class Thread_get : public Thread { public: Throttle &throttle; int64_t count; bool waited = false; Thread_get(Throttle& _throttle, int64_t _count) : throttle(_throttle), count(_count) {} void *entry() override { usleep(5); waited = throttle.get(count); throttle.put(count); return nullptr; } }; }; TEST_F(ThrottleTest, Throttle) { int64_t throttle_max = 10; Throttle throttle(g_ceph_context, "throttle", throttle_max); ASSERT_EQ(throttle.get_max(), throttle_max); ASSERT_EQ(throttle.get_current(), 0); } TEST_F(ThrottleTest, take) { int64_t throttle_max = 10; Throttle throttle(g_ceph_context, "throttle", throttle_max); ASSERT_EQ(throttle.take(throttle_max), throttle_max); ASSERT_EQ(throttle.take(throttle_max), throttle_max * 2); } TEST_F(ThrottleTest, get) { int64_t throttle_max = 10; Throttle throttle(g_ceph_context, "throttle"); // test increasing max from 0 to throttle_max { ASSERT_FALSE(throttle.get(throttle_max, throttle_max)); ASSERT_EQ(throttle.get_max(), throttle_max); ASSERT_EQ(throttle.put(throttle_max), 0); } ASSERT_FALSE(throttle.get(5)); ASSERT_EQ(throttle.put(5), 0); ASSERT_FALSE(throttle.get(throttle_max)); ASSERT_FALSE(throttle.get_or_fail(1)); ASSERT_FALSE(throttle.get(1, throttle_max + 1)); ASSERT_EQ(throttle.put(throttle_max + 1), 0); ASSERT_FALSE(throttle.get(0, throttle_max)); ASSERT_FALSE(throttle.get(throttle_max)); ASSERT_FALSE(throttle.get_or_fail(1)); ASSERT_EQ(throttle.put(throttle_max), 0); useconds_t delay = 1; bool waited; do { cout << "Trying (1) with delay " << delay << "us\n"; ASSERT_FALSE(throttle.get(throttle_max)); ASSERT_FALSE(throttle.get_or_fail(throttle_max)); Thread_get t(throttle, 7); t.create("t_throttle_1"); usleep(delay); ASSERT_EQ(throttle.put(throttle_max), 0); t.join(); if (!(waited = t.waited)) delay *= 2; } while(!waited); delay = 1; do { cout << "Trying (2) with delay " << delay << "us\n"; ASSERT_FALSE(throttle.get(throttle_max / 2)); ASSERT_FALSE(throttle.get_or_fail(throttle_max)); Thread_get t(throttle, throttle_max); t.create("t_throttle_2"); usleep(delay); Thread_get u(throttle, 1); u.create("u_throttle_2"); usleep(delay); throttle.put(throttle_max / 2); t.join(); u.join(); if (!(waited = t.waited && u.waited)) delay *= 2; } while(!waited); } TEST_F(ThrottleTest, get_or_fail) { { Throttle throttle(g_ceph_context, "throttle"); ASSERT_TRUE(throttle.get_or_fail(5)); ASSERT_TRUE(throttle.get_or_fail(5)); } { int64_t throttle_max = 10; Throttle throttle(g_ceph_context, "throttle", throttle_max); ASSERT_TRUE(throttle.get_or_fail(throttle_max)); ASSERT_EQ(throttle.put(throttle_max), 0); ASSERT_TRUE(throttle.get_or_fail(throttle_max * 2)); ASSERT_FALSE(throttle.get_or_fail(1)); ASSERT_FALSE(throttle.get_or_fail(throttle_max * 2)); ASSERT_EQ(throttle.put(throttle_max * 2), 0); ASSERT_TRUE(throttle.get_or_fail(throttle_max)); ASSERT_FALSE(throttle.get_or_fail(1)); ASSERT_EQ(throttle.put(throttle_max), 0); } } TEST_F(ThrottleTest, wait) { int64_t throttle_max = 10; Throttle throttle(g_ceph_context, "throttle"); // test increasing max from 0 to throttle_max { ASSERT_FALSE(throttle.wait(throttle_max)); ASSERT_EQ(throttle.get_max(), throttle_max); } useconds_t delay = 1; bool waited; do { cout << "Trying (3) with delay " << delay << "us\n"; ASSERT_FALSE(throttle.get(throttle_max / 2)); ASSERT_FALSE(throttle.get_or_fail(throttle_max)); Thread_get t(throttle, throttle_max); t.create("t_throttle_3"); usleep(delay); // // Throttle::_reset_max(int64_t m) used to contain a test // that blocked the following statement, only if // the argument was greater than throttle_max. // Although a value lower than throttle_max would cover // the same code in _reset_max, the throttle_max * 100 // value is left here to demonstrate that the problem // has been solved. // throttle.wait(throttle_max * 100); usleep(delay); t.join(); ASSERT_EQ(throttle.get_current(), throttle_max / 2); if (!(waited = t.waited)) { delay *= 2; // undo the changes we made throttle.put(throttle_max / 2); throttle.wait(throttle_max); } } while(!waited); } std::pair<double, std::chrono::duration<double> > test_backoff( double low_threshhold, double high_threshhold, double expected_throughput, double high_multiple, double max_multiple, uint64_t max, double put_delay_per_count, unsigned getters, unsigned putters) { std::mutex l; std::condition_variable c; uint64_t total = 0; std::list<uint64_t> in_queue; bool stop_getters = false; bool stop_putters = false; auto wait_time = std::chrono::duration<double>(0); uint64_t waits = 0; uint64_t total_observed_total = 0; uint64_t total_observations = 0; BackoffThrottle throttle(g_ceph_context, "backoff_throttle_test", 5); bool valid = throttle.set_params( low_threshhold, high_threshhold, expected_throughput, high_multiple, max_multiple, max, 0); ceph_assert(valid); auto getter = [&]() { std::random_device rd; std::mt19937 gen(rd()); std::uniform_int_distribution<> dis(0, 10); std::unique_lock<std::mutex> g(l); while (!stop_getters) { g.unlock(); uint64_t to_get = dis(gen); auto waited = throttle.get(to_get); g.lock(); wait_time += waited; waits += to_get; total += to_get; in_queue.push_back(to_get); c.notify_one(); } }; auto putter = [&]() { std::unique_lock<std::mutex> g(l); while (!stop_putters || !in_queue.empty()) { if (in_queue.empty()) { c.wait(g); continue; } uint64_t c = in_queue.front(); total_observed_total += total; total_observations++; in_queue.pop_front(); ceph_assert(total <= max); g.unlock(); std::this_thread::sleep_for( c * std::chrono::duration<double>(put_delay_per_count*putters)); g.lock(); total -= c; throttle.put(c); } }; vector<std::thread> gts(getters); for (auto &&i: gts) i = std::thread(getter); vector<std::thread> pts(putters); for (auto &&i: pts) i = std::thread(putter); std::this_thread::sleep_for(std::chrono::duration<double>(5)); { std::unique_lock<std::mutex> g(l); stop_getters = true; c.notify_all(); } for (auto &&i: gts) i.join(); gts.clear(); { std::unique_lock<std::mutex> g(l); stop_putters = true; c.notify_all(); } for (auto &&i: pts) i.join(); pts.clear(); return make_pair( ((double)total_observed_total)/((double)total_observations), wait_time / waits); } TEST(BackoffThrottle, undersaturated) { auto results = test_backoff( 0.4, 0.6, 1000, 2, 10, 100, 0.0001, 3, 6); ASSERT_LT(results.first, 45); ASSERT_GT(results.first, 35); ASSERT_LT(results.second.count(), 0.0002); ASSERT_GT(results.second.count(), 0.00005); } TEST(BackoffThrottle, balanced) { auto results = test_backoff( 0.4, 0.6, 1000, 2, 10, 100, 0.001, 7, 2); ASSERT_LT(results.first, 60); ASSERT_GT(results.first, 40); ASSERT_LT(results.second.count(), 0.002); ASSERT_GT(results.second.count(), 0.0005); } TEST(BackoffThrottle, oversaturated) { auto results = test_backoff( 0.4, 0.6, 10000000, 2, 10, 100, 0.001, 1, 3); ASSERT_LT(results.first, 101); ASSERT_GT(results.first, 85); ASSERT_LT(results.second.count(), 0.002); ASSERT_GT(results.second.count(), 0.0005); } /* * Local Variables: * compile-command: "cd ../.. ; * make unittest_throttle ; * ./unittest_throttle # --gtest_filter=ThrottleTest.take \ * --log-to-stderr=true --debug-filestore=20 * " * End: */
9,135
22.607235
71
cc
null
ceph-main/src/test/common/dns_messages.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2016 SUSE LINUX GmbH * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #ifndef CEPH_TEST_DNS_MESSAGES_H #define CEPH_TEST_DNS_MESSAGES_H #include "common/dns_resolve.h" #include "gmock/gmock.h" u_char ns_search_msg_ok_payload[] = { 0x00, 0x55, 0x85, 0x80, 0x00, 0x01, 0x00, 0x03, 0x00, 0x02, 0x00, 0x05, 0x09, 0x5F, 0x63, 0x65, 0x70, 0x68, 0x2D, 0x6D, 0x6F, 0x6E, 0x04, 0x5F, 0x74, 0x63, 0x70, 0x04, 0x63, 0x65, 0x70, 0x68, 0x03, 0x63, 0x6F, 0x6D, 0x00, 0x00, 0x21, 0x00, 0x01, 0xC0, 0x0C, 0x00, 0x21, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x16, 0x00, 0x0A, 0x00, 0x28, 0x1A, 0x85, 0x03, 0x6D, 0x6F, 0x6E, 0x01, 0x61, 0x04, 0x63, 0x65, 0x70, 0x68, 0x03, 0x63, 0x6F, 0x6D, 0x00, 0xC0, 0x0C, 0x00, 0x21, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x16, 0x00, 0x0A, 0x00, 0x19, 0x1A, 0x85, 0x03, 0x6D, 0x6F, 0x6E, 0x01, 0x63, 0x04, 0x63, 0x65, 0x70, 0x68, 0x03, 0x63, 0x6F, 0x6D, 0x00, 0xC0, 0x0C, 0x00, 0x21, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x16, 0x00, 0x0A, 0x00, 0x23, 0x1A, 0x85, 0x03, 0x6D, 0x6F, 0x6E, 0x01, 0x62, 0x04, 0x63, 0x65, 0x70, 0x68, 0x03, 0x63, 0x6F, 0x6D, 0x00, 0xC0, 0x85, 0x00, 0x02, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x06, 0x03, 0x6E, 0x73, 0x32, 0xC0, 0x85, 0xC0, 0x85, 0x00, 0x02, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x06, 0x03, 0x6E, 0x73, 0x31, 0xC0, 0x85, 0xC0, 0x5D, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0x0D, 0xC0, 0x7F, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0x0C, 0xC0, 0x3B, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0x0B, 0xC0, 0xAD, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0x59, 0xC0, 0x9B, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0xFE }; u_char ns_query_msg_mon_c_payload[] = { 0x46, 0x4D, 0x85, 0x80, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x03, 0x6D, 0x6F, 0x6E, 0x01, 0x63, 0x04, 0x63, 0x65, 0x70, 0x68, 0x03, 0x63, 0x6F, 0x6D, 0x00, 0x00, 0x01, 0x00, 0x01, 0xC0, 0x0C, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0x0D, 0xC0, 0x12, 0x00, 0x02, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x06, 0x03, 0x6E, 0x73, 0x31, 0xC0, 0x12, 0xC0, 0x12, 0x00, 0x02, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x06, 0x03, 0x6E, 0x73, 0x32, 0xC0, 0x12, 0xC0, 0x3C, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0x59, 0xC0, 0x4E, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0xFE }; u_char ns_query_msg_mon_b_payload[] = { 0x64, 0xCC, 0x85, 0x80, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x03, 0x6D, 0x6F, 0x6E, 0x01, 0x62, 0x04, 0x63, 0x65, 0x70, 0x68, 0x03, 0x63, 0x6F, 0x6D, 0x00, 0x00, 0x01, 0x00, 0x01, 0xC0, 0x0C, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0x0C, 0xC0, 0x12, 0x00, 0x02, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x06, 0x03, 0x6E, 0x73, 0x32, 0xC0, 0x12, 0xC0, 0x12, 0x00, 0x02, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x06, 0x03, 0x6E, 0x73, 0x31, 0xC0, 0x12, 0xC0, 0x4E, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0x59, 0xC0, 0x3C, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0xFE }; u_char ns_query_msg_mon_a_payload[] = { 0x86, 0xAD, 0x85, 0x80, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x03, 0x6D, 0x6F, 0x6E, 0x01, 0x61, 0x04, 0x63, 0x65, 0x70, 0x68, 0x03, 0x63, 0x6F, 0x6D, 0x00, 0x00, 0x01, 0x00, 0x01, 0xC0, 0x0C, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0x0B, 0xC0, 0x12, 0x00, 0x02, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x06, 0x03, 0x6E, 0x73, 0x32, 0xC0, 0x12, 0xC0, 0x12, 0x00, 0x02, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x06, 0x03, 0x6E, 0x73, 0x31, 0xC0, 0x12, 0xC0, 0x4E, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0x59, 0xC0, 0x3C, 0x00, 0x01, 0x00, 0x01, 0x00, 0x09, 0x3A, 0x80, 0x00, 0x04, 0xC0, 0xA8, 0x01, 0xFE }; class MockResolvHWrapper : public ResolvHWrapper { public: #ifdef HAVE_RES_NQUERY MOCK_METHOD6(res_nquery, int(res_state s, const char *hostname, int cls, int type, u_char *buf, int bufsz)); MOCK_METHOD6(res_nsearch, int(res_state s, const char *hostname, int cls, int type, u_char *buf, int bufsz)); #else MOCK_METHOD5(res_query, int(const char *hostname, int cls, int type, u_char *buf, int bufsz)); MOCK_METHOD5(res_search, int(const char *hostname, int cls, int type, u_char *buf, int bufsz)); #endif }; #endif
5,042
48.930693
80
h
null
ceph-main/src/test/common/dns_resolve.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2016 SUSE LINUX GmbH * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <arpa/nameser_compat.h> #include "common/dns_resolve.h" #include "test/common/dns_messages.h" #include "common/debug.h" #include "gmock/gmock.h" #include <sstream> #define TEST_DEBUG 20 #define dout_subsys ceph_subsys_ using namespace std; using ::testing::Return; using ::testing::_; using ::testing::SetArrayArgument; using ::testing::DoAll; using ::testing::StrEq; class DNSResolverTest : public ::testing::Test { protected: void SetUp() override { g_ceph_context->_conf->subsys.set_log_level(dout_subsys, TEST_DEBUG); } void TearDown() override { DNSResolver::get_instance(nullptr); } }; TEST_F(DNSResolverTest, resolve_ip_addr) { MockResolvHWrapper *resolvH = new MockResolvHWrapper(); int lena = sizeof(ns_query_msg_mon_a_payload); #ifdef HAVE_RES_NQUERY EXPECT_CALL(*resolvH, res_nquery(_,StrEq("mon.a.ceph.com"), C_IN, T_A,_,_)) .WillOnce(DoAll(SetArrayArgument<4>(ns_query_msg_mon_a_payload, ns_query_msg_mon_a_payload+lena), Return(lena))); #else EXPECT_CALL(*resolvH, res_query(StrEq("mon.a.ceph.com"), C_IN, T_A,_,_)) .WillOnce(DoAll(SetArrayArgument<3>(ns_query_msg_mon_a_payload, ns_query_msg_mon_a_payload+lena), Return(lena))); #endif entity_addr_t addr; DNSResolver::get_instance(resolvH)->resolve_ip_addr(g_ceph_context, "mon.a.ceph.com", &addr); std::ostringstream os; os << addr; ASSERT_EQ(os.str(), "v2:192.168.1.11:0/0"); } TEST_F(DNSResolverTest, resolve_ip_addr_fail) { MockResolvHWrapper *resolvH = new MockResolvHWrapper(); #ifdef HAVE_RES_NQUERY EXPECT_CALL(*resolvH, res_nquery(_,StrEq("not_exists.com"), C_IN, T_A,_,_)) .WillOnce(Return(0)); #else EXPECT_CALL(*resolvH, res_query(StrEq("not_exists.com"), C_IN, T_A,_,_)) .WillOnce(Return(0)); #endif entity_addr_t addr; int ret = DNSResolver::get_instance(resolvH)->resolve_ip_addr(g_ceph_context, "not_exists.com", &addr); ASSERT_EQ(ret, -1); std::ostringstream os; os << addr; ASSERT_EQ(os.str(), "-"); } TEST_F(DNSResolverTest, resolve_srv_hosts_empty_domain) { MockResolvHWrapper *resolvH = new MockResolvHWrapper(); int len = sizeof(ns_search_msg_ok_payload); int lena = sizeof(ns_query_msg_mon_a_payload); int lenb = sizeof(ns_query_msg_mon_b_payload); int lenc = sizeof(ns_query_msg_mon_c_payload); using ::testing::InSequence; { InSequence s; #ifdef HAVE_RES_NQUERY EXPECT_CALL(*resolvH, res_nsearch(_, StrEq("_cephmon._tcp"), C_IN, T_SRV, _, _)) .WillOnce(DoAll(SetArrayArgument<4>(ns_search_msg_ok_payload, ns_search_msg_ok_payload+len), Return(len))); EXPECT_CALL(*resolvH, res_nquery(_,StrEq("mon.a.ceph.com"), C_IN, T_A,_,_)) .WillOnce(DoAll(SetArrayArgument<4>(ns_query_msg_mon_a_payload, ns_query_msg_mon_a_payload+lena), Return(lena))); EXPECT_CALL(*resolvH, res_nquery(_, StrEq("mon.c.ceph.com"), C_IN, T_A,_,_)) .WillOnce(DoAll(SetArrayArgument<4>(ns_query_msg_mon_c_payload, ns_query_msg_mon_c_payload+lenc), Return(lenc))); EXPECT_CALL(*resolvH, res_nquery(_,StrEq("mon.b.ceph.com"), C_IN, T_A, _,_)) .WillOnce(DoAll(SetArrayArgument<4>(ns_query_msg_mon_b_payload, ns_query_msg_mon_b_payload+lenb), Return(lenb))); #else EXPECT_CALL(*resolvH, res_search(StrEq("_cephmon._tcp"), C_IN, T_SRV, _, _)) .WillOnce(DoAll(SetArrayArgument<3>(ns_search_msg_ok_payload, ns_search_msg_ok_payload+len), Return(len))); EXPECT_CALL(*resolvH, res_query(StrEq("mon.a.ceph.com"), C_IN, T_A,_,_)) .WillOnce(DoAll(SetArrayArgument<3>(ns_query_msg_mon_a_payload, ns_query_msg_mon_a_payload+lena), Return(lena))); EXPECT_CALL(*resolvH, res_query(StrEq("mon.c.ceph.com"), C_IN, T_A,_,_)) .WillOnce(DoAll(SetArrayArgument<3>(ns_query_msg_mon_c_payload, ns_query_msg_mon_c_payload+lenc), Return(lenc))); EXPECT_CALL(*resolvH, res_query(StrEq("mon.b.ceph.com"), C_IN, T_A, _,_)) .WillOnce(DoAll(SetArrayArgument<3>(ns_query_msg_mon_b_payload, ns_query_msg_mon_b_payload+lenb), Return(lenb))); #endif } map<string, DNSResolver::Record> records; DNSResolver::get_instance(resolvH)->resolve_srv_hosts(g_ceph_context, "cephmon", DNSResolver::SRV_Protocol::TCP, &records); ASSERT_EQ(records.size(), (unsigned int)3); auto it = records.find("mon.a"); ASSERT_NE(it, records.end()); std::ostringstream os; os << it->second.addr; ASSERT_EQ(os.str(), "v2:192.168.1.11:6789/0"); os.str(""); ASSERT_EQ(it->second.priority, 10); ASSERT_EQ(it->second.weight, 40); it = records.find("mon.b"); ASSERT_NE(it, records.end()); os << it->second.addr; ASSERT_EQ(os.str(), "v2:192.168.1.12:6789/0"); os.str(""); ASSERT_EQ(it->second.priority, 10); ASSERT_EQ(it->second.weight, 35); it = records.find("mon.c"); ASSERT_NE(it, records.end()); os << it->second.addr; ASSERT_EQ(os.str(), "v2:192.168.1.13:6789/0"); ASSERT_EQ(it->second.priority, 10); ASSERT_EQ(it->second.weight, 25); } TEST_F(DNSResolverTest, resolve_srv_hosts_full_domain) { MockResolvHWrapper *resolvH = new MockResolvHWrapper(); int len = sizeof(ns_search_msg_ok_payload); int lena = sizeof(ns_query_msg_mon_a_payload); int lenb = sizeof(ns_query_msg_mon_b_payload); int lenc = sizeof(ns_query_msg_mon_c_payload); using ::testing::InSequence; { InSequence s; #ifdef HAVE_RES_NQUERY EXPECT_CALL(*resolvH, res_nsearch(_, StrEq("_cephmon._tcp.ceph.com"), C_IN, T_SRV, _, _)) .WillOnce(DoAll(SetArrayArgument<4>(ns_search_msg_ok_payload, ns_search_msg_ok_payload+len), Return(len))); EXPECT_CALL(*resolvH, res_nquery(_,StrEq("mon.a.ceph.com"), C_IN, T_A,_,_)) .WillOnce(DoAll(SetArrayArgument<4>(ns_query_msg_mon_a_payload, ns_query_msg_mon_a_payload+lena), Return(lena))); EXPECT_CALL(*resolvH, res_nquery(_, StrEq("mon.c.ceph.com"), C_IN, T_A,_,_)) .WillOnce(DoAll(SetArrayArgument<4>(ns_query_msg_mon_c_payload, ns_query_msg_mon_c_payload+lenc), Return(lenc))); EXPECT_CALL(*resolvH, res_nquery(_,StrEq("mon.b.ceph.com"), C_IN, T_A, _,_)) .WillOnce(DoAll(SetArrayArgument<4>(ns_query_msg_mon_b_payload, ns_query_msg_mon_b_payload+lenb), Return(lenb))); #else EXPECT_CALL(*resolvH, res_search(StrEq("_cephmon._tcp.ceph.com"), C_IN, T_SRV, _, _)) .WillOnce(DoAll(SetArrayArgument<3>(ns_search_msg_ok_payload, ns_search_msg_ok_payload+len), Return(len))); EXPECT_CALL(*resolvH, res_query(StrEq("mon.a.ceph.com"), C_IN, T_A,_,_)) .WillOnce(DoAll(SetArrayArgument<3>(ns_query_msg_mon_a_payload, ns_query_msg_mon_a_payload+lena), Return(lena))); EXPECT_CALL(*resolvH, res_query(StrEq("mon.c.ceph.com"), C_IN, T_A,_,_)) .WillOnce(DoAll(SetArrayArgument<3>(ns_query_msg_mon_c_payload, ns_query_msg_mon_c_payload+lenc), Return(lenc))); EXPECT_CALL(*resolvH, res_query(StrEq("mon.b.ceph.com"), C_IN, T_A, _,_)) .WillOnce(DoAll(SetArrayArgument<3>(ns_query_msg_mon_b_payload, ns_query_msg_mon_b_payload+lenb), Return(lenb))); #endif } map<string, DNSResolver::Record> records; DNSResolver::get_instance(resolvH)->resolve_srv_hosts(g_ceph_context, "cephmon", DNSResolver::SRV_Protocol::TCP, "ceph.com", &records); ASSERT_EQ(records.size(), (unsigned int)3); auto it = records.find("mon.a"); ASSERT_NE(it, records.end()); std::ostringstream os; os << it->second.addr; ASSERT_EQ(os.str(), "v2:192.168.1.11:6789/0"); os.str(""); it = records.find("mon.b"); ASSERT_NE(it, records.end()); os << it->second.addr; ASSERT_EQ(os.str(), "v2:192.168.1.12:6789/0"); os.str(""); it = records.find("mon.c"); ASSERT_NE(it, records.end()); os << it->second.addr; ASSERT_EQ(os.str(), "v2:192.168.1.13:6789/0"); } TEST_F(DNSResolverTest, resolve_srv_hosts_fail) { MockResolvHWrapper *resolvH = new MockResolvHWrapper(); using ::testing::InSequence; { InSequence s; #ifdef HAVE_RES_NQUERY EXPECT_CALL(*resolvH, res_nsearch(_, StrEq("_noservice._tcp"), C_IN, T_SRV, _, _)) .WillOnce(Return(0)); #else EXPECT_CALL(*resolvH, res_search(StrEq("_noservice._tcp"), C_IN, T_SRV, _, _)) .WillOnce(Return(0)); #endif } map<string, DNSResolver::Record> records; int ret = DNSResolver::get_instance(resolvH)->resolve_srv_hosts( g_ceph_context, "noservice", DNSResolver::SRV_Protocol::TCP, "", &records); ASSERT_EQ(0, ret); ASSERT_TRUE(records.empty()); }
8,965
32.962121
93
cc
null
ceph-main/src/test/common/get_command_descriptions.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library Public License for more details. * */ #include <stdio.h> #include <signal.h> #include "mon/Monitor.h" #include "common/ceph_argparse.h" #include "global/global_init.h" using namespace std; static void usage(ostream &out) { out << "usage: get_command_descriptions [options ...]" << std::endl; out << "print on stdout the result of JSON formatted options\n"; out << "found in mon/MonCommands.h as produced by the\n"; out << "Monitor.cc::get_command_descriptions function.\n"; out << "Designed as a helper for ceph_argparse.py unit tests.\n"; out << "\n"; out << " --all all of mon/MonCommands.h \n"; out << " --pull585 reproduce the bug fixed by #585\n"; out << "\n"; out << "Examples:\n"; out << " get_command_descriptions --all\n"; out << " get_command_descriptions --pull585\n"; } static void json_print(const std::vector<MonCommand> &mon_commands) { bufferlist rdata; auto f = Formatter::create_unique("json"); Monitor::format_command_descriptions(mon_commands, f.get(), CEPH_FEATURES_ALL, &rdata); string data(rdata.c_str(), rdata.length()); cout << data << std::endl; } static void all() { #undef FLAG #undef COMMAND #undef COMMAND_WITH_FLAG std::vector<MonCommand> mon_commands = { #define FLAG(f) (MonCommand::FLAG_##f) #define COMMAND(parsesig, helptext, modulename, req_perms) \ {parsesig, helptext, modulename, req_perms, 0}, #define COMMAND_WITH_FLAG(parsesig, helptext, modulename, req_perms, flags) \ {parsesig, helptext, modulename, req_perms, flags}, #include <mon/MonCommands.h> #undef COMMAND #undef COMMAND_WITH_FLAG #define COMMAND(parsesig, helptext, modulename, req_perms) \ {parsesig, helptext, modulename, req_perms, FLAG(MGR)}, #define COMMAND_WITH_FLAG(parsesig, helptext, modulename, req_perms, flags) \ {parsesig, helptext, modulename, req_perms, flags | FLAG(MGR)}, #include <mgr/MgrCommands.h> #undef COMMAND #undef COMMAND_WITH_FLAG }; json_print(mon_commands); } // syntax error https://github.com/ceph/ceph/pull/585 static void pull585() { std::vector<MonCommand> mon_commands = { { "osd pool create " "name=pool,type=CephPoolname " "name=pg_num,type=CephInt,range=0,req=false " "name=pgp_num,type=CephInt,range=0,req=false" // !!! missing trailing space "name=properties,type=CephString,n=N,req=false,goodchars=[A-Za-z0-9-_.=]", "create pool", "osd", "rw" } }; json_print(mon_commands); } int main(int argc, char **argv) { auto args = argv_to_vec(argc, argv); auto cct = global_init(NULL, args, CEPH_ENTITY_TYPE_CLIENT, CODE_ENVIRONMENT_UTILITY, CINIT_FLAG_NO_DEFAULT_CONFIG_FILE); common_init_finish(g_ceph_context); if (args.empty()) { usage(cerr); exit(1); } for (std::vector<const char*>::iterator i = args.begin(); i != args.end(); ++i) { string err; if (*i == string("help") || *i == string("-h") || *i == string("--help")) { usage(cout); exit(0); } else if (*i == string("--all")) { all(); } else if (*i == string("--pull585")) { pull585(); } } } /* * Local Variables: * compile-command: "cd ../.. ; * make get_command_descriptions && * ./get_command_descriptions --all --pull585" * End: */
4,018
29.44697
83
cc
null
ceph-main/src/test/common/histogram.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014 Inktank <[email protected]> * * LGPL-2.1 (see COPYING-LGPL2.1) or later */ #include <iostream> #include <gtest/gtest.h> #include "common/histogram.h" #include "include/stringify.h" TEST(Histogram, Basic) { pow2_hist_t h; h.add(0); h.add(0); h.add(0); ASSERT_EQ(3, h.h[0]); ASSERT_EQ(1u, h.h.size()); h.add(1); ASSERT_EQ(3, h.h[0]); ASSERT_EQ(1, h.h[1]); ASSERT_EQ(2u, h.h.size()); h.add(2); h.add(2); ASSERT_EQ(3, h.h[0]); ASSERT_EQ(1, h.h[1]); ASSERT_EQ(2, h.h[2]); ASSERT_EQ(3u, h.h.size()); } TEST(Histogram, Set) { pow2_hist_t h; h.set_bin(0, 12); h.set_bin(2, 12); ASSERT_EQ(12, h.h[0]); ASSERT_EQ(0, h.h[1]); ASSERT_EQ(12, h.h[2]); ASSERT_EQ(3u, h.h.size()); } TEST(Histogram, Position) { pow2_hist_t h; uint64_t lb, ub; h.add(0); ASSERT_EQ(-1, h.get_position_micro(-20, &lb, &ub)); } TEST(Histogram, Position1) { pow2_hist_t h; h.add(0); uint64_t lb, ub; h.get_position_micro(0, &lb, &ub); ASSERT_EQ(0u, lb); ASSERT_EQ(1000000u, ub); h.add(0); h.add(0); h.add(0); h.get_position_micro(0, &lb, &ub); ASSERT_EQ(0u, lb); ASSERT_EQ(1000000u, ub); } TEST(Histogram, Position2) { pow2_hist_t h; h.add(1); h.add(1); uint64_t lb, ub; h.get_position_micro(0, &lb, &ub); ASSERT_EQ(0u, lb); ASSERT_EQ(0u, ub); h.add(0); h.get_position_micro(0, &lb, &ub); ASSERT_EQ(0u, lb); ASSERT_EQ(333333u, ub); h.get_position_micro(1, &lb, &ub); ASSERT_EQ(333333u, lb); ASSERT_EQ(1000000u, ub); } TEST(Histogram, Position3) { pow2_hist_t h; h.h.resize(10, 0); h.h[0] = 1; h.h[5] = 1; uint64_t lb, ub; h.get_position_micro(4, &lb, &ub); ASSERT_EQ(500000u, lb); ASSERT_EQ(500000u, ub); } TEST(Histogram, Position4) { pow2_hist_t h; h.h.resize(10, 0); h.h[0] = UINT_MAX; h.h[5] = UINT_MAX; uint64_t lb, ub; h.get_position_micro(4, &lb, &ub); ASSERT_EQ(0u, lb); ASSERT_EQ(0u, ub); } TEST(Histogram, Decay) { pow2_hist_t h; h.set_bin(0, 123); h.set_bin(3, 12); h.set_bin(5, 1); h.decay(1); ASSERT_EQ(61, h.h[0]); ASSERT_EQ(6, h.h[3]); ASSERT_EQ(4u, h.h.size()); } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_histogram && * valgrind --tool=memcheck --leak-check=full \ * ./unittest_histogram * " * End: */
2,478
18.069231
70
cc
null
ceph-main/src/test/common/test_allocate_unique.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2020 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/allocate_unique.h" #include <string> #include <vector> #include <gtest/gtest.h> namespace { // allocation events recorded by logging_allocator struct event { size_t size; bool allocated; // true for allocate(), false for deallocate() }; using event_log = std::vector<event>; template <typename T> struct logging_allocator { event_log *const log; using value_type = T; explicit logging_allocator(event_log *log) : log(log) {} logging_allocator(const logging_allocator& other) : log(other.log) {} template <typename U> logging_allocator(const logging_allocator<U>& other) : log(other.log) {} T* allocate(size_t n) { auto p = std::allocator<T>{}.allocate(n); log->emplace_back(event{n * sizeof(T), true}); return p; } void deallocate(T* p, size_t n) { std::allocator<T>{}.deallocate(p, n); if (p) { log->emplace_back(event{n * sizeof(T), false}); } } }; } // anonymous namespace namespace ceph { TEST(AllocateUnique, Allocate) { event_log log; auto alloc = logging_allocator<char>{&log}; { auto p = allocate_unique<char>(alloc, 'a'); static_assert(std::is_same_v<decltype(p), std::unique_ptr<char, deallocator<logging_allocator<char>>>>); ASSERT_TRUE(p); ASSERT_EQ(1, log.size()); EXPECT_EQ(1, log.front().size); EXPECT_EQ(true, log.front().allocated); } ASSERT_EQ(2, log.size()); EXPECT_EQ(1, log.back().size); EXPECT_EQ(false, log.back().allocated); } TEST(AllocateUnique, RebindAllocate) { event_log log; auto alloc = logging_allocator<char>{&log}; { auto p = allocate_unique<std::string>(alloc, "a"); static_assert(std::is_same_v<decltype(p), std::unique_ptr<std::string, deallocator<logging_allocator<std::string>>>>); ASSERT_TRUE(p); ASSERT_EQ(1, log.size()); EXPECT_EQ(sizeof(std::string), log.front().size); EXPECT_EQ(true, log.front().allocated); } ASSERT_EQ(2, log.size()); EXPECT_EQ(sizeof(std::string), log.back().size); EXPECT_EQ(false, log.back().allocated); } } // namespace ceph
2,523
24.755102
81
cc
null
ceph-main/src/test/common/test_async_completion.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2018 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/async/completion.h" #include <optional> #include <boost/intrusive/list.hpp> #include <gtest/gtest.h> namespace ceph::async { using boost::system::error_code; struct move_only { move_only() = default; move_only(move_only&&) = default; move_only& operator=(move_only&&) = default; move_only(const move_only&) = delete; move_only& operator=(const move_only&) = delete; }; TEST(AsyncCompletion, BindHandler) { auto h1 = [] (int i, char c) {}; auto b1 = bind_handler(std::move(h1), 5, 'a'); b1(); const auto& c1 = b1; c1(); std::move(b1)(); // move-only types can be forwarded with 'operator() &&' auto h2 = [] (move_only&& m) {}; auto b2 = bind_handler(std::move(h2), move_only{}); std::move(b2)(); // references bound with std::ref() can be passed to all operator() overloads auto h3 = [] (int& c) { c++; }; int count = 0; auto b3 = bind_handler(std::move(h3), std::ref(count)); EXPECT_EQ(0, count); b3(); EXPECT_EQ(1, count); const auto& c3 = b3; c3(); EXPECT_EQ(2, count); std::move(b3)(); EXPECT_EQ(3, count); } TEST(AsyncCompletion, ForwardHandler) { // move-only types can be forwarded with 'operator() &' auto h = [] (move_only&& m) {}; auto b = bind_handler(std::move(h), move_only{}); auto f = forward_handler(std::move(b)); f(); } TEST(AsyncCompletion, MoveOnly) { boost::asio::io_context context; auto ex1 = context.get_executor(); std::optional<error_code> ec1, ec2, ec3; std::optional<move_only> arg3; { // move-only user data using Completion = Completion<void(error_code), move_only>; auto c = Completion::create(ex1, [&ec1] (error_code ec) { ec1 = ec; }); Completion::post(std::move(c), boost::asio::error::operation_aborted); EXPECT_FALSE(ec1); } { // move-only handler using Completion = Completion<void(error_code)>; auto c = Completion::create(ex1, [&ec2, m=move_only{}] (error_code ec) { static_cast<void>(m); ec2 = ec; }); Completion::post(std::move(c), boost::asio::error::operation_aborted); EXPECT_FALSE(ec2); } { // move-only arg in signature using Completion = Completion<void(error_code, move_only)>; auto c = Completion::create(ex1, [&] (error_code ec, move_only m) { ec3 = ec; arg3 = std::move(m); }); Completion::post(std::move(c), boost::asio::error::operation_aborted, move_only{}); EXPECT_FALSE(ec3); } context.poll(); EXPECT_TRUE(context.stopped()); ASSERT_TRUE(ec1); EXPECT_EQ(boost::asio::error::operation_aborted, *ec1); ASSERT_TRUE(ec2); EXPECT_EQ(boost::asio::error::operation_aborted, *ec2); ASSERT_TRUE(ec3); EXPECT_EQ(boost::asio::error::operation_aborted, *ec3); ASSERT_TRUE(arg3); } TEST(AsyncCompletion, VoidCompletion) { boost::asio::io_context context; auto ex1 = context.get_executor(); using Completion = Completion<void(error_code)>; std::optional<error_code> ec1; auto c = Completion::create(ex1, [&ec1] (error_code ec) { ec1 = ec; }); Completion::post(std::move(c), boost::asio::error::operation_aborted); EXPECT_FALSE(ec1); context.poll(); EXPECT_TRUE(context.stopped()); ASSERT_TRUE(ec1); EXPECT_EQ(boost::asio::error::operation_aborted, *ec1); } TEST(AsyncCompletion, CompletionList) { boost::asio::io_context context; auto ex1 = context.get_executor(); using T = AsBase<boost::intrusive::list_base_hook<>>; using Completion = Completion<void(), T>; boost::intrusive::list<Completion> completions; int completed = 0; for (int i = 0; i < 3; i++) { auto c = Completion::create(ex1, [&] { completed++; }); completions.push_back(*c.release()); } completions.clear_and_dispose([] (Completion *c) { Completion::post(std::unique_ptr<Completion>{c}); }); EXPECT_EQ(0, completed); context.poll(); EXPECT_TRUE(context.stopped()); EXPECT_EQ(3, completed); } TEST(AsyncCompletion, CompletionPair) { boost::asio::io_context context; auto ex1 = context.get_executor(); using T = std::pair<int, std::string>; using Completion = Completion<void(int, std::string), T>; std::optional<T> t; auto c = Completion::create(ex1, [&] (int first, std::string second) { t = T{first, std::move(second)}; }, 2, "hello"); auto data = std::move(c->user_data); Completion::post(std::move(c), data.first, std::move(data.second)); EXPECT_FALSE(t); context.poll(); EXPECT_TRUE(context.stopped()); ASSERT_TRUE(t); EXPECT_EQ(2, t->first); EXPECT_EQ("hello", t->second); } TEST(AsyncCompletion, CompletionReference) { boost::asio::io_context context; auto ex1 = context.get_executor(); using Completion = Completion<void(int&)>; auto c = Completion::create(ex1, [] (int& i) { ++i; }); int i = 42; Completion::post(std::move(c), std::ref(i)); EXPECT_EQ(42, i); context.poll(); EXPECT_TRUE(context.stopped()); EXPECT_EQ(43, i); } struct throws_on_move { throws_on_move() = default; throws_on_move(throws_on_move&&) { throw std::runtime_error("oops"); } throws_on_move& operator=(throws_on_move&&) { throw std::runtime_error("oops"); } throws_on_move(const throws_on_move&) = default; throws_on_move& operator=(const throws_on_move&) = default; }; TEST(AsyncCompletion, ThrowOnCtor) { boost::asio::io_context context; auto ex1 = context.get_executor(); { using Completion = Completion<void(int&)>; // throw on Handler move construction EXPECT_THROW(Completion::create(ex1, [t=throws_on_move{}] (int& i) { static_cast<void>(t); ++i; }), std::runtime_error); } { using T = throws_on_move; using Completion = Completion<void(int&), T>; // throw on UserData construction EXPECT_THROW(Completion::create(ex1, [] (int& i) { ++i; }, throws_on_move{}), std::runtime_error); } } TEST(AsyncCompletion, FreeFunctions) { boost::asio::io_context context; auto ex1 = context.get_executor(); auto c1 = create_completion<void(), void>(ex1, [] {}); post(std::move(c1)); auto c2 = create_completion<void(int), int>(ex1, [] (int) {}, 5); defer(std::move(c2), c2->user_data); context.poll(); EXPECT_TRUE(context.stopped()); } } // namespace ceph::async
6,662
24.92607
87
cc
null
ceph-main/src/test/common/test_async_shared_mutex.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2018 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/async/shared_mutex.h" #include <optional> #include <gtest/gtest.h> namespace ceph::async { using executor_type = boost::asio::io_context::executor_type; using unique_lock = std::unique_lock<SharedMutex<executor_type>>; using shared_lock = std::shared_lock<SharedMutex<executor_type>>; // return a lambda that captures its error code and lock auto capture(std::optional<boost::system::error_code>& ec, unique_lock& lock) { return [&] (boost::system::error_code e, unique_lock l) { ec = e; lock = std::move(l); }; } auto capture(std::optional<boost::system::error_code>& ec, shared_lock& lock) { return [&] (boost::system::error_code e, shared_lock l) { ec = e; lock = std::move(l); }; } TEST(SharedMutex, async_exclusive) { boost::asio::io_context context; SharedMutex mutex(context.get_executor()); std::optional<boost::system::error_code> ec1, ec2, ec3; unique_lock lock1, lock2, lock3; // request three exclusive locks mutex.async_lock(capture(ec1, lock1)); mutex.async_lock(capture(ec2, lock2)); mutex.async_lock(capture(ec3, lock3)); EXPECT_FALSE(ec1); // no callbacks until poll() EXPECT_FALSE(ec2); EXPECT_FALSE(ec3); context.poll(); EXPECT_FALSE(context.stopped()); // second lock still pending ASSERT_TRUE(ec1); EXPECT_EQ(boost::system::errc::success, *ec1); ASSERT_TRUE(lock1); EXPECT_FALSE(ec2); lock1.unlock(); EXPECT_FALSE(ec2); context.poll(); EXPECT_FALSE(context.stopped()); ASSERT_TRUE(ec2); EXPECT_EQ(boost::system::errc::success, *ec2); ASSERT_TRUE(lock2); EXPECT_FALSE(ec3); lock2.unlock(); EXPECT_FALSE(ec3); context.poll(); EXPECT_TRUE(context.stopped()); ASSERT_TRUE(ec3); EXPECT_EQ(boost::system::errc::success, *ec3); ASSERT_TRUE(lock3); } TEST(SharedMutex, async_shared) { boost::asio::io_context context; SharedMutex mutex(context.get_executor()); std::optional<boost::system::error_code> ec1, ec2; shared_lock lock1, lock2; // request two shared locks mutex.async_lock_shared(capture(ec1, lock1)); mutex.async_lock_shared(capture(ec2, lock2)); EXPECT_FALSE(ec1); // no callbacks until poll() EXPECT_FALSE(ec2); context.poll(); EXPECT_TRUE(context.stopped()); ASSERT_TRUE(ec1); EXPECT_EQ(boost::system::errc::success, *ec1); ASSERT_TRUE(lock1); ASSERT_TRUE(ec2); EXPECT_EQ(boost::system::errc::success, *ec2); ASSERT_TRUE(lock2); } TEST(SharedMutex, async_exclusive_while_shared) { boost::asio::io_context context; SharedMutex mutex(context.get_executor()); std::optional<boost::system::error_code> ec1, ec2; shared_lock lock1; unique_lock lock2; // request a shared and exclusive lock mutex.async_lock_shared(capture(ec1, lock1)); mutex.async_lock(capture(ec2, lock2)); EXPECT_FALSE(ec1); // no callbacks until poll() EXPECT_FALSE(ec2); context.poll(); EXPECT_FALSE(context.stopped()); // second lock still pending ASSERT_TRUE(ec1); EXPECT_EQ(boost::system::errc::success, *ec1); ASSERT_TRUE(lock1); EXPECT_FALSE(ec2); lock1.unlock(); EXPECT_FALSE(ec2); context.poll(); EXPECT_TRUE(context.stopped()); ASSERT_TRUE(ec2); EXPECT_EQ(boost::system::errc::success, *ec2); ASSERT_TRUE(lock2); } TEST(SharedMutex, async_shared_while_exclusive) { boost::asio::io_context context; SharedMutex mutex(context.get_executor()); std::optional<boost::system::error_code> ec1, ec2; unique_lock lock1; shared_lock lock2; // request an exclusive and shared lock mutex.async_lock(capture(ec1, lock1)); mutex.async_lock_shared(capture(ec2, lock2)); EXPECT_FALSE(ec1); // no callbacks until poll() EXPECT_FALSE(ec2); context.poll(); EXPECT_FALSE(context.stopped()); // second lock still pending ASSERT_TRUE(ec1); EXPECT_EQ(boost::system::errc::success, *ec1); ASSERT_TRUE(lock1); EXPECT_FALSE(ec2); lock1.unlock(); EXPECT_FALSE(ec2); context.poll(); EXPECT_TRUE(context.stopped()); ASSERT_TRUE(ec2); EXPECT_EQ(boost::system::errc::success, *ec2); ASSERT_TRUE(lock2); } TEST(SharedMutex, async_prioritize_exclusive) { boost::asio::io_context context; SharedMutex mutex(context.get_executor()); std::optional<boost::system::error_code> ec1, ec2, ec3; shared_lock lock1, lock3; unique_lock lock2; // acquire a shared lock, then request an exclusive and another shared lock mutex.async_lock_shared(capture(ec1, lock1)); mutex.async_lock(capture(ec2, lock2)); mutex.async_lock_shared(capture(ec3, lock3)); EXPECT_FALSE(ec1); // no callbacks until poll() EXPECT_FALSE(ec2); EXPECT_FALSE(ec3); context.poll(); EXPECT_FALSE(context.stopped()); ASSERT_TRUE(ec1); EXPECT_EQ(boost::system::errc::success, *ec1); ASSERT_TRUE(lock1); EXPECT_FALSE(ec2); // exclusive waiter blocks the second shared lock EXPECT_FALSE(ec3); lock1.unlock(); EXPECT_FALSE(ec2); EXPECT_FALSE(ec3); context.poll(); EXPECT_FALSE(context.stopped()); ASSERT_TRUE(ec2); EXPECT_EQ(boost::system::errc::success, *ec2); ASSERT_TRUE(lock2); EXPECT_FALSE(ec3); } TEST(SharedMutex, async_cancel) { boost::asio::io_context context; SharedMutex mutex(context.get_executor()); std::optional<boost::system::error_code> ec1, ec2, ec3, ec4; unique_lock lock1, lock2; shared_lock lock3, lock4; // request 2 exclusive and shared locks mutex.async_lock(capture(ec1, lock1)); mutex.async_lock(capture(ec2, lock2)); mutex.async_lock_shared(capture(ec3, lock3)); mutex.async_lock_shared(capture(ec4, lock4)); EXPECT_FALSE(ec1); // no callbacks until poll() EXPECT_FALSE(ec2); EXPECT_FALSE(ec3); EXPECT_FALSE(ec4); context.poll(); EXPECT_FALSE(context.stopped()); ASSERT_TRUE(ec1); EXPECT_EQ(boost::system::errc::success, *ec1); ASSERT_TRUE(lock1); EXPECT_FALSE(ec2); EXPECT_FALSE(ec3); EXPECT_FALSE(ec4); mutex.cancel(); EXPECT_FALSE(ec2); EXPECT_FALSE(ec3); EXPECT_FALSE(ec4); context.poll(); EXPECT_TRUE(context.stopped()); ASSERT_TRUE(ec2); EXPECT_EQ(boost::asio::error::operation_aborted, *ec2); EXPECT_FALSE(lock2); ASSERT_TRUE(ec3); EXPECT_EQ(boost::asio::error::operation_aborted, *ec3); EXPECT_FALSE(lock3); ASSERT_TRUE(ec4); EXPECT_EQ(boost::asio::error::operation_aborted, *ec4); EXPECT_FALSE(lock4); } TEST(SharedMutex, async_destruct) { boost::asio::io_context context; std::optional<boost::system::error_code> ec1, ec2, ec3, ec4; unique_lock lock1, lock2; shared_lock lock3, lock4; { SharedMutex mutex(context.get_executor()); // request 2 exclusive and shared locks mutex.async_lock(capture(ec1, lock1)); mutex.async_lock(capture(ec2, lock2)); mutex.async_lock_shared(capture(ec3, lock3)); mutex.async_lock_shared(capture(ec4, lock4)); } EXPECT_FALSE(ec1); // no callbacks until poll() EXPECT_FALSE(ec2); EXPECT_FALSE(ec3); EXPECT_FALSE(ec4); context.poll(); EXPECT_TRUE(context.stopped()); ASSERT_TRUE(ec1); EXPECT_EQ(boost::system::errc::success, *ec1); ASSERT_TRUE(lock1); ASSERT_TRUE(ec2); EXPECT_EQ(boost::asio::error::operation_aborted, *ec2); EXPECT_FALSE(lock2); ASSERT_TRUE(ec3); EXPECT_EQ(boost::asio::error::operation_aborted, *ec3); EXPECT_FALSE(lock3); ASSERT_TRUE(ec4); EXPECT_EQ(boost::asio::error::operation_aborted, *ec4); EXPECT_FALSE(lock4); } // return a capture() lambda that's bound to the given executor template <typename Executor, typename ...Args> auto capture_ex(const Executor& ex, Args&& ...args) { return boost::asio::bind_executor(ex, capture(std::forward<Args>(args)...)); } TEST(SharedMutex, cross_executor) { boost::asio::io_context mutex_context; SharedMutex mutex(mutex_context.get_executor()); boost::asio::io_context callback_context; auto ex2 = callback_context.get_executor(); std::optional<boost::system::error_code> ec1, ec2; unique_lock lock1, lock2; // request two exclusive locks mutex.async_lock(capture_ex(ex2, ec1, lock1)); mutex.async_lock(capture_ex(ex2, ec2, lock2)); EXPECT_FALSE(ec1); EXPECT_FALSE(ec2); mutex_context.poll(); EXPECT_FALSE(mutex_context.stopped()); // maintains work on both executors EXPECT_FALSE(ec1); // no callbacks until poll() on callback_context EXPECT_FALSE(ec2); callback_context.poll(); EXPECT_FALSE(callback_context.stopped()); // second lock still pending ASSERT_TRUE(ec1); EXPECT_EQ(boost::system::errc::success, *ec1); ASSERT_TRUE(lock1); EXPECT_FALSE(ec2); lock1.unlock(); mutex_context.poll(); EXPECT_TRUE(mutex_context.stopped()); EXPECT_FALSE(ec2); callback_context.poll(); EXPECT_TRUE(callback_context.stopped()); ASSERT_TRUE(ec2); EXPECT_EQ(boost::system::errc::success, *ec2); ASSERT_TRUE(lock2); } TEST(SharedMutex, try_exclusive) { boost::asio::io_context context; SharedMutex mutex(context.get_executor()); { std::lock_guard lock{mutex}; ASSERT_FALSE(mutex.try_lock()); // fail during exclusive } { std::shared_lock lock{mutex}; ASSERT_FALSE(mutex.try_lock()); // fail during shared } ASSERT_TRUE(mutex.try_lock()); mutex.unlock(); } TEST(SharedMutex, try_shared) { boost::asio::io_context context; SharedMutex mutex(context.get_executor()); { std::lock_guard lock{mutex}; ASSERT_FALSE(mutex.try_lock_shared()); // fail during exclusive } { std::shared_lock lock{mutex}; ASSERT_TRUE(mutex.try_lock_shared()); // succeed during shared mutex.unlock_shared(); } ASSERT_TRUE(mutex.try_lock_shared()); mutex.unlock_shared(); } TEST(SharedMutex, cancel) { boost::asio::io_context context; SharedMutex mutex(context.get_executor()); std::lock_guard l{mutex}; // exclusive lock blocks others // make synchronous lock calls in other threads auto f1 = std::async(std::launch::async, [&] { mutex.lock(); }); auto f2 = std::async(std::launch::async, [&] { mutex.lock_shared(); }); // this will race with spawned threads. just keep canceling until the // futures are ready const auto t = std::chrono::milliseconds(1); do { mutex.cancel(); } while (f1.wait_for(t) != std::future_status::ready); do { mutex.cancel(); } while (f2.wait_for(t) != std::future_status::ready); EXPECT_THROW(f1.get(), boost::system::system_error); EXPECT_THROW(f2.get(), boost::system::system_error); } } // namespace ceph::async
10,729
24.011655
78
cc
null
ceph-main/src/test/common/test_back_trace.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <boost/algorithm/string.hpp> #include <gtest/gtest.h> #include <regex> #include <sstream> #include <string> #include "common/BackTrace.h" #include "common/version.h" // a dummy function, so we can check "foo" in the backtrace. // do not mark this function as static or put it into an anonymous namespace, // otherwise it's function name will be removed in the backtrace. std::string foo() { std::ostringstream oss; oss << ceph::ClibBackTrace(1); return oss.str(); } // a typical backtrace looks like: // // ceph version Development (no_version) // 1: (foo[abi:cxx11]()+0x4a) [0x5562231cf22a] // 2: (BackTrace_Basic_Test::TestBody()+0x28) [0x5562231cf2fc] TEST(BackTrace, Basic) { std::string bt = foo(); std::vector<std::string> lines; boost::split(lines, bt, boost::is_any_of("\n")); const unsigned lineno = 1; ASSERT_GT(lines.size(), lineno); ASSERT_EQ(lines[0].find(pretty_version_to_str()), 1U); std::regex e{"^ 1: " #ifdef __FreeBSD__ "<foo.*>\\s" "at\\s.*$"}; #else "\\(foo.*\\)\\s" "\\[0x[[:xdigit:]]+\\]$"}; #endif EXPECT_TRUE(std::regex_match(lines[lineno], e)); }
1,219
26.111111
77
cc
null
ceph-main/src/test/common/test_bit_vector.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014 Red Hat <[email protected]> * * LGPL-2.1 (see COPYING-LGPL2.1) or later */ #include <gtest/gtest.h> #include <cmath> #include "common/bit_vector.hpp" #include <boost/assign/list_of.hpp> using namespace ceph; template <uint8_t _bit_count> class TestParams { public: static const uint8_t BIT_COUNT = _bit_count; }; template <typename T> class BitVectorTest : public ::testing::Test { public: typedef BitVector<T::BIT_COUNT> bit_vector_t; }; typedef ::testing::Types<TestParams<2> > BitVectorTypes; TYPED_TEST_SUITE(BitVectorTest, BitVectorTypes); TYPED_TEST(BitVectorTest, resize) { typename TestFixture::bit_vector_t bit_vector; size_t size = 2357; double elements_per_byte = 8 / bit_vector.BIT_COUNT; bit_vector.resize(size); ASSERT_EQ(bit_vector.size(), size); ASSERT_EQ(bit_vector.get_data().length(), static_cast<uint64_t>(std::ceil( size / elements_per_byte))); } TYPED_TEST(BitVectorTest, clear) { typename TestFixture::bit_vector_t bit_vector; bit_vector.resize(123); bit_vector.clear(); ASSERT_EQ(0ull, bit_vector.size()); ASSERT_EQ(0ull, bit_vector.get_data().length()); } TYPED_TEST(BitVectorTest, bit_order) { typename TestFixture::bit_vector_t bit_vector; bit_vector.resize(1); uint8_t value = 1; bit_vector[0] = value; value <<= (8 - bit_vector.BIT_COUNT); ASSERT_EQ(value, bit_vector.get_data()[0]); } TYPED_TEST(BitVectorTest, get_set) { typename TestFixture::bit_vector_t bit_vector; std::vector<uint64_t> ref; uint64_t radix = 1 << bit_vector.BIT_COUNT; size_t size = 1024; bit_vector.resize(size); ref.resize(size); for (size_t i = 0; i < size; ++i) { uint64_t v = rand() % radix; ref[i] = v; bit_vector[i] = v; } const typename TestFixture::bit_vector_t &const_bit_vector(bit_vector); for (size_t i = 0; i < size; ++i) { ASSERT_EQ(ref[i], bit_vector[i]); ASSERT_EQ(ref[i], const_bit_vector[i]); } } TYPED_TEST(BitVectorTest, get_buffer_extents) { typename TestFixture::bit_vector_t bit_vector; uint64_t element_count = 2 * bit_vector.BLOCK_SIZE + 51; uint64_t elements_per_byte = 8 / bit_vector.BIT_COUNT; bit_vector.resize(element_count * elements_per_byte); uint64_t offset = (bit_vector.BLOCK_SIZE + 11) * elements_per_byte; uint64_t length = (bit_vector.BLOCK_SIZE + 31) * elements_per_byte; uint64_t data_byte_offset; uint64_t object_byte_offset; uint64_t byte_length; bit_vector.get_data_extents(offset, length, &data_byte_offset, &object_byte_offset, &byte_length); ASSERT_EQ(bit_vector.BLOCK_SIZE, data_byte_offset); ASSERT_EQ(bit_vector.BLOCK_SIZE + (element_count % bit_vector.BLOCK_SIZE), byte_length); bit_vector.get_data_extents(1, 1, &data_byte_offset, &object_byte_offset, &byte_length); ASSERT_EQ(0U, data_byte_offset); ASSERT_EQ(bit_vector.get_header_length(), object_byte_offset); ASSERT_EQ(bit_vector.BLOCK_SIZE, byte_length); } TYPED_TEST(BitVectorTest, get_header_length) { typename TestFixture::bit_vector_t bit_vector; bufferlist bl; bit_vector.encode_header(bl); ASSERT_EQ(bl.length(), bit_vector.get_header_length()); } TYPED_TEST(BitVectorTest, get_footer_offset) { typename TestFixture::bit_vector_t bit_vector; bit_vector.resize(5111); uint64_t data_byte_offset; uint64_t object_byte_offset; uint64_t byte_length; bit_vector.get_data_extents(0, bit_vector.size(), &data_byte_offset, &object_byte_offset, &byte_length); ASSERT_EQ(bit_vector.get_header_length() + byte_length, bit_vector.get_footer_offset()); } TYPED_TEST(BitVectorTest, partial_decode_encode) { typename TestFixture::bit_vector_t bit_vector; uint64_t elements_per_byte = 8 / bit_vector.BIT_COUNT; bit_vector.resize(9161 * elements_per_byte); for (uint64_t i = 0; i < bit_vector.size(); ++i) { bit_vector[i] = i % 4; } bufferlist bl; encode(bit_vector, bl); bit_vector.clear(); bufferlist header_bl; header_bl.substr_of(bl, 0, bit_vector.get_header_length()); auto header_it = header_bl.cbegin(); bit_vector.decode_header(header_it); uint64_t object_byte_offset; uint64_t byte_length; bit_vector.get_header_crc_extents(&object_byte_offset, &byte_length); ASSERT_EQ(bit_vector.get_footer_offset() + 4, object_byte_offset); ASSERT_EQ(4ULL, byte_length); typedef std::pair<uint64_t, uint64_t> Extent; typedef std::list<Extent> Extents; Extents extents = boost::assign::list_of( std::make_pair(0, 1))( std::make_pair((bit_vector.BLOCK_SIZE * elements_per_byte) - 2, 4))( std::make_pair((bit_vector.BLOCK_SIZE * elements_per_byte) + 2, 2))( std::make_pair((2 * bit_vector.BLOCK_SIZE * elements_per_byte) - 2, 4))( std::make_pair((2 * bit_vector.BLOCK_SIZE * elements_per_byte) + 2, 2))( std::make_pair(2, 2 * bit_vector.BLOCK_SIZE)); for (Extents::iterator it = extents.begin(); it != extents.end(); ++it) { bufferlist footer_bl; uint64_t footer_byte_offset; uint64_t footer_byte_length; bit_vector.get_data_crcs_extents(it->first, it->second, &footer_byte_offset, &footer_byte_length); ASSERT_TRUE(footer_byte_offset + footer_byte_length <= bl.length()); footer_bl.substr_of(bl, footer_byte_offset, footer_byte_length); auto footer_it = footer_bl.cbegin(); bit_vector.decode_data_crcs(footer_it, it->first); uint64_t element_offset = it->first; uint64_t element_length = it->second; uint64_t data_byte_offset; bit_vector.get_data_extents(element_offset, element_length, &data_byte_offset, &object_byte_offset, &byte_length); bufferlist data_bl; data_bl.substr_of(bl, bit_vector.get_header_length() + data_byte_offset, byte_length); auto data_it = data_bl.cbegin(); bit_vector.decode_data(data_it, data_byte_offset); data_bl.clear(); bit_vector.encode_data(data_bl, data_byte_offset, byte_length); footer_bl.clear(); bit_vector.encode_data_crcs(footer_bl, it->first, it->second); bufferlist updated_bl; updated_bl.substr_of(bl, 0, bit_vector.get_header_length() + data_byte_offset); updated_bl.append(data_bl); if (data_byte_offset + byte_length < bit_vector.get_footer_offset()) { uint64_t tail_data_offset = bit_vector.get_header_length() + data_byte_offset + byte_length; data_bl.substr_of(bl, tail_data_offset, bit_vector.get_footer_offset() - tail_data_offset); updated_bl.append(data_bl); } bufferlist full_footer; full_footer.substr_of(bl, bit_vector.get_footer_offset(), footer_byte_offset - bit_vector.get_footer_offset()); full_footer.append(footer_bl); if (footer_byte_offset + footer_byte_length < bl.length()) { bufferlist footer_bit; auto footer_offset = footer_byte_offset + footer_byte_length; footer_bit.substr_of(bl, footer_offset, bl.length() - footer_offset); full_footer.append(footer_bit); } updated_bl.append(full_footer); ASSERT_EQ(bl, updated_bl); auto updated_it = updated_bl.cbegin(); decode(bit_vector, updated_it); } } TYPED_TEST(BitVectorTest, header_crc) { typename TestFixture::bit_vector_t bit_vector; bufferlist header; bit_vector.encode_header(header); bufferlist footer; bit_vector.encode_footer(footer); auto it = footer.cbegin(); bit_vector.decode_footer(it); bit_vector.resize(1); bit_vector.encode_header(header); it = footer.begin(); ASSERT_THROW(bit_vector.decode_footer(it), buffer::malformed_input); } TYPED_TEST(BitVectorTest, data_crc) { typename TestFixture::bit_vector_t bit_vector1; typename TestFixture::bit_vector_t bit_vector2; uint64_t elements_per_byte = 8 / bit_vector1.BIT_COUNT; bit_vector1.resize((bit_vector1.BLOCK_SIZE + 1) * elements_per_byte); bit_vector2.resize((bit_vector2.BLOCK_SIZE + 1) * elements_per_byte); uint64_t data_byte_offset; uint64_t object_byte_offset; uint64_t byte_length; bit_vector1.get_data_extents(0, bit_vector1.size(), &data_byte_offset, &object_byte_offset, &byte_length); bufferlist data; bit_vector1.encode_data(data, data_byte_offset, byte_length); auto data_it = data.cbegin(); bit_vector1.decode_data(data_it, data_byte_offset); bit_vector2[bit_vector2.size() - 1] = 1; bufferlist dummy_data; bit_vector2.encode_data(dummy_data, data_byte_offset, byte_length); data_it = data.begin(); ASSERT_THROW(bit_vector2.decode_data(data_it, data_byte_offset), buffer::malformed_input); } TYPED_TEST(BitVectorTest, iterator) { typename TestFixture::bit_vector_t bit_vector; uint64_t radix = 1 << bit_vector.BIT_COUNT; uint64_t size = 25 * (1ULL << 20); uint64_t offset = 0; // create fragmented in-memory bufferlist layout uint64_t resize = 0; while (resize < size) { resize += 4096; if (resize > size) { resize = size; } bit_vector.resize(resize); } for (auto it = bit_vector.begin(); it != bit_vector.end(); ++it, ++offset) { *it = offset % radix; } offset = 123; auto end_it = bit_vector.begin() + (size - 1024); for (auto it = bit_vector.begin() + offset; it != end_it; ++it, ++offset) { ASSERT_EQ(offset % radix, *it); } }
9,607
30.093851
80
cc
null
ceph-main/src/test/common/test_blkdev.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <string.h> #include <errno.h> #include <stdlib.h> #include <linux/kdev_t.h> #include "include/types.h" #include "common/blkdev.h" #include "gtest/gtest.h" #include "gmock/gmock.h" #include <iostream> using namespace std; using namespace testing; class MockBlkDev : public BlkDev { public: // pass 0 as fd, so it won't try to use the empty devname MockBlkDev() : BlkDev(0) {}; virtual ~MockBlkDev() {} MOCK_CONST_METHOD0(sysfsdir, const char*()); MOCK_CONST_METHOD2(wholedisk, int(char* device, size_t max)); }; class BlockDevTest : public ::testing::Test { public: string *root; protected: virtual void SetUp() { const char *sda_name = "sda"; const char *sdb_name = "sdb"; const char* env = getenv("CEPH_ROOT"); ASSERT_NE(env, nullptr) << "Environment Variable CEPH_ROOT not found!"; root = new string(env); *root += "/src/test/common/test_blkdev_sys_block/sys"; EXPECT_CALL(sda, sysfsdir()) .WillRepeatedly(Return(root->c_str())); EXPECT_CALL(sda, wholedisk(NotNull(), Ge(0ul))) .WillRepeatedly( DoAll( SetArrayArgument<0>(sda_name, sda_name + strlen(sda_name) + 1), Return(0))); EXPECT_CALL(sdb, sysfsdir()) .WillRepeatedly(Return(root->c_str())); EXPECT_CALL(sdb, wholedisk(NotNull(), Ge(0ul))) .WillRepeatedly( DoAll( SetArrayArgument<0>(sdb_name, sdb_name + strlen(sdb_name) + 1), Return(0))); } virtual void TearDown() { delete root; } MockBlkDev sda, sdb; }; TEST_F(BlockDevTest, device_model) { char model[1000] = {0}; int rc = sda.model(model, sizeof(model)); ASSERT_EQ(0, rc); ASSERT_STREQ(model, "myfancymodel"); } TEST_F(BlockDevTest, discard) { EXPECT_TRUE(sda.support_discard()); EXPECT_TRUE(sdb.support_discard()); } TEST_F(BlockDevTest, is_rotational) { EXPECT_FALSE(sda.is_rotational()); EXPECT_TRUE(sdb.is_rotational()); } TEST(blkdev, _decode_model_enc) { const char *foo[][2] = { { "WDC\\x20WDS200T2B0A-00SM50\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20", "WDC_WDS200T2B0A-00SM50" }, { 0, 0}, }; for (unsigned i = 0; foo[i][0]; ++i) { std::string d = _decode_model_enc(foo[i][0]); cout << " '" << foo[i][0] << "' -> '" << d << "'" << std::endl; ASSERT_EQ(std::string(foo[i][1]), d); } } TEST(blkdev, get_device_id) { // this doesn't really test anything; it's just a way to exercise the // get_device_id() code. for (char c = 'a'; c < 'z'; ++c) { char devname[4] = {'s', 'd', c, 0}; std::string err; auto i = get_device_id(devname, &err); cout << "devname " << devname << " -> '" << i << "' (" << err << ")" << std::endl; } }
2,842
23.721739
125
cc
null
ceph-main/src/test/common/test_blocked_completion.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2018 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <boost/asio.hpp> #include <boost/system/error_code.hpp> #include <gtest/gtest.h> #include "common/async/bind_handler.h" #include "common/async/blocked_completion.h" #include "common/async/forward_handler.h" using namespace std::literals; namespace ba = boost::asio; namespace bs = boost::system; namespace ca = ceph::async; class context_thread { ba::io_context c; ba::executor_work_guard<ba::io_context::executor_type> guard; std::thread th; public: context_thread() noexcept : guard(ba::make_work_guard(c)), th([this]() noexcept { c.run();}) {} ~context_thread() { guard.reset(); th.join(); } ba::io_context& io_context() noexcept { return c; } ba::io_context::executor_type get_executor() noexcept { return c.get_executor(); } }; struct move_only { move_only() = default; move_only(move_only&&) = default; move_only& operator=(move_only&&) = default; move_only(const move_only&) = delete; move_only& operator=(const move_only&) = delete; }; struct defaultless { int a; defaultless(int a) : a(a) {} }; template<typename Executor, typename CompletionToken, typename... Args> auto id(const Executor& executor, CompletionToken&& token, Args&& ...args) { ba::async_completion<CompletionToken, void(Args...)> init(token); auto a = ba::get_associated_allocator(init.completion_handler); executor.post(ca::forward_handler( ca::bind_handler(std::move(init.completion_handler), std::forward<Args>(args)...)), a); return init.result.get(); } TEST(BlockedCompletion, Void) { context_thread t; ba::post(t.get_executor(), ca::use_blocked); } TEST(BlockedCompletion, Timer) { context_thread t; ba::steady_timer timer(t.io_context(), 50ms); timer.async_wait(ca::use_blocked); } TEST(BlockedCompletion, NoError) { context_thread t; ba::steady_timer timer(t.io_context(), 1s); bs::error_code ec; EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked, bs::error_code{})); EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked[ec], bs::error_code{})); EXPECT_FALSE(ec); int i; EXPECT_NO_THROW(i = id(t.get_executor(), ca::use_blocked, bs::error_code{}, 5)); ASSERT_EQ(5, i); EXPECT_NO_THROW(i = id(t.get_executor(), ca::use_blocked[ec], bs::error_code{}, 7)); EXPECT_FALSE(ec); ASSERT_EQ(7, i); float j; EXPECT_NO_THROW(std::tie(i, j) = id(t.get_executor(), ca::use_blocked, 9, 3.5)); ASSERT_EQ(9, i); ASSERT_EQ(3.5, j); EXPECT_NO_THROW(std::tie(i, j) = id(t.get_executor(), ca::use_blocked[ec], 11, 2.25)); EXPECT_FALSE(ec); ASSERT_EQ(11, i); ASSERT_EQ(2.25, j); } TEST(BlockedCompletion, AnError) { context_thread t; ba::steady_timer timer(t.io_context(), 1s); bs::error_code ec; EXPECT_THROW(id(t.get_executor(), ca::use_blocked, bs::error_code{EDOM, bs::system_category()}), bs::system_error); EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked[ec], bs::error_code{EDOM, bs::system_category()})); EXPECT_EQ(bs::error_code(EDOM, bs::system_category()), ec); EXPECT_THROW(id(t.get_executor(), ca::use_blocked, bs::error_code{EDOM, bs::system_category()}, 5), bs::system_error); EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked[ec], bs::error_code{EDOM, bs::system_category()}, 5)); EXPECT_EQ(bs::error_code(EDOM, bs::system_category()), ec); EXPECT_THROW(id(t.get_executor(), ca::use_blocked, bs::error_code{EDOM, bs::system_category()}, 5, 3), bs::system_error); EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked[ec], bs::error_code{EDOM, bs::system_category()}, 5, 3)); EXPECT_EQ(bs::error_code(EDOM, bs::system_category()), ec); } TEST(BlockedCompletion, MoveOnly) { context_thread t; ba::steady_timer timer(t.io_context(), 1s); bs::error_code ec; EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked, bs::error_code{}, move_only{})); EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked[ec], bs::error_code{}, move_only{})); EXPECT_FALSE(ec); { auto [i, j] = id(t.get_executor(), ca::use_blocked, move_only{}, 5); EXPECT_EQ(j, 5); } { auto [i, j] = id(t.get_executor(), ca::use_blocked[ec], move_only{}, 5); EXPECT_EQ(j, 5); } EXPECT_FALSE(ec); EXPECT_THROW(id(t.get_executor(), ca::use_blocked, bs::error_code{EDOM, bs::system_category()}, move_only{}), bs::system_error); EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked[ec], bs::error_code{EDOM, bs::system_category()}, move_only{})); EXPECT_EQ(bs::error_code(EDOM, bs::system_category()), ec); EXPECT_THROW(id(t.get_executor(), ca::use_blocked, bs::error_code{EDOM, bs::system_category()}, move_only{}, 3), bs::system_error); EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked[ec], bs::error_code{EDOM, bs::system_category()}, move_only{}, 3)); EXPECT_EQ(bs::error_code(EDOM, bs::system_category()), ec); } TEST(BlockedCompletion, DefaultLess) { context_thread t; ba::steady_timer timer(t.io_context(), 1s); bs::error_code ec; { auto l = id(t.get_executor(), ca::use_blocked, bs::error_code{}, defaultless{5}); EXPECT_EQ(5, l.a); } { auto l = id(t.get_executor(), ca::use_blocked[ec], bs::error_code{}, defaultless{7}); EXPECT_EQ(7, l.a); } { auto [i, j] = id(t.get_executor(), ca::use_blocked, defaultless{3}, 5); EXPECT_EQ(i.a, 3); EXPECT_EQ(j, 5); } { auto [i, j] = id(t.get_executor(), ca::use_blocked[ec], defaultless{3}, 5); EXPECT_EQ(i.a, 3); EXPECT_EQ(j, 5); } EXPECT_FALSE(ec); EXPECT_THROW(id(t.get_executor(), ca::use_blocked, bs::error_code{EDOM, bs::system_category()}, move_only{}), bs::system_error); EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked[ec], bs::error_code{EDOM, bs::system_category()}, move_only{})); EXPECT_EQ(bs::error_code(EDOM, bs::system_category()), ec); EXPECT_THROW(id(t.get_executor(), ca::use_blocked, bs::error_code{EDOM, bs::system_category()}, move_only{}, 3), bs::system_error); EXPECT_NO_THROW(id(t.get_executor(), ca::use_blocked[ec], bs::error_code{EDOM, bs::system_category()}, move_only{}, 3)); EXPECT_EQ(bs::error_code(EDOM, bs::system_category()), ec); }
6,678
27.063025
89
cc
null
ceph-main/src/test/common/test_bloom_filter.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Inktank <[email protected]> * * LGPL-2.1 (see COPYING-LGPL2.1) or later */ #include <iostream> #include <gtest/gtest.h> #include "include/stringify.h" #include "common/bloom_filter.hpp" TEST(BloomFilter, Basic) { bloom_filter bf(10, .1, 1); bf.insert("foo"); bf.insert("bar"); ASSERT_TRUE(bf.contains("foo")); ASSERT_TRUE(bf.contains("bar")); ASSERT_EQ(2U, bf.element_count()); } TEST(BloomFilter, Empty) { bloom_filter bf; for (int i=0; i<100; ++i) { ASSERT_FALSE(bf.contains((uint32_t) i)); ASSERT_FALSE(bf.contains(stringify(i))); } } TEST(BloomFilter, Sweep) { std::cout.setf(std::ios_base::fixed, std::ios_base::floatfield); std::cout.precision(5); std::cout << "# max\tfpp\tactual\tsize\tB/insert" << std::endl; for (int ex = 3; ex < 12; ex += 2) { for (float fpp = .001; fpp < .5; fpp *= 4.0) { int max = 2 << ex; bloom_filter bf(max, fpp, 1); bf.insert("foo"); bf.insert("bar"); ASSERT_TRUE(bf.contains("foo")); ASSERT_TRUE(bf.contains("bar")); for (int n = 0; n < max; n++) bf.insert("ok" + stringify(n)); int test = max * 100; int hit = 0; for (int n = 0; n < test; n++) if (bf.contains("asdf" + stringify(n))) hit++; ASSERT_TRUE(bf.contains("foo")); ASSERT_TRUE(bf.contains("bar")); double actual = (double)hit / (double)test; bufferlist bl; encode(bf, bl); double byte_per_insert = (double)bl.length() / (double)max; std::cout << max << "\t" << fpp << "\t" << actual << "\t" << bl.length() << "\t" << byte_per_insert << std::endl; ASSERT_TRUE(actual < fpp * 10); } } } TEST(BloomFilter, SweepInt) { unsigned int seed = 0; std::cout.setf(std::ios_base::fixed, std::ios_base::floatfield); std::cout.precision(5); std::cout << "# max\tfpp\tactual\tsize\tB/insert\tdensity\tapprox_element_count" << std::endl; for (int ex = 3; ex < 12; ex += 2) { for (float fpp = .001; fpp < .5; fpp *= 4.0) { int max = 2 << ex; bloom_filter bf(max, fpp, 1); bf.insert("foo"); bf.insert("bar"); ASSERT_TRUE(123); ASSERT_TRUE(456); // In Ceph code, the uint32_t input routines to the bloom filter // are used with hash values that are uniformly distributed over // the uint32_t range. To model this behavior in the test, we // pass in values generated by a pseudo-random generator. // To make the test reproducible anyway, use a fixed seed here, // but a different one in each instance. srand(seed++); for (int n = 0; n < max; n++) bf.insert((uint32_t) rand()); int test = max * 100; int hit = 0; for (int n = 0; n < test; n++) if (bf.contains((uint32_t) rand())) hit++; ASSERT_TRUE(123); ASSERT_TRUE(456); double actual = (double)hit / (double)test; bufferlist bl; encode(bf, bl); double byte_per_insert = (double)bl.length() / (double)max; std::cout << max << "\t" << fpp << "\t" << actual << "\t" << bl.length() << "\t" << byte_per_insert << "\t" << bf.density() << "\t" << bf.approx_unique_element_count() << std::endl; ASSERT_TRUE(actual < fpp * 3); ASSERT_TRUE(actual > fpp / 3); ASSERT_TRUE(bf.density() > 0.40); ASSERT_TRUE(bf.density() < 0.60); } } } TEST(BloomFilter, CompressibleSweep) { unsigned int seed = 0; std::cout.setf(std::ios_base::fixed, std::ios_base::floatfield); std::cout.precision(5); std::cout << "# max\tins\test ins\tafter\ttgtfpp\tactual\tsize\tb/elem\n"; float fpp = .01; int max = 1024; for (int div = 1; div < 10; div++) { compressible_bloom_filter bf(max, fpp, 1); // See the comment in SweepInt. srand(seed++); std::vector<uint32_t> values; int t = max/div; for (int n = 0; n < t; n++) { uint32_t val = (uint32_t) rand(); bf.insert(val); values.push_back(val); } unsigned est = bf.approx_unique_element_count(); if (div > 1) bf.compress(1.0 / div); for (auto val : values) ASSERT_TRUE(bf.contains(val)); int test = max * 100; int hit = 0; for (int n = 0; n < test; n++) if (bf.contains((uint32_t) rand())) hit++; double actual = (double)hit / (double)test; bufferlist bl; encode(bf, bl); double byte_per_insert = (double)bl.length() / (double)max; unsigned est_after = bf.approx_unique_element_count(); std::cout << max << "\t" << t << "\t" << est << "\t" << est_after << "\t" << fpp << "\t" << actual << "\t" << bl.length() << "\t" << byte_per_insert << std::endl; ASSERT_TRUE(actual < fpp * 2.0); ASSERT_TRUE(actual > fpp / 2.0); ASSERT_TRUE(est_after < est * 2); ASSERT_TRUE(est_after > est / 2); } } TEST(BloomFilter, BinSweep) { std::cout.setf(std::ios_base::fixed, std::ios_base::floatfield); std::cout.precision(5); int total_max = 16384; float total_fpp = .01; std::cout << "total_inserts " << total_max << " target-fpp " << total_fpp << std::endl; for (int bins = 1; bins < 16; ++bins) { int max = total_max / bins; float fpp = total_fpp / bins;//pow(total_fpp, bins); std::vector<std::unique_ptr<bloom_filter>> ls; bufferlist bl; for (int i=0; i<bins; i++) { ls.push_back(std::make_unique<bloom_filter>(max, fpp, i)); for (int j=0; j<max; j++) { ls.back()->insert(10000 * (i+1) + j); } encode(*ls.front(), bl); } int hit = 0; int test = max * 100; for (int i=0; i<test; ++i) { for (std::vector<std::unique_ptr<bloom_filter>>::iterator j = ls.begin(); j != ls.end(); ++j) { if ((*j)->contains(i * 732)) { // note: sequential i does not work here; the intenral int hash is weak!! hit++; break; } } } double actual = (double)hit / (double)test; std::cout << "bins " << bins << " bin-max " << max << " bin-fpp " << fpp << " actual-fpp " << actual << " total-size " << bl.length() << std::endl; } } // disable these tests; doing dual insertions in consecutive filters // appears to be equivalent to doing a single insertion in a bloom // filter that is twice as big. #if 0 // test the fpp over a sequence of bloom filters, each with unique // items inserted into it. // // we expect: actual_fpp = num_filters * per_filter_fpp TEST(BloomFilter, Sequence) { int max = 1024; double fpp = .01; for (int seq = 2; seq <= 128; seq *= 2) { std::vector<bloom_filter*> ls; for (int i=0; i<seq; i++) { ls.push_back(new bloom_filter(max*2, fpp, i)); for (int j=0; j<max; j++) { ls.back()->insert("ok" + stringify(j) + "_" + stringify(i)); if (ls.size() > 1) ls[ls.size() - 2]->insert("ok" + stringify(j) + "_" + stringify(i)); } } int hit = 0; int test = max * 100; for (int i=0; i<test; ++i) { for (std::vector<bloom_filter*>::iterator j = ls.begin(); j != ls.end(); ++j) { if ((*j)->contains("bad" + stringify(i))) { hit++; break; } } } double actual = (double)hit / (double)test; std::cout << "seq " << seq << " max " << max << " fpp " << fpp << " actual " << actual << std::endl; } } // test the ffp over a sequence of bloom filters, where actual values // are always inserted into a consecutive pair of filters. in order // to have a false positive, we need to falsely match two consecutive // filters. // // we expect: actual_fpp = num_filters * per_filter_fpp^2 TEST(BloomFilter, SequenceDouble) { int max = 1024; double fpp = .01; for (int seq = 2; seq <= 128; seq *= 2) { std::vector<bloom_filter*> ls; for (int i=0; i<seq; i++) { ls.push_back(new bloom_filter(max*2, fpp, i)); for (int j=0; j<max; j++) { ls.back()->insert("ok" + stringify(j) + "_" + stringify(i)); if (ls.size() > 1) ls[ls.size() - 2]->insert("ok" + stringify(j) + "_" + stringify(i)); } } int hit = 0; int test = max * 100; int run = 0; for (int i=0; i<test; ++i) { for (std::vector<bloom_filter*>::iterator j = ls.begin(); j != ls.end(); ++j) { if ((*j)->contains("bad" + stringify(i))) { run++; if (run >= 2) { hit++; break; } } else { run = 0; } } } double actual = (double)hit / (double)test; std::cout << "seq " << seq << " max " << max << " fpp " << fpp << " actual " << actual << " expected " << (fpp*fpp*(double)seq) << std::endl; } } #endif TEST(BloomFilter, Assignement) { bloom_filter bf1(10, .1, 1), bf2; bf1.insert("foo"); bf2 = bf1; bf1.insert("bar"); ASSERT_TRUE(bf2.contains("foo")); ASSERT_FALSE(bf2.contains("bar")); ASSERT_EQ(2U, bf1.element_count()); ASSERT_EQ(1U, bf2.element_count()); }
8,924
26.546296
119
cc
null
ceph-main/src/test/common/test_bounded_key_counter.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2015 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/bounded_key_counter.h" #include <gtest/gtest.h> namespace { // call get_highest() and return the number of callbacks template <typename Key, typename Count> size_t count_highest(BoundedKeyCounter<Key, Count>& counter, size_t count) { size_t callbacks = 0; counter.get_highest(count, [&callbacks] (const Key& key, Count count) { ++callbacks; }); return callbacks; } // call get_highest() and return the key/value pairs as a vector template <typename Key, typename Count, typename Vector = std::vector<std::pair<Key, Count>>> Vector get_highest(BoundedKeyCounter<Key, Count>& counter, size_t count) { Vector results; counter.get_highest(count, [&results] (const Key& key, Count count) { results.emplace_back(key, count); }); return results; } } // anonymous namespace TEST(BoundedKeyCounter, Insert) { BoundedKeyCounter<int, int> counter(2); EXPECT_EQ(1, counter.insert(0)); // insert new key EXPECT_EQ(2, counter.insert(0)); // increment counter EXPECT_EQ(7, counter.insert(0, 5)); // add 5 to counter EXPECT_EQ(1, counter.insert(1)); // insert new key EXPECT_EQ(0, counter.insert(2)); // reject new key } TEST(BoundedKeyCounter, Erase) { BoundedKeyCounter<int, int> counter(10); counter.erase(0); // ok to erase nonexistent key EXPECT_EQ(1, counter.insert(1, 1)); EXPECT_EQ(2, counter.insert(2, 2)); EXPECT_EQ(3, counter.insert(3, 3)); counter.erase(2); counter.erase(1); counter.erase(3); counter.erase(3); EXPECT_EQ(0u, count_highest(counter, 10)); } TEST(BoundedKeyCounter, Size) { BoundedKeyCounter<int, int> counter(4); EXPECT_EQ(0u, counter.size()); EXPECT_EQ(1, counter.insert(1, 1)); EXPECT_EQ(1u, counter.size()); EXPECT_EQ(2, counter.insert(2, 2)); EXPECT_EQ(2u, counter.size()); EXPECT_EQ(3, counter.insert(3, 3)); EXPECT_EQ(3u, counter.size()); EXPECT_EQ(4, counter.insert(4, 4)); EXPECT_EQ(4u, counter.size()); EXPECT_EQ(0, counter.insert(5, 5)); // reject new key EXPECT_EQ(4u, counter.size()); // size unchanged EXPECT_EQ(5, counter.insert(4, 1)); // update existing key EXPECT_EQ(4u, counter.size()); // size unchanged counter.erase(2); EXPECT_EQ(3u, counter.size()); counter.erase(2); // erase duplicate EXPECT_EQ(3u, counter.size()); // size unchanged counter.erase(4); EXPECT_EQ(2u, counter.size()); counter.erase(1); EXPECT_EQ(1u, counter.size()); counter.erase(3); EXPECT_EQ(0u, counter.size()); EXPECT_EQ(6, counter.insert(6, 6)); EXPECT_EQ(1u, counter.size()); counter.clear(); EXPECT_EQ(0u, counter.size()); } TEST(BoundedKeyCounter, GetHighest) { BoundedKeyCounter<int, int> counter(10); using Vector = std::vector<std::pair<int, int>>; EXPECT_EQ(0u, count_highest(counter, 0)); // ok to request 0 EXPECT_EQ(0u, count_highest(counter, 10)); // empty EXPECT_EQ(0u, count_highest(counter, 999)); // ok to request count >> 10 EXPECT_EQ(1, counter.insert(1, 1)); EXPECT_EQ(Vector({{1,1}}), get_highest(counter, 10)); EXPECT_EQ(2, counter.insert(2, 2)); EXPECT_EQ(Vector({{2,2},{1,1}}), get_highest(counter, 10)); EXPECT_EQ(3, counter.insert(3, 3)); EXPECT_EQ(Vector({{3,3},{2,2},{1,1}}), get_highest(counter, 10)); EXPECT_EQ(3, counter.insert(4, 3)); // insert duplicated count=3 // still returns 4 entries (but order of {3,3} and {4,3} is unspecified) EXPECT_EQ(4u, count_highest(counter, 10)); counter.erase(3); EXPECT_EQ(Vector({{4,3},{2,2},{1,1}}), get_highest(counter, 10)); EXPECT_EQ(0u, count_highest(counter, 0)); // requesting 0 still returns 0 } TEST(BoundedKeyCounter, Clear) { BoundedKeyCounter<int, int> counter(2); EXPECT_EQ(1, counter.insert(0)); // insert new key EXPECT_EQ(1, counter.insert(1)); // insert new key EXPECT_EQ(2u, count_highest(counter, 2)); // return 2 entries counter.clear(); EXPECT_EQ(0u, count_highest(counter, 2)); // return 0 entries EXPECT_EQ(1, counter.insert(1)); // insert new key EXPECT_EQ(1, counter.insert(2)); // insert new unique key EXPECT_EQ(2u, count_highest(counter, 2)); // return 2 entries } // tests for partial sort and invalidation TEST(BoundedKeyCounter, GetNumSorted) { struct MockCounter : public BoundedKeyCounter<int, int> { using BoundedKeyCounter<int, int>::BoundedKeyCounter; // expose as public for testing sort invalidations using BoundedKeyCounter<int, int>::get_num_sorted; }; MockCounter counter(10); EXPECT_EQ(0u, counter.get_num_sorted()); EXPECT_EQ(0u, count_highest(counter, 10)); EXPECT_EQ(0u, counter.get_num_sorted()); EXPECT_EQ(2, counter.insert(2, 2)); EXPECT_EQ(3, counter.insert(3, 3)); EXPECT_EQ(4, counter.insert(4, 4)); EXPECT_EQ(0u, counter.get_num_sorted()); EXPECT_EQ(0u, count_highest(counter, 0)); EXPECT_EQ(0u, counter.get_num_sorted()); EXPECT_EQ(1u, count_highest(counter, 1)); EXPECT_EQ(1u, counter.get_num_sorted()); EXPECT_EQ(2u, count_highest(counter, 2)); EXPECT_EQ(2u, counter.get_num_sorted()); EXPECT_EQ(3u, count_highest(counter, 10)); EXPECT_EQ(3u, counter.get_num_sorted()); EXPECT_EQ(1, counter.insert(1, 1)); // insert at bottom does not invalidate EXPECT_EQ(3u, counter.get_num_sorted()); EXPECT_EQ(4u, count_highest(counter, 10)); EXPECT_EQ(4u, counter.get_num_sorted()); EXPECT_EQ(5, counter.insert(5, 5)); // insert at top invalidates sort EXPECT_EQ(0u, counter.get_num_sorted()); EXPECT_EQ(0u, count_highest(counter, 0)); EXPECT_EQ(0u, counter.get_num_sorted()); EXPECT_EQ(1u, count_highest(counter, 1)); EXPECT_EQ(1u, counter.get_num_sorted()); EXPECT_EQ(2u, count_highest(counter, 2)); EXPECT_EQ(2u, counter.get_num_sorted()); EXPECT_EQ(3u, count_highest(counter, 3)); EXPECT_EQ(3u, counter.get_num_sorted()); EXPECT_EQ(4u, count_highest(counter, 4)); EXPECT_EQ(4u, counter.get_num_sorted()); EXPECT_EQ(5u, count_highest(counter, 10)); EXPECT_EQ(5u, counter.get_num_sorted()); // updating an existing counter only invalidates entries <= that counter EXPECT_EQ(2, counter.insert(1)); // invalidates {1,2} and {2,2} EXPECT_EQ(3u, counter.get_num_sorted()); EXPECT_EQ(5u, count_highest(counter, 10)); EXPECT_EQ(5u, counter.get_num_sorted()); counter.clear(); // invalidates sort EXPECT_EQ(0u, counter.get_num_sorted()); }
6,744
32.557214
77
cc
null
ceph-main/src/test/common/test_cdc.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <vector> #include <cstring> #include <random> #include "include/types.h" #include "include/buffer.h" #include "common/CDC.h" #include "gtest/gtest.h" using namespace std; class CDCTest : public ::testing::Test, public ::testing::WithParamInterface<const char*> { public: std::unique_ptr<CDC> cdc; CDCTest() { auto plugin = GetParam(); cdc = CDC::create(plugin, 18); } }; TEST_P(CDCTest, insert_front) { if (GetParam() == "fixed"s) return; for (int frontlen = 1; frontlen < 163840; frontlen *= 3) { bufferlist bl1, bl2; generate_buffer(4*1024*1024, &bl1); generate_buffer(frontlen, &bl2); bl2.append(bl1); bl2.rebuild(); vector<pair<uint64_t, uint64_t>> chunks1, chunks2; cdc->calc_chunks(bl1, &chunks1); cdc->calc_chunks(bl2, &chunks2); cout << "1: " << chunks1 << std::endl; cout << "2: " << chunks2 << std::endl; ASSERT_GE(chunks2.size(), chunks1.size()); int match = 0; for (unsigned i = 0; i < chunks1.size(); ++i) { unsigned j = i + (chunks2.size() - chunks1.size()); if (chunks1[i].first + frontlen == chunks2[j].first && chunks1[i].second == chunks2[j].second) { match++; } } ASSERT_GE(match, chunks1.size() - 1); } } TEST_P(CDCTest, insert_middle) { if (GetParam() == "fixed"s) return; for (int frontlen = 1; frontlen < 163840; frontlen *= 3) { bufferlist bl1, bl2; generate_buffer(4*1024*1024, &bl1); bufferlist f, m, e; generate_buffer(frontlen, &m); f.substr_of(bl1, 0, bl1.length() / 2); e.substr_of(bl1, bl1.length() / 2, bl1.length() / 2); bl2 = f; bl2.append(m); bl2.append(e); bl2.rebuild(); vector<pair<uint64_t, uint64_t>> chunks1, chunks2; cdc->calc_chunks(bl1, &chunks1); cdc->calc_chunks(bl2, &chunks2); cout << "1: " << chunks1 << std::endl; cout << "2: " << chunks2 << std::endl; ASSERT_GE(chunks2.size(), chunks1.size()); int match = 0; unsigned i; for (i = 0; i < chunks1.size()/2; ++i) { unsigned j = i; if (chunks1[i].first == chunks2[j].first && chunks1[i].second == chunks2[j].second) { match++; } } for (; i < chunks1.size(); ++i) { unsigned j = i + (chunks2.size() - chunks1.size()); if (chunks1[i].first + frontlen == chunks2[j].first && chunks1[i].second == chunks2[j].second) { match++; } } ASSERT_GE(match, chunks1.size() - 2); } } TEST_P(CDCTest, specific_result) { map<string,vector<pair<uint64_t,uint64_t>>> expected = { {"fixed", { {0, 262144}, {262144, 262144}, {524288, 262144}, {786432, 262144}, {1048576, 262144}, {1310720, 262144}, {1572864, 262144}, {1835008, 262144}, {2097152, 262144}, {2359296, 262144}, {2621440, 262144}, {2883584, 262144}, {3145728, 262144}, {3407872, 262144}, {3670016, 262144}, {3932160, 262144} }}, {"fastcdc", { {0, 151460}, {151460, 441676}, {593136, 407491}, {1000627, 425767}, {1426394, 602875}, {2029269, 327307}, {2356576, 155515}, {2512091, 159392}, {2671483, 829416}, {3500899, 539667}, {4040566, 153738}}}, }; bufferlist bl; generate_buffer(4*1024*1024, &bl); vector<pair<uint64_t,uint64_t>> chunks; cdc->calc_chunks(bl, &chunks); ASSERT_EQ(chunks, expected[GetParam()]); } void do_size_histogram(CDC& cdc, bufferlist& bl, map<int,int> *h) { vector<pair<uint64_t, uint64_t>> chunks; cdc.calc_chunks(bl, &chunks); uint64_t total = 0; uint64_t num = 0; for (auto& i : chunks) { //unsigned b = i.second & 0xfffff000; unsigned b = 1 << (cbits(i.second - 1)); (*h)[b]++; ++num; total += i.second; } (*h)[0] = total / num; } void print_histogram(map<int,int>& h) { cout << "size\tcount" << std::endl; for (auto i : h) { if (i.first) { cout << i.first << "\t" << i.second << std::endl; } else { cout << "avg\t" << i.second << std::endl; } } } TEST_P(CDCTest, chunk_random) { map<int,int> h; for (int i = 0; i < 32; ++i) { cout << "."; cout.flush(); bufferlist r; generate_buffer(16*1024*1024, &r, i); do_size_histogram(*cdc, r, &h); } cout << std::endl; print_histogram(h); } INSTANTIATE_TEST_SUITE_P( CDC, CDCTest, ::testing::Values( "fixed", // note: we skip most tests bc this is not content-based "fastcdc" ));
4,405
25.865854
313
cc
null
ceph-main/src/test/common/test_ceph_timer.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2020 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <chrono> #include <future> #include <vector> #include <gtest/gtest.h> #include "common/ceph_timer.h" using namespace std::literals; namespace { template<typename TC> void run_some() { static constexpr auto MAX_FUTURES = 5; ceph::timer<TC> timer; std::vector<std::future<void>> futures; for (auto i = 0; i < MAX_FUTURES; ++i) { auto t = TC::now() + 2s; std::promise<void> p; futures.push_back(p.get_future()); timer.add_event(t, [p = std::move(p)]() mutable { p.set_value(); }); } for (auto& f : futures) f.get(); } template<typename TC> void run_orderly() { ceph::timer<TC> timer; std::future<typename TC::time_point> first; std::future<typename TC::time_point> second; { std::promise<typename TC::time_point> p; second = p.get_future(); timer.add_event(4s, [p = std::move(p)]() mutable { p.set_value(TC::now()); }); } { std::promise<typename TC::time_point> p; first = p.get_future(); timer.add_event(2s, [p = std::move(p)]() mutable { p.set_value(TC::now()); }); } EXPECT_LT(first.get(), second.get()); } struct Destructo { bool armed = true; std::promise<void> p; Destructo(std::promise<void>&& p) : p(std::move(p)) {} Destructo(const Destructo&) = delete; Destructo& operator =(const Destructo&) = delete; Destructo(Destructo&& rhs) { p = std::move(rhs.p); armed = rhs.armed; rhs.armed = false; } Destructo& operator =(Destructo& rhs) { p = std::move(rhs.p); rhs.armed = false; armed = rhs.armed; rhs.armed = false; return *this; } ~Destructo() { if (armed) p.set_value(); } void operator ()() const { FAIL(); } }; template<typename TC> void cancel_all() { ceph::timer<TC> timer; static constexpr auto MAX_FUTURES = 5; std::vector<std::future<void>> futures; for (auto i = 0; i < MAX_FUTURES; ++i) { std::promise<void> p; futures.push_back(p.get_future()); timer.add_event(100s + i*1s, Destructo(std::move(p))); } timer.cancel_all_events(); for (auto& f : futures) f.get(); } template<typename TC> void cancellation() { ceph::timer<TC> timer; { std::promise<void> p; auto f = p.get_future(); auto e = timer.add_event(100s, Destructo(std::move(p))); EXPECT_TRUE(timer.cancel_event(e)); } { std::promise<void> p; auto f = p.get_future(); auto e = timer.add_event(1s, [p = std::move(p)]() mutable { p.set_value(); }); f.get(); EXPECT_FALSE(timer.cancel_event(e)); } } } TEST(RunSome, Steady) { run_some<std::chrono::steady_clock>(); } TEST(RunSome, Wall) { run_some<std::chrono::system_clock>(); } TEST(RunOrderly, Steady) { run_orderly<std::chrono::steady_clock>(); } TEST(RunOrderly, Wall) { run_orderly<std::chrono::system_clock>(); } TEST(CancelAll, Steady) { cancel_all<std::chrono::steady_clock>(); } TEST(CancelAll, Wall) { cancel_all<std::chrono::system_clock>(); }
3,547
20.634146
70
cc
null
ceph-main/src/test/common/test_config.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library Public License for more details. * * */ #include "common/config_proxy.h" #include "common/errno.h" #include "gtest/gtest.h" #include "common/hostname.h" using namespace std; extern std::string exec(const char* cmd); // defined in test_hostname.cc class test_config_proxy : public ConfigProxy, public ::testing::Test { public: test_config_proxy() : ConfigProxy{true}, Test() {} void test_expand_meta() { // successfull meta expansion $run_dir and ${run_dir} { ostringstream oss; std::string before = " BEFORE "; std::string after = " AFTER "; std::string val(before + "$run_dir${run_dir}" + after); early_expand_meta(val, &oss); EXPECT_EQ(before + "/var/run/ceph/var/run/ceph" + after, val); EXPECT_EQ("", oss.str()); } { ostringstream oss; std::string before = " BEFORE "; std::string after = " AFTER "; std::string val(before + "$$1$run_dir$2${run_dir}$3$" + after); early_expand_meta(val, &oss); EXPECT_EQ(before + "$$1/var/run/ceph$2/var/run/ceph$3$" + after, val); EXPECT_EQ("", oss.str()); } { ostringstream oss; std::string before = " BEFORE "; std::string after = " AFTER "; std::string val(before + "$host${host}" + after); early_expand_meta(val, &oss); std::string hostname = ceph_get_short_hostname(); EXPECT_EQ(before + hostname + hostname + after, val); EXPECT_EQ("", oss.str()); } // no meta expansion if variables are unknown { ostringstream oss; std::string expected = "expect $foo and ${bar} to not expand"; std::string val = expected; early_expand_meta(val, &oss); EXPECT_EQ(expected, val); EXPECT_EQ("", oss.str()); } // recursive variable expansion { std::string host = "localhost"; EXPECT_EQ(0, set_val("host", host.c_str())); std::string mon_host = "$cluster_network"; EXPECT_EQ(0, set_val("mon_host", mon_host.c_str())); std::string lockdep = "true"; EXPECT_EQ(0, set_val("lockdep", lockdep.c_str())); std::string cluster_network = "$public_network $public_network $lockdep $host"; EXPECT_EQ(0, set_val("cluster_network", cluster_network.c_str())); std::string public_network = "NETWORK"; EXPECT_EQ(0, set_val("public_network", public_network.c_str())); ostringstream oss; std::string val = "$mon_host"; early_expand_meta(val, &oss); EXPECT_EQ(public_network + " " + public_network + " " + lockdep + " " + "localhost", val); EXPECT_EQ("", oss.str()); } // variable expansion loops are non fatal { std::string mon_host = "$cluster_network"; EXPECT_EQ(0, set_val("mon_host", mon_host.c_str())); std::string cluster_network = "$public_network"; EXPECT_EQ(0, set_val("cluster_network", cluster_network.c_str())); std::string public_network = "$mon_host"; EXPECT_EQ(0, set_val("public_network", public_network.c_str())); ostringstream oss; std::string val = "$mon_host"; early_expand_meta(val, &oss); EXPECT_EQ("$mon_host", val); const char *expected_oss = "variable expansion loop at mon_host=$cluster_network\n" "expansion stack:\n" "public_network=$mon_host\n" "cluster_network=$public_network\n" "mon_host=$cluster_network\n"; EXPECT_EQ(expected_oss, oss.str()); } } }; TEST_F(test_config_proxy, expand_meta) { test_expand_meta(); } TEST(md_config_t, parse_env) { { ConfigProxy conf{false}; setenv("POD_MEMORY_REQUEST", "1", 1); conf.parse_env(CEPH_ENTITY_TYPE_OSD); } { ConfigProxy conf{false}; setenv("POD_MEMORY_REQUEST", "0", 1); conf.parse_env(CEPH_ENTITY_TYPE_OSD); } { ConfigProxy conf{false}; setenv("CEPH_KEYRING", "", 1); conf.parse_env(CEPH_ENTITY_TYPE_OSD); } } TEST(md_config_t, set_val) { int buf_size = 1024; ConfigProxy conf{false}; { char *run_dir = (char*)malloc(buf_size); EXPECT_EQ(0, conf.get_val("run_dir", &run_dir, buf_size)); EXPECT_EQ(0, conf.set_val("admin_socket", "$run_dir")); char *admin_socket = (char*)malloc(buf_size); EXPECT_EQ(0, conf.get_val("admin_socket", &admin_socket, buf_size)); EXPECT_EQ(std::string(run_dir), std::string(admin_socket)); free(run_dir); free(admin_socket); } // set_val should support SI conversion { auto expected = Option::size_t{512 << 20}; EXPECT_EQ(0, conf.set_val("mgr_osd_bytes", "512M", nullptr)); EXPECT_EQ(expected, conf.get_val<Option::size_t>("mgr_osd_bytes")); EXPECT_EQ(-EINVAL, conf.set_val("mgr_osd_bytes", "512 bits", nullptr)); EXPECT_EQ(expected, conf.get_val<Option::size_t>("mgr_osd_bytes")); } // set_val should support 1 days 2 hours 4 minutes { using namespace std::chrono; const string s{"1 days 2 hours 4 minutes"}; using days_t = duration<int, std::ratio<3600 * 24>>; auto expected = (duration_cast<seconds>(days_t{1}) + duration_cast<seconds>(hours{2}) + duration_cast<seconds>(minutes{4})); EXPECT_EQ(0, conf.set_val("mgr_tick_period", "1 days 2 hours 4 minutes", nullptr)); EXPECT_EQ(expected.count(), conf.get_val<seconds>("mgr_tick_period").count()); EXPECT_EQ(-EINVAL, conf.set_val("mgr_tick_period", "21 centuries", nullptr)); EXPECT_EQ(expected.count(), conf.get_val<seconds>("mgr_tick_period").count()); } using namespace std::chrono; using days_t = duration<int, std::ratio<3600 * 24>>; struct testcase { std::string s; std::chrono::seconds r; }; std::vector<testcase> good = { { "23"s, duration_cast<seconds>(seconds{23}) }, { " 23 "s, duration_cast<seconds>(seconds{23}) }, { " 23s "s, duration_cast<seconds>(seconds{23}) }, { " 23 s "s, duration_cast<seconds>(seconds{23}) }, { " 23 sec "s, duration_cast<seconds>(seconds{23}) }, { "23 second "s, duration_cast<seconds>(seconds{23}) }, { "23 seconds"s, duration_cast<seconds>(seconds{23}) }, { "2m5s"s, duration_cast<seconds>(seconds{2*60+5}) }, { "2 m 5 s "s, duration_cast<seconds>(seconds{2*60+5}) }, { "2 m5"s, duration_cast<seconds>(seconds{2*60+5}) }, { "2 min5"s, duration_cast<seconds>(seconds{2*60+5}) }, { "2 minutes 5"s, duration_cast<seconds>(seconds{2*60+5}) }, { "1w"s, duration_cast<seconds>(seconds{3600*24*7}) }, { "1wk"s, duration_cast<seconds>(seconds{3600*24*7}) }, { "1week"s, duration_cast<seconds>(seconds{3600*24*7}) }, { "1weeks"s, duration_cast<seconds>(seconds{3600*24*7}) }, { "1month"s, duration_cast<seconds>(seconds{3600*24*30}) }, { "1months"s, duration_cast<seconds>(seconds{3600*24*30}) }, { "1mo"s, duration_cast<seconds>(seconds{3600*24*30}) }, { "1y"s, duration_cast<seconds>(seconds{3600*24*365}) }, { "1yr"s, duration_cast<seconds>(seconds{3600*24*365}) }, { "1year"s, duration_cast<seconds>(seconds{3600*24*365}) }, { "1years"s, duration_cast<seconds>(seconds{3600*24*365}) }, { "1d2h3m4s"s, duration_cast<seconds>(days_t{1}) + duration_cast<seconds>(hours{2}) + duration_cast<seconds>(minutes{3}) + duration_cast<seconds>(seconds{4}) }, { "1 days 2 hours 4 minutes"s, duration_cast<seconds>(days_t{1}) + duration_cast<seconds>(hours{2}) + duration_cast<seconds>(minutes{4}) }, }; for (auto& i : good) { cout << "good: " << i.s << " -> " << i.r.count() << std::endl; EXPECT_EQ(0, conf.set_val("mgr_tick_period", i.s, nullptr)); EXPECT_EQ(i.r.count(), conf.get_val<seconds>("mgr_tick_period").count()); } std::vector<std::string> bad = { "12x", "_ 12", "1 2", "21 centuries", "1 y m", }; for (auto& i : bad) { std::stringstream err; EXPECT_EQ(-EINVAL, conf.set_val("mgr_tick_period", i, &err)); cout << "bad: " << i << " -> " << err.str() << std::endl; } for (int i = 0; i < 100; ++i) { std::chrono::seconds j = std::chrono::seconds(rand()); string s = exact_timespan_str(j); std::chrono::seconds k = parse_timespan(s); cout << "rt: " << j.count() << " -> " << s << " -> " << k.count() << std::endl; EXPECT_EQ(j.count(), k.count()); } } TEST(Option, validation) { Option opt_int("foo", Option::TYPE_INT, Option::LEVEL_BASIC); opt_int.set_min_max(5, 10); std::string msg; EXPECT_EQ(-EINVAL, opt_int.validate(Option::value_t(int64_t(4)), &msg)); EXPECT_EQ(-EINVAL, opt_int.validate(Option::value_t(int64_t(11)), &msg)); EXPECT_EQ(0, opt_int.validate(Option::value_t(int64_t(7)), &msg)); Option opt_enum("foo", Option::TYPE_STR, Option::LEVEL_BASIC); opt_enum.set_enum_allowed({"red", "blue"}); EXPECT_EQ(0, opt_enum.validate(Option::value_t(std::string("red")), &msg)); EXPECT_EQ(0, opt_enum.validate(Option::value_t(std::string("blue")), &msg)); EXPECT_EQ(-EINVAL, opt_enum.validate(Option::value_t(std::string("green")), &msg)); Option opt_validator("foo", Option::TYPE_INT, Option::LEVEL_BASIC); opt_validator.set_validator([](std::string *value, std::string *error_message){ if (*value == std::string("one")) { *value = "1"; return 0; } else if (*value == std::string("666")) { return -EINVAL; } else { return 0; } }); std::string input = "666"; // An explicitly forbidden value EXPECT_EQ(-EINVAL, opt_validator.pre_validate(&input, &msg)); EXPECT_EQ(input, "666"); input = "123"; // A permitted value with no special behaviour EXPECT_EQ(0, opt_validator.pre_validate(&input, &msg)); EXPECT_EQ(input, "123"); input = "one"; // A value that has a magic conversion EXPECT_EQ(0, opt_validator.pre_validate(&input, &msg)); EXPECT_EQ(input, "1"); } /* * Local Variables: * compile-command: "cd ../.. ; * make unittest_config && * valgrind \ * --max-stackframe=20000000 --tool=memcheck \ * ./unittest_config # --gtest_filter=md_config_t.set_val * " * End: */
10,802
33.404459
85
cc
null
ceph-main/src/test/common/test_context.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library Public License for more details. * * */ #include "gtest/gtest.h" #include "include/types.h" #include "include/msgr.h" #include "common/ceph_context.h" #include "common/config_proxy.h" #include "log/Log.h" using namespace std; TEST(CephContext, do_command) { CephContext *cct = (new CephContext(CEPH_ENTITY_TYPE_CLIENT))->get(); cct->_conf->cluster = "ceph"; string key("key"); string value("value"); cct->_conf.set_val(key.c_str(), value.c_str()); cmdmap_t cmdmap; cmdmap["var"] = key; { stringstream ss; bufferlist out; std::unique_ptr<Formatter> f{Formatter::create_unique("xml", "xml")}; cct->do_command("config get", cmdmap, f.get(), ss, &out); f->flush(out); string s(out.c_str(), out.length()); EXPECT_EQ("<config_get><key>" + value + "</key></config_get>", s); } { stringstream ss; bufferlist out; cmdmap_t bad_cmdmap; // no 'var' field std::unique_ptr<Formatter> f{Formatter::create_unique("xml", "xml")}; int r = cct->do_command("config get", bad_cmdmap, f.get(), ss, &out); if (r >= 0) { f->flush(out); } string s(out.c_str(), out.length()); EXPECT_EQ(-EINVAL, r); EXPECT_EQ("", s); EXPECT_EQ("", ss.str()); // no error string :/ } { stringstream ss; bufferlist out; cmdmap_t bad_cmdmap; bad_cmdmap["var"] = string("doesnotexist123"); std::unique_ptr<Formatter> f{Formatter::create_unique("xml", "xml")}; int r = cct->do_command("config help", bad_cmdmap, f.get(), ss, &out); if (r >= 0) { f->flush(out); } string s(out.c_str(), out.length()); EXPECT_EQ(-ENOENT, r); EXPECT_EQ("", s); EXPECT_EQ("Setting not found: 'doesnotexist123'", ss.str()); } { stringstream ss; bufferlist out; std::unique_ptr<Formatter> f{Formatter::create_unique("xml", "xml")}; cct->do_command("config diff get", cmdmap, f.get(), ss, &out); f->flush(out); string s(out.c_str(), out.length()); EXPECT_EQ("<config_diff_get><diff><key><default></default><override>" + value + "</override><final>value</final></key><rbd_default_features><default>61</default><final>61</final></rbd_default_features><rbd_qos_exclude_ops><default>0</default><final>0</final></rbd_qos_exclude_ops></diff></config_diff_get>", s); } cct->put(); } TEST(CephContext, experimental_features) { CephContext *cct = (new CephContext(CEPH_ENTITY_TYPE_CLIENT))->get(); cct->_conf->cluster = "ceph"; ASSERT_FALSE(cct->check_experimental_feature_enabled("foo")); ASSERT_FALSE(cct->check_experimental_feature_enabled("bar")); ASSERT_FALSE(cct->check_experimental_feature_enabled("baz")); cct->_conf.set_val("enable_experimental_unrecoverable_data_corrupting_features", "foo,bar"); cct->_conf.apply_changes(&cout); ASSERT_TRUE(cct->check_experimental_feature_enabled("foo")); ASSERT_TRUE(cct->check_experimental_feature_enabled("bar")); ASSERT_FALSE(cct->check_experimental_feature_enabled("baz")); cct->_conf.set_val("enable_experimental_unrecoverable_data_corrupting_features", "foo bar"); cct->_conf.apply_changes(&cout); ASSERT_TRUE(cct->check_experimental_feature_enabled("foo")); ASSERT_TRUE(cct->check_experimental_feature_enabled("bar")); ASSERT_FALSE(cct->check_experimental_feature_enabled("baz")); cct->_conf.set_val("enable_experimental_unrecoverable_data_corrupting_features", "baz foo"); cct->_conf.apply_changes(&cout); ASSERT_TRUE(cct->check_experimental_feature_enabled("foo")); ASSERT_FALSE(cct->check_experimental_feature_enabled("bar")); ASSERT_TRUE(cct->check_experimental_feature_enabled("baz")); cct->_conf.set_val("enable_experimental_unrecoverable_data_corrupting_features", "*"); cct->_conf.apply_changes(&cout); ASSERT_TRUE(cct->check_experimental_feature_enabled("foo")); ASSERT_TRUE(cct->check_experimental_feature_enabled("bar")); ASSERT_TRUE(cct->check_experimental_feature_enabled("baz")); cct->_log->flush(); } /* * Local Variables: * compile-command: "cd ../.. ; * make unittest_context && * valgrind \ * --max-stackframe=20000000 --tool=memcheck \ * ./unittest_context # --gtest_filter=CephContext.* * " * End: */
4,922
32.719178
315
cc
null
ceph-main/src/test/common/test_convenience.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2017 Red Hat, Inc. * * Author: Casey Bodley <[email protected]> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/convenience.h" // include first: tests that header is standalone #include <string> #include <boost/optional.hpp> #include <gtest/gtest.h> // A just god would not allow the C++ standard to make taking the // address of member functions in the standard library undefined behavior. static std::string::size_type l(const std::string& s) { return s.size(); } TEST(Convenience, MaybeDo) { boost::optional<std::string> s("qwerty"); boost::optional<std::string> t; auto r = ceph::maybe_do(s, l); EXPECT_TRUE(r); EXPECT_EQ(*r, s->size()); EXPECT_FALSE(ceph::maybe_do(t, l)); } TEST(Convenience, MaybeDoOr) { const boost::optional<std::string> s("qwerty"); const boost::optional<std::string> t; auto r = ceph::maybe_do_or(s, l, 0); EXPECT_EQ(r, s->size()); EXPECT_EQ(ceph::maybe_do_or(t, l, 0u), 0u); } TEST(Convenience, StdMaybeDo) { std::optional<std::string> s("qwerty"); std::optional<std::string> t; auto r = ceph::maybe_do(s, l); EXPECT_TRUE(r); EXPECT_EQ(*r, s->size()); EXPECT_FALSE(ceph::maybe_do(t, l)); } TEST(Convenience, StdMaybeDoOr) { const std::optional<std::string> s("qwerty"); const std::optional<std::string> t; auto r = ceph::maybe_do_or(s, l, 0); EXPECT_EQ(r, s->size()); EXPECT_EQ(ceph::maybe_do_or(t, l, 0u), 0u); }
1,756
24.1
81
cc
null
ceph-main/src/test/common/test_counter.cc
#include "common/DecayCounter.h" #include <gtest/gtest.h> #include <list> #include <cmath> TEST(DecayCounter, steady) { static const double duration = 2.0; static const double max = 2048.0; static const double rate = 3.5; DecayCounter d{DecayRate{rate}}; d.hit(max); const auto start = DecayCounter::clock::now(); double total = 0.0; while (1) { const auto now = DecayCounter::clock::now(); auto el = std::chrono::duration<double>(now-start); if (el.count() > duration) { break; } double v = d.get(); double diff = max-v; if (diff > 0.0) { d.hit(diff); total += diff; } } /* Decay function: dN/dt = -λM where λ = ln(0.5)/rate * (where M is the maximum value of the counter, not varying with time.) * Integrating over t: N = -λMt (+c) */ double expected = -1*std::log(0.5)/rate*max*duration; std::cerr << "t " << total << " e " << expected << std::endl; ASSERT_LT(std::abs(total-expected)/expected, 0.05); }
998
23.365854
74
cc
null
ceph-main/src/test/common/test_crc32c.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <iostream> #include <string.h> #include "include/types.h" #include "include/crc32c.h" #include "include/utime.h" #include "common/Clock.h" #include "gtest/gtest.h" #include "common/sctp_crc32.h" #include "common/crc32c_intel_baseline.h" #include "common/crc32c_aarch64.h" TEST(Crc32c, Small) { const char *a = "foo bar baz"; const char *b = "whiz bang boom"; ASSERT_EQ(4119623852u, ceph_crc32c(0, (unsigned char *)a, strlen(a))); ASSERT_EQ(881700046u, ceph_crc32c(1234, (unsigned char *)a, strlen(a))); ASSERT_EQ(2360230088u, ceph_crc32c(0, (unsigned char *)b, strlen(b))); ASSERT_EQ(3743019208u, ceph_crc32c(5678, (unsigned char *)b, strlen(b))); } TEST(Crc32c, PartialWord) { const char *a = (const char *)malloc(5); const char *b = (const char *)malloc(35); memset((void *)a, 1, 5); memset((void *)b, 1, 35); ASSERT_EQ(2715569182u, ceph_crc32c(0, (unsigned char *)a, 5)); ASSERT_EQ(440531800u, ceph_crc32c(0, (unsigned char *)b, 35)); free((void*)a); free((void*)b); } TEST(Crc32c, Big) { int len = 4096000; char *a = (char *)malloc(len); memset(a, 1, len); ASSERT_EQ(31583199u, ceph_crc32c(0, (unsigned char *)a, len)); ASSERT_EQ(1400919119u, ceph_crc32c(1234, (unsigned char *)a, len)); free(a); } TEST(Crc32c, Performance) { int len = 1000 * 1024 * 1024; char *a = (char *)malloc(len); std::cout << "populating large buffer" << std::endl; for (int i=0; i<len; i++) a[i] = i & 0xff; std::cout << "calculating crc" << std::endl; { utime_t start = ceph_clock_now(); unsigned val = ceph_crc32c(0, (unsigned char *)a, len); utime_t end = ceph_clock_now(); float rate = (float)len / (float)(1024*1024) / (float)(end - start); std::cout << "best choice = " << rate << " MB/sec" << std::endl; ASSERT_EQ(261108528u, val); } { utime_t start = ceph_clock_now(); unsigned val = ceph_crc32c(0xffffffff, (unsigned char *)a, len); utime_t end = ceph_clock_now(); float rate = (float)len / (float)(1024*1024) / (float)(end - start); std::cout << "best choice 0xffffffff = " << rate << " MB/sec" << std::endl; ASSERT_EQ(3895876243u, val); } { utime_t start = ceph_clock_now(); unsigned val = ceph_crc32c_sctp(0, (unsigned char *)a, len); utime_t end = ceph_clock_now(); float rate = (float)len / (float)(1024*1024) / (float)(end - start); std::cout << "sctp = " << rate << " MB/sec" << std::endl; ASSERT_EQ(261108528u, val); } { utime_t start = ceph_clock_now(); unsigned val = ceph_crc32c_intel_baseline(0, (unsigned char *)a, len); utime_t end = ceph_clock_now(); float rate = (float)len / (float)(1024*1024) / (float)(end - start); std::cout << "intel baseline = " << rate << " MB/sec" << std::endl; ASSERT_EQ(261108528u, val); } #if defined(__arm__) || defined(__aarch64__) if (ceph_arch_aarch64_crc32) // Skip if CRC32C instructions are not defined. { utime_t start = ceph_clock_now(); unsigned val = ceph_crc32c_aarch64(0, (unsigned char *)a, len); utime_t end = ceph_clock_now(); float rate = (float)len / (float)(1024*1024) / (float)(end - start); std::cout << "aarch64 = " << rate << " MB/sec" << std::endl; ASSERT_EQ(261108528u, val); } #endif free(a); } static uint32_t crc_check_table[] = { 0xcfc75c75, 0x7aa1b1a7, 0xd761a4fe, 0xd699eeb6, 0x2a136fff, 0x9782190d, 0xb5017bb0, 0xcffb76a9, 0xc79d0831, 0x4a5da87e, 0x76fb520c, 0x9e19163d, 0xe8eacd22, 0xefd4319e, 0x1eaa804b, 0x7ff41ccb, 0x94141dab, 0xb4c2588f, 0x484bf16f, 0x77725048, 0xf27d43ee, 0x3604f655, 0x20bb9b79, 0xd6ee30ba, 0xf402f02d, 0x59992eec, 0x159c0449, 0xe2d72e60, 0xc519c744, 0xf56f7995, 0x7e40be36, 0x695ccedc, 0xc95c4ae3, 0xb0d2d6bc, 0x85872e14, 0xea2c01b0, 0xe9b75f1a, 0xebb23ae3, 0x39faee13, 0x313cb413, 0xe683eb7d, 0xd22e2ae1, 0xf49731dd, 0x897a8e60, 0x923b510e, 0xe0e0f3b, 0x357dd0f, 0x63b7aa7d, 0x6f5c2a40, 0x46b09a37, 0x80324751, 0x380fd024, 0x78b122c6, 0xb29d1dde, 0x22f19ddc, 0x9d6ee6d6, 0xfb4e7e1c, 0xb9780044, 0x85feef90, 0x8e4fae11, 0x1a71394a, 0xbe21c888, 0xde2f6f47, 0x93c365f0, 0xfd1d3814, 0x6e0a23df, 0xc6739c17, 0x2d48520d, 0x3357e475, 0x5d57058a, 0x22c4b9f7, 0x5a498b58, 0x7bed8ddb, 0xcf1eb035, 0x2094f389, 0xb6a7c977, 0x289d29e2, 0x498d5b7, 0x8db77420, 0x85300608, 0x5d1c04c4, 0x5acfee62, 0x99ad4694, 0x799f9833, 0x50e76ce1, 0x72dc498, 0x70a393be, 0x905a364d, 0x1af66b95, 0x5b3eed9e, 0xa3e4da14, 0xc720fece, 0x555200df, 0x169fd3e0, 0x531c18c0, 0x6f9b6092, 0x6d16638b, 0x5a8c8b6a, 0x818ebab2, 0xd75b10bb, 0xcaa01bfa, 0x67377804, 0xf8a085ae, 0xfc7d88b8, 0x5e2debc1, 0x9759cb1f, 0x24c39b63, 0x210afbba, 0x22f7c6f7, 0xa8f8dc11, 0xf1d4550c, 0x1d2b1e47, 0x59a44605, 0x25402e97, 0x18401ea, 0xb1884203, 0xd6ef715, 0x1797b686, 0x9e7f5aa7, 0x30795e88, 0xb280b636, 0x77258b7d, 0x5f8dbff3, 0xbb57ea03, 0xa2c35cce, 0x1acce538, 0xa50be97a, 0x417f4b57, 0x6d94792f, 0x4bb6fb34, 0x3787440c, 0x9a77b0b9, 0x67ece3d0, 0x5a8450fe, 0x8e66f55b, 0x3cefce93, 0xf7ca60ab, 0xce7cd3b7, 0x97976493, 0xa05632f8, 0x77ac4546, 0xed24c705, 0x92a2f20, 0xc0b1cc9, 0x831ae4e1, 0x5b3f28b1, 0xee6fca02, 0x74acc743, 0xaf40043f, 0x5f21e837, 0x9e168fc0, 0x64e28de, 0x88ae891d, 0xac2e4ff5, 0xaeaf9c27, 0x158a2d3, 0x5226fb01, 0x9bf56ae1, 0xe4a2dd8d, 0x2599d6de, 0xe798b5ee, 0x39efe57a, 0xbb9965c7, 0x4516fde0, 0xa41831f5, 0xd7cd0797, 0xd07b7d5c, 0xb330d048, 0x3a47e35d, 0x87dd39e5, 0xa806fb31, 0xad228dd, 0xcc390816, 0x9237a4de, 0x8dfe1c20, 0x304f6bc, 0x3ad98572, 0xec13f349, 0x4e5278d7, 0x784c4bf4, 0x7b93cb23, 0xa18c87ae, 0x84ff79dd, 0x8e95061d, 0xd972f4d4, 0x4ad50380, 0x23cbc187, 0x7fa7f22c, 0x6062c18e, 0x42381901, 0x10cf51d9, 0x674e22a4, 0x28a63445, 0x6fc1b591, 0xa4dc117a, 0x744a00d0, 0x8a5470ea, 0x9539c6a7, 0xc961a584, 0x22f81498, 0xae299e51, 0x5653fcd3, 0x7bfa474f, 0x7f502c42, 0xfb41c744, 0xd478fb95, 0x7b676978, 0xb22f5610, 0xbcbe730c, 0x70ff5773, 0xde990b63, 0xebcbf9d5, 0x2d029133, 0xf39513e1, 0x56229640, 0x660529e5, 0x3b90bdf8, 0xc9822978, 0x4e3daab1, 0x2e43ce72, 0x572bb6ff, 0xdc4b17bd, 0x6c290d46, 0x7d9644ca, 0x7652fd89, 0x66d72059, 0x521e93d4, 0xd626ff95, 0xdc4eb57e, 0xb0b3307c, 0x409adbed, 0x49ae2d28, 0x8edd249a, 0x8e4fb6ec, 0x5a191fbf, 0xe1751948, 0xb4ae5d00, 0xabeb1bdd, 0xbe204b60, 0xbc97aad4, 0xb8cb5915, 0x54f33261, 0xc5d83b28, 0x99d0d099, 0xfb06f8b2, 0x57305f66, 0xf9fde17b, 0x192f143c, 0xcc3c58fd, 0x36e2e420, 0x17118208, 0xcac7e42a, 0xb45ad63d, 0x8ad5e475, 0xb7a3bc1e, 0xe03e64ad, 0x2c197d77, 0x1a0ff1fe, 0xbcd443fb, 0x7589393a, 0xd66b1f67, 0xdddf0a66, 0x4750b7c7, 0xc62a79db, 0xcf02a0d3, 0xb4012205, 0x9733d16c, 0x9a29cff8, 0xdd3d6427, 0x15c0273a, 0x97b289b, 0x358ff573, 0x73a9ceb7, 0xc3788b1a, 0xda7a5155, 0x2990a31, 0x9fa4705, 0x5eb4e2e2, 0x98465bb2, 0x74a17883, 0xe87df542, 0xe20f22f1, 0x48ffd67e, 0xc94fab5f, 0x9eb431d2, 0xffd673cb, 0xc374dc18, 0xa542fbf7, 0xb8fea538, 0x43f5431f, 0xcbe3fb7d, 0x2734e0e4, 0x5cb05a8, 0xd00fcf47, 0x248dbbae, 0x47d4de6c, 0xecc97151, 0xca8c379b, 0x49049fd, 0xeb2acd18, 0xab178ac, 0xc98ab95d, 0xb9e0be20, 0x36664a13, 0x95d81459, 0xb54973a9, 0x27f9579c, 0xa24fb6df, 0x3f6f8cea, 0xe11efdd7, 0x68166281, 0x586e0a6, 0x5fad7b57, 0xd58f50ad, 0x6e0d3be8, 0x27a00831, 0x543b3761, 0x96c862fb, 0xa823ed4f, 0xf6043f37, 0x980703eb, 0xf5e69514, 0x42a2082, 0x495732a2, 0x793eea23, 0x6a6a17fb, 0x77d75dc5, 0xb3320ec4, 0x10d4d01e, 0xa17508a6, 0x6d578355, 0xd136c445, 0xafa6acc6, 0x2307831d, 0x5bf345fd, 0xb9a04582, 0x2627a686, 0xf6f4ce3b, 0xd0ac868f, 0x78d6bdb3, 0xfe42945a, 0x8b06cbf3, 0x2b169628, 0xf072b8b7, 0x8652a0ca, 0x3f52fc42, 0xa0415b9a, 0x16e99341, 0x7394e9c7, 0xac92956c, 0x7bff7137, 0xb0e8ea5c, 0x42d8c22, 0x4318a18, 0x42097180, 0x57d17dba, 0xb1f7a567, 0x55186d60, 0xf527e0ca, 0xd58b0b48, 0x31d9155b, 0xd5fd0441, 0x6024d751, 0xe14d03c3, 0xba032e1c, 0xd6d89ae7, 0x54f1967a, 0xe401c200, 0x8ee973ff, 0x3d24277e, 0xab394cbf, 0xe3b39762, 0x87f43766, 0xe4c2bdff, 0x1234c0d7, 0x8ef3e1bd, 0xeeb00f61, 0x15d17d4b, 0x7d40ac8d, 0xada8606f, 0x7ba5e3a1, 0xcf487cf9, 0x98dda708, 0x6d7c9bea, 0xaecb321c, 0x9f7801b2, 0x53340341, 0x7ae27355, 0xbf859829, 0xa36a00b, 0x99339435, 0x8342d1e, 0x4ab4d7ea, 0x862d01cd, 0x7f94fbee, 0xe329a5a3, 0x2cb7ba81, 0x50bae57a, 0x5bbd65cf, 0xf06f60e4, 0x569ad444, 0xfa0c16c, 0xb8c2b472, 0x3ea64ea1, 0xc6dc4c18, 0x5d6d654a, 0x5369a931, 0x2163bf7f, 0xe45bd590, 0xcc826d18, 0xb4ce22f6, 0x200f7232, 0x5f2f869c, 0xffd5cc17, 0x1a578942, 0x930da3ea, 0x216377f, 0x9f07a04b, 0x1f2a777c, 0x13c95089, 0x8a64d032, 0x1eecb206, 0xc537dc4, 0x319f9ac8, 0xe2131194, 0x25d2f716, 0xa27f471a, 0xf6434ce2, 0xd51a10b9, 0x4e28a61, 0x647c888a, 0xb383d2ff, 0x93aa0d0d, 0x670d1317, 0x607f36e2, 0x73e01833, 0x2bd372b0, 0x86404ad2, 0x253d5cc4, 0x1348811c, 0x8756f2d5, 0xe1e55a59, 0x5247e2d1, 0x798ab6b, 0x181bbc57, 0xb9ea36e0, 0x66081c68, 0x9bf0bad7, 0x892b1a6, 0x8a6a9aed, 0xda955d0d, 0x170e5128, 0x81733d84, 0x6d9f6b10, 0xd60046fd, 0x7e401823, 0xf9904ce6, 0xaa765665, 0x2fd5c4ee, 0xbb9c1580, 0x391dac53, 0xbffe4270, 0x866c30b1, 0xd629f22, 0x1ee5bfee, 0x5af91c96, 0x96b613bf, 0xa65204c9, 0x9b8cb68c, 0xd08b37c1, 0xf1863f8f, 0x1e4c844a, 0x876abd30, 0x70c07eff, 0x63d8e875, 0x74351f92, 0xffe7712d, 0x58c0171d, 0x7b826b99, 0xc09afc78, 0xd81d3065, 0xccced8b1, 0xe258b1c9, 0x5659d6b, 0x1959c406, 0x53bd05e6, 0xa32f784b, 0x33351e4b, 0xb6b9d769, 0x59e5802c, 0x118c7ff7, 0x46326e0b, 0xa7376fbe, 0x7218aed1, 0x28c8f707, 0x44610a2f, 0xf8eafea1, 0xfe36fdae, 0xb4b546f1, 0x2e27ce89, 0xc1fde8a0, 0x99f2f157, 0xfde687a1, 0x40a75f50, 0x6c653330, 0xf3e38821, 0xf4663e43, 0x2f7e801e, 0xfca360af, 0x53cd3c59, 0xd20da292, 0x812a0241 }; TEST(Crc32c, Range) { int len = sizeof(crc_check_table) / sizeof(crc_check_table[0]); unsigned char *b = (unsigned char *)malloc(len); memset(b, 1, len); uint32_t crc = 0; uint32_t *check = crc_check_table; for (int i = 0 ; i < len; i++, check++) { crc = ceph_crc32c(crc, b+i, len-i); ASSERT_EQ(crc, *check); } free(b); } static uint32_t crc_zero_check_table[] = { 0xbd6f81f8, 0x6213374d, 0x72952aeb, 0x8ecb5e52, 0xa04914b4, 0xaf3aaea9, 0xb88d42d6, 0x81797724, 0xc0022634, 0x4dbf46a4, 0xc7813aa, 0x172150e0, 0x13d8d958, 0x339fd933, 0xd9e725f4, 0x20b65b14, 0x349c971c, 0x7f812818, 0x5228e357, 0x811f231f, 0xe4bdaeee, 0xcdd22442, 0x26ae3c58, 0xf9628c5e, 0x8118e80b, 0xca0ea635, 0xc5028f6d, 0xbd2270, 0x4d9171a3, 0xe810af42, 0x904c7218, 0xdc62c735, 0x3c8b3748, 0x7cae4eef, 0xed170242, 0xdc0a6a28, 0x4afb0591, 0x4643748a, 0xad28d5b, 0xeb2d60d3, 0x479d21a9, 0x2a0916c1, 0x144cd9fb, 0x2498ba7a, 0x196489f, 0x330bb594, 0x5abe491d, 0x195658fe, 0xc6ef898f, 0x94b251a1, 0x4f968332, 0xfbf5f29d, 0x7b4828ce, 0x3af20a6f, 0x653a721f, 0x6d92d018, 0xf43ca065, 0xf55da16e, 0x94af47c6, 0xf08abdc, 0x11344631, 0xb249e575, 0x1f9f992b, 0xfdb6f490, 0xbd40d84b, 0x945c69e1, 0x2a94e2e3, 0xe5aa9b91, 0x89cebb57, 0x175a3097, 0x502b7d34, 0x174f2c92, 0x2a8f01c0, 0x645a2db8, 0x9e9a4a8, 0x13adac02, 0x2759a24b, 0x8bfcb972, 0xfa1edbfe, 0x5a88365e, 0x5c107fd9, 0x91ac73a8, 0xbd40e99e, 0x513011ca, 0x97bd2841, 0x336c1c4e, 0x4e88563e, 0x6948813e, 0x96e1cbee, 0x64b2faa5, 0x9671e44, 0x7d492fcb, 0x3539d74a, 0xcbe26ad7, 0x6106e673, 0x162115d, 0x8534e6a6, 0xd28a1ea0, 0xf73beb20, 0x481bdbae, 0xcd12e442, 0x8ab52843, 0x171d72c4, 0xd97cb216, 0x60fa0ecf, 0x74336ebb, 0x4d67fd86, 0x9393e96a, 0x63670234, 0x3f2a31da, 0x4036c11f, 0x55cc2ceb, 0xf75b27dc, 0xcabdca83, 0x80699d1a, 0x228c13a1, 0x5ea7f8a9, 0xc7631f40, 0x710b867a, 0xaa6e67b9, 0x27444987, 0xd693cd2a, 0xc4e21e0c, 0xd340e1cb, 0x2a2a346f, 0xac55e843, 0xfcd2750c, 0x4529a016, 0x7ac5802, 0xa2eb291f, 0x4a0fb9ea, 0x6a58a9a0, 0x51f56797, 0xda595134, 0x267aba96, 0x8ba80ee, 0x4474659e, 0x2b7bacb, 0xba524d37, 0xb60981bb, 0x5fd43811, 0xca41594a, 0x98ace58, 0x3fc5b984, 0x6a290b91, 0x6576108a, 0x8c33c85e, 0x52622407, 0x99cf8723, 0x68198dc8, 0x18b7341d, 0x540fc0f9, 0xf4a7b6f6, 0xfade9dfa, 0x725471ca, 0x5c160723, 0x5f33b243, 0xecec5d09, 0x6f520abb, 0x139c7bca, 0x58349acb, 0x1fccef32, 0x1d01aa0f, 0x3f477a65, 0xebf55472, 0xde9ae082, 0x76d3119e, 0x937e2708, 0xba565506, 0xbe820951, 0xc1f336fa, 0xfc41afb6, 0x4ef12d88, 0xd6f6d4f, 0xb33fb3fe, 0x9c6d1ae, 0x24ae1c29, 0xf9ae57f7, 0x51d1e4c9, 0x86dc73fc, 0x54b7bf38, 0x688a141c, 0x91d4ea7a, 0xd57a0fd0, 0x5cdcd16f, 0xc59c135a, 0x5bb003b5, 0x730b52f3, 0xc1dc5b1e, 0xf083f53, 0x8159e7c8, 0xf396d2e3, 0x1c7f18ec, 0x5bedc75e, 0x2f11fbfd, 0xb4437094, 0x77c55e3, 0x1d8636e1, 0x159bf2f, 0x6cbabf5b, 0xf4d005bc, 0x39f0bc55, 0x3d525f54, 0x8422e29d, 0xfb8a413d, 0x66e78593, 0xa0e14663, 0x880b8fa1, 0x24b53713, 0x12105ff3, 0xa94dd90f, 0x3ff981bc, 0xaf2366af, 0x8e98710, 0x48eb45c6, 0xbc3aee53, 0x6933d852, 0xe236cfd3, 0x3e6c50af, 0xe309e3fd, 0x452eac88, 0x725bf633, 0xbe89339a, 0x4b54eff7, 0xa57e392f, 0x6ee15bef, 0x67630f96, 0x31656c71, 0x77fc97f0, 0x1d29682f, 0xa4b0fc5d, 0xb3fd0ee1, 0x9d10aa57, 0xf104e21, 0x478b5f75, 0xaf1ca64b, 0x13e8a297, 0x21caa105, 0xb3cb8e9d, 0xd4536cb, 0x425bdfce, 0x90462d05, 0x8cace1cf, 0xc0ab7293, 0xbcf288cb, 0x5edcdc11, 0x4ec8b5e0, 0x42738654, 0x4ba49663, 0x2b264337, 0x41d1a5ce, 0xaa8acb92, 0xe79714aa, 0x86695e7c, 0x1330c69a, 0xe0c6485f, 0xb038b81a, 0x6f823a85, 0x4eeff0e4, 0x7355d58f, 0x7cc87e83, 0xe23e4619, 0x7093faa0, 0x7328cb2f, 0x7856db5e, 0xbc38d892, 0x1e4307c8, 0x347997e1, 0xb26958, 0x997ddf1e, 0x58dc72e3, 0x4b6e9a77, 0x49eb9924, 0x36d555db, 0x59456efd, 0x904bd6d2, 0xd932837d, 0xf96a24ec, 0x525aa449, 0x5fd05bc7, 0x84778138, 0xd869bfe1, 0xe6bbd546, 0x2f796af4, 0xbaab980f, 0x7f18a176, 0x3a8e00d9, 0xb589ea81, 0x77920ee3, 0xc6730dbc, 0x8a5df534, 0xb7df9a12, 0xdc93009c, 0x215b885, 0x309104b, 0xf47e380b, 0x23f6cdef, 0xe112a923, 0x83686f38, 0xde2c7871, 0x9f728ec7, 0xeaae7af6, 0x6d7b7b0a, 0xaf0cde04, 0xfcb51a1f, 0xf0cd53cf, 0x7aa5556a, 0xa64ccf7e, 0x854c2084, 0xc493ddd4, 0x92684099, 0x913beb92, 0xe4067ea8, 0x9557605a, 0x934346d6, 0x23a3a7c7, 0x588b2805, 0xe1e755ae, 0xe4c05e84, 0x8e09d0f3, 0x1343a510, 0x6175c2c3, 0x39bb7947, 0x4a1b9b6b, 0xf0e373da, 0xe7b9a201, 0x24b7a392, 0x91a27584, 0x9ac3a10f, 0x91fc9314, 0xc495d878, 0x3fcbc776, 0x7f81d6da, 0x973edb2f, 0xa9d731c6, 0x2dc022a8, 0xa066c881, 0x7e082dff, 0xa1ff394d, 0x1cb0c2bb, 0xef87a116, 0x5179810b, 0xa1594c92, 0xe291e155, 0x3578c98f, 0xb801f82c, 0xa1778ad9, 0xbdd48b76, 0x74f1ce54, 0x46b8de63, 0x3861112c, 0x46a8920f, 0x3e1075e7, 0x220a49dd, 0x3e51d6d2, 0xbf1f22cd, 0x5d1490c5, 0x7f1e05f5, 0xa0c1691d, 0x9108debf, 0xe69899b, 0xe771d8b6, 0x878c92c1, 0x973e37c0, 0x833c4c25, 0xcffe7b03, 0x92e0921e, 0xccee9836, 0xa9739832, 0xc774f2f2, 0xf34f9467, 0x608cef83, 0x97a584d2, 0xf5218c9, 0x73eb9524, 0xb3fb4870, 0x53296e3d, 0x8836f46f, 0x9d6a40b0, 0x789b5e91, 0x62a915ba, 0x32c02d74, 0xc93de2f3, 0xefa67fc7, 0x169ee4f1, 0x72bbbe9e, 0x49357cf2, 0x219207bf, 0x12516225, 0x182df160, 0x230c9a3f, 0x137a8497, 0xa429ad30, 0x4aa66f88, 0x40319931, 0xfa241c42, 0x1e5189ec, 0xca693ada, 0xe7b923f4, 0xff546a06, 0xf01103c2, 0x99875a32, 0x4bbf55a9, 0x48abdf3e, 0x85eb3dec, 0x2d009057, 0x14c2a682, 0xfabe68af, 0x96a31fa6, 0xf52f4686, 0x73f72b61, 0x92f39e13, 0x66794863, 0x7ca4c2aa, 0x37a2fe39, 0x33be288a, 0x1ff9a59c, 0xd65e667, 0x5d7c9332, 0x8a6a2d8b, 0x37ec2d3b, 0x9f935ab9, 0x67fcd589, 0x48a09508, 0xc446e984, 0x58f69202, 0x968dfbbb, 0xc93d7626, 0x82344e, 0xf1d930a4, 0xcc3acdde, 0x20cf92bf, 0x94b7616d, 0xb0e45050, 0xdc36c072, 0x74cba0, 0x6478300a, 0x27803b97, 0xb7b2ebd0, 0xb3a691e, 0x35c2f261, 0x3fcff45a, 0x3e4b7b93, 0x86b680bd, 0x720333ce, 0x67f933ca, 0xb10256de, 0xe939bb3f, 0xb540a02f, 0x39a8b8e4, 0xb6a63aa5, 0x5e1d56ee, 0xa415a16, 0xcb5753d, 0x17fabd19, 0x90eac10d, 0x2308857d, 0xb8f6224c, 0x71790390, 0x18749d48, 0xed778f1b, 0x69f0e17c, 0xbd622f4, 0x52c3a79e, 0x9697bf51, 0xa768755c, 0x9fe860ea, 0xa852b0ac, 0x9549ec64, 0x8669c603, 0x120e289c, 0x3f0520f5, 0x9b15884, 0x2d06fa7f, 0x767b12f6, 0xcb232dd6, 0x4e2b4590, 0x97821835, 0x4506a582, 0xd974dbaa, 0x379bd22f, 0xb9d65a2f, 0x8fad14d9, 0x72a55b5f, 0x34d56c6e, 0xc0badd55, 0xc20ee31b, 0xeb567f69, 0xdadac1c, 0xb6dcc8f5, 0xc6d89117, 0x16c4999d, 0xc9b0da2a, 0xfcd6e9b3, 0x72d299ae, 0x4c2b345b, 0x5d2c06cb, 0x9b9a3ce2, 0x8e84866, 0x876d1806, 0xbaeb6183, 0xe2a89d5d, 0x4604d2fe, 0x9909c5e0, 0xf2fb7bec, 0x7e04dcd0, 0xe5b24865, 0xda96b760, 0x74a4d01, 0xb0f35bea, 0x9a2edb2, 0x5327a0d3 }; TEST(Crc32c, RangeZero) { int len = sizeof(crc_zero_check_table) / sizeof(crc_zero_check_table[0]); unsigned char *b = (unsigned char *)malloc(len); memset(b, 0, len); uint32_t crc = 1; /* when checking zero buffer we want to start with a non zero crc, otherwise all the results are going to be zero */ uint32_t *check = crc_zero_check_table; for (int i = 0 ; i < len; i++, check++) { crc = ceph_crc32c(crc, b+i, len-i); ASSERT_EQ(crc, *check); } free(b); } TEST(Crc32c, RangeNull) { int len = sizeof(crc_zero_check_table) / sizeof(crc_zero_check_table[0]); uint32_t crc = 1; /* when checking zero buffer we want to start with a non zero crc, otherwise all the results are going to be zero */ uint32_t *check = crc_zero_check_table; for (int i = 0 ; i < len; i++, check++) { crc = ceph_crc32c(crc, NULL, len-i); ASSERT_EQ(crc, *check); } } double estimate_clock_resolution() { volatile char* p = (volatile char*)malloc(1024); utime_t start; utime_t end; std::set<double> S; for(int j=10; j<200; j+=1) { start = ceph_clock_now(); for (int i=0; i<j; i++) p[i]=1; end = ceph_clock_now(); S.insert((double)(end - start)); } auto head = S.begin(); auto tail = S.end(); for (size_t i=0; i<S.size()/4; i++) { ++head; --tail; } double v = *(head++); double range=0; while (head != tail) { range = std::max(range, *head - v); v = *head; head++; } free((void*)p); return range; } TEST(Crc32c, zeros_performance_compare) { double resolution = estimate_clock_resolution(); utime_t start; utime_t pre_start; utime_t end; double time_adjusted; using namespace std::chrono; high_resolution_clock::now(); for (size_t scale=1; scale < 31; scale++) { size_t size = (1<<scale) + rand()%(1<<scale); pre_start = ceph_clock_now(); start = ceph_clock_now(); uint32_t crc_a = ceph_crc32c(111, nullptr, size); end = ceph_clock_now(); time_adjusted = (end - start) - (start - pre_start); std::cout << "regular method. size=" << size << " time= " << (double)(end-start) << " at " << (double)size/(1024*1024)/(time_adjusted) << " MB/sec" << " error=" << resolution / time_adjusted * 100 << "%" << std::endl; pre_start = ceph_clock_now(); start = ceph_clock_now(); #ifdef HAVE_POWER8 uint32_t crc_b = ceph_crc32c_zeros(111, size); #else uint32_t crc_b = ceph_crc32c_func(111, nullptr, size); #endif end = ceph_clock_now(); time_adjusted = (end - start) - (start - pre_start); #ifdef HAVE_POWER8 std::cout << "ceph_crc32c_zeros method. size=" << size << " time=" << (double)(end-start) << " at " << (double)size/(1024*1024)/(time_adjusted) << " MB/sec" << " error=" << resolution / time_adjusted * 100 << "%" << std::endl; #else std::cout << "fallback method. size=" << size << " time=" << (double)(end-start) << " at " << (double)size/(1024*1024)/(time_adjusted) << " MB/sec" << " error=" << resolution / time_adjusted * 100 << "%" << std::endl; #endif EXPECT_EQ(crc_a, crc_b); } } TEST(Crc32c, zeros_performance) { constexpr size_t ITER=100000; utime_t start; utime_t end; start = ceph_clock_now(); for (size_t i=0; i<ITER; i++) { for (size_t scale=1; scale < 31; scale++) { size_t size = (1<<scale) + rand() % (1<<scale); ceph_crc32c(rand(), nullptr, size); } } end = ceph_clock_now(); std::cout << "iterations="<< ITER*31 << " time=" << (double)(end-start) << std::endl; }
19,624
52.620219
97
cc
null
ceph-main/src/test/common/test_fair_mutex.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- #include <array> #include <mutex> #include <numeric> #include <future> #include <gtest/gtest.h> #include "common/fair_mutex.h" TEST(FairMutex, simple) { ceph::fair_mutex mutex{"fair::simple"}; { std::unique_lock lock{mutex}; ASSERT_TRUE(mutex.is_locked()); // fair_mutex does not recursive ownership semantics ASSERT_FALSE(mutex.try_lock()); } // re-acquire the lock { std::unique_lock lock{mutex}; ASSERT_TRUE(mutex.is_locked()); } ASSERT_FALSE(mutex.is_locked()); } TEST(FairMutex, fair) { // waiters are queued in FIFO order, and they are woken up in the same order // we have a marathon participated by multiple teams: // - each team is represented by a thread. // - each team should have equal chance of being selected and scoring, assuming // the runners in each team are distributed evenly in the waiting queue. ceph::fair_mutex mutex{"fair::fair"}; const int NR_TEAMS = 2; std::array<unsigned, NR_TEAMS> scoreboard{0, 0}; const int NR_ROUNDS = 512; auto play = [&](int team) { for (int i = 0; i < NR_ROUNDS; i++) { std::unique_lock lock{mutex}; // pretent that i am running.. and it takes time std::this_thread::sleep_for(std::chrono::microseconds(20)); // score! scoreboard[team]++; // fair? unsigned total = std::accumulate(scoreboard.begin(), scoreboard.end(), 0); for (unsigned score : scoreboard) { if (total < NR_ROUNDS) { // not quite statistically significant. to reduce the false positive, // just consider it fair continue; } // check if any team is donimating the game. unsigned avg = total / scoreboard.size(); // leave at least half of the average to other teams ASSERT_LE(score, total - avg / 2); // don't treat myself too bad ASSERT_GT(score, avg / 2); }; } }; std::array<std::future<void>, NR_TEAMS> completed; for (int team = 0; team < NR_TEAMS; team++) { completed[team] = std::async(std::launch::async, play, team); } }
2,229
31.318841
81
cc
null
ceph-main/src/test/common/test_fault_injector.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab ft=cpp /* * Ceph - scalable distributed file system * * Copyright (C) 2020 Red Hat, Inc. * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/fault_injector.h" #include "common/common_init.h" #include "common/ceph_argparse.h" #include <gtest/gtest.h> TEST(FaultInjectorDeathTest, InjectAbort) { constexpr FaultInjector f{false, InjectAbort{}}; EXPECT_EQ(f.check(true), 0); EXPECT_DEATH([[maybe_unused]] int r = f.check(false), "FaultInjector"); } TEST(FaultInjectorDeathTest, AssignAbort) { FaultInjector<bool> f; ASSERT_EQ(f.check(false), 0); f.inject(false, InjectAbort{}); EXPECT_DEATH([[maybe_unused]] int r = f.check(false), "FaultInjector"); } // death tests have to run in single-threaded mode, so we can't initialize a // CephContext until after those have run (gtest automatically runs them first) class Fixture : public testing::Test { boost::intrusive_ptr<CephContext> cct; std::optional<NoDoutPrefix> prefix; protected: void SetUp() override { CephInitParameters params(CEPH_ENTITY_TYPE_CLIENT); cct = common_preinit(params, CODE_ENVIRONMENT_UTILITY, CINIT_FLAG_NO_DEFAULT_CONFIG_FILE); prefix.emplace(cct.get(), ceph_subsys_context); } void TearDown() override { prefix.reset(); cct.reset(); } const DoutPrefixProvider* dpp() { return &*prefix; } }; // test int as a Key type using FaultInjectorInt = Fixture; TEST_F(FaultInjectorInt, Default) { constexpr FaultInjector<int> f; EXPECT_EQ(f.check(0), 0); EXPECT_EQ(f.check(1), 0); EXPECT_EQ(f.check(2), 0); EXPECT_EQ(f.check(3), 0); } TEST_F(FaultInjectorInt, InjectError) { constexpr FaultInjector f{2, InjectError{-EINVAL}}; EXPECT_EQ(f.check(0), 0); EXPECT_EQ(f.check(1), 0); EXPECT_EQ(f.check(2), -EINVAL); EXPECT_EQ(f.check(3), 0); } TEST_F(FaultInjectorInt, InjectErrorMessage) { FaultInjector f{2, InjectError{-EINVAL, dpp()}}; EXPECT_EQ(f.check(0), 0); EXPECT_EQ(f.check(1), 0); EXPECT_EQ(f.check(2), -EINVAL); EXPECT_EQ(f.check(3), 0); } TEST_F(FaultInjectorInt, AssignError) { FaultInjector<int> f; ASSERT_EQ(f.check(0), 0); f.inject(0, InjectError{-EINVAL}); EXPECT_EQ(f.check(0), -EINVAL); } TEST_F(FaultInjectorInt, AssignErrorMessage) { FaultInjector<int> f; ASSERT_EQ(f.check(0), 0); f.inject(0, InjectError{-EINVAL, dpp()}); EXPECT_EQ(f.check(0), -EINVAL); } // test std::string_view as a Key type using FaultInjectorString = Fixture; TEST_F(FaultInjectorString, Default) { constexpr FaultInjector<std::string_view> f; EXPECT_EQ(f.check("Red"), 0); EXPECT_EQ(f.check("Green"), 0); EXPECT_EQ(f.check("Blue"), 0); } TEST_F(FaultInjectorString, InjectError) { FaultInjector<std::string_view> f{"Red", InjectError{-EIO}}; EXPECT_EQ(f.check("Red"), -EIO); EXPECT_EQ(f.check("Green"), 0); EXPECT_EQ(f.check("Blue"), 0); } TEST_F(FaultInjectorString, InjectErrorMessage) { FaultInjector<std::string_view> f{"Red", InjectError{-EIO, dpp()}}; EXPECT_EQ(f.check("Red"), -EIO); EXPECT_EQ(f.check("Green"), 0); EXPECT_EQ(f.check("Blue"), 0); } TEST_F(FaultInjectorString, AssignError) { FaultInjector<std::string_view> f; ASSERT_EQ(f.check("Red"), 0); f.inject("Red", InjectError{-EINVAL}); EXPECT_EQ(f.check("Red"), -EINVAL); } TEST_F(FaultInjectorString, AssignErrorMessage) { FaultInjector<std::string_view> f; ASSERT_EQ(f.check("Red"), 0); f.inject("Red", InjectError{-EINVAL, dpp()}); EXPECT_EQ(f.check("Red"), -EINVAL); } // test enum class as a Key type using FaultInjectorEnum = Fixture; enum class Color { Red, Green, Blue }; static std::ostream& operator<<(std::ostream& out, const Color& c) { switch (c) { case Color::Red: return out << "Red"; case Color::Green: return out << "Green"; case Color::Blue: return out << "Blue"; } return out; } TEST_F(FaultInjectorEnum, Default) { constexpr FaultInjector<Color> f; EXPECT_EQ(f.check(Color::Red), 0); EXPECT_EQ(f.check(Color::Green), 0); EXPECT_EQ(f.check(Color::Blue), 0); } TEST_F(FaultInjectorEnum, InjectError) { FaultInjector f{Color::Red, InjectError{-EIO}}; EXPECT_EQ(f.check(Color::Red), -EIO); EXPECT_EQ(f.check(Color::Green), 0); EXPECT_EQ(f.check(Color::Blue), 0); } TEST_F(FaultInjectorEnum, InjectErrorMessage) { FaultInjector f{Color::Red, InjectError{-EIO, dpp()}}; EXPECT_EQ(f.check(Color::Red), -EIO); EXPECT_EQ(f.check(Color::Green), 0); EXPECT_EQ(f.check(Color::Blue), 0); } TEST_F(FaultInjectorEnum, AssignError) { FaultInjector<Color> f; ASSERT_EQ(f.check(Color::Red), 0); f.inject(Color::Red, InjectError{-EINVAL}); EXPECT_EQ(f.check(Color::Red), -EINVAL); } TEST_F(FaultInjectorEnum, AssignErrorMessage) { FaultInjector<Color> f; ASSERT_EQ(f.check(Color::Red), 0); f.inject(Color::Red, InjectError{-EINVAL, dpp()}); EXPECT_EQ(f.check(Color::Red), -EINVAL); } // test custom move-only Key type using FaultInjectorMoveOnly = Fixture; struct MoveOnlyKey { MoveOnlyKey() = default; MoveOnlyKey(const MoveOnlyKey&) = delete; MoveOnlyKey& operator=(const MoveOnlyKey&) = delete; MoveOnlyKey(MoveOnlyKey&&) = default; MoveOnlyKey& operator=(MoveOnlyKey&&) = default; ~MoveOnlyKey() = default; }; static bool operator==(const MoveOnlyKey&, const MoveOnlyKey&) { return true; // all keys are equal } static std::ostream& operator<<(std::ostream& out, const MoveOnlyKey&) { return out; } TEST_F(FaultInjectorMoveOnly, Default) { constexpr FaultInjector<MoveOnlyKey> f; EXPECT_EQ(f.check(MoveOnlyKey{}), 0); } TEST_F(FaultInjectorMoveOnly, InjectError) { FaultInjector f{MoveOnlyKey{}, InjectError{-EIO}}; EXPECT_EQ(f.check(MoveOnlyKey{}), -EIO); } TEST_F(FaultInjectorMoveOnly, InjectErrorMessage) { FaultInjector f{MoveOnlyKey{}, InjectError{-EIO, dpp()}}; EXPECT_EQ(f.check(MoveOnlyKey{}), -EIO); } TEST_F(FaultInjectorMoveOnly, AssignError) { FaultInjector<MoveOnlyKey> f; ASSERT_EQ(f.check({}), 0); f.inject({}, InjectError{-EINVAL}); EXPECT_EQ(f.check({}), -EINVAL); } TEST_F(FaultInjectorMoveOnly, AssignErrorMessage) { FaultInjector<MoveOnlyKey> f; ASSERT_EQ(f.check({}), 0); f.inject({}, InjectError{-EINVAL, dpp()}); EXPECT_EQ(f.check({}), -EINVAL); }
6,477
25.016064
79
cc
null
ceph-main/src/test/common/test_global_doublefree.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2016 Red Hat, Inc. * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ /* * This test is linked against librados and libcephfs to try and detect issues * with global, static, non-POD variables as seen in the following trackers. * http://tracker.ceph.com/issues/16504 * http://tracker.ceph.com/issues/16686 * In those trackers such variables caused segfaults with glibc reporting * "double free or corruption". * * Don't be fooled by its emptiness. It does serve a purpose :) */ int main(int, char**) { return 0; }
863
26.870968
78
cc
null
ceph-main/src/test/common/test_hobject.cc
#include "common/hobject.h" #include "gtest/gtest.h" TEST(HObject, cmp) { hobject_t c{object_t{"fooc"}, "food", CEPH_NOSNAP, 42, 0, "nspace"}; hobject_t d{object_t{"food"}, "", CEPH_NOSNAP, 42, 0, "nspace"}; hobject_t e{object_t{"fooe"}, "food", CEPH_NOSNAP, 42, 0, "nspace"}; ASSERT_EQ(-1, cmp(c, d)); ASSERT_EQ(-1, cmp(d, e)); }
346
27.916667
70
cc
null
ceph-main/src/test/common/test_hostname.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2004-2006 Sage Weil <[email protected]> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "gtest/gtest.h" #include "common/hostname.h" #include "common/SubProcess.h" #include "stdio.h" #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include "unistd.h" #include <array> #include <iostream> #include <stdexcept> #include <stdio.h> #include <string> #include <memory> std::string exec(const char* cmd) { std::array<char, 128> buffer; std::string result; std::shared_ptr<FILE> pipe(popen(cmd, "r"), pclose); if (!pipe) throw std::runtime_error("popen() failed!"); while (!feof(pipe.get())) { if (fgets(buffer.data(), 128, pipe.get()) != NULL) result += buffer.data(); } // remove \n return result.substr(0, result.size()-1);; } TEST(Hostname, full) { std::string hn = ceph_get_hostname(); if (const char *nn = getenv("NODE_NAME")) { // we are in a container std::cout << "we are in a container on " << nn << ", reporting " << hn << std::endl; ASSERT_EQ(hn, nn); } else { ASSERT_EQ(hn, exec("hostname")) ; } } TEST(Hostname, short) { std::string shn = ceph_get_short_hostname(); if (const char *nn = getenv("NODE_NAME")) { // we are in a container std::cout << "we are in a container on " << nn << ", reporting short " << shn << ", skipping test because env var may or may not be short form" << std::endl; } else { #ifdef _WIN32 ASSERT_EQ(shn, exec("hostname")); #else ASSERT_EQ(shn, exec("hostname -s")); #endif } }
1,907
25.5
81
cc
null
ceph-main/src/test/common/test_interval_map.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2016 Red Hat * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <gtest/gtest.h> #include <boost/random/mersenne_twister.hpp> #include <boost/random/uniform_int_distribution.hpp> #include <boost/mpl/apply.hpp> #include "include/buffer.h" #include "common/interval_map.h" using namespace std; template<typename T> class IntervalMapTest : public ::testing::Test { public: using TestType = T; }; template <typename _key> struct bufferlist_test_type { using key = _key; using value = bufferlist; struct make_splitter { template <typename merge_t> struct apply { bufferlist split( key offset, key len, bufferlist &bu) const { bufferlist bl; bl.substr_of(bu, offset, len); return bl; } bool can_merge(const bufferlist &left, const bufferlist &right) const { return merge_t::value; } bufferlist merge(bufferlist &&left, bufferlist &&right) const { bufferlist bl; left.claim_append(right); return std::move(left); } uint64_t length(const bufferlist &r) const { return r.length(); } }; }; struct generate_random { bufferlist operator()(key len) { bufferlist bl; boost::random::mt19937 rng; boost::random::uniform_int_distribution<> chr(0,255); for (key i = 0; i < len; ++i) { bl.append((char)chr(rng)); } return bl; } }; }; using IntervalMapTypes = ::testing::Types< bufferlist_test_type<uint64_t> >; TYPED_TEST_SUITE(IntervalMapTest, IntervalMapTypes); #define USING(_can_merge) \ using TT = typename TestFixture::TestType; \ using key = typename TT::key; (void)key(0); \ using val = typename TT::value; (void)val(0); \ using splitter = typename boost::mpl::apply< \ typename TT::make_splitter, \ _can_merge>; \ using imap = interval_map<key, val, splitter>; (void)imap(); \ typename TT::generate_random gen; \ val v(gen(5)); \ splitter split; (void)split.split(0, 0, v); #define USING_NO_MERGE USING(std::false_type) #define USING_WITH_MERGE USING(std::true_type) TYPED_TEST(IntervalMapTest, empty) { USING_NO_MERGE; imap m; ASSERT_TRUE(m.empty()); } TYPED_TEST(IntervalMapTest, insert) { USING_NO_MERGE; imap m; vector<val> vals{gen(5), gen(5), gen(5)}; m.insert(0, 5, vals[0]); m.insert(10, 5, vals[2]); m.insert(5, 5, vals[1]); ASSERT_EQ(m.ext_count(), 3u); unsigned i = 0; for (auto &&ext: m) { ASSERT_EQ(ext.get_len(), 5u); ASSERT_EQ(ext.get_off(), 5u * i); ASSERT_EQ(ext.get_val(), vals[i]); ++i; } ASSERT_EQ(i, m.ext_count()); } TYPED_TEST(IntervalMapTest, insert_begin_overlap) { USING_NO_MERGE; imap m; vector<val> vals{gen(5), gen(5), gen(5)}; m.insert(5, 5, vals[1]); m.insert(10, 5, vals[2]); m.insert(1, 5, vals[0]); auto iter = m.begin(); ASSERT_EQ(iter.get_off(), 1u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[0]); ++iter; ASSERT_EQ(iter.get_off(), 6u); ASSERT_EQ(iter.get_len(), 4u); ASSERT_EQ(iter.get_val(), split.split(1, 4, vals[1])); ++iter; ASSERT_EQ(iter.get_off(), 10u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[2]); ++iter; ASSERT_EQ(iter, m.end()); } TYPED_TEST(IntervalMapTest, insert_end_overlap) { USING_NO_MERGE; imap m; vector<val> vals{gen(5), gen(5), gen(5)}; m.insert(0, 5, vals[0]); m.insert(5, 5, vals[1]); m.insert(8, 5, vals[2]); auto iter = m.begin(); ASSERT_EQ(iter.get_off(), 0u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[0]); ++iter; ASSERT_EQ(iter.get_off(), 5u); ASSERT_EQ(iter.get_len(), 3u); ASSERT_EQ(iter.get_val(), split.split(0, 3, vals[1])); ++iter; ASSERT_EQ(iter.get_off(), 8u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[2]); ++iter; ASSERT_EQ(iter, m.end()); } TYPED_TEST(IntervalMapTest, insert_middle_overlap) { USING_NO_MERGE; imap m; vector<val> vals{gen(5), gen(7), gen(5)}; m.insert(0, 5, vals[0]); m.insert(10, 5, vals[2]); m.insert(4, 7, vals[1]); auto iter = m.begin(); ASSERT_EQ(iter.get_off(), 0u); ASSERT_EQ(iter.get_len(), 4u); ASSERT_EQ(iter.get_val(), split.split(0, 4, vals[0])); ++iter; ASSERT_EQ(iter.get_off(), 4u); ASSERT_EQ(iter.get_len(), 7u); ASSERT_EQ(iter.get_val(), vals[1]); ++iter; ASSERT_EQ(iter.get_off(), 11u); ASSERT_EQ(iter.get_len(), 4u); ASSERT_EQ(iter.get_val(), split.split(1, 4, vals[2])); ++iter; ASSERT_EQ(iter, m.end()); } TYPED_TEST(IntervalMapTest, insert_single_exact_overlap) { USING_NO_MERGE; imap m; vector<val> vals{gen(5), gen(5), gen(5)}; m.insert(0, 5, gen(5)); m.insert(5, 5, vals[1]); m.insert(10, 5, vals[2]); m.insert(0, 5, vals[0]); auto iter = m.begin(); ASSERT_EQ(iter.get_off(), 0u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[0]); ++iter; ASSERT_EQ(iter.get_off(), 5u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[1]); ++iter; ASSERT_EQ(iter.get_off(), 10u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[2]); ++iter; ASSERT_EQ(iter, m.end()); } TYPED_TEST(IntervalMapTest, insert_single_exact_overlap_end) { USING_NO_MERGE; imap m; vector<val> vals{gen(5), gen(5), gen(5)}; m.insert(0, 5, vals[0]); m.insert(5, 5, vals[1]); m.insert(10, 5, gen(5)); m.insert(10, 5, vals[2]); auto iter = m.begin(); ASSERT_EQ(iter.get_off(), 0u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[0]); ++iter; ASSERT_EQ(iter.get_off(), 5u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[1]); ++iter; ASSERT_EQ(iter.get_off(), 10u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[2]); ++iter; ASSERT_EQ(iter, m.end()); } TYPED_TEST(IntervalMapTest, erase) { USING_NO_MERGE; imap m; vector<val> vals{gen(5), gen(5), gen(5)}; m.insert(0, 5, vals[0]); m.insert(5, 5, vals[1]); m.insert(10, 5, vals[2]); m.erase(3, 5); auto iter = m.begin(); ASSERT_EQ(iter.get_off(), 0u); ASSERT_EQ(iter.get_len(), 3u); ASSERT_EQ(iter.get_val(), split.split(0, 3, vals[0])); ++iter; ASSERT_EQ(iter.get_off(), 8u); ASSERT_EQ(iter.get_len(), 2u); ASSERT_EQ(iter.get_val(), split.split(3, 2, vals[1])); ++iter; ASSERT_EQ(iter.get_off(), 10u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[2]); ++iter; ASSERT_EQ(iter, m.end()); } TYPED_TEST(IntervalMapTest, erase_exact) { USING_NO_MERGE; imap m; vector<val> vals{gen(5), gen(5), gen(5)}; m.insert(0, 5, vals[0]); m.insert(5, 5, vals[1]); m.insert(10, 5, vals[2]); m.erase(5, 5); auto iter = m.begin(); ASSERT_EQ(iter.get_off(), 0u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[0]); ++iter; ASSERT_EQ(iter.get_off(), 10u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[2]); ++iter; ASSERT_EQ(iter, m.end()); } TYPED_TEST(IntervalMapTest, get_containing_range) { USING_NO_MERGE; imap m; vector<val> vals{gen(5), gen(5), gen(5), gen(5)}; m.insert(0, 5, vals[0]); m.insert(10, 5, vals[1]); m.insert(20, 5, vals[2]); m.insert(30, 5, vals[3]); auto rng = m.get_containing_range(5, 21); auto iter = rng.first; ASSERT_EQ(iter.get_off(), 10u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[1]); ++iter; ASSERT_EQ(iter.get_off(), 20u); ASSERT_EQ(iter.get_len(), 5u); ASSERT_EQ(iter.get_val(), vals[2]); ++iter; ASSERT_EQ(iter, rng.second); } TYPED_TEST(IntervalMapTest, merge) { USING_WITH_MERGE; imap m; m.insert(10, 4, gen(4)); m.insert(11, 1, gen(1)); }
8,143
23.094675
77
cc
null
ceph-main/src/test/common/test_interval_set.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2015 Mirantis, Inc. * * Author: Igor Fedotov <[email protected]> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <gtest/gtest.h> #include <boost/container/flat_map.hpp> #include "include/interval_set.h" #include "include/btree_map.h" using namespace ceph; typedef uint64_t IntervalValueType; template<typename T> // tuple<type to test on, test array size> class IntervalSetTest : public ::testing::Test { public: typedef T ISet; }; typedef ::testing::Types< interval_set<IntervalValueType>, interval_set<IntervalValueType, btree::btree_map>, interval_set<IntervalValueType, boost::container::flat_map> > IntervalSetTypes; TYPED_TEST_SUITE(IntervalSetTest, IntervalSetTypes); TYPED_TEST(IntervalSetTest, compare) { typedef typename TestFixture::ISet ISet; ISet iset1, iset2; ASSERT_TRUE(iset1 == iset1); ASSERT_TRUE(iset1 == iset2); iset1.insert(1); ASSERT_FALSE(iset1 == iset2); iset2.insert(1); ASSERT_TRUE(iset1 == iset2); iset1.insert(2, 3); iset2.insert(2, 4); ASSERT_FALSE(iset1 == iset2); iset2.erase(2, 4); iset2.erase(1); iset2.insert(2, 3); iset2.insert(1); ASSERT_TRUE(iset1 == iset2); iset1.insert(100, 10); iset2.insert(100, 5); ASSERT_FALSE(iset1 == iset2); iset2.insert(105, 5); ASSERT_TRUE(iset1 == iset2); iset1.insert(200, 10); iset2.insert(205, 5); ASSERT_FALSE(iset1 == iset2); iset2.insert(200, 1); iset2.insert(202, 3); ASSERT_FALSE(iset1 == iset2); iset2.insert(201, 1); ASSERT_TRUE(iset1 == iset2); iset1.clear(); ASSERT_FALSE(iset1 == iset2); iset2.clear(); ASSERT_TRUE(iset1 == iset2); } TYPED_TEST(IntervalSetTest, contains) { typedef typename TestFixture::ISet ISet; ISet iset1; ASSERT_FALSE(iset1.contains( 1 )); ASSERT_FALSE(iset1.contains( 0, 1 )); iset1.insert(1); ASSERT_TRUE(iset1.contains( 1 )); ASSERT_FALSE(iset1.contains( 0 )); ASSERT_FALSE(iset1.contains( 2 )); ASSERT_FALSE(iset1.contains( 0, 1 )); ASSERT_FALSE(iset1.contains( 0, 2 )); ASSERT_TRUE(iset1.contains( 1, 1 )); ASSERT_FALSE(iset1.contains( 1, 2 )); iset1.insert(2, 3); ASSERT_TRUE(iset1.contains( 1 )); ASSERT_FALSE(iset1.contains( 0 )); ASSERT_TRUE(iset1.contains( 2 )); ASSERT_FALSE(iset1.contains( 0, 1 )); ASSERT_FALSE(iset1.contains( 0, 2 )); ASSERT_TRUE(iset1.contains( 1, 1 )); ASSERT_TRUE(iset1.contains( 1, 2 )); ASSERT_TRUE(iset1.contains( 1, 3 )); ASSERT_TRUE(iset1.contains( 1, 4 )); ASSERT_FALSE(iset1.contains( 1, 5 )); ASSERT_TRUE(iset1.contains( 2, 1 )); ASSERT_TRUE(iset1.contains( 2, 2 )); ASSERT_TRUE(iset1.contains( 2, 3 )); ASSERT_FALSE(iset1.contains( 2, 4 )); ASSERT_TRUE(iset1.contains( 3, 2 )); ASSERT_TRUE(iset1.contains( 4, 1 )); ASSERT_FALSE(iset1.contains( 4, 2 )); iset1.insert(10, 10); ASSERT_TRUE(iset1.contains( 1, 4 )); ASSERT_FALSE(iset1.contains( 1, 5 )); ASSERT_TRUE(iset1.contains( 2, 2 )); ASSERT_FALSE(iset1.contains( 2, 4 )); ASSERT_FALSE(iset1.contains( 1, 10 )); ASSERT_FALSE(iset1.contains( 9, 1 )); ASSERT_FALSE(iset1.contains( 9 )); ASSERT_FALSE(iset1.contains( 9, 11 )); ASSERT_TRUE(iset1.contains( 10, 1 )); ASSERT_TRUE(iset1.contains( 11, 9 )); ASSERT_TRUE(iset1.contains( 11, 2 )); ASSERT_TRUE(iset1.contains( 18, 2 )); ASSERT_TRUE(iset1.contains( 18, 2 )); ASSERT_TRUE(iset1.contains( 10 )); ASSERT_TRUE(iset1.contains( 19 )); ASSERT_FALSE(iset1.contains( 20 )); ASSERT_FALSE(iset1.contains( 21 )); ASSERT_FALSE(iset1.contains( 11, 11 )); ASSERT_FALSE(iset1.contains( 18, 9 )); iset1.clear(); ASSERT_FALSE(iset1.contains( 1 )); ASSERT_FALSE(iset1.contains( 0 )); ASSERT_FALSE(iset1.contains( 2 )); ASSERT_FALSE(iset1.contains( 0, 1 )); ASSERT_FALSE(iset1.contains( 0, 2 )); ASSERT_FALSE(iset1.contains( 1, 1 )); ASSERT_FALSE(iset1.contains( 10, 2 )); } TYPED_TEST(IntervalSetTest, intersects) { typedef typename TestFixture::ISet ISet; ISet iset1; ASSERT_FALSE(iset1.intersects( 1, 1 )); ASSERT_FALSE(iset1.intersects( 0, 1 )); ASSERT_FALSE(iset1.intersects( 0, 10 )); iset1.insert(1); ASSERT_TRUE(iset1.intersects( 1, 1 )); ASSERT_FALSE(iset1.intersects( 0, 1 )); ASSERT_FALSE(iset1.intersects( 2, 1 )); ASSERT_TRUE(iset1.intersects( 0, 2 )); ASSERT_TRUE(iset1.intersects( 0, 20 )); ASSERT_TRUE(iset1.intersects( 1, 2 )); ASSERT_TRUE(iset1.intersects( 1, 20 )); iset1.insert(2, 3); ASSERT_FALSE(iset1.intersects( 0, 1 )); ASSERT_TRUE(iset1.intersects( 0, 2 )); ASSERT_TRUE(iset1.intersects( 0, 200 )); ASSERT_TRUE(iset1.intersects( 1, 1 )); ASSERT_TRUE(iset1.intersects( 1, 4 )); ASSERT_TRUE(iset1.intersects( 1, 5 )); ASSERT_TRUE(iset1.intersects( 2, 1 )); ASSERT_TRUE(iset1.intersects( 2, 2 )); ASSERT_TRUE(iset1.intersects( 2, 3 )); ASSERT_TRUE(iset1.intersects( 2, 4 )); ASSERT_TRUE(iset1.intersects( 3, 2 )); ASSERT_TRUE(iset1.intersects( 4, 1 )); ASSERT_TRUE(iset1.intersects( 4, 2 )); ASSERT_FALSE(iset1.intersects( 5, 2 )); iset1.insert(10, 10); ASSERT_TRUE(iset1.intersects( 1, 4 )); ASSERT_TRUE(iset1.intersects( 1, 5 )); ASSERT_TRUE(iset1.intersects( 1, 10 )); ASSERT_TRUE(iset1.intersects( 2, 2 )); ASSERT_TRUE(iset1.intersects( 2, 4 )); ASSERT_FALSE(iset1.intersects( 5, 1 )); ASSERT_FALSE(iset1.intersects( 5, 2 )); ASSERT_FALSE(iset1.intersects( 5, 5 )); ASSERT_TRUE(iset1.intersects( 5, 12 )); ASSERT_TRUE(iset1.intersects( 5, 20 )); ASSERT_FALSE(iset1.intersects( 9, 1 )); ASSERT_TRUE(iset1.intersects( 9, 2 )); ASSERT_TRUE(iset1.intersects( 9, 11 )); ASSERT_TRUE(iset1.intersects( 10, 1 )); ASSERT_TRUE(iset1.intersects( 11, 9 )); ASSERT_TRUE(iset1.intersects( 11, 2 )); ASSERT_TRUE(iset1.intersects( 11, 11 )); ASSERT_TRUE(iset1.intersects( 18, 2 )); ASSERT_TRUE(iset1.intersects( 18, 9 )); ASSERT_FALSE(iset1.intersects( 20, 1 )); ASSERT_FALSE(iset1.intersects( 21, 12 )); iset1.clear(); ASSERT_FALSE(iset1.intersects( 0, 1 )); ASSERT_FALSE(iset1.intersects( 0, 2 )); ASSERT_FALSE(iset1.intersects( 1, 1 )); ASSERT_FALSE(iset1.intersects( 5, 2 )); ASSERT_FALSE(iset1.intersects( 10, 2 )); } TYPED_TEST(IntervalSetTest, insert_erase) { typedef typename TestFixture::ISet ISet; ISet iset1, iset2; IntervalValueType start, len; iset1.insert(3, 5, &start, &len); ASSERT_EQ(3, start); ASSERT_EQ(5, len); ASSERT_EQ(1, iset1.num_intervals()); ASSERT_EQ(5, iset1.size()); //adding standalone interval iset1.insert(15, 10, &start, &len); ASSERT_EQ(15, start); ASSERT_EQ(10, len); ASSERT_EQ(2, iset1.num_intervals()); ASSERT_EQ(15, iset1.size()); //adding leftmost standalone interval iset1.insert(1, 1, &start, &len); ASSERT_EQ(1, start); ASSERT_EQ(1, len); ASSERT_EQ(3, iset1.num_intervals()); ASSERT_EQ(16, iset1.size()); //adding leftmost adjucent interval iset1.insert(0, 1, &start, &len); ASSERT_EQ(0, start); ASSERT_EQ(2, len); ASSERT_EQ(3, iset1.num_intervals()); ASSERT_EQ(17, iset1.size()); //adding interim interval that merges leftmost and subseqent intervals iset1.insert(2, 1, &start, &len); ASSERT_EQ(0, start); ASSERT_EQ(8, len); ASSERT_EQ(2, iset1.num_intervals()); ASSERT_EQ(18, iset1.size()); //adding rigtmost standalone interval iset1.insert(30, 5, &start, &len); ASSERT_EQ(30, start); ASSERT_EQ(5, len); ASSERT_EQ(3, iset1.num_intervals()); ASSERT_EQ(23, iset1.size()); //adding rigtmost adjusent interval iset1.insert(35, 10, &start, &len); ASSERT_EQ(30, start); ASSERT_EQ(15, len ); ASSERT_EQ(3, iset1.num_intervals()); ASSERT_EQ(33, iset1.size()); //adding interim interval that merges with the interval preceeding the rightmost iset1.insert(25, 1, &start, &len); ASSERT_EQ(15, start); ASSERT_EQ(11, len); ASSERT_EQ(3, iset1.num_intervals()); ASSERT_EQ(34, iset1.size()); //adding interim interval that merges with the rightmost and preceeding intervals iset1.insert(26, 4, &start, &len); ASSERT_EQ(15, start); ASSERT_EQ(30, len); ASSERT_EQ(2, iset1.num_intervals()); ASSERT_EQ(38, iset1.size()); //and finally build single interval filling the gap at 8-15 using different interval set iset2.insert( 8, 1 ); iset2.insert( 14, 1 ); iset2.insert( 9, 4 ); iset1.insert( iset2 ); iset1.insert(13, 1, &start, &len); ASSERT_EQ(0, start); ASSERT_EQ(45, len); ASSERT_EQ(1, iset1.num_intervals()); ASSERT_EQ(45, iset1.size()); //now reverses the process using subtract & erase iset1.subtract( iset2 ); iset1.erase(13, 1); ASSERT_EQ( 2, iset1.num_intervals() ); ASSERT_EQ(38, iset1.size()); ASSERT_TRUE( iset1.contains( 7, 1 )); ASSERT_FALSE( iset1.contains( 8, 7 )); ASSERT_TRUE( iset1.contains( 15, 1 )); ASSERT_TRUE( iset1.contains( 26, 4 )); iset1.erase(26, 4); ASSERT_EQ(3, iset1.num_intervals()); ASSERT_EQ(34, iset1.size()); ASSERT_TRUE( iset1.contains( 7, 1 )); ASSERT_FALSE( iset1.intersects( 8, 7 )); ASSERT_TRUE( iset1.contains( 15, 1 )); ASSERT_TRUE( iset1.contains( 25, 1 )); ASSERT_FALSE( iset1.contains( 26, 4 )); ASSERT_TRUE( iset1.contains( 30, 1 )); iset1.erase(25, 1); ASSERT_EQ(3, iset1.num_intervals()); ASSERT_EQ(33, iset1.size()); ASSERT_TRUE( iset1.contains( 24, 1 )); ASSERT_FALSE( iset1.contains( 25, 1 )); ASSERT_FALSE( iset1.intersects( 26, 4 )); ASSERT_TRUE( iset1.contains( 30, 1 )); ASSERT_TRUE( iset1.contains( 35, 10 )); iset1.erase(35, 10); ASSERT_EQ(3, iset1.num_intervals()); ASSERT_EQ(23, iset1.size()); ASSERT_TRUE( iset1.contains( 30, 5 )); ASSERT_TRUE( iset1.contains( 34, 1 )); ASSERT_FALSE( iset1.contains( 35, 10 )); ASSERT_FALSE(iset1.contains( 45, 1 )); iset1.erase(30, 5); ASSERT_EQ(2, iset1.num_intervals()); ASSERT_EQ(18, iset1.size()); ASSERT_TRUE( iset1.contains( 2, 1 )); ASSERT_TRUE( iset1.contains( 24, 1 )); ASSERT_FALSE( iset1.contains( 25, 1 )); ASSERT_FALSE( iset1.contains( 29, 1 )); ASSERT_FALSE( iset1.contains( 30, 5 )); ASSERT_FALSE( iset1.contains( 35, 1 )); iset1.erase(2, 1); ASSERT_EQ(3, iset1.num_intervals()); ASSERT_EQ( iset1.size(), 17 ); ASSERT_TRUE( iset1.contains( 0, 1 )); ASSERT_TRUE( iset1.contains( 1, 1 )); ASSERT_FALSE( iset1.contains( 2, 1 )); ASSERT_TRUE( iset1.contains( 3, 1 )); ASSERT_TRUE( iset1.contains( 15, 1 )); ASSERT_FALSE( iset1.contains( 25, 1 )); iset1.erase( 0, 1); ASSERT_EQ(3, iset1.num_intervals()); ASSERT_EQ(16, iset1.size()); ASSERT_FALSE( iset1.contains( 0, 1 )); ASSERT_TRUE( iset1.contains( 1, 1 )); ASSERT_FALSE( iset1.contains( 2, 1 )); ASSERT_TRUE( iset1.contains( 3, 1 )); ASSERT_TRUE( iset1.contains( 15, 1 )); iset1.erase(1, 1); ASSERT_EQ(2, iset1.num_intervals()); ASSERT_EQ(15, iset1.size()); ASSERT_FALSE( iset1.contains( 1, 1 )); ASSERT_TRUE( iset1.contains( 15, 10 )); ASSERT_TRUE( iset1.contains( 3, 5 )); iset1.erase(15, 10); ASSERT_EQ(1, iset1.num_intervals()); ASSERT_EQ(5, iset1.size()); ASSERT_FALSE( iset1.contains( 1, 1 )); ASSERT_FALSE( iset1.contains( 15, 10 )); ASSERT_FALSE( iset1.contains( 25, 1 )); ASSERT_TRUE( iset1.contains( 3, 5 )); iset1.erase( 3, 1); ASSERT_EQ(1, iset1.num_intervals()); ASSERT_EQ(4, iset1.size()); ASSERT_FALSE( iset1.contains( 1, 1 )); ASSERT_FALSE( iset1.contains( 15, 10 )); ASSERT_FALSE( iset1.contains( 25, 1 )); ASSERT_TRUE( iset1.contains( 4, 4 )); ASSERT_FALSE( iset1.contains( 3, 5 )); iset1.erase( 4, 4); ASSERT_EQ(0, iset1.num_intervals()); ASSERT_EQ(0, iset1.size()); ASSERT_FALSE( iset1.contains( 1, 1 )); ASSERT_FALSE( iset1.contains( 15, 10 )); ASSERT_FALSE( iset1.contains( 25, 1 )); ASSERT_FALSE( iset1.contains( 3, 4 )); ASSERT_FALSE( iset1.contains( 3, 5 )); ASSERT_FALSE( iset1.contains( 4, 4 )); } TYPED_TEST(IntervalSetTest, intersect_of) { typedef typename TestFixture::ISet ISet; ISet iset1, iset2, iset3; iset1.intersection_of( iset2, iset3 ); ASSERT_TRUE( iset1.num_intervals() == 0); ASSERT_TRUE( iset1.size() == 0); iset2.insert( 0, 1 ); iset2.insert( 5, 10 ); iset2.insert( 30, 10 ); iset3.insert( 0, 2 ); iset3.insert( 15, 1 ); iset3.insert( 20, 5 ); iset3.insert( 29, 3 ); iset3.insert( 35, 3 ); iset3.insert( 39, 3 ); iset1.intersection_of( iset2, iset3 ); ASSERT_TRUE( iset1.num_intervals() == 4); ASSERT_TRUE( iset1.size() == 7); ASSERT_TRUE( iset1.contains( 0, 1 )); ASSERT_FALSE( iset1.contains( 0, 2 )); ASSERT_FALSE( iset1.contains( 5, 11 )); ASSERT_FALSE( iset1.contains( 4, 1 )); ASSERT_FALSE( iset1.contains( 16, 1 )); ASSERT_FALSE( iset1.contains( 20, 5 )); ASSERT_FALSE( iset1.contains( 29, 1 )); ASSERT_FALSE( iset1.contains( 30, 10 )); ASSERT_TRUE( iset1.contains( 30, 2 )); ASSERT_TRUE( iset1.contains( 35, 3 )); ASSERT_FALSE( iset1.contains( 35, 4 )); ASSERT_TRUE( iset1.contains( 39, 1 )); ASSERT_FALSE( iset1.contains( 38, 2 )); ASSERT_FALSE( iset1.contains( 39, 2 )); iset3=iset1; iset1.intersection_of(iset2); ASSERT_TRUE( iset1 == iset3); iset2.clear(); iset2.insert(0,1); iset1.intersection_of(iset2); ASSERT_TRUE( iset1.num_intervals() == 1); ASSERT_TRUE( iset1.size() == 1); iset1 = iset3; iset2.clear(); iset1.intersection_of(iset2); ASSERT_TRUE( iset1.num_intervals() == 0); ASSERT_TRUE( iset1.size() == 0); } TYPED_TEST(IntervalSetTest, union_of) { typedef typename TestFixture::ISet ISet; ISet iset1, iset2, iset3; iset1.union_of( iset2, iset3 ); ASSERT_TRUE( iset1.num_intervals() == 0); ASSERT_TRUE( iset1.size() == 0); iset2.insert( 0, 1 ); iset2.insert( 5, 10 ); iset2.insert( 30, 10 ); iset3.insert( 0, 2 ); iset3.insert( 15, 1 ); iset3.insert( 20, 5 ); iset3.insert( 29, 3 ); iset3.insert( 39, 3 ); iset1.union_of( iset2, iset3 ); ASSERT_TRUE( iset1.num_intervals() == 4); ASSERT_EQ( iset1.size(), 31); ASSERT_TRUE( iset1.contains( 0, 2 )); ASSERT_FALSE( iset1.contains( 0, 3 )); ASSERT_TRUE( iset1.contains( 5, 11 )); ASSERT_FALSE( iset1.contains( 4, 1 )); ASSERT_FALSE( iset1.contains( 16, 1 )); ASSERT_TRUE( iset1.contains( 20, 5 )); ASSERT_TRUE( iset1.contains( 30, 10 )); ASSERT_TRUE( iset1.contains( 29, 13 )); ASSERT_FALSE( iset1.contains( 29, 14 )); ASSERT_FALSE( iset1.contains( 42, 1 )); iset2.clear(); iset1.union_of(iset2); ASSERT_TRUE( iset1.num_intervals() == 4); ASSERT_EQ( iset1.size(), 31); iset3.clear(); iset3.insert( 29, 3 ); iset3.insert( 39, 2 ); iset1.union_of(iset3); ASSERT_TRUE( iset1.num_intervals() == 4); ASSERT_EQ( iset1.size(), 31); //actually we added nothing ASSERT_TRUE( iset1.contains( 29, 13 )); ASSERT_FALSE( iset1.contains( 29, 14 )); ASSERT_FALSE( iset1.contains( 42, 1 )); } TYPED_TEST(IntervalSetTest, subset_of) { typedef typename TestFixture::ISet ISet; ISet iset1, iset2; ASSERT_TRUE(iset1.subset_of(iset2)); iset1.insert(5,10); ASSERT_FALSE(iset1.subset_of(iset2)); iset2.insert(6,8); ASSERT_FALSE(iset1.subset_of(iset2)); iset2.insert(5,1); ASSERT_FALSE(iset1.subset_of(iset2)); iset2.insert(14,10); ASSERT_TRUE(iset1.subset_of(iset2)); iset1.insert( 20, 4); ASSERT_TRUE(iset1.subset_of(iset2)); iset1.insert( 24, 1); ASSERT_FALSE(iset1.subset_of(iset2)); iset2.insert( 24, 1); ASSERT_TRUE(iset1.subset_of(iset2)); iset1.insert( 30, 5); ASSERT_FALSE(iset1.subset_of(iset2)); iset2.insert( 30, 5); ASSERT_TRUE(iset1.subset_of(iset2)); iset2.erase( 30, 1); ASSERT_FALSE(iset1.subset_of(iset2)); iset1.erase( 30, 1); ASSERT_TRUE(iset1.subset_of(iset2)); iset2.erase( 34, 1); ASSERT_FALSE(iset1.subset_of(iset2)); iset1.erase( 34, 1); ASSERT_TRUE(iset1.subset_of(iset2)); iset1.insert( 40, 5); ASSERT_FALSE(iset1.subset_of(iset2)); iset2.insert( 39, 7); ASSERT_TRUE(iset1.subset_of(iset2)); iset1.insert( 50, 5); iset2.insert( 55, 2); ASSERT_FALSE(iset1.subset_of(iset2)); } TYPED_TEST(IntervalSetTest, span_of) { typedef typename TestFixture::ISet ISet; ISet iset1, iset2; iset2.insert(5,5); iset2.insert(20,5); iset1.span_of( iset2, 8, 5 ); ASSERT_EQ( iset1.num_intervals(), 2); ASSERT_EQ( iset1.size(), 5); ASSERT_TRUE( iset1.contains( 8, 2 )); ASSERT_TRUE( iset1.contains( 20, 3 )); iset1.span_of( iset2, 3, 5 ); ASSERT_EQ( iset1.num_intervals(), 1); ASSERT_EQ( iset1.size(), 5); ASSERT_TRUE( iset1.contains( 5, 5 )); iset1.span_of( iset2, 10, 7 ); ASSERT_EQ( iset1.num_intervals(), 1); ASSERT_EQ( iset1.size(), 5); ASSERT_TRUE( iset1.contains( 20, 5 )); ASSERT_FALSE( iset1.contains( 20, 6 )); iset1.span_of( iset2, 5, 10); ASSERT_EQ( iset1.num_intervals(), 2); ASSERT_EQ( iset1.size(), 10); ASSERT_TRUE( iset1.contains( 5, 5 )); ASSERT_TRUE( iset1.contains( 20, 5 )); iset1.span_of( iset2, 100, 5 ); ASSERT_EQ( iset1.num_intervals(), 0); ASSERT_EQ( iset1.size(), 0); }
17,188
27.600666
91
cc
null
ceph-main/src/test/common/test_intrusive_lru.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <stdio.h> #include "gtest/gtest.h" #include "common/intrusive_lru.h" template <typename TestLRUItem> struct item_to_unsigned { using type = unsigned; const type &operator()(const TestLRUItem &item) { return item.key; } }; struct TestLRUItem : public ceph::common::intrusive_lru_base< ceph::common::intrusive_lru_config< unsigned, TestLRUItem, item_to_unsigned<TestLRUItem>>> { unsigned key = 0; int value = 0; TestLRUItem(unsigned key) : key(key) {} }; class LRUTest : public TestLRUItem::lru_t { public: auto add(unsigned int key, int value) { auto [ref, key_existed] = get_or_create(key); if (!key_existed) { ref->value = value; } return std::pair(ref, key_existed); } }; TEST(LRU, add_immediate_evict) { LRUTest cache; unsigned int key = 1; int value1 = 2; int value2 = 3; { auto [ref, existed] = cache.add(key, value1); ASSERT_TRUE(ref); ASSERT_EQ(value1, ref->value); ASSERT_FALSE(existed); } { auto [ref2, existed] = cache.add(key, value2); ASSERT_EQ(value2, ref2->value); ASSERT_FALSE(existed); } } TEST(LRU, lookup_lru_size) { LRUTest cache; int key = 1; int value = 1; cache.set_target_size(1); { auto [ref, existed] = cache.add(key, value); ASSERT_TRUE(ref); ASSERT_FALSE(existed); } { auto [ref, existed] = cache.add(key, value); ASSERT_TRUE(ref); ASSERT_TRUE(existed); } cache.set_target_size(0); auto [ref2, existed2] = cache.add(key, value); ASSERT_TRUE(ref2); ASSERT_FALSE(existed2); { auto [ref, existed] = cache.add(key, value); ASSERT_TRUE(ref); ASSERT_TRUE(existed); } } TEST(LRU, eviction) { const unsigned SIZE = 3; LRUTest cache; cache.set_target_size(SIZE); for (unsigned i = 0; i < SIZE; ++i) { auto [ref, existed] = cache.add(i, i); ASSERT_TRUE(ref && !existed); } { auto [ref, existed] = cache.add(0, 0); ASSERT_TRUE(ref && existed); } for (unsigned i = SIZE; i < (2*SIZE) - 1; ++i) { auto [ref, existed] = cache.add(i, i); ASSERT_TRUE(ref && !existed); } { auto [ref, existed] = cache.add(0, 0); ASSERT_TRUE(ref && existed); } for (unsigned i = 1; i < SIZE; ++i) { auto [ref, existed] = cache.add(i, i); ASSERT_TRUE(ref && !existed); } } TEST(LRU, eviction_live_ref) { const unsigned SIZE = 3; LRUTest cache; cache.set_target_size(SIZE); auto [live_ref, existed2] = cache.add(1, 1); ASSERT_TRUE(live_ref && !existed2); for (unsigned i = 0; i < SIZE; ++i) { auto [ref, existed] = cache.add(i, i); ASSERT_TRUE(ref); if (i == 1) { ASSERT_TRUE(existed); } else { ASSERT_FALSE(existed); } } { auto [ref, existed] = cache.add(0, 0); ASSERT_TRUE(ref && existed); } for (unsigned i = SIZE; i < (2*SIZE) - 1; ++i) { auto [ref, existed] = cache.add(i, i); ASSERT_TRUE(ref && !existed); } for (unsigned i = 0; i < SIZE; ++i) { auto [ref, existed] = cache.add(i, i); ASSERT_TRUE(ref); if (i == 1) { ASSERT_TRUE(existed); } else { ASSERT_FALSE(existed); } } } TEST(LRU, clear_range) { LRUTest cache; const unsigned SIZE = 10; cache.set_target_size(SIZE); { auto [ref, existed] = cache.add(1, 4); ASSERT_FALSE(existed); } { auto [ref, existed] = cache.add(2, 4); ASSERT_FALSE(existed); } { auto [ref, existed] = cache.add(3, 4); ASSERT_FALSE(existed); } // Unlike above, the reference is not being destroyed auto [live_ref1, existed1] = cache.add(4, 4); ASSERT_FALSE(existed1); auto [live_ref2, existed2] = cache.add(5, 4); ASSERT_FALSE(existed2); cache.clear_range(0,4); // Should not exists (Unreferenced): { auto [ref, existed] = cache.add(1, 4); ASSERT_FALSE(existed); } { auto [ref, existed] = cache.add(2, 4); ASSERT_FALSE(existed); } { auto [ref, existed] = cache.add(3, 4); ASSERT_FALSE(existed); } // Should exist (Still being referenced): { auto [ref, existed] = cache.add(4, 4); ASSERT_TRUE(existed); } // Should exists (Still being referenced and wasn't removed) { auto [ref, existed] = cache.add(5, 4); ASSERT_TRUE(existed); } // Test out of bound deletion: { cache.clear_range(3,8); auto [ref, existed] = cache.add(4, 4); ASSERT_TRUE(existed); } { auto [ref, existed] = cache.add(3, 4); ASSERT_FALSE(existed); } }
4,551
20.779904
70
cc
null
ceph-main/src/test/common/test_iso_8601.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2017 Red Hat <[email protected]> * * LGPL-2.1 (see COPYING-LGPL2.1) or later */ #include <chrono> #include <gtest/gtest.h> #include "common/ceph_time.h" #include "common/iso_8601.h" using std::chrono::minutes; using std::chrono::seconds; using std::chrono::time_point_cast; using ceph::from_iso_8601; using ceph::iso_8601_format; using ceph::real_clock; using ceph::real_time; using ceph::to_iso_8601; TEST(iso_8601, epoch) { const auto epoch = real_clock::from_time_t(0); ASSERT_EQ("1970", to_iso_8601(epoch, iso_8601_format::Y)); ASSERT_EQ("1970-01", to_iso_8601(epoch, iso_8601_format::YM)); ASSERT_EQ("1970-01-01", to_iso_8601(epoch, iso_8601_format::YMD)); ASSERT_EQ("1970-01-01T00Z", to_iso_8601(epoch, iso_8601_format::YMDh)); ASSERT_EQ("1970-01-01T00:00Z", to_iso_8601(epoch, iso_8601_format::YMDhm)); ASSERT_EQ("1970-01-01T00:00:00Z", to_iso_8601(epoch, iso_8601_format::YMDhms)); ASSERT_EQ("1970-01-01T00:00:00.000000000Z", to_iso_8601(epoch, iso_8601_format::YMDhmsn)); ASSERT_EQ(epoch, *from_iso_8601("1970")); ASSERT_EQ(epoch, *from_iso_8601("1970-01")); ASSERT_EQ(epoch, *from_iso_8601("1970-01-01")); ASSERT_EQ(epoch, *from_iso_8601("1970-01-01T00:00Z")); ASSERT_EQ(epoch, *from_iso_8601("1970-01-01T00:00:00Z")); ASSERT_EQ(epoch, *from_iso_8601("1970-01-01T00:00:00.000000000Z")); } TEST(iso_8601, now) { const auto now = real_clock::now(); ASSERT_EQ(real_time(time_point_cast<minutes>(now)), *from_iso_8601(to_iso_8601(now, iso_8601_format::YMDhm))); ASSERT_EQ(real_time(time_point_cast<seconds>(now)), *from_iso_8601( to_iso_8601(now, iso_8601_format::YMDhms))); ASSERT_EQ(now, *from_iso_8601( to_iso_8601(now, iso_8601_format::YMDhmsn))); }
1,913
30.377049
77
cc
null
ceph-main/src/test/common/test_journald_logger.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <cerrno> #include <gtest/gtest.h> #include <sys/stat.h> #include "common/Journald.h" #include "log/Entry.h" #include "log/SubsystemMap.h" using namespace ceph::logging; class JournaldLoggerTest : public ::testing::Test { protected: SubsystemMap subs; JournaldLogger journald = {&subs}; MutableEntry entry = {0, 0}; void SetUp() override { struct stat buffer; if (stat("/run/systemd/journal/socket", &buffer) < 0) { if (errno == ENOENT) { GTEST_SKIP() << "No journald socket present."; } FAIL() << "Unexpected stat error: " << strerror(errno); } } }; TEST_F(JournaldLoggerTest, Log) { entry.get_ostream() << "This is a testing regular log message."; EXPECT_EQ(journald.log_entry(entry), 0); } TEST_F(JournaldLoggerTest, VeryLongLog) { entry.get_ostream() << std::string(16 * 1024 * 1024, 'a'); EXPECT_EQ(journald.log_entry(entry), 0); }
1,007
23
70
cc
null
ceph-main/src/test/common/test_json_formattable.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2018 Red Hat Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <gtest/gtest.h> #include "common/ceph_json.h" #include <sstream> using namespace std; static void get_jf(const string& s, JSONFormattable *f) { JSONParser p; bool result = p.parse(s.c_str(), s.size()); if (!result) { cout << "Failed to parse: '" << s << "'" << std::endl; } ASSERT_EQ(true, result); try { decode_json_obj(*f, &p); } catch (JSONDecoder::err& e) { ASSERT_TRUE(0 == "Failed to decode JSON object"); } } TEST(formatable, str) { JSONFormattable f; get_jf("{ \"foo\": \"bar\" }", &f); ASSERT_EQ((string)f["foo"], "bar"); ASSERT_EQ((string)f["fooz"], ""); ASSERT_EQ((string)f["fooz"]("lala"), "lala"); } TEST(formatable, str2) { JSONFormattable f; get_jf("{ \"foo\": \"bar\" }", &f); ASSERT_EQ((string)f["foo"], "bar"); ASSERT_EQ((string)f["fooz"], ""); ASSERT_EQ((string)f["fooz"]("lala"), "lala"); JSONFormattable f2; get_jf("{ \"foo\": \"bar\", \"fooz\": \"zzz\" }", &f2); ASSERT_EQ((string)f2["foo"], "bar"); ASSERT_NE((string)f2["fooz"], ""); ASSERT_EQ((string)f2["fooz"], "zzz"); ASSERT_EQ((string)f2["fooz"]("lala"), "zzz"); } TEST(formatable, str3) { JSONFormattable f; get_jf("{ \"foo\": \"1234bar56\" }", &f); ASSERT_EQ((string)f["foo"], "1234bar56"); } TEST(formatable, int) { JSONFormattable f; get_jf("{ \"foo\": 1 }", &f); ASSERT_EQ((int)f["foo"], 1); ASSERT_EQ((int)f["fooz"], 0); ASSERT_EQ((int)f["fooz"](3), 3); JSONFormattable f2; get_jf("{ \"foo\": \"bar\", \"fooz\": \"123\" }", &f2); ASSERT_EQ((string)f2["foo"], "bar"); ASSERT_NE((int)f2["fooz"], 0); ASSERT_EQ((int)f2["fooz"], 123); ASSERT_EQ((int)f2["fooz"](111), 123); } TEST(formatable, bool) { JSONFormattable f; get_jf("{ \"foo\": \"true\" }", &f); ASSERT_EQ((bool)f["foo"], true); ASSERT_EQ((bool)f["fooz"], false); ASSERT_EQ((bool)f["fooz"](true), true); JSONFormattable f2; get_jf("{ \"foo\": \"false\" }", &f); ASSERT_EQ((bool)f["foo"], false); } TEST(formatable, nested) { JSONFormattable f; get_jf("{ \"obj\": { \"foo\": 1, \"inobj\": { \"foo\": 2 } } }", &f); ASSERT_EQ((int)f["foo"], 0); ASSERT_EQ((int)f["obj"]["foo"], 1); ASSERT_EQ((int)f["obj"]["inobj"]["foo"], 2); } TEST(formatable, array) { JSONFormattable f; get_jf("{ \"arr\": [ { \"foo\": 1, \"inobj\": { \"foo\": 2 } }," "{ \"foo\": 2 } ] }", &f); int i = 1; for (auto a : f.array()) { ASSERT_EQ((int)a["foo"], i); ++i; } JSONFormattable f2; get_jf("{ \"arr\": [ 0, 1, 2, 3, 4 ]}", &f2); i = 0; for (auto a : f2.array()) { ASSERT_EQ((int)a, i); ++i; } } TEST(formatable, bin_encode) { JSONFormattable f, f2; get_jf("{ \"arr\": [ { \"foo\": 1, \"bar\": \"aaa\", \"inobj\": { \"foo\": 2 } }," "{ \"foo\": 2, \"inobj\": { \"foo\": 3 } } ] }", &f); int i = 1; for (auto a : f.array()) { ASSERT_EQ((int)a["foo"], i); ASSERT_EQ((int)a["foo"]["inobj"], i + 1); ASSERT_EQ((string)a["bar"], "aaa"); ++i; } bufferlist bl; ::encode(f, bl); auto iter = bl.cbegin(); try { ::decode(f2, iter); } catch (buffer::error& err) { ASSERT_TRUE(0 == "Failed to decode object"); } i = 1; for (auto a : f2.array()) { ASSERT_EQ((int)a["foo"], i); ASSERT_EQ((int)a["foo"]["inobj"], i + 1); ASSERT_EQ((string)a["bar"], "aaa"); ++i; } } TEST(formatable, json_encode) { JSONFormattable f, f2; get_jf("{ \"arr\": [ { \"foo\": 1, \"bar\": \"aaa\", \"inobj\": { \"foo\": 2 } }," "{ \"foo\": 2, \"inobj\": { \"foo\": 3 } } ] }", &f); JSONFormatter formatter; formatter.open_object_section("bla"); ::encode_json("f", f, &formatter); formatter.close_section(); stringstream ss; formatter.flush(ss); get_jf(ss.str(), &f2); int i = 1; for (auto a : f2.array()) { ASSERT_EQ((int)a["foo"], i); ASSERT_EQ((int)a["foo"]["inobj"], i + 1); ASSERT_EQ((string)a["bar"], "aaa"); ++i; } } TEST(formatable, set) { JSONFormattable f, f2; f.set("", "{ \"abc\": \"xyz\"}"); ASSERT_EQ((string)f["abc"], "xyz"); f.set("aaa", "111"); ASSERT_EQ((string)f["abc"], "xyz"); ASSERT_EQ((int)f["aaa"], 111); f.set("obj", "{ \"a\": \"10\", \"b\": \"20\"}"); ASSERT_EQ((int)f["obj"]["a"], 10); ASSERT_EQ((int)f["obj"]["b"], 20); f.set("obj.c", "30"); ASSERT_EQ((int)f["obj"]["c"], 30); } TEST(formatable, set2) { JSONFormattable f; f.set("foo", "1234bar56"); ASSERT_EQ((string)f["foo"], "1234bar56"); } TEST(formatable, erase) { JSONFormattable f, f2; f.set("", "{ \"abc\": \"xyz\"}"); ASSERT_EQ((string)f["abc"], "xyz"); f.set("aaa", "111"); ASSERT_EQ((string)f["abc"], "xyz"); ASSERT_EQ((int)f["aaa"], 111); f.erase("aaa"); ASSERT_EQ((int)f["aaa"], 0); f.set("obj", "{ \"a\": \"10\", \"b\": \"20\"}"); ASSERT_EQ((int)f["obj"]["a"], 10); ASSERT_EQ((int)f["obj"]["b"], 20); f.erase("obj.a"); ASSERT_EQ((int)f["obj"]["a"], 0); ASSERT_EQ((int)f["obj"]["b"], 20); } template <class T> static void dumpt(const T& t, const char *n) { JSONFormatter formatter; formatter.open_object_section("bla"); ::encode_json(n, t, &formatter); formatter.close_section(); formatter.flush(cout); } static void dumpf(const JSONFormattable& f) { dumpt(f, "f"); } TEST(formatable, set_array) { JSONFormattable f, f2; f.set("asd[0]", "\"xyz\""); ASSERT_EQ(1u, f["asd"].array().size()); ASSERT_EQ((string)f["asd"][0], "xyz"); f.set("bbb[0][0]", "10"); f.set("bbb[0][1]", "20"); ASSERT_EQ(1u, f["bbb"].array().size()); ASSERT_EQ(2u, f["bbb"][0].array().size()); ASSERT_EQ("10", (string)f["bbb"][0][0]); ASSERT_EQ(20, (int)f["bbb"][0][1]); f.set("bbb[0][1]", "25"); ASSERT_EQ(2u, f["bbb"][0].array().size()); ASSERT_EQ(25, (int)f["bbb"][0][1]); f.set("bbb[0][]", "26"); /* append operation */ ASSERT_EQ(26, (int)f["bbb"][0][2]); f.set("bbb[0][-1]", "27"); /* replace last */ ASSERT_EQ(27, (int)f["bbb"][0][2]); ASSERT_EQ(3u, f["bbb"][0].array().size()); f.set("foo.asd[0][0]", "{ \"field\": \"xyz\"}"); ASSERT_EQ((string)f["foo"]["asd"][0][0]["field"], "xyz"); ASSERT_EQ(f.set("foo[0]", "\"zzz\""), -EINVAL); /* can't assign array to an obj entity */ f2.set("[0]", "{ \"field\": \"xyz\"}"); ASSERT_EQ((string)f2[0]["field"], "xyz"); } TEST(formatable, erase_array) { JSONFormattable f; f.set("asd[0]", "\"xyz\""); ASSERT_EQ(1u, f["asd"].array().size()); ASSERT_EQ("xyz", (string)f["asd"][0]); ASSERT_TRUE(f["asd"].exists(0)); f.erase("asd[0]"); ASSERT_FALSE(f["asd"].exists(0)); f.set("asd[0]", "\"xyz\""); ASSERT_TRUE(f["asd"].exists(0)); f["asd"].erase("[0]"); ASSERT_FALSE(f["asd"].exists(0)); f.set("asd[0]", "\"xyz\""); ASSERT_TRUE(f["asd"].exists(0)); f.erase("asd"); ASSERT_FALSE(f["asd"].exists(0)); ASSERT_FALSE(f.exists("asd")); f.set("bbb[]", "10"); f.set("bbb[]", "20"); f.set("bbb[]", "30"); ASSERT_EQ((int)f["bbb"][0], 10); ASSERT_EQ((int)f["bbb"][1], 20); ASSERT_EQ((int)f["bbb"][2], 30); f.erase("bbb[-2]"); ASSERT_FALSE(f.exists("bbb[2]")); ASSERT_EQ((int)f["bbb"][0], 10); ASSERT_EQ((int)f["bbb"][1], 30); if (0) { /* for debugging when needed */ dumpf(f); } } void formatter_convert(JSONFormatter& formatter, JSONFormattable *dest) { stringstream ss; formatter.flush(ss); get_jf(ss.str(), dest); } TEST(formatable, encode_simple) { JSONFormattable f; encode_json("foo", "bar", &f); ASSERT_EQ((string)f["foo"], "bar"); JSONFormatter formatter; { Formatter::ObjectSection s(formatter, "os"); encode_json("f", f, &formatter); } JSONFormattable jf2; formatter_convert(formatter, &jf2); ASSERT_EQ((string)jf2["f"]["foo"], "bar"); } struct struct1 { long i; string s; bool b; struct1() { void *p = (void *)this; i = (long)p; char buf[32]; snprintf(buf, sizeof(buf), "%p", p); s = buf; b = (bool)(i % 2); } void dump(Formatter *f) const { encode_json("i", i, f); encode_json("s", s, f); encode_json("b", b, f); } void decode_json(JSONObj *obj) { JSONDecoder::decode_json("i", i, obj); JSONDecoder::decode_json("s", s, obj); JSONDecoder::decode_json("b", b, obj); } bool compare(const JSONFormattable& jf) const { bool ret = (s == (string)jf["s"] && i == (long)jf["i"] && b == (bool)jf["b"]); if (!ret) { cout << "failed comparison: s=" << s << " jf[s]=" << (string)jf["s"] << " i=" << i << " jf[i]=" << (long)jf["i"] << " b=" << b << " jf[b]=" << (bool)jf["b"] << std::endl; dumpf(jf); } return ret; } }; struct struct2 { struct1 s1; vector<struct1> v; struct2() { void *p = (void *)this; long i = (long)p; v.resize((i >> 16) % 16 + 1); } void dump(Formatter *f) const { encode_json("s1", s1, f); encode_json("v", v, f); } void decode_json(JSONObj *obj) { JSONDecoder::decode_json("s1", s1, obj); JSONDecoder::decode_json("v", v, obj); } bool compare(const JSONFormattable& jf) const { if (!s1.compare(jf["s1"])) { cout << "s1.compare(jf[s1] failed" << std::endl; return false; } if (v.size() != jf["v"].array().size()) { cout << "v.size()=" << v.size() << " jf[v].array().size()=" << jf["v"].array().size() << std::endl; return false; } auto viter = v.begin(); auto jiter = jf["v"].array().begin(); for (; viter != v.end(); ++viter, ++jiter) { if (!viter->compare(*jiter)) { return false; } } return true; } }; TEST(formatable, encode_struct) { JSONFormattable f; struct2 s2; { Formatter::ObjectSection s(f, "section"); encode_json("foo", "bar", &f); encode_json("s2", s2, &f); } dumpt(s2, "s2"); cout << std::endl; cout << std::endl; ASSERT_EQ((string)f["foo"], "bar"); ASSERT_TRUE(s2.compare(f["s2"])); JSONFormatter formatter; encode_json("f", f, &formatter); JSONFormattable jf2; formatter_convert(formatter, &jf2); ASSERT_EQ((string)jf2["foo"], "bar"); ASSERT_TRUE(s2.compare(jf2["s2"])); }
10,548
22.235683
106
cc
null
ceph-main/src/test/common/test_json_formatter.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2018 Red Hat Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <gtest/gtest.h> #include "common/ceph_json.h" #include "common/Clock.h" #include <sstream> using namespace std; TEST(formatter, bug_37706) { vector<std::string> pgs; string outstring = "{\"pg_ready\":true, \"pg_stats\":[ { \"pgid\":\"1.0\", \"version\":\"16'56\",\"reported_seq\":\"62\",\"reported_epoch\":\"20\",\"state\":\"active+clean+inconsistent\",\"last_fresh\":\"2018-12-18 15:21:22.173804\",\"last_change\":\"2018-12-18 15:21:22.173804\",\"last_active\":\"2018-12-18 15:21:22.173804\",\"last_peered\":\"2018-12-18 15:21:22.173804\",\"last_clean\":\"2018-12-18 15:21:22.173804\",\"last_became_active\":\"2018-12-18 15:21:21.347685\",\"last_became_peered\":\"2018-12-18 15:21:21.347685\",\"last_unstale\":\"2018-12-18 15:21:22.173804\",\"last_undegraded\":\"2018-12-18 15:21:22.173804\",\"last_fullsized\":\"2018-12-18 15:21:22.173804\",\"mapping_epoch\":19,\"log_start\":\"0'0\",\"ondisk_log_start\":\"0'0\",\"created\":7,\"last_epoch_clean\":20,\"parent\":\"0.0\",\"parent_split_bits\":0,\"last_scrub\":\"16'56\",\"last_scrub_stamp\":\"2018-12-18 15:21:22.173684\",\"last_deep_scrub\":\"0'0\",\"last_deep_scrub_stamp\":\"2018-12-18 15:21:06.514438\",\"last_clean_scrub_stamp\":\"2018-12-18 15:21:06.514438\",\"log_size\":56,\"ondisk_log_size\":56,\"stats_invalid\":false,\"dirty_stats_invalid\":false,\"omap_stats_invalid\":false,\"hitset_stats_invalid\":false,\"hitset_bytes_stats_invalid\":false,\"pin_stats_invalid\":false,\"manifest_stats_invalid\":false,\"snaptrimq_len\":0,\"stat_sum\":{\"num_bytes\":24448,\"num_objects\":36,\"num_object_clones\":20,\"num_object_copies\":36,\"num_objects_missing_on_primary\":0,\"num_objects_missing\":0,\"num_objects_degraded\":0,\"num_objects_misplaced\":0,\"num_objects_unfound\":0,\"num_objects_dirty\":36,\"num_whiteouts\":3,\"num_read\":0,\"num_read_kb\":0,\"num_write\":36,\"num_write_kb\":50,\"num_scrub_errors\":20,\"num_shallow_scrub_errors\":20,\"num_deep_scrub_errors\":0,\"num_objects_recovered\":0,\"num_bytes_recovered\":0,\"num_keys_recovered\":0,\"num_objects_omap\":0,\"num_objects_hit_set_archive\":0,\"num_bytes_hit_set_archive\":0,\"num_flush\":0,\"num_flush_kb\":0,\"num_evict\":0,\"num_evict_kb\":0,\"num_promote\":0,\"num_flush_mode_high\":0,\"num_flush_mode_low\":0,\"num_evict_mode_some\":0,\"num_evict_mode_full\":0,\"num_objects_pinned\":0,\"num_legacy_snapsets\":0,\"num_large_omap_objects\":0,\"num_objects_manifest\":0},\"up\":[0],\"acting\":[0],\"blocked_by\":[],\"up_primary\":0,\"acting_primary\":0,\"purged_snaps\":[] }]}"; JSONParser parser; ASSERT_TRUE(parser.parse(outstring.c_str(), outstring.size())); vector<string> v; ASSERT_TRUE (!parser.is_array()); JSONObj *pgstat_obj = parser.find_obj("pg_stats"); ASSERT_TRUE (!!pgstat_obj); auto s = pgstat_obj->get_data(); ASSERT_TRUE(!s.empty()); JSONParser pg_stats; ASSERT_TRUE(pg_stats.parse(s.c_str(), s.length())); v = pg_stats.get_array_elements(); for (auto i : v) { JSONParser pg_json; ASSERT_TRUE(pg_json.parse(i.c_str(), i.length())); string pgid; JSONDecoder::decode_json("pgid", pgid, &pg_json); pgs.emplace_back(std::move(pgid)); } ASSERT_EQ(pgs.back(), "1.0"); } TEST(formatter, utime) { JSONFormatter formatter; utime_t input = ceph_clock_now(); input.gmtime_nsec(formatter.dump_stream("timestamp")); bufferlist bl; formatter.flush(bl); JSONParser parser; EXPECT_TRUE(parser.parse(bl.c_str(), bl.length())); cout << input << " -> '" << std::string(bl.c_str(), bl.length()) << std::endl; utime_t output; decode_json_obj(output, &parser); cout << " -> " << output << std::endl; EXPECT_EQ(input.sec(), output.sec()); EXPECT_EQ(input.nsec(), output.nsec()); }
4,218
50.45122
2,322
cc
null
ceph-main/src/test/common/test_lockdep.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "gtest/gtest.h" #include "common/ceph_argparse.h" #include "common/ceph_context.h" #include "common/ceph_mutex.h" #include "common/common_init.h" #include "common/lockdep.h" #include "include/util.h" #include "include/coredumpctl.h" #include "log/Log.h" class lockdep : public ::testing::Test { protected: void SetUp() override { #ifndef CEPH_DEBUG_MUTEX GTEST_SKIP() << "WARNING: CEPH_DEBUG_MUTEX is not defined, lockdep will not work"; #endif CephInitParameters params(CEPH_ENTITY_TYPE_CLIENT); cct = common_preinit(params, CODE_ENVIRONMENT_UTILITY, CINIT_FLAG_NO_DEFAULT_CONFIG_FILE); cct->_conf->cluster = "ceph"; cct->_conf.set_val("lockdep", "true"); cct->_conf.apply_changes(nullptr); ASSERT_TRUE(g_lockdep); } void TearDown() final { if (cct) { cct->put(); cct = nullptr; } } protected: CephContext *cct = nullptr; }; TEST_F(lockdep, abba) { ceph::mutex a(ceph::make_mutex("a")), b(ceph::make_mutex("b")); a.lock(); ASSERT_TRUE(ceph_mutex_is_locked(a)); ASSERT_TRUE(ceph_mutex_is_locked_by_me(a)); b.lock(); ASSERT_TRUE(ceph_mutex_is_locked(b)); ASSERT_TRUE(ceph_mutex_is_locked_by_me(b)); a.unlock(); b.unlock(); b.lock(); PrCtl unset_dumpable; EXPECT_DEATH(a.lock(), ""); b.unlock(); } TEST_F(lockdep, recursive) { ceph::mutex a(ceph::make_mutex("a")); a.lock(); PrCtl unset_dumpable; EXPECT_DEATH(a.lock(), ""); a.unlock(); ceph::recursive_mutex b(ceph::make_recursive_mutex("b")); b.lock(); ASSERT_TRUE(ceph_mutex_is_locked(b)); ASSERT_TRUE(ceph_mutex_is_locked_by_me(b)); b.lock(); b.unlock(); b.unlock(); }
1,749
22.333333
86
cc
null
ceph-main/src/test/common/test_lru.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014 Cloudwatt <[email protected]> * * Author: Sahid Orentino Ferdjaoui <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <gtest/gtest.h> #include "include/lru.h" class Item : public LRUObject { public: int id; Item() : id(0) {} explicit Item(int i) : id(i) {} void set(int i) {id = i;} }; TEST(lru, InsertTop) { LRU lru; static const int n = 100; Item items[n]; lru.lru_set_midpoint(.5); // 50% of elements. for (int i=0; i<n; i++) { items[i].set(i); lru.lru_insert_top(&items[i]); } ASSERT_EQ(50U, lru.lru_get_top()); ASSERT_EQ(50U, lru.lru_get_bot()); ASSERT_EQ(100U, lru.lru_get_size()); ASSERT_EQ(0, (static_cast<Item*>(lru.lru_expire()))->id); } TEST(lru, InsertMid) { LRU lru; static const int n = 102; Item items[n]; lru.lru_set_midpoint(.7); // 70% of elements. for (int i=0; i<n; i++) { items[i].set(i); lru.lru_insert_mid(&items[i]); } ASSERT_EQ(71U, lru.lru_get_top()); ASSERT_EQ(31U, lru.lru_get_bot()); ASSERT_EQ(102U, lru.lru_get_size()); ASSERT_EQ(0, (static_cast<Item*>(lru.lru_expire()))->id); } TEST(lru, InsertBot) { LRU lru; static const int n = 100; Item items[n]; lru.lru_set_midpoint(.7); // 70% of elements. for (int i=0; i<n; i++) { items[i].set(i); lru.lru_insert_bot(&items[i]); } ASSERT_EQ(70U, lru.lru_get_top()); ASSERT_EQ(30U, lru.lru_get_bot()); ASSERT_EQ(100U, lru.lru_get_size()); ASSERT_EQ(99, (static_cast<Item*>(lru.lru_expire()))->id); } TEST(lru, Adjust) { LRU lru; static const int n = 100; Item items[n]; lru.lru_set_midpoint(.6); // 60% of elements. for (int i=0; i<n; i++) { items[i].set(i); lru.lru_insert_top(&items[i]); if (i % 5 == 0) items[i].lru_pin(); } ASSERT_EQ(48U, lru.lru_get_top()); /* 60% of unpinned */ ASSERT_EQ(52U, lru.lru_get_bot()); ASSERT_EQ(100U, lru.lru_get_size()); ASSERT_EQ(1, (static_cast<Item*>(lru.lru_expire()))->id); ASSERT_EQ(1U, lru.lru_get_pintail()); ASSERT_EQ(47U, lru.lru_get_top()); /* 60% of unpinned */ ASSERT_EQ(51U, lru.lru_get_bot()); ASSERT_EQ(99U, lru.lru_get_size()); ASSERT_EQ(2, (static_cast<Item*>(lru.lru_expire()))->id); ASSERT_EQ(1U, lru.lru_get_pintail()); ASSERT_EQ(46U, lru.lru_get_top()); /* 60% of unpinned */ ASSERT_EQ(51U, lru.lru_get_bot()); ASSERT_EQ(98U, lru.lru_get_size()); ASSERT_EQ(3, (static_cast<Item*>(lru.lru_expire()))->id); ASSERT_EQ(4, (static_cast<Item*>(lru.lru_expire()))->id); ASSERT_EQ(6, (static_cast<Item*>(lru.lru_expire()))->id); ASSERT_EQ(2U, lru.lru_get_pintail()); ASSERT_EQ(45U, lru.lru_get_top()); /* 60% of unpinned */ ASSERT_EQ(48U, lru.lru_get_bot()); ASSERT_EQ(95U, lru.lru_get_size()); } TEST(lru, Pinning) { LRU lru; Item ob0(0), ob1(1); // test before ob1 are in a LRU ob1.lru_pin(); ASSERT_FALSE(ob1.lru_is_expireable()); ob1.lru_unpin(); ASSERT_TRUE(ob1.lru_is_expireable()); // test when ob1 are in a LRU lru.lru_insert_top(&ob0); lru.lru_insert_top(&ob1); ob1.lru_pin(); ob1.lru_pin(); // Verify that, one incr. ASSERT_EQ(1U, lru.lru_get_num_pinned()); ASSERT_FALSE(ob1.lru_is_expireable()); ob1.lru_unpin(); ob1.lru_unpin(); // Verify that, one decr. ASSERT_EQ(0U, lru.lru_get_num_pinned()); ASSERT_TRUE(ob1.lru_is_expireable()); ASSERT_EQ(0, (static_cast<Item*>(lru.lru_expire()))->id); ob0.lru_pin(); ASSERT_EQ(1, (static_cast<Item*>(lru.lru_expire()))->id); } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_lru && * valgrind --tool=memcheck --leak-check=full \ * ./unittest_lru * " * End: */
4,085
24.698113
70
cc
null
ceph-main/src/test/common/test_lruset.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Inktank <[email protected]> * * LGPL-2.1 (see COPYING-LGPL2.1) or later */ #include <iostream> #include <gtest/gtest.h> #include "common/LRUSet.h" struct thing { int a; thing(int i) : a(i) {} friend bool operator==(const thing &a, const thing &b) { return a.a == b.a; } friend std::size_t hash_value(const thing &value) { return value.a; } }; namespace std { template<> struct hash<thing> { size_t operator()(const thing& r) const { return r.a; } }; } TEST(LRUSet, insert_complex) { LRUSet<thing> s; s.insert(thing(1)); s.insert(thing(2)); ASSERT_TRUE(s.contains(thing(1))); ASSERT_TRUE(s.contains(thing(2))); ASSERT_FALSE(s.contains(thing(3))); } TEST(LRUSet, insert) { LRUSet<int> s; s.insert(1); s.insert(2); ASSERT_TRUE(s.contains(1)); ASSERT_TRUE(s.contains(2)); ASSERT_FALSE(s.contains(3)); } TEST(LRUSet, erase) { LRUSet<int> s; s.insert(1); s.insert(2); s.insert(3); s.erase(2); ASSERT_TRUE(s.contains(1)); ASSERT_FALSE(s.contains(2)); ASSERT_TRUE(s.contains(3)); s.prune(1); ASSERT_TRUE(s.contains(3)); ASSERT_FALSE(s.contains(1)); } TEST(LRUSet, prune) { LRUSet<int> s; int max = 1000; for (int i=0; i<max; ++i) { s.insert(i); s.prune(max / 10); } s.prune(0); ASSERT_TRUE(s.empty()); } TEST(LRUSet, lru) { LRUSet<int> s; s.insert(1); s.insert(2); s.insert(3); s.prune(2); ASSERT_FALSE(s.contains(1)); ASSERT_TRUE(s.contains(2)); ASSERT_TRUE(s.contains(3)); s.insert(2); s.insert(4); s.prune(2); ASSERT_FALSE(s.contains(3)); ASSERT_TRUE(s.contains(2)); ASSERT_TRUE(s.contains(4)); } TEST(LRUSet, copy) { LRUSet<int> a, b; a.insert(1); b.insert(2); b.insert(3); a = b; ASSERT_FALSE(a.contains(1)); ASSERT_TRUE(a.contains(2)); ASSERT_TRUE(a.contains(3)); }
1,998
17.172727
70
cc
null
ceph-main/src/test/common/test_mclock_priority_queue.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2017 Red Hat Inc. * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <thread> #include <chrono> #include <iostream> #include "gtest/gtest.h" #include "common/mClockPriorityQueue.h" struct Request { int value; Request() : value(0) {} Request(const Request& o) = default; explicit Request(int value) : value(value) {} }; struct Client { int client_num; Client() : Client(-1) {} Client(int client_num) : client_num(client_num) {} friend bool operator<(const Client& r1, const Client& r2) { return r1.client_num < r2.client_num; } friend bool operator==(const Client& r1, const Client& r2) { return r1.client_num == r2.client_num; } }; const crimson::dmclock::ClientInfo* client_info_func(const Client& c) { static const crimson::dmclock::ClientInfo the_info(10.0, 10.0, 10.0); return &the_info; } TEST(mClockPriorityQueue, Create) { ceph::mClockQueue<Request,Client> q(&client_info_func); } TEST(mClockPriorityQueue, Sizes) { ceph::mClockQueue<Request,Client> q(&client_info_func); ASSERT_TRUE(q.empty()); ASSERT_EQ(0u, q.get_size_slow()); Client c1(1); Client c2(2); q.enqueue_strict(c1, 1, Request(1)); q.enqueue_strict(c2, 2, Request(2)); q.enqueue_strict(c1, 2, Request(3)); q.enqueue(c2, 1, 1u, Request(4)); q.enqueue(c1, 2, 1u, Request(5)); q.enqueue_strict(c2, 1, Request(6)); ASSERT_FALSE(q.empty()); ASSERT_EQ(6u, q.get_size_slow()); for (int i = 0; i < 6; ++i) { (void) q.dequeue(); } ASSERT_TRUE(q.empty()); ASSERT_EQ(0u, q.get_size_slow()); } TEST(mClockPriorityQueue, JustStrict) { ceph::mClockQueue<Request,Client> q(&client_info_func); Client c1(1); Client c2(2); q.enqueue_strict(c1, 1, Request(1)); q.enqueue_strict(c2, 2, Request(2)); q.enqueue_strict(c1, 2, Request(3)); q.enqueue_strict(c2, 1, Request(4)); Request r; r = q.dequeue(); ASSERT_EQ(2, r.value); r = q.dequeue(); ASSERT_EQ(3, r.value); r = q.dequeue(); ASSERT_EQ(1, r.value); r = q.dequeue(); ASSERT_EQ(4, r.value); } TEST(mClockPriorityQueue, StrictPriorities) { ceph::mClockQueue<Request,Client> q(&client_info_func); Client c1(1); Client c2(2); q.enqueue_strict(c1, 1, Request(1)); q.enqueue_strict(c2, 2, Request(2)); q.enqueue_strict(c1, 3, Request(3)); q.enqueue_strict(c2, 4, Request(4)); Request r; r = q.dequeue(); ASSERT_EQ(4, r.value); r = q.dequeue(); ASSERT_EQ(3, r.value); r = q.dequeue(); ASSERT_EQ(2, r.value); r = q.dequeue(); ASSERT_EQ(1, r.value); } TEST(mClockPriorityQueue, JustNotStrict) { ceph::mClockQueue<Request,Client> q(&client_info_func); Client c1(1); Client c2(2); // non-strict queue ignores priorites, but will divide between // clients evenly and maintain orders between clients q.enqueue(c1, 1, 1u, Request(1)); q.enqueue(c1, 2, 1u, Request(2)); q.enqueue(c2, 3, 1u, Request(3)); q.enqueue(c2, 4, 1u, Request(4)); Request r1, r2; r1 = q.dequeue(); ASSERT_TRUE(1 == r1.value || 3 == r1.value); r2 = q.dequeue(); ASSERT_TRUE(1 == r2.value || 3 == r2.value); ASSERT_NE(r1.value, r2.value); r1 = q.dequeue(); ASSERT_TRUE(2 == r1.value || 4 == r1.value); r2 = q.dequeue(); ASSERT_TRUE(2 == r2.value || 4 == r2.value); ASSERT_NE(r1.value, r2.value); } TEST(mClockPriorityQueue, EnqueuFront) { ceph::mClockQueue<Request,Client> q(&client_info_func); Client c1(1); Client c2(2); // non-strict queue ignores priorites, but will divide between // clients evenly and maintain orders between clients q.enqueue(c1, 1, 1u, Request(1)); q.enqueue(c1, 2, 1u, Request(2)); q.enqueue(c2, 3, 1u, Request(3)); q.enqueue(c2, 4, 1u, Request(4)); q.enqueue_strict(c2, 6, Request(6)); q.enqueue_strict(c1, 7, Request(7)); std::list<Request> reqs; for (uint i = 0; i < 4; ++i) { reqs.emplace_back(q.dequeue()); } for (uint i = 0; i < 4; ++i) { Request& r = reqs.front(); if (r.value > 5) { q.enqueue_strict_front(r.value == 6 ? c2 : 1, r.value, std::move(r)); } else { q.enqueue_front(r.value <= 2 ? c1 : c2, r.value, 0, std::move(r)); } reqs.pop_front(); } Request r; r = q.dequeue(); ASSERT_EQ(7, r.value); r = q.dequeue(); ASSERT_EQ(6, r.value); r = q.dequeue(); ASSERT_TRUE(1 == r.value || 3 == r.value); r = q.dequeue(); ASSERT_TRUE(1 == r.value || 3 == r.value); r = q.dequeue(); ASSERT_TRUE(2 == r.value || 4 == r.value); r = q.dequeue(); ASSERT_TRUE(2 == r.value || 4 == r.value); } TEST(mClockPriorityQueue, RemoveByClass) { ceph::mClockQueue<Request,Client> q(&client_info_func); Client c1(1); Client c2(2); Client c3(3); q.enqueue(c1, 1, 1u, Request(1)); q.enqueue(c2, 1, 1u, Request(2)); q.enqueue(c3, 1, 1u, Request(4)); q.enqueue_strict(c1, 2, Request(8)); q.enqueue_strict(c2, 1, Request(16)); q.enqueue_strict(c3, 3, Request(32)); q.enqueue(c3, 1, 1u, Request(64)); q.enqueue(c2, 1, 1u, Request(128)); q.enqueue(c1, 1, 1u, Request(256)); int out_mask = 2 | 16 | 128; int in_mask = 1 | 8 | 256; std::list<Request> out; q.remove_by_class(c2, &out); ASSERT_EQ(3u, out.size()); while (!out.empty()) { ASSERT_TRUE((out.front().value & out_mask) > 0) << "had value that was not expected after first removal"; out.pop_front(); } ASSERT_EQ(6u, q.get_size_slow()) << "after removal of three from client c2"; q.remove_by_class(c3); ASSERT_EQ(3u, q.get_size_slow()) << "after removal of three from client c3"; while (!q.empty()) { Request r = q.dequeue(); ASSERT_TRUE((r.value & in_mask) > 0) << "had value that was not expected after two removals"; } } TEST(mClockPriorityQueue, RemoveByFilter) { ceph::mClockQueue<Request,Client> q(&client_info_func); Client c1(1); Client c2(2); Client c3(3); q.enqueue(c1, 1, 1u, Request(1)); q.enqueue(c2, 1, 1u, Request(2)); q.enqueue(c3, 1, 1u, Request(3)); q.enqueue_strict(c1, 2, Request(4)); q.enqueue_strict(c2, 1, Request(5)); q.enqueue_strict(c3, 3, Request(6)); q.enqueue(c3, 1, 1u, Request(7)); q.enqueue(c2, 1, 1u, Request(8)); q.enqueue(c1, 1, 1u, Request(9)); std::list<Request> filtered; q.remove_by_filter([&](const Request& r) -> bool { if (r.value & 2) { filtered.push_back(r); return true; } else { return false; } }); ASSERT_EQ(4u, filtered.size()) << "filter should have removed four elements"; while (!filtered.empty()) { ASSERT_TRUE((filtered.front().value & 2) > 0) << "expect this value to have been filtered out"; filtered.pop_front(); } ASSERT_EQ(5u, q.get_size_slow()) << "filter should have left five remaining elements"; while (!q.empty()) { Request r = q.dequeue(); ASSERT_TRUE((r.value & 2) == 0) << "expect this value to have been left in"; } }
7,214
21.476636
78
cc
null
ceph-main/src/test/common/test_mutex_debug.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 &smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2011 New Dream Network * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License version 2, as published by the Free Software * Foundation. See file COPYING. * */ #include <future> #include <mutex> #include <thread> #include "common/mutex_debug.h" #include "gtest/gtest.h" template<typename Mutex> static bool test_try_lock(Mutex* m) { if (!m->try_lock()) return false; m->unlock(); return true; } template<typename Mutex> static void test_lock() { Mutex m("mutex"); auto ttl = &test_try_lock<Mutex>; m.lock(); ASSERT_TRUE(m.is_locked()); auto f1 = std::async(std::launch::async, ttl, &m); ASSERT_FALSE(f1.get()); ASSERT_TRUE(m.is_locked()); ASSERT_TRUE(!!m); m.unlock(); ASSERT_FALSE(m.is_locked()); ASSERT_FALSE(!!m); auto f3 = std::async(std::launch::async, ttl, &m); ASSERT_TRUE(f3.get()); ASSERT_FALSE(m.is_locked()); ASSERT_FALSE(!!m); } TEST(MutexDebug, Lock) { test_lock<ceph::mutex_debug>(); } TEST(MutexDebug, NotRecursive) { ceph::mutex_debug m("foo"); auto ttl = &test_try_lock<mutex_debug>; ASSERT_NO_THROW(m.lock()); ASSERT_TRUE(m.is_locked()); ASSERT_FALSE(std::async(std::launch::async, ttl, &m).get()); ASSERT_THROW(m.lock(), std::system_error); ASSERT_TRUE(m.is_locked()); ASSERT_FALSE(std::async(std::launch::async, ttl, &m).get()); ASSERT_NO_THROW(m.unlock()); ASSERT_FALSE(m.is_locked()); ASSERT_TRUE(std::async(std::launch::async, ttl, &m).get()); } TEST(MutexRecursiveDebug, Lock) { test_lock<ceph::mutex_recursive_debug>(); } TEST(MutexRecursiveDebug, Recursive) { ceph::mutex_recursive_debug m("m"); auto ttl = &test_try_lock<mutex_recursive_debug>; ASSERT_NO_THROW(m.lock()); ASSERT_TRUE(m.is_locked()); ASSERT_FALSE(std::async(std::launch::async, ttl, &m).get()); ASSERT_NO_THROW(m.lock()); ASSERT_TRUE(m.is_locked()); ASSERT_FALSE(std::async(std::launch::async, ttl, &m).get()); ASSERT_NO_THROW(m.unlock()); ASSERT_TRUE(m.is_locked()); ASSERT_FALSE(std::async(std::launch::async, ttl, &m).get()); ASSERT_NO_THROW(m.unlock()); ASSERT_FALSE(m.is_locked()); ASSERT_TRUE(std::async(std::launch::async, ttl, &m).get()); }
2,399
22.529412
70
cc
null
ceph-main/src/test/common/test_numa.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "gtest/gtest.h" #include "common/numa.h" TEST(cpu_set, parse_list) { cpu_set_t cpu_set; size_t size; ASSERT_EQ(0, parse_cpu_set_list("0-3", &size, &cpu_set)); ASSERT_EQ(size, 4u); for (unsigned i = 0; i < size; ++i) { ASSERT_TRUE(CPU_ISSET(i, &cpu_set)); } ASSERT_EQ(0, parse_cpu_set_list("0-3,6-7", &size, &cpu_set)); ASSERT_EQ(size, 8u); for (unsigned i = 0; i < 4; ++i) { ASSERT_TRUE(CPU_ISSET(i, &cpu_set)); } for (unsigned i = 4; i < 6; ++i) { ASSERT_FALSE(CPU_ISSET(i, &cpu_set)); } for (unsigned i = 6; i < 8; ++i) { ASSERT_TRUE(CPU_ISSET(i, &cpu_set)); } ASSERT_EQ(0, parse_cpu_set_list("0-31", &size, &cpu_set)); ASSERT_EQ(size, 32u); for (unsigned i = 0; i < size; ++i) { ASSERT_TRUE(CPU_ISSET(i, &cpu_set)); } } TEST(cpu_set, to_str_list) { cpu_set_t cpu_set; CPU_ZERO(&cpu_set); CPU_SET(0, &cpu_set); ASSERT_EQ(std::string("0"), cpu_set_to_str_list(8, &cpu_set)); CPU_SET(1, &cpu_set); CPU_SET(2, &cpu_set); CPU_SET(3, &cpu_set); ASSERT_EQ(std::string("0-3"), cpu_set_to_str_list(8, &cpu_set)); CPU_SET(5, &cpu_set); ASSERT_EQ(std::string("0-3,5"), cpu_set_to_str_list(8, &cpu_set)); CPU_SET(6, &cpu_set); CPU_SET(7, &cpu_set); ASSERT_EQ(std::string("0-3,5-7"), cpu_set_to_str_list(8, &cpu_set)); } TEST(cpu_set, round_trip_list) { for (unsigned i = 0; i < 100; ++i) { cpu_set_t cpu_set; size_t size = 32; CPU_ZERO(&cpu_set); for (unsigned i = 0; i < 32; ++i) { if (rand() % 1) { CPU_SET(i, &cpu_set); } } std::string v = cpu_set_to_str_list(size, &cpu_set); cpu_set_t cpu_set_2; size_t size2; ASSERT_EQ(0, parse_cpu_set_list(v.c_str(), &size2, &cpu_set_2)); for (unsigned i = 0; i < 32; ++i) { ASSERT_TRUE(CPU_ISSET(i, &cpu_set) == CPU_ISSET(i, &cpu_set_2)); } } }
1,942
25.616438
70
cc
null
ceph-main/src/test/common/test_option.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- // vim: ts=8 sw=2 smarttab expandtab #include <string.h> #include <errno.h> #include <stdlib.h> #include <gtest/gtest.h> #include "common/options.h" using namespace std; TEST(Option, validate_min_max) { auto opt = Option{"foo", Option::TYPE_MILLISECS, Option::LEVEL_ADVANCED} .set_default(42) .set_min_max(10, 128); struct test_t { unsigned new_val; int expected_retval; }; test_t tests[] = {{9, -EINVAL}, {10, 0}, {11, 0}, {128, 0}, {1024, -EINVAL} }; for (auto& test : tests) { Option::value_t new_value = std::chrono::milliseconds{test.new_val}; std::string err; GTEST_ASSERT_EQ(test.expected_retval, opt.validate(new_value, &err)); } } TEST(Option, parse) { auto opt = Option{"foo", Option::TYPE_MILLISECS, Option::LEVEL_ADVANCED} .set_default(42) .set_min_max(10, 128); struct test_t { string new_val; int expected_retval; unsigned expected_parsed_val; }; test_t tests[] = {{"9", -EINVAL, 0}, {"10", 0, 10}, {"11", 0, 11}, {"128", 0, 128}, {"1024", -EINVAL, 0} }; for (auto& test : tests) { Option::value_t parsed_val; std::string err; GTEST_ASSERT_EQ(test.expected_retval, opt.parse_value(test.new_val, &parsed_val, &err)); if (test.expected_retval == 0) { Option::value_t expected_parsed_val = std::chrono::milliseconds{test.expected_parsed_val}; GTEST_ASSERT_EQ(parsed_val, expected_parsed_val); } } } /* * Local Variables: * compile-command: "cd ../../../build ; * ninja unittest_option && bin/unittest_option * " * End: */
1,707
22.081081
74
cc
null
ceph-main/src/test/common/test_perf_counters_key.cc
#include "common/perf_counters_key.h" #include <gtest/gtest.h> namespace ceph::perf_counters { TEST(PerfCounters, key_create) { EXPECT_EQ(key_create(""), std::string_view("\0", 1)); EXPECT_EQ(key_create("perf"), std::string_view("perf\0", 5)); EXPECT_EQ(key_create("perf", {{"",""}}), std::string_view("perf\0\0\0", 7)); EXPECT_EQ(key_create("perf", {{"","a"}, {"",""}}), std::string_view("perf\0\0a\0", 8)); EXPECT_EQ(key_create("perf", {{"a","b"}}), std::string_view("perf\0a\0b\0", 9)); EXPECT_EQ(key_create("perf", {{"y","z"}, {"a","b"}}), std::string_view("perf\0a\0b\0y\0z\0", 13)); EXPECT_EQ(key_create("perf", {{"a","b"}, {"a","c"}}), std::string_view("perf\0a\0b\0", 9)); EXPECT_EQ(key_create("perf", {{"a","z"}, {"a","b"}}), std::string_view("perf\0a\0z\0", 9)); EXPECT_EQ(key_create("perf", {{"d",""}, {"c",""}, {"b",""}, {"a",""}}), std::string_view("perf\0a\0\0b\0\0c\0\0d\0\0", 17)); } TEST(PerfCounters, key_insert) { EXPECT_EQ(key_insert("", {{"",""}}), std::string_view("\0\0\0", 3)); EXPECT_EQ(key_insert("", {{"",""}, {"",""}}), std::string_view("\0\0\0", 3)); EXPECT_EQ(key_insert(std::string_view{"\0\0\0", 3}, {{"",""}}), std::string_view("\0\0\0", 3)); EXPECT_EQ(key_insert(std::string_view{"\0", 1}, {{"",""}}), std::string_view("\0\0\0", 3)); EXPECT_EQ(key_insert("", {{"a","b"}}), std::string_view("\0a\0b\0", 5)); EXPECT_EQ(key_insert(std::string_view{"\0", 1}, {{"a","b"}}), std::string_view("\0a\0b\0", 5)); EXPECT_EQ(key_insert("a", {{"",""}}), std::string_view("a\0\0\0", 4)); EXPECT_EQ(key_insert(std::string_view{"a\0", 2}, {{"",""}}), std::string_view("a\0\0\0", 4)); EXPECT_EQ(key_insert(std::string_view{"p\0", 2}, {{"a","b"}}), std::string_view("p\0a\0b\0", 6)); EXPECT_EQ(key_insert(std::string_view{"p\0a\0a\0", 6}, {{"a","b"}}), std::string_view("p\0a\0b\0", 6)); EXPECT_EQ(key_insert(std::string_view{"p\0a\0z\0", 6}, {{"a","b"}}), std::string_view("p\0a\0b\0", 6)); EXPECT_EQ(key_insert(std::string_view{"p\0z\0z\0", 6}, {{"a","b"}}), std::string_view("p\0a\0b\0z\0z\0", 10)); EXPECT_EQ(key_insert(std::string_view{"p\0b\0b\0", 6}, {{"a","a"}, {"c","c"}}), std::string_view("p\0a\0a\0b\0b\0c\0c\0", 14)); EXPECT_EQ(key_insert(std::string_view{"p\0a\0a\0b\0b\0c\0c\0", 14}, {{"z","z"}, {"b","z"}}), std::string_view("p\0a\0a\0b\0z\0c\0c\0z\0z\0", 18)); } TEST(PerfCounters, key_name) { EXPECT_EQ(key_name(""), ""); EXPECT_EQ(key_name({"\0", 1}), ""); EXPECT_EQ(key_name({"perf\0", 5}), "perf"); EXPECT_EQ(key_name({"perf\0\0\0", 7}), "perf"); } TEST(PerfCounters, key_labels) { { auto labels = key_labels(""); EXPECT_EQ(labels.begin(), labels.end()); } { auto labels = key_labels({"\0", 1}); EXPECT_EQ(labels.begin(), labels.end()); } { auto labels = key_labels({"perf\0", 5}); EXPECT_EQ(labels.begin(), labels.end()); } { auto labels = key_labels({"\0\0\0", 3}); ASSERT_EQ(1, std::distance(labels.begin(), labels.end())); EXPECT_EQ(label_pair("", ""), *labels.begin()); } { auto labels = key_labels({"\0a\0b\0", 5}); ASSERT_EQ(1, std::distance(labels.begin(), labels.end())); EXPECT_EQ(label_pair("a", "b"), *labels.begin()); EXPECT_EQ(std::next(labels.begin()), labels.end()); } { auto labels = key_labels({"\0a\0b\0c\0d\0", 9}); ASSERT_EQ(2, std::distance(labels.begin(), labels.end())); EXPECT_EQ(label_pair("a", "b"), *labels.begin()); EXPECT_EQ(label_pair("c", "d"), *std::next(labels.begin())); EXPECT_EQ(std::next(labels.begin(), 2), labels.end()); } } } // namespace ceph::perf_counters
3,984
29.653846
73
cc
null
ceph-main/src/test/common/test_perf_histogram.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 &smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2017 OVH * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License version 2, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/perf_histogram.h" #include "gtest/gtest.h" template <int DIM> class PerfHistogramAccessor : public PerfHistogram<DIM> { public: typedef PerfHistogram<DIM> Base; using Base::PerfHistogram; static int64_t get_bucket_for_axis( int64_t value, const PerfHistogramCommon::axis_config_d& axis_config) { return Base::get_bucket_for_axis(value, axis_config); } static std::vector<std::pair<int64_t, int64_t>> get_axis_bucket_ranges( const PerfHistogramCommon::axis_config_d& axis_config) { return Base::get_axis_bucket_ranges(axis_config); } const typename Base::axis_config_d& get_axis_config(int num) { return Base::m_axes_config[num]; } template <typename F1, typename F2, typename F3> void visit_values(F1 f1, F2 f2, F3 f3) { Base::visit_values(f1, f2, f3); } }; TEST(PerfHistogram, GetBucketForAxis) { PerfHistogramCommon::axis_config_d linear{ "", PerfHistogramCommon::SCALE_LINEAR, 100, 3, 4}; ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(-1, linear)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(0, linear)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(99, linear)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(100, linear)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(101, linear)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(102, linear)); ASSERT_EQ(2, PerfHistogramAccessor<1>::get_bucket_for_axis(103, linear)); ASSERT_EQ(2, PerfHistogramAccessor<1>::get_bucket_for_axis(105, linear)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis(106, linear)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis(108, linear)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis(109, linear)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis( std::numeric_limits<int64_t>::min(), linear)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis( std::numeric_limits<int64_t>::max(), linear)); PerfHistogramCommon::axis_config_d logarithmic{ "", PerfHistogramCommon::SCALE_LOG2, 100, 3, 5}; ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(-1, logarithmic)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(0, logarithmic)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(99, logarithmic)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(100, logarithmic)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(101, logarithmic)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(102, logarithmic)); ASSERT_EQ(2, PerfHistogramAccessor<1>::get_bucket_for_axis(103, logarithmic)); ASSERT_EQ(2, PerfHistogramAccessor<1>::get_bucket_for_axis(105, logarithmic)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis(106, logarithmic)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis(111, logarithmic)); ASSERT_EQ(4, PerfHistogramAccessor<1>::get_bucket_for_axis(112, logarithmic)); ASSERT_EQ(4, PerfHistogramAccessor<1>::get_bucket_for_axis(124, logarithmic)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis( std::numeric_limits<int64_t>::min(), logarithmic)); ASSERT_EQ(4, PerfHistogramAccessor<1>::get_bucket_for_axis( std::numeric_limits<int64_t>::max(), logarithmic)); } static const int XS = 5; static const int YS = 7; static const auto x_axis = PerfHistogramCommon::axis_config_d{ "x", PerfHistogramCommon::SCALE_LINEAR, 0, 1, XS}; static const auto y_axis = PerfHistogramCommon::axis_config_d{ "y", PerfHistogramCommon::SCALE_LOG2, 0, 1, YS}; TEST(PerfHistogram, ZeroedInitially) { PerfHistogramAccessor<2> h{x_axis, y_axis}; for (int x = 0; x < XS; ++x) { for (int y = 0; y < YS; ++y) { ASSERT_EQ(0UL, h.read_bucket(x, y)); } } } TEST(PerfHistogram, Copy) { PerfHistogramAccessor<2> h1{x_axis, y_axis}; h1.inc_bucket(1, 1); h1.inc_bucket(2, 3); h1.inc_bucket(4, 5); PerfHistogramAccessor<2> h2 = h1; const int cx = 1; const int cy = 2; h1.inc_bucket(cx, cy); // Axes configuration must be equal for (int i = 0; i < 2; i++) { const auto& ac1 = h1.get_axis_config(i); const auto& ac2 = h2.get_axis_config(i); ASSERT_EQ(ac1.m_name, ac2.m_name); ASSERT_EQ(ac1.m_scale_type, ac2.m_scale_type); ASSERT_EQ(ac1.m_min, ac2.m_min); ASSERT_EQ(ac1.m_quant_size, ac2.m_quant_size); ASSERT_EQ(ac1.m_buckets, ac2.m_buckets); } // second histogram must have histogram values equal to the first // one at the time of copy for (int x = 0; x < XS; x++) { for (int y = 0; y < YS; y++) { if (x == cx && y == cy) { ASSERT_NE(h1.read_bucket(x, y), h2.read_bucket(x, y)); } else { ASSERT_EQ(h1.read_bucket(x, y), h2.read_bucket(x, y)); } } } } TEST(PerfHistogram, SimpleValues) { PerfHistogramAccessor<2> h{x_axis, y_axis}; ASSERT_EQ(0UL, h.read_bucket(1, 1)); h.inc(0, 0); ASSERT_EQ(1UL, h.read_bucket(1, 1)); ASSERT_EQ(0UL, h.read_bucket(2, 2)); h.inc(1, 1); ASSERT_EQ(1UL, h.read_bucket(2, 2)); ASSERT_EQ(0UL, h.read_bucket(3, 3)); h.inc(2, 2); ASSERT_EQ(1UL, h.read_bucket(3, 3)); ASSERT_EQ(0UL, h.read_bucket(4, 3)); h.inc(3, 3); ASSERT_EQ(1UL, h.read_bucket(4, 3)); } TEST(PerfHistogram, OneBucketRange) { auto ranges = PerfHistogramAccessor<1>::get_axis_bucket_ranges( PerfHistogramCommon::axis_config_d{"", PerfHistogramCommon::SCALE_LINEAR, 0, 1, 1}); ASSERT_EQ(1UL, ranges.size()); ASSERT_EQ(std::numeric_limits<int64_t>::min(), ranges[0].first); ASSERT_EQ(std::numeric_limits<int64_t>::max(), ranges[0].second); } TEST(PerfHistogram, TwoBucketRange) { auto ranges = PerfHistogramAccessor<1>::get_axis_bucket_ranges( PerfHistogramCommon::axis_config_d{"", PerfHistogramCommon::SCALE_LINEAR, 0, 1, 2}); ASSERT_EQ(2UL, ranges.size()); ASSERT_EQ(std::numeric_limits<int64_t>::min(), ranges[0].first); ASSERT_EQ(-1, ranges[0].second); ASSERT_EQ(0, ranges[1].first); ASSERT_EQ(std::numeric_limits<int64_t>::max(), ranges[1].second); } TEST(PerfHistogram, LinearBucketRange) { PerfHistogramCommon::axis_config_d ac{"", PerfHistogramCommon::SCALE_LINEAR, 100, 10, 15}; auto ranges = PerfHistogramAccessor<1>::get_axis_bucket_ranges(ac); for (size_t i = 0; i < ranges.size(); ++i) { ASSERT_EQ( static_cast<long>(i), PerfHistogramAccessor<1>::get_bucket_for_axis(ranges[i].first, ac)); ASSERT_EQ( static_cast<long>(i), PerfHistogramAccessor<1>::get_bucket_for_axis(ranges[i].second, ac)); } for (size_t i = 1; i < ranges.size(); ++i) { ASSERT_EQ(ranges[i].first, ranges[i - 1].second + 1); } } TEST(PerfHistogram, LogarithmicBucketRange) { PerfHistogramCommon::axis_config_d ac{"", PerfHistogramCommon::SCALE_LOG2, 100, 10, 15}; auto ranges = PerfHistogramAccessor<1>::get_axis_bucket_ranges(ac); for (size_t i = 0; i < ranges.size(); ++i) { ASSERT_EQ( static_cast<long>(i), PerfHistogramAccessor<1>::get_bucket_for_axis(ranges[i].first, ac)); ASSERT_EQ( static_cast<long>(i), PerfHistogramAccessor<1>::get_bucket_for_axis(ranges[i].second, ac)); } for (size_t i = 1; i < ranges.size(); ++i) { ASSERT_EQ(ranges[i].first, ranges[i - 1].second + 1); } } TEST(PerfHistogram, AxisAddressing) { PerfHistogramCommon::axis_config_d ac1{"", PerfHistogramCommon::SCALE_LINEAR, 0, 1, 7}; PerfHistogramCommon::axis_config_d ac2{"", PerfHistogramCommon::SCALE_LINEAR, 0, 1, 9}; PerfHistogramCommon::axis_config_d ac3{"", PerfHistogramCommon::SCALE_LINEAR, 0, 1, 11}; PerfHistogramAccessor<3> h{ac1, ac2, ac3}; h.inc(1, 2, 3); // Should end up in buckets 2, 3, 4 h.inc_bucket(4, 5, 6); std::vector<int64_t> rawValues; h.visit_values([](int) {}, [&rawValues](int64_t value) { rawValues.push_back(value); }, [](int) {}); for (size_t i = 0; i < rawValues.size(); ++i) { switch (i) { case 4 + 11 * (3 + 9 * 2): case 6 + 11 * (5 + 9 * 4): ASSERT_EQ(1, rawValues[i]); break; default: ASSERT_EQ(0, rawValues[i]); break; } } }
8,897
34.879032
97
cc
null
ceph-main/src/test/common/test_pretty_binary.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/pretty_binary.h" #include "gtest/gtest.h" TEST(pretty_binary, print) { ASSERT_EQ(pretty_binary_string(std::string("foo\001\002bars")), std::string("'foo'0x0102'bars'")); ASSERT_EQ(pretty_binary_string(std::string("foo''bars")), std::string("'foo''''bars'")); ASSERT_EQ(pretty_binary_string(std::string("foo\377 \200!!")), std::string("'foo'0xFF2020802121")); ASSERT_EQ(pretty_binary_string(std::string("\001\002\003\004")), std::string("0x01020304")); } TEST(pretty_binary, unprint) { ASSERT_EQ(pretty_binary_string_reverse(std::string("'foo'0x0102'bars'")), std::string("foo\001\002bars")); ASSERT_EQ(pretty_binary_string_reverse(std::string("'foo''''bars'")), std::string("foo''bars")); ASSERT_EQ(pretty_binary_string_reverse(std::string("'foo'0xFF2020802121")), std::string("foo\377 \200!!")); ASSERT_EQ(pretty_binary_string_reverse(std::string("0x01020304")),std::string("\001\002\003\004")); } TEST(pretty_binary, all_chars) { std::string a; for (unsigned j = 0; j < 256; ++j) { a.push_back((char)j); } std::string b = pretty_binary_string(a); ASSERT_EQ(a, pretty_binary_string_reverse(b)); } TEST(pretty_binary, random) { for (size_t i = 0; i < 100000; i++) { std::string a; size_t r = rand() % 100; for (size_t j = 0; j < r; ++j) { a.push_back((unsigned char)rand()); } std::string b = pretty_binary_string(a); ASSERT_EQ(a, pretty_binary_string_reverse(b)); } } TEST(pretty_binary, invalid) { ASSERT_THROW(pretty_binary_string_reverse("'"), std::invalid_argument); ASSERT_THROW(pretty_binary_string_reverse("0x1"), std::invalid_argument); ASSERT_THROW(pretty_binary_string_reverse("0x"), std::invalid_argument); ASSERT_THROW(pretty_binary_string_reverse("'''"), std::invalid_argument); ASSERT_THROW(pretty_binary_string_reverse("'a'x"), std::invalid_argument); ASSERT_THROW(pretty_binary_string_reverse("'a'0x"), std::invalid_argument); }
2,046
39.137255
110
cc
null
ceph-main/src/test/common/test_prioritized_queue.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "gtest/gtest.h" #include "common/PrioritizedQueue.h" #include <numeric> #include <vector> #include <algorithm> #include <random> using std::vector; class PrioritizedQueueTest : public testing::Test { protected: typedef int Klass; typedef unsigned Item; typedef PrioritizedQueue<Item, Klass> PQ; enum { item_size = 100, }; vector<Item> items; void SetUp() override { for (int i = 0; i < item_size; i++) { items.push_back(Item(i)); } std::random_device rd; std::default_random_engine rng(rd()); std::shuffle(items.begin(), items.end(), rng); } void TearDown() override { items.clear(); } }; TEST_F(PrioritizedQueueTest, capacity) { const unsigned min_cost = 10; const unsigned max_tokens_per_subqueue = 50; PQ pq(max_tokens_per_subqueue, min_cost); EXPECT_TRUE(pq.empty()); EXPECT_EQ(0u, pq.length()); pq.enqueue_strict(Klass(1), 0, Item(0)); EXPECT_FALSE(pq.empty()); EXPECT_EQ(1u, pq.length()); for (int i = 0; i < 3; i++) { pq.enqueue(Klass(1), 0, 10, Item(0)); } for (unsigned i = 4; i > 0; i--) { EXPECT_FALSE(pq.empty()); EXPECT_EQ(i, pq.length()); pq.dequeue(); } EXPECT_TRUE(pq.empty()); EXPECT_EQ(0u, pq.length()); } TEST_F(PrioritizedQueueTest, strict_pq) { const unsigned min_cost = 1; const unsigned max_tokens_per_subqueue = 50; PQ pq(max_tokens_per_subqueue, min_cost); // 0 .. item_size-1 for (unsigned i = 0; i < item_size; i++) { unsigned priority = items[i]; const Item& item = items[i]; pq.enqueue_strict(Klass(0), priority, Item(item)); } // item_size-1 .. 0 for (unsigned i = item_size; i > 0; i--) { Item item = pq.dequeue(); unsigned priority = item; EXPECT_EQ(i - 1, priority); } } TEST_F(PrioritizedQueueTest, lowest_among_eligible_otherwise_highest) { // to minimize the effect of `distribute_tokens()` // all eligible items will be assigned with cost of min_cost const unsigned min_cost = 0; const unsigned max_tokens_per_subqueue = 100; PQ pq(max_tokens_per_subqueue, min_cost); #define ITEM_TO_COST(item_) (item_ % 5 ? min_cost : max_tokens_per_subqueue) unsigned num_low_cost = 0, num_high_cost = 0; for (int i = 0; i < item_size; i++) { const Item& item = items[i]; unsigned cost = ITEM_TO_COST(item); unsigned priority = item; if (cost == min_cost) { num_low_cost++; } else { num_high_cost++; } pq.enqueue(Klass(0), priority, cost, Item(item)); } // the token in all buckets is 0 at the beginning, so dequeue() should pick // the first one with the highest priority. unsigned highest_priority; { Item item = pq.dequeue(); unsigned cost = ITEM_TO_COST(item); unsigned priority = item; if (cost == min_cost) { num_low_cost--; } else { num_high_cost--; } EXPECT_EQ(item_size - 1u, priority); highest_priority = priority; } unsigned lowest_priority = 0; for (unsigned i = 0; i < num_low_cost; i++) { Item item = pq.dequeue(); unsigned cost = ITEM_TO_COST(item); unsigned priority = item; EXPECT_EQ(min_cost, cost); EXPECT_GT(priority, lowest_priority); lowest_priority = priority; } for (unsigned i = 0; i < num_high_cost; i++) { Item item = pq.dequeue(); unsigned cost = ITEM_TO_COST(item); unsigned priority = item; EXPECT_EQ(max_tokens_per_subqueue, cost); EXPECT_LT(priority, highest_priority); highest_priority = priority; } #undef ITEM_TO_COST } static const unsigned num_classes = 4; // just a determinitic number #define ITEM_TO_CLASS(item_) Klass((item_ + 43) % num_classes) TEST_F(PrioritizedQueueTest, fairness_by_class) { // dequeue should be fair to all classes in a certain bucket const unsigned min_cost = 1; const unsigned max_tokens_per_subqueue = 50; PQ pq(max_tokens_per_subqueue, min_cost); for (int i = 0; i < item_size; i++) { const Item& item = items[i]; Klass k = ITEM_TO_CLASS(item); unsigned priority = 0; unsigned cost = 1; pq.enqueue(k, priority, cost, Item(item)); } // just sample first 1/2 of the items // if i pick too small a dataset, the result won't be statisitcally // significant. if the sample dataset is too large, it will converge to the // distribution of the full set. vector<unsigned> num_picked_in_class(num_classes, 0u); for (int i = 0; i < item_size / 2; i++) { Item item = pq.dequeue(); Klass k = ITEM_TO_CLASS(item); num_picked_in_class[k]++; } unsigned total = std::accumulate(num_picked_in_class.begin(), num_picked_in_class.end(), 0); float avg = float(total) / num_classes; for (unsigned i = 0; i < num_classes; i++) { EXPECT_NEAR(avg, num_picked_in_class[i], 0.5); } } TEST_F(PrioritizedQueueTest, remove_by_class) { const unsigned min_cost = 1; const unsigned max_tokens_per_subqueue = 50; PQ pq(max_tokens_per_subqueue, min_cost); const Klass class_to_remove(2); unsigned num_to_remove = 0; for (int i = 0; i < item_size; i++) { const Item& item = items[i]; Klass k = ITEM_TO_CLASS(item); pq.enqueue(k, 0, 0, Item(item)); if (k == class_to_remove) { num_to_remove++; } } std::list<Item> removed; pq.remove_by_class(class_to_remove, &removed); // see if the removed items are expected ones. for (std::list<Item>::iterator it = removed.begin(); it != removed.end(); ++it) { const Item& item = *it; Klass k = ITEM_TO_CLASS(item); EXPECT_EQ(class_to_remove, k); items.erase(remove(items.begin(), items.end(), item), items.end()); } EXPECT_EQ(num_to_remove, removed.size()); EXPECT_EQ(item_size - num_to_remove, pq.length()); EXPECT_EQ(item_size - num_to_remove, items.size()); // see if the remainder are expeceted also. while (!pq.empty()) { const Item item = pq.dequeue(); Klass k = ITEM_TO_CLASS(item); EXPECT_NE(class_to_remove, k); items.erase(remove(items.begin(), items.end(), item), items.end()); } EXPECT_TRUE(items.empty()); }
6,136
28.647343
77
cc
null
ceph-main/src/test/common/test_rabin_chunk.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <vector> #include <cstring> #include <random> #include "include/types.h" #include "include/buffer.h" #include "common/rabin.h" #include "gtest/gtest.h" TEST(Rabin, rabin_hash_simple) { uint64_t expected = 680425538102669423; uint64_t result; unsigned int window_size = 48; char data[window_size + 1]; RabinChunk rabin; memset(data, 0, window_size + 1); for (unsigned int i = 0; i < window_size; ++i) { data[i] = i; } result = rabin.gen_rabin_hash(data, 0); ASSERT_EQ(expected, result); } TEST(Rabin, chunk_check_min_max) { const char buf[] = "0123456789"; bufferlist bl; RabinChunk rabin; for (int i = 0; i < 250; i++) { bl.append(buf); } vector<pair<uint64_t, uint64_t>> chunks; size_t min_chunk = 2000; size_t max_chunk = 8000; rabin.do_rabin_chunks(bl, chunks, min_chunk, max_chunk); uint64_t chunk_size = chunks[0].second; ASSERT_GE(chunk_size , min_chunk); ASSERT_LE(chunk_size , max_chunk); } TEST(Rabin, test_cdc) { const char *base_str = "123456789012345678901234567890123456789012345678"; bufferlist bl, cmp_bl; for (int i = 0; i < 100; i++) { bl.append(base_str); } cmp_bl.append('a'); for (int i = 0; i < 100; i++) { cmp_bl.append(base_str); } RabinChunk rabin; vector<pair<uint64_t, uint64_t>> chunks; vector<pair<uint64_t, uint64_t>> cmp_chunks; size_t min_chunk = 200; size_t max_chunk = 800; rabin.do_rabin_chunks(bl, chunks, min_chunk, max_chunk); rabin.do_rabin_chunks(cmp_bl, cmp_chunks, min_chunk, max_chunk); // offset, len will be the same, except in the case of first offset ASSERT_EQ(chunks[4].first + 1, cmp_chunks[4].first); ASSERT_EQ(chunks[4].second, cmp_chunks[4].second); } void generate_buffer(int size, bufferlist *outbl) { outbl->clear(); outbl->append_zero(size); char *b = outbl->c_str(); std::mt19937_64 engine; for (size_t i = 0; i < size / sizeof(uint64_t); ++i) { ((uint64_t*)b)[i] = engine(); } } #if 0 this fails! TEST(Rabin, shifts) { RabinChunk rabin; rabin.set_target_bits(18, 2); for (int frontlen = 1; frontlen < 5; frontlen++) { bufferlist bl1, bl2; generate_buffer(4*1024*1024, &bl1); generate_buffer(frontlen, &bl2); bl2.append(bl1); bl2.rebuild(); vector<pair<uint64_t, uint64_t>> chunks1, chunks2; rabin.do_rabin_chunks(bl1, chunks1); rabin.do_rabin_chunks(bl2, chunks2); cout << "1: " << chunks1 << std::endl; cout << "2: " << chunks2 << std::endl; ASSERT_GE(chunks2.size(), chunks1.size()); int match = 0; for (unsigned i = 0; i < chunks1.size(); ++i) { unsigned j = i + (chunks2.size() - chunks1.size()); if (chunks1[i].first + frontlen == chunks2[j].first && chunks1[i].second == chunks2[j].second) { match++; } } ASSERT_GE(match, chunks1.size() - 1); } } #endif void do_size_histogram(RabinChunk& rabin, bufferlist& bl, map<int,int> *h) { vector<pair<uint64_t, uint64_t>> chunks; rabin.do_rabin_chunks(bl, chunks); for (auto& i : chunks) { unsigned b = i.second & 0xfffff000; //unsigned b = 1 << cbits(i.second); (*h)[b]++; } } void print_histogram(map<int,int>& h) { cout << "size\tcount" << std::endl; for (auto i : h) { cout << i.first << "\t" << i.second << std::endl; } } TEST(Rabin, chunk_random) { RabinChunk rabin; rabin.set_target_bits(18, 2); map<int,int> h; for (int i = 0; i < 8; ++i) { cout << "."; cout.flush(); bufferlist r; generate_buffer(16*1024*1024, &r); do_size_histogram(rabin, r, &h); } cout << std::endl; print_histogram(h); }
3,706
23.388158
76
cc
null
ceph-main/src/test/common/test_random.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2017 SUSE LINUX GmbH * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <sstream> #include "include/random.h" #include "gtest/gtest.h" // Helper to see if calls compile with various types: template <typename T> T type_check_ok(const T min, const T max) { return ceph::util::generate_random_number(min, max); } /* Help wrangle "unused variable" warnings: */ template <typename X> void swallow_values(const X x) { static_cast<void>(x); } template <typename X, typename ...XS> void swallow_values(const X x, const XS... xs) { swallow_values(x), swallow_values(xs...); } // Mini-examples showing canonical usage: TEST(util, test_random_canonical) { // Seed random number generation: ceph::util::randomize_rng(); // Get a random int between 0 and max int: auto a = ceph::util::generate_random_number(); // Get a random int between 0 and 20: auto b = ceph::util::generate_random_number(20); // Get a random int between 1 and 20: auto c = ceph::util::generate_random_number(1, 20); // Get a random float between 0.0 and 20.0: auto d = ceph::util::generate_random_number(20.0); // Get a random float between 0.001 and 0.991: auto e = ceph::util::generate_random_number(0.001, 0.991); // Make a function object RNG suitable for putting on its own thread: auto gen_fn = ceph::util::random_number_generator<int>(); auto z = gen_fn(); gen_fn.seed(42); // re-seed // Placate the compiler: swallow_values(a, b, c, d, e, z); } TEST(util, test_random) { /* The intent of this test is not to formally test random number generation, but rather to casually check that "it works" and catch regressions: */ // The default overload should compile: ceph::util::randomize_rng(); { int a = ceph::util::generate_random_number(); int b = ceph::util::generate_random_number(); /* Technically, this can still collide and cause a false negative, but let's be optimistic: */ if (std::numeric_limits<int>::max() > 32767) { ASSERT_NE(a, b); } } // Check that the nullary version accepts different numeric types: { long def = ceph::util::generate_random_number(); long l = ceph::util::generate_random_number<long>(); int64_t i = ceph::util::generate_random_number<int64_t>(); double d = ceph::util::generate_random_number<double>(); swallow_values(def, l, i, d); } // (optimistically) Check that the nullary and unary versions never return < 0: { for(long i = 0; 1000000 != i; i++) { ASSERT_LE(0, ceph::util::generate_random_number()); ASSERT_LE(0, ceph::util::generate_random_number(1)); ASSERT_LE(0, ceph::util::generate_random_number<float>(1.0)); } } { auto a = ceph::util::generate_random_number(1, std::numeric_limits<int>::max()); auto b = ceph::util::generate_random_number(1, std::numeric_limits<int>::max()); if (std::numeric_limits<int>::max() > 32767) { ASSERT_GT(a, 0); ASSERT_GT(b, 0); ASSERT_NE(a, b); } } for (auto n = 100000; n; --n) { int a = ceph::util::generate_random_number(0, 6); ASSERT_GT(a, -1); ASSERT_LT(a, 7); } // Check bounding on zero (checking appropriate value for zero compiles and works): for (auto n = 10; n; --n) { ASSERT_EQ(0, ceph::util::generate_random_number<int>(0, 0)); ASSERT_EQ(0, ceph::util::generate_random_number<float>(0.0, 0.0)); } // Multiple types (integral): { int min = 0, max = 1; type_check_ok(min, max); } { long min = 0, max = 1l; type_check_ok(min, max); } // Multiple types (floating point): { double min = 0.0, max = 1.0; type_check_ok(min, max); } { float min = 0.0, max = 1.0; type_check_ok(min, max); } // When combining types, everything should convert to the largest type: { // Check with integral types: { int x = 0; long long y = 1; auto z = ceph::util::generate_random_number(x, y); bool result = std::is_same_v<decltype(z), decltype(y)>; ASSERT_TRUE(result); } // Check with floating-point types: { float x = 0.0; long double y = 1.0; auto z = ceph::util::generate_random_number(x, y); bool result = std::is_same_v<decltype(z), decltype(y)>; ASSERT_TRUE(result); } // It would be nice to have a test to check that mixing integral and floating point // numbers should not compile, however we currently have no good way I know of // to do such negative tests. } } TEST(util, test_random_class_interface) { ceph::util::random_number_generator<int> rng_i; ceph::util::random_number_generator<float> rng_f; // Other ctors: { ceph::util::random_number_generator<int> rng(1234); // seed } // Test deduction guides: { { ceph::util::random_number_generator rng(1234); } #pragma clang diagnostic push // Turn this warning off, since we're checking that the deduction // guide works. (And we don't know what the seed type will // actually be.) #pragma clang diagnostic ignored "-Wliteral-conversion" { ceph::util::random_number_generator rng(1234.1234); } #pragma clang diagnostic pop { int x = 1234; ceph::util::random_number_generator rng(x); } } { int a = rng_i(); int b = rng_i(); // Technically can fail, but should "almost never" happen: ASSERT_NE(a, b); } { int a = rng_i(10); ASSERT_LE(a, 10); ASSERT_GE(a, 0); } { float a = rng_f(10.0); ASSERT_LE(a, 10.0); ASSERT_GE(a, 0.0); } { int a = rng_i(10, 20); ASSERT_LE(a, 20); ASSERT_GE(a, 10); } { float a = rng_f(10.0, 20.0); ASSERT_LE(a, 20.0); ASSERT_GE(a, 10.0); } }
6,051
23.502024
87
cc
null
ceph-main/src/test/common/test_safe_io.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <algorithm> #include <cstring> #include <fcntl.h> #include <unistd.h> #include "common/safe_io.h" #include "gtest/gtest.h" TEST(SafeIO, safe_read_file) { const char *fname = "safe_read_testfile"; ::unlink(fname); int fd = ::open(fname, O_RDWR|O_CREAT|O_TRUNC, 0600); ASSERT_NE(fd, -1); const char buf[] = "0123456789"; for (int i = 0; i < 8; i++) { ASSERT_EQ((ssize_t)sizeof(buf), write(fd, buf, sizeof(buf))); } ::close(fd); char rdata[80]; ASSERT_EQ((int)sizeof(rdata), safe_read_file(".", fname, rdata, sizeof(rdata))); for (char *p = rdata, *end = rdata+sizeof(rdata); p < end; p+=sizeof(buf)) { ASSERT_EQ(0, std::memcmp(p, buf, std::min(size_t(end-p), sizeof(buf)))); } ::unlink(fname); } // Local Variables: // compile-command: "cd ../.. ; // make unittest_safe_io && // ./unittest_safe_io" // End:
961
24.315789
78
cc
null
ceph-main/src/test/common/test_shared_cache.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * Cheng Cheng <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library Public License for more details. * */ #include <stdio.h> #include <signal.h> #include "gtest/gtest.h" #include "common/Thread.h" #include "common/shared_cache.hpp" using namespace std; class SharedLRUTest : public SharedLRU<unsigned int, int> { public: auto& get_lock() { return lock; } auto& get_cond() { return cond; } map<unsigned int, pair< std::weak_ptr<int>, int* > > &get_weak_refs() { return weak_refs; } }; class SharedLRU_all : public ::testing::Test { public: class Thread_wait : public Thread { public: SharedLRUTest &cache; unsigned int key; int value; std::shared_ptr<int> ptr; enum in_method_t { LOOKUP, LOWER_BOUND } in_method; Thread_wait(SharedLRUTest& _cache, unsigned int _key, int _value, in_method_t _in_method) : cache(_cache), key(_key), value(_value), in_method(_in_method) { } void * entry() override { switch (in_method) { case LOWER_BOUND: ptr = cache.lower_bound(key); break; case LOOKUP: ptr = std::shared_ptr<int>(new int); *ptr = value; ptr = cache.lookup(key); break; } return NULL; } }; static const useconds_t DELAY_MAX = 20 * 1000 * 1000; static useconds_t delay; bool wait_for(SharedLRUTest &cache, int waitting) { do { // // the delay variable is supposed to be initialized to zero. It would be fine // to usleep(0) but we take this opportunity to test the loop. It will try // again and therefore show that the logic ( increasing the delay ) actually // works. // if (delay > 0) usleep(delay); { std::lock_guard l{cache.get_lock()}; if (cache.waiting == waitting) { break; } } if (delay > 0) { cout << "delay " << delay << "us, is not long enough, try again\n"; } } while ((delay = delay * 2 + 1) < DELAY_MAX); return delay < DELAY_MAX; } }; useconds_t SharedLRU_all::delay = 0; TEST_F(SharedLRU_all, add) { SharedLRUTest cache; unsigned int key = 1; int value1 = 2; bool existed = false; { std::shared_ptr<int> ptr = cache.add(key, new int(value1), &existed); ASSERT_EQ(value1, *ptr); ASSERT_FALSE(existed); } { int value2 = 3; auto p = new int(value2); std::shared_ptr<int> ptr = cache.add(key, p, &existed); ASSERT_EQ(value1, *ptr); ASSERT_TRUE(existed); delete p; } } TEST_F(SharedLRU_all, empty) { SharedLRUTest cache; unsigned int key = 1; bool existed = false; ASSERT_TRUE(cache.empty()); { int value1 = 2; std::shared_ptr<int> ptr = cache.add(key, new int(value1), &existed); ASSERT_EQ(value1, *ptr); ASSERT_FALSE(existed); } ASSERT_FALSE(cache.empty()); cache.clear(key); ASSERT_TRUE(cache.empty()); } TEST_F(SharedLRU_all, lookup) { SharedLRUTest cache; unsigned int key = 1; { int value = 2; ASSERT_TRUE(cache.add(key, new int(value)).get()); ASSERT_TRUE(cache.lookup(key).get()); ASSERT_EQ(value, *cache.lookup(key)); } ASSERT_TRUE(cache.lookup(key).get()); } TEST_F(SharedLRU_all, lookup_or_create) { SharedLRUTest cache; { int value = 2; unsigned int key = 1; ASSERT_TRUE(cache.add(key, new int(value)).get()); ASSERT_TRUE(cache.lookup_or_create(key).get()); ASSERT_EQ(value, *cache.lookup(key)); } { unsigned int key = 2; ASSERT_TRUE(cache.lookup_or_create(key).get()); ASSERT_EQ(0, *cache.lookup(key)); } ASSERT_TRUE(cache.lookup(1).get()); ASSERT_TRUE(cache.lookup(2).get()); } TEST_F(SharedLRU_all, wait_lookup) { SharedLRUTest cache; unsigned int key = 1; int value = 2; { std::shared_ptr<int> ptr(new int); cache.get_weak_refs()[key] = make_pair(ptr, &*ptr); } EXPECT_FALSE(cache.get_weak_refs()[key].first.lock()); Thread_wait t(cache, key, value, Thread_wait::LOOKUP); t.create("wait_lookup_1"); ASSERT_TRUE(wait_for(cache, 1)); EXPECT_EQ(value, *t.ptr); // waiting on a key does not block lookups on other keys EXPECT_FALSE(cache.lookup(key + 12345)); { std::lock_guard l{cache.get_lock()}; cache.get_weak_refs().erase(key); cache.get_cond().notify_one(); } ASSERT_TRUE(wait_for(cache, 0)); t.join(); EXPECT_FALSE(t.ptr); } TEST_F(SharedLRU_all, wait_lookup_or_create) { SharedLRUTest cache; unsigned int key = 1; int value = 2; { std::shared_ptr<int> ptr(new int); cache.get_weak_refs()[key] = make_pair(ptr, &*ptr); } EXPECT_FALSE(cache.get_weak_refs()[key].first.lock()); Thread_wait t(cache, key, value, Thread_wait::LOOKUP); t.create("wait_lookup_2"); ASSERT_TRUE(wait_for(cache, 1)); EXPECT_EQ(value, *t.ptr); // waiting on a key does not block lookups on other keys EXPECT_TRUE(cache.lookup_or_create(key + 12345).get()); { std::lock_guard l{cache.get_lock()}; cache.get_weak_refs().erase(key); cache.get_cond().notify_one(); } ASSERT_TRUE(wait_for(cache, 0)); t.join(); EXPECT_FALSE(t.ptr); } TEST_F(SharedLRU_all, lower_bound) { SharedLRUTest cache; { unsigned int key = 1; ASSERT_FALSE(cache.lower_bound(key)); int value = 2; ASSERT_TRUE(cache.add(key, new int(value)).get()); ASSERT_TRUE(cache.lower_bound(key).get()); EXPECT_EQ(value, *cache.lower_bound(key)); } } TEST_F(SharedLRU_all, wait_lower_bound) { SharedLRUTest cache; unsigned int key = 1; int value = 2; unsigned int other_key = key + 1; int other_value = value + 1; ASSERT_TRUE(cache.add(other_key, new int(other_value)).get()); { std::shared_ptr<int> ptr(new int); cache.get_weak_refs()[key] = make_pair(ptr, &*ptr); } EXPECT_FALSE(cache.get_weak_refs()[key].first.lock()); Thread_wait t(cache, key, value, Thread_wait::LOWER_BOUND); t.create("wait_lower_bnd"); ASSERT_TRUE(wait_for(cache, 1)); EXPECT_FALSE(t.ptr); // waiting on a key does not block getting lower_bound on other keys EXPECT_TRUE(cache.lower_bound(other_key).get()); { std::lock_guard l{cache.get_lock()}; cache.get_weak_refs().erase(key); cache.get_cond().notify_one(); } ASSERT_TRUE(wait_for(cache, 0)); t.join(); EXPECT_TRUE(t.ptr.get()); } TEST_F(SharedLRU_all, get_next) { { SharedLRUTest cache; const unsigned int key = 0; pair<unsigned int, int> i; EXPECT_FALSE(cache.get_next(key, &i)); } { SharedLRUTest cache; const unsigned int key2 = 333; std::shared_ptr<int> ptr2 = cache.lookup_or_create(key2); const int value2 = *ptr2 = 400; // entries with expired pointers are silently ignored const unsigned int key_gone = 222; cache.get_weak_refs()[key_gone] = make_pair(std::shared_ptr<int>(), (int*)0); const unsigned int key1 = 111; std::shared_ptr<int> ptr1 = cache.lookup_or_create(key1); const int value1 = *ptr1 = 800; pair<unsigned int, int> i; EXPECT_TRUE(cache.get_next(0, &i)); EXPECT_EQ(key1, i.first); EXPECT_EQ(value1, i.second); EXPECT_TRUE(cache.get_next(i.first, &i)); EXPECT_EQ(key2, i.first); EXPECT_EQ(value2, i.second); EXPECT_FALSE(cache.get_next(i.first, &i)); cache.get_weak_refs().clear(); } { SharedLRUTest cache; const unsigned int key1 = 111; std::shared_ptr<int> *ptr1 = new shared_ptr<int>(cache.lookup_or_create(key1)); const unsigned int key2 = 222; std::shared_ptr<int> ptr2 = cache.lookup_or_create(key2); pair<unsigned int, std::shared_ptr<int> > i; EXPECT_TRUE(cache.get_next(i.first, &i)); EXPECT_EQ(key1, i.first); delete ptr1; EXPECT_TRUE(cache.get_next(i.first, &i)); EXPECT_EQ(key2, i.first); } } TEST_F(SharedLRU_all, clear) { SharedLRUTest cache; unsigned int key = 1; int value = 2; { std::shared_ptr<int> ptr = cache.add(key, new int(value)); ASSERT_EQ(value, *cache.lookup(key)); } ASSERT_TRUE(cache.lookup(key).get()); cache.clear(key); ASSERT_FALSE(cache.lookup(key)); { std::shared_ptr<int> ptr = cache.add(key, new int(value)); } ASSERT_TRUE(cache.lookup(key).get()); cache.clear(key); ASSERT_FALSE(cache.lookup(key)); } TEST_F(SharedLRU_all, clear_all) { SharedLRUTest cache; unsigned int key = 1; int value = 2; { std::shared_ptr<int> ptr = cache.add(key, new int(value)); ASSERT_EQ(value, *cache.lookup(key)); } ASSERT_TRUE(cache.lookup(key).get()); cache.clear(); ASSERT_FALSE(cache.lookup(key)); std::shared_ptr<int> ptr2 = cache.add(key, new int(value)); ASSERT_TRUE(cache.lookup(key).get()); cache.clear(); ASSERT_TRUE(cache.lookup(key).get()); ASSERT_FALSE(cache.empty()); } TEST(SharedCache_all, add) { SharedLRU<int, int> cache; unsigned int key = 1; int value = 2; std::shared_ptr<int> ptr = cache.add(key, new int(value)); ASSERT_EQ(ptr, cache.lookup(key)); ASSERT_EQ(value, *cache.lookup(key)); } TEST(SharedCache_all, lru) { const size_t SIZE = 5; SharedLRU<int, int> cache(NULL, SIZE); bool existed = false; std::shared_ptr<int> ptr = cache.add(0, new int(0), &existed); ASSERT_FALSE(existed); { int *tmpint = new int(0); std::shared_ptr<int> ptr2 = cache.add(0, tmpint, &existed); ASSERT_TRUE(existed); delete tmpint; } for (size_t i = 1; i < 2*SIZE; ++i) { cache.add(i, new int(i), &existed); ASSERT_FALSE(existed); } ASSERT_TRUE(cache.lookup(0).get()); ASSERT_EQ(0, *cache.lookup(0)); ASSERT_FALSE(cache.lookup(SIZE-1)); ASSERT_FALSE(cache.lookup(SIZE)); ASSERT_TRUE(cache.lookup(SIZE+1).get()); ASSERT_EQ((int)SIZE+1, *cache.lookup(SIZE+1)); cache.purge(0); ASSERT_FALSE(cache.lookup(0)); std::shared_ptr<int> ptr2 = cache.add(0, new int(0), &existed); ASSERT_FALSE(ptr == ptr2); ptr = std::shared_ptr<int>(); ASSERT_TRUE(cache.lookup(0).get()); } // Local Variables: // compile-command: "cd ../.. ; make unittest_shared_cache && ./unittest_shared_cache # --gtest_filter=*.* --log-to-stderr=true" // End:
10,749
25.80798
128
cc
null
ceph-main/src/test/common/test_sharedptr_registry.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library Public License for more details. * */ #include <stdio.h> #include <signal.h> #include "gtest/gtest.h" #include "common/Thread.h" #include "common/sharedptr_registry.hpp" #include "common/ceph_argparse.h" using namespace std; class SharedPtrRegistryTest : public SharedPtrRegistry<unsigned int, int> { public: ceph::mutex &get_lock() { return lock; } map<unsigned int, pair<std::weak_ptr<int>, int*> > &get_contents() { return contents; } }; class SharedPtrRegistry_all : public ::testing::Test { public: class Thread_wait : public Thread { public: SharedPtrRegistryTest &registry; unsigned int key; int value; std::shared_ptr<int> ptr; enum in_method_t { LOOKUP, LOOKUP_OR_CREATE } in_method; Thread_wait(SharedPtrRegistryTest& _registry, unsigned int _key, int _value, in_method_t _in_method) : registry(_registry), key(_key), value(_value), in_method(_in_method) { } void *entry() override { switch(in_method) { case LOOKUP_OR_CREATE: if (value) ptr = registry.lookup_or_create<int>(key, value); else ptr = registry.lookup_or_create(key); break; case LOOKUP: ptr = std::shared_ptr<int>(new int); *ptr = value; ptr = registry.lookup(key); break; } return NULL; } }; static const useconds_t DELAY_MAX = 20 * 1000 * 1000; static useconds_t delay; bool wait_for(SharedPtrRegistryTest &registry, int waiting) { do { // // the delay variable is supposed to be initialized to zero. It would be fine // to usleep(0) but we take this opportunity to test the loop. It will try // again and therefore show that the logic ( increasing the delay ) actually // works. // if (delay > 0) usleep(delay); { std::lock_guard l(registry.get_lock()); if (registry.waiting == waiting) break; } if (delay > 0) cout << "delay " << delay << "us, is not long enough, try again\n"; } while (( delay = delay * 2 + 1) < DELAY_MAX); return delay < DELAY_MAX; } }; useconds_t SharedPtrRegistry_all::delay = 0; TEST_F(SharedPtrRegistry_all, lookup_or_create) { SharedPtrRegistryTest registry; unsigned int key = 1; int value = 2; std::shared_ptr<int> ptr = registry.lookup_or_create(key); *ptr = value; ASSERT_EQ(value, *registry.lookup_or_create(key)); } TEST_F(SharedPtrRegistry_all, wait_lookup_or_create) { SharedPtrRegistryTest registry; // // simulate the following: The last reference to a shared_ptr goes // out of scope and the shared_ptr object is about to be removed and // marked as such. The weak_ptr stored in the registry will show // that it has expired(). However, the SharedPtrRegistry::OnRemoval // object has not yet been called and did not get a chance to // acquire the lock. The lookup_or_create and lookup methods must // detect that situation and wait until the weak_ptr is removed from // the registry. // { unsigned int key = 1; { std::shared_ptr<int> ptr(new int); registry.get_contents()[key] = make_pair(ptr, ptr.get()); } EXPECT_FALSE(registry.get_contents()[key].first.lock()); Thread_wait t(registry, key, 0, Thread_wait::LOOKUP_OR_CREATE); t.create("wait_lookcreate"); ASSERT_TRUE(wait_for(registry, 1)); EXPECT_FALSE(t.ptr); // waiting on a key does not block lookups on other keys EXPECT_TRUE(registry.lookup_or_create(key + 12345).get()); registry.remove(key); ASSERT_TRUE(wait_for(registry, 0)); t.join(); EXPECT_TRUE(t.ptr.get()); } { unsigned int key = 2; int value = 3; { std::shared_ptr<int> ptr(new int); registry.get_contents()[key] = make_pair(ptr, ptr.get()); } EXPECT_FALSE(registry.get_contents()[key].first.lock()); Thread_wait t(registry, key, value, Thread_wait::LOOKUP_OR_CREATE); t.create("wait_lookcreate"); ASSERT_TRUE(wait_for(registry, 1)); EXPECT_FALSE(t.ptr); // waiting on a key does not block lookups on other keys { int other_value = value + 1; unsigned int other_key = key + 1; std::shared_ptr<int> ptr = registry.lookup_or_create<int>(other_key, other_value); EXPECT_TRUE(ptr.get()); EXPECT_EQ(other_value, *ptr); } registry.remove(key); ASSERT_TRUE(wait_for(registry, 0)); t.join(); EXPECT_TRUE(t.ptr.get()); EXPECT_EQ(value, *t.ptr); } } TEST_F(SharedPtrRegistry_all, lookup) { SharedPtrRegistryTest registry; unsigned int key = 1; { std::shared_ptr<int> ptr = registry.lookup_or_create(key); int value = 2; *ptr = value; ASSERT_EQ(value, *registry.lookup(key)); } ASSERT_FALSE(registry.lookup(key)); } TEST_F(SharedPtrRegistry_all, wait_lookup) { SharedPtrRegistryTest registry; unsigned int key = 1; int value = 2; { std::shared_ptr<int> ptr(new int); registry.get_contents()[key] = make_pair(ptr, ptr.get()); } EXPECT_FALSE(registry.get_contents()[key].first.lock()); Thread_wait t(registry, key, value, Thread_wait::LOOKUP); t.create("wait_lookup"); ASSERT_TRUE(wait_for(registry, 1)); EXPECT_EQ(value, *t.ptr); // waiting on a key does not block lookups on other keys EXPECT_FALSE(registry.lookup(key + 12345)); registry.remove(key); ASSERT_TRUE(wait_for(registry, 0)); t.join(); EXPECT_FALSE(t.ptr); } TEST_F(SharedPtrRegistry_all, get_next) { { SharedPtrRegistry<unsigned int,int> registry; const unsigned int key = 0; pair<unsigned int, int> i; EXPECT_FALSE(registry.get_next(key, &i)); } { SharedPtrRegistryTest registry; const unsigned int key2 = 333; std::shared_ptr<int> ptr2 = registry.lookup_or_create(key2); const int value2 = *ptr2 = 400; // entries with expired pointers are silentely ignored const unsigned int key_gone = 222; registry.get_contents()[key_gone] = make_pair(std::shared_ptr<int>(), (int*)0); const unsigned int key1 = 111; std::shared_ptr<int> ptr1 = registry.lookup_or_create(key1); const int value1 = *ptr1 = 800; pair<unsigned int, int> i; EXPECT_TRUE(registry.get_next(i.first, &i)); EXPECT_EQ(key1, i.first); EXPECT_EQ(value1, i.second); EXPECT_TRUE(registry.get_next(i.first, &i)); EXPECT_EQ(key2, i.first); EXPECT_EQ(value2, i.second); EXPECT_FALSE(registry.get_next(i.first, &i)); } { // // http://tracker.ceph.com/issues/6117 // reproduce the issue. // SharedPtrRegistryTest registry; const unsigned int key1 = 111; std::shared_ptr<int> *ptr1 = new std::shared_ptr<int>(registry.lookup_or_create(key1)); const unsigned int key2 = 222; std::shared_ptr<int> ptr2 = registry.lookup_or_create(key2); pair<unsigned int, std::shared_ptr<int> > i; EXPECT_TRUE(registry.get_next(i.first, &i)); EXPECT_EQ(key1, i.first); delete ptr1; EXPECT_TRUE(registry.get_next(i.first, &i)); EXPECT_EQ(key2, i.first); } } TEST_F(SharedPtrRegistry_all, remove) { { SharedPtrRegistryTest registry; const unsigned int key1 = 1; std::shared_ptr<int> ptr1 = registry.lookup_or_create(key1); *ptr1 = 400; registry.remove(key1); std::shared_ptr<int> ptr2 = registry.lookup_or_create(key1); *ptr2 = 500; ptr1 = std::shared_ptr<int>(); std::shared_ptr<int> res = registry.lookup(key1); ceph_assert(res); ceph_assert(res == ptr2); ceph_assert(*res == 500); } { SharedPtrRegistryTest registry; const unsigned int key1 = 1; std::shared_ptr<int> ptr1 = registry.lookup_or_create(key1, 400); registry.remove(key1); std::shared_ptr<int> ptr2 = registry.lookup_or_create(key1, 500); ptr1 = std::shared_ptr<int>(); std::shared_ptr<int> res = registry.lookup(key1); ceph_assert(res); ceph_assert(res == ptr2); ceph_assert(*res == 500); } } class SharedPtrRegistry_destructor : public ::testing::Test { public: typedef enum { UNDEFINED, YES, NO } DieEnum; static DieEnum died; struct TellDie { TellDie() { died = NO; } ~TellDie() { died = YES; } int value = 0; }; void SetUp() override { died = UNDEFINED; } }; SharedPtrRegistry_destructor::DieEnum SharedPtrRegistry_destructor::died = SharedPtrRegistry_destructor::UNDEFINED; TEST_F(SharedPtrRegistry_destructor, destructor) { SharedPtrRegistry<int,TellDie> registry; EXPECT_EQ(UNDEFINED, died); int key = 101; { std::shared_ptr<TellDie> a = registry.lookup_or_create(key); EXPECT_EQ(NO, died); EXPECT_TRUE(a.get()); } EXPECT_EQ(YES, died); EXPECT_FALSE(registry.lookup(key)); } // Local Variables: // compile-command: "cd ../.. ; make unittest_sharedptr_registry && ./unittest_sharedptr_registry # --gtest_filter=*.* --log-to-stderr=true" // End:
9,518
27.758308
140
cc
null
ceph-main/src/test/common/test_shunique_lock.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 &smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2011 New Dream Network * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License version 2, as published by the Free Software * Foundation. See file COPYING. * */ #include <future> #include <mutex> #include <shared_mutex> #include <thread> #include "common/ceph_time.h" #include "common/shunique_lock.h" #include "gtest/gtest.h" template<typename SharedMutex> static bool test_try_lock(SharedMutex* sm) { if (!sm->try_lock()) return false; sm->unlock(); return true; } template<typename SharedMutex> static bool test_try_lock_shared(SharedMutex* sm) { if (!sm->try_lock_shared()) return false; sm->unlock_shared(); return true; } template<typename SharedMutex, typename AcquireType> static void check_conflicts(SharedMutex sm, AcquireType) { } template<typename SharedMutex> static void ensure_conflicts(SharedMutex& sm, ceph::acquire_unique_t) { auto ttl = &test_try_lock<std::shared_timed_mutex>; auto ttls = &test_try_lock_shared<std::shared_timed_mutex>; ASSERT_FALSE(std::async(std::launch::async, ttl, &sm).get()); ASSERT_FALSE(std::async(std::launch::async, ttls, &sm).get()); } template<typename SharedMutex> static void ensure_conflicts(SharedMutex& sm, ceph::acquire_shared_t) { auto ttl = &test_try_lock<std::shared_timed_mutex>; auto ttls = &test_try_lock_shared<std::shared_timed_mutex>; ASSERT_FALSE(std::async(std::launch::async, ttl, &sm).get()); ASSERT_TRUE(std::async(std::launch::async, ttls, &sm).get()); } template<typename SharedMutex> static void ensure_free(SharedMutex& sm) { auto ttl = &test_try_lock<std::shared_timed_mutex>; auto ttls = &test_try_lock_shared<std::shared_timed_mutex>; ASSERT_TRUE(std::async(std::launch::async, ttl, &sm).get()); ASSERT_TRUE(std::async(std::launch::async, ttls, &sm).get()); } template<typename SharedMutex, typename AcquireType> static void check_owns_lock(const SharedMutex& sm, const ceph::shunique_lock<SharedMutex>& sul, AcquireType) { } template<typename SharedMutex> static void check_owns_lock(const SharedMutex& sm, const ceph::shunique_lock<SharedMutex>& sul, ceph::acquire_unique_t) { ASSERT_TRUE(sul.mutex() == &sm); ASSERT_TRUE(sul.owns_lock()); ASSERT_TRUE(!!sul); } template<typename SharedMutex> static void check_owns_lock(const SharedMutex& sm, const ceph::shunique_lock<SharedMutex>& sul, ceph::acquire_shared_t) { ASSERT_TRUE(sul.owns_lock_shared()); ASSERT_TRUE(!!sul); } template<typename SharedMutex> static void check_abjures_lock(const SharedMutex& sm, const ceph::shunique_lock<SharedMutex>& sul) { ASSERT_EQ(sul.mutex(), &sm); ASSERT_FALSE(sul.owns_lock()); ASSERT_FALSE(sul.owns_lock_shared()); ASSERT_FALSE(!!sul); } template<typename SharedMutex> static void check_abjures_lock(const ceph::shunique_lock<SharedMutex>& sul) { ASSERT_EQ(sul.mutex(), nullptr); ASSERT_FALSE(sul.owns_lock()); ASSERT_FALSE(sul.owns_lock_shared()); ASSERT_FALSE(!!sul); } TEST(ShuniqueLock, DefaultConstructor) { typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; shunique_lock l; ASSERT_EQ(l.mutex(), nullptr); ASSERT_FALSE(l.owns_lock()); ASSERT_FALSE(!!l); ASSERT_THROW(l.lock(), std::system_error); ASSERT_THROW(l.try_lock(), std::system_error); ASSERT_THROW(l.lock_shared(), std::system_error); ASSERT_THROW(l.try_lock_shared(), std::system_error); ASSERT_THROW(l.unlock(), std::system_error); ASSERT_EQ(l.mutex(), nullptr); ASSERT_FALSE(l.owns_lock()); ASSERT_FALSE(!!l); ASSERT_EQ(l.release(), nullptr); ASSERT_EQ(l.mutex(), nullptr); ASSERT_FALSE(l.owns_lock()); ASSERT_FALSE(l.owns_lock_shared()); ASSERT_FALSE(!!l); } template<typename AcquireType> void lock_unlock(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; shunique_lock l(sm, at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); l.unlock(); check_abjures_lock(sm, l); ensure_free(sm); l.lock(at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } TEST(ShuniqueLock, LockUnlock) { lock_unlock(ceph::acquire_unique); lock_unlock(ceph::acquire_shared); } template<typename AcquireType> void lock_destruct(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } ensure_free(sm); } TEST(ShuniqueLock, LockDestruct) { lock_destruct(ceph::acquire_unique); lock_destruct(ceph::acquire_shared); } template<typename AcquireType> void move_construct(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); shunique_lock o(std::move(l)); check_abjures_lock(l); check_owns_lock(sm, o, at); ensure_conflicts(sm, at); o.unlock(); shunique_lock c(std::move(o)); ASSERT_EQ(o.mutex(), nullptr); ASSERT_FALSE(!!o); check_abjures_lock(sm, c); ensure_free(sm); } } TEST(ShuniqueLock, MoveConstruct) { move_construct(ceph::acquire_unique); move_construct(ceph::acquire_shared); std::shared_timed_mutex sm; { std::unique_lock<std::shared_timed_mutex> ul(sm); ensure_conflicts(sm, ceph::acquire_unique); ceph::shunique_lock<std::shared_timed_mutex> l(std::move(ul)); check_owns_lock(sm, l, ceph::acquire_unique); ensure_conflicts(sm, ceph::acquire_unique); } { std::unique_lock<std::shared_timed_mutex> ul(sm, std::defer_lock); ensure_free(sm); ceph::shunique_lock<std::shared_timed_mutex> l(std::move(ul)); check_abjures_lock(sm, l); ensure_free(sm); } { std::unique_lock<std::shared_timed_mutex> ul; ceph::shunique_lock<std::shared_timed_mutex> l(std::move(ul)); check_abjures_lock(l); } { std::shared_lock<std::shared_timed_mutex> sl(sm); ensure_conflicts(sm, ceph::acquire_shared); ceph::shunique_lock<std::shared_timed_mutex> l(std::move(sl)); check_owns_lock(sm, l, ceph::acquire_shared); ensure_conflicts(sm, ceph::acquire_shared); } { std::shared_lock<std::shared_timed_mutex> sl; ceph::shunique_lock<std::shared_timed_mutex> l(std::move(sl)); check_abjures_lock(l); } } template<typename AcquireType> void move_assign(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); shunique_lock o; o = std::move(l); check_abjures_lock(l); check_owns_lock(sm, o, at); ensure_conflicts(sm, at); o.unlock(); shunique_lock c(std::move(o)); check_abjures_lock(o); check_abjures_lock(sm, c); ensure_free(sm); shunique_lock k; c = std::move(k); check_abjures_lock(k); check_abjures_lock(c); ensure_free(sm); } } TEST(ShuniqueLock, MoveAssign) { move_assign(ceph::acquire_unique); move_assign(ceph::acquire_shared); std::shared_timed_mutex sm; { std::unique_lock<std::shared_timed_mutex> ul(sm); ensure_conflicts(sm, ceph::acquire_unique); ceph::shunique_lock<std::shared_timed_mutex> l; l = std::move(ul); check_owns_lock(sm, l, ceph::acquire_unique); ensure_conflicts(sm, ceph::acquire_unique); } { std::unique_lock<std::shared_timed_mutex> ul(sm, std::defer_lock); ensure_free(sm); ceph::shunique_lock<std::shared_timed_mutex> l; l = std::move(ul); check_abjures_lock(sm, l); ensure_free(sm); } { std::unique_lock<std::shared_timed_mutex> ul; ceph::shunique_lock<std::shared_timed_mutex> l; l = std::move(ul); check_abjures_lock(l); } { std::shared_lock<std::shared_timed_mutex> sl(sm); ensure_conflicts(sm, ceph::acquire_shared); ceph::shunique_lock<std::shared_timed_mutex> l; l = std::move(sl); check_owns_lock(sm, l, ceph::acquire_shared); ensure_conflicts(sm, ceph::acquire_shared); } { std::shared_lock<std::shared_timed_mutex> sl; ceph::shunique_lock<std::shared_timed_mutex> l; l = std::move(sl); check_abjures_lock(l); } } template<typename AcquireType> void construct_deferred(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, std::defer_lock); check_abjures_lock(sm, l); ensure_free(sm); ASSERT_THROW(l.unlock(), std::system_error); check_abjures_lock(sm, l); ensure_free(sm); l.lock(at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } { shunique_lock l(sm, std::defer_lock); check_abjures_lock(sm, l); ensure_free(sm); ASSERT_THROW(l.unlock(), std::system_error); check_abjures_lock(sm, l); ensure_free(sm); } ensure_free(sm); } TEST(ShuniqueLock, ConstructDeferred) { construct_deferred(ceph::acquire_unique); construct_deferred(ceph::acquire_shared); } template<typename AcquireType> void construct_try(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, at, std::try_to_lock); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } { std::unique_lock<std::shared_timed_mutex> l(sm); ensure_conflicts(sm, ceph::acquire_unique); std::async(std::launch::async, [&sm, at]() { shunique_lock l(sm, at, std::try_to_lock); check_abjures_lock(sm, l); ensure_conflicts(sm, ceph::acquire_unique); }).get(); l.unlock(); std::async(std::launch::async, [&sm, at]() { shunique_lock l(sm, at, std::try_to_lock); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); }).get(); } } TEST(ShuniqueLock, ConstructTry) { construct_try(ceph::acquire_unique); construct_try(ceph::acquire_shared); } template<typename AcquireType> void construct_adopt(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock d(sm, at); d.release(); } ensure_conflicts(sm, at); { shunique_lock l(sm, at, std::adopt_lock); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } ensure_free(sm); } TEST(ShuniqueLock, ConstructAdopt) { construct_adopt(ceph::acquire_unique); construct_adopt(ceph::acquire_shared); } template<typename AcquireType> void try_lock(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, std::defer_lock); l.try_lock(at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } { std::unique_lock<std::shared_timed_mutex> l(sm); std::async(std::launch::async, [&sm, at]() { shunique_lock l(sm, std::defer_lock); l.try_lock(at); check_abjures_lock(sm, l); ensure_conflicts(sm, ceph::acquire_unique); }).get(); l.unlock(); std::async(std::launch::async, [&sm, at]() { shunique_lock l(sm, std::defer_lock); l.try_lock(at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); }).get(); } } TEST(ShuniqueLock, TryLock) { try_lock(ceph::acquire_unique); try_lock(ceph::acquire_shared); } TEST(ShuniqueLock, Release) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, ceph::acquire_unique); check_owns_lock(sm, l, ceph::acquire_unique); ensure_conflicts(sm, ceph::acquire_unique); l.release(); check_abjures_lock(l); ensure_conflicts(sm, ceph::acquire_unique); } ensure_conflicts(sm, ceph::acquire_unique); sm.unlock(); ensure_free(sm); { shunique_lock l(sm, ceph::acquire_shared); check_owns_lock(sm, l, ceph::acquire_shared); ensure_conflicts(sm, ceph::acquire_shared); l.release(); check_abjures_lock(l); ensure_conflicts(sm, ceph::acquire_shared); } ensure_conflicts(sm, ceph::acquire_shared); sm.unlock_shared(); ensure_free(sm); sm.lock(); { shunique_lock l(sm, std::defer_lock); check_abjures_lock(sm, l); ensure_conflicts(sm, ceph::acquire_unique); l.release(); check_abjures_lock(l); ensure_conflicts(sm, ceph::acquire_unique); } ensure_conflicts(sm, ceph::acquire_unique); sm.unlock(); ensure_free(sm); { std::unique_lock<std::shared_timed_mutex> ul; shunique_lock l(sm, std::defer_lock); check_abjures_lock(sm, l); ensure_free(sm); ASSERT_NO_THROW(ul = l.release_to_unique()); check_abjures_lock(l); ASSERT_EQ(ul.mutex(), &sm); ASSERT_FALSE(ul.owns_lock()); ensure_free(sm); } ensure_free(sm); { std::unique_lock<std::shared_timed_mutex> ul; shunique_lock l; check_abjures_lock(l); ASSERT_NO_THROW(ul = l.release_to_unique()); check_abjures_lock(l); ASSERT_EQ(ul.mutex(), nullptr); ASSERT_FALSE(ul.owns_lock()); } } TEST(ShuniqueLock, NoRecursion) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, ceph::acquire_unique); ASSERT_THROW(l.lock(), std::system_error); ASSERT_THROW(l.try_lock(), std::system_error); ASSERT_THROW(l.lock_shared(), std::system_error); ASSERT_THROW(l.try_lock_shared(), std::system_error); } { shunique_lock l(sm, ceph::acquire_shared); ASSERT_THROW(l.lock(), std::system_error); ASSERT_THROW(l.try_lock(), std::system_error); ASSERT_THROW(l.lock_shared(), std::system_error); ASSERT_THROW(l.try_lock_shared(), std::system_error); } }
13,996
23.300347
77
cc
null
ceph-main/src/test/common/test_sloppy_crc_map.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <iostream> #include "common/SloppyCRCMap.h" #include "common/Formatter.h" #include <gtest/gtest.h> using namespace std; void dump(const SloppyCRCMap& scm) { auto f = Formatter::create_unique("json-pretty"); f->open_object_section("map"); scm.dump(f.get()); f->close_section(); f->flush(cout); } TEST(SloppyCRCMap, basic) { SloppyCRCMap scm(4); bufferlist a, b; a.append("The quick brown fox jumped over a fence whose color I forget."); b.append("asdf"); scm.write(0, a.length(), a); if (0) dump(scm); ASSERT_EQ(0, scm.read(0, a.length(), a, &cout)); scm.write(12, b.length(), b); if (0) dump(scm); ASSERT_EQ(0, scm.read(12, b.length(), b, &cout)); ASSERT_EQ(1, scm.read(0, a.length(), a, &cout)); } TEST(SloppyCRCMap, truncate) { SloppyCRCMap scm(4); bufferlist a, b; a.append("asdf"); b.append("qwer"); scm.write(0, a.length(), a); scm.write(4, a.length(), a); ASSERT_EQ(0, scm.read(4, 4, a, &cout)); ASSERT_EQ(1, scm.read(4, 4, b, &cout)); scm.truncate(4); ASSERT_EQ(0, scm.read(4, 4, b, &cout)); } TEST(SloppyCRCMap, zero) { SloppyCRCMap scm(4); bufferlist a, b; a.append("asdf"); b.append("qwer"); scm.write(0, a.length(), a); scm.write(4, a.length(), a); ASSERT_EQ(0, scm.read(4, 4, a, &cout)); ASSERT_EQ(1, scm.read(4, 4, b, &cout)); scm.zero(4, 4); ASSERT_EQ(1, scm.read(4, 4, a, &cout)); ASSERT_EQ(1, scm.read(4, 4, b, &cout)); bufferptr bp(4); bp.zero(); bufferlist c; c.append(bp); ASSERT_EQ(0, scm.read(0, 4, a, &cout)); ASSERT_EQ(0, scm.read(4, 4, c, &cout)); scm.zero(0, 15); ASSERT_EQ(1, scm.read(0, 4, a, &cout)); ASSERT_EQ(0, scm.read(0, 4, c, &cout)); } TEST(SloppyCRCMap, clone_range) { SloppyCRCMap src(4); SloppyCRCMap dst(4); bufferlist a, b; a.append("asdfghjkl"); b.append("qwertyui"); src.write(0, a.length(), a); src.write(8, a.length(), a); src.write(16, a.length(), a); dst.write(0, b.length(), b); dst.clone_range(0, 8, 0, src); ASSERT_EQ(2, dst.read(0, 8, b, &cout)); ASSERT_EQ(0, dst.read(8, 8, b, &cout)); dst.write(16, b.length(), b); ASSERT_EQ(2, dst.read(16, 8, a, &cout)); dst.clone_range(16, 8, 16, src); ASSERT_EQ(0, dst.read(16, 8, a, &cout)); dst.write(16, b.length(), b); ASSERT_EQ(1, dst.read(16, 4, a, &cout)); dst.clone_range(16, 8, 2, src); ASSERT_EQ(0, dst.read(16, 4, a, &cout)); dst.write(0, b.length(), b); dst.write(8, b.length(), b); ASSERT_EQ(2, dst.read(0, 8, a, &cout)); ASSERT_EQ(2, dst.read(8, 8, a, &cout)); dst.clone_range(2, 8, 0, src); ASSERT_EQ(0, dst.read(0, 8, a, &cout)); ASSERT_EQ(0, dst.read(8, 4, a, &cout)); }
2,761
22.606838
76
cc
null
ceph-main/src/test/common/test_split.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab ft=cpp /* * Ceph - scalable distributed file system * * Copyright (C) 2019 Red Hat, Inc. * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/split.h" #include <algorithm> #include <gtest/gtest.h> namespace ceph { using string_list = std::initializer_list<std::string_view>; bool operator==(const split& lhs, const string_list& rhs) { return std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); } bool operator==(const string_list& lhs, const split& rhs) { return std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); } TEST(split, split) { EXPECT_EQ(string_list({}), split("")); EXPECT_EQ(string_list({}), split(",")); EXPECT_EQ(string_list({}), split(",;")); EXPECT_EQ(string_list({"a"}), split("a,;")); EXPECT_EQ(string_list({"a"}), split(",a;")); EXPECT_EQ(string_list({"a"}), split(",;a")); EXPECT_EQ(string_list({"a", "b"}), split("a,b;")); EXPECT_EQ(string_list({"a", "b"}), split("a,;b")); EXPECT_EQ(string_list({"a", "b"}), split(",a;b")); } TEST(split, iterator_indirection) { const auto parts = split("a,b"); auto i = parts.begin(); ASSERT_NE(i, parts.end()); EXPECT_EQ("a", *i); // test operator* } TEST(split, iterator_dereference) { const auto parts = split("a,b"); auto i = parts.begin(); ASSERT_NE(i, parts.end()); EXPECT_EQ(1, i->size()); // test operator-> } TEST(split, iterator_pre_increment) { const auto parts = split("a,b"); auto i = parts.begin(); ASSERT_NE(i, parts.end()); ASSERT_EQ("a", *i); EXPECT_EQ("b", *++i); // test operator++() EXPECT_EQ("b", *i); } TEST(split, iterator_post_increment) { const auto parts = split("a,b"); auto i = parts.begin(); ASSERT_NE(i, parts.end()); ASSERT_EQ("a", *i); EXPECT_EQ("a", *i++); // test operator++(int) ASSERT_NE(parts.end(), i); EXPECT_EQ("b", *i); } TEST(split, iterator_singular) { const auto parts = split("a,b"); auto i = parts.begin(); // test comparions against default-constructed 'singular' iterators split::iterator j; split::iterator k; EXPECT_EQ(j, parts.end()); // singular == end EXPECT_EQ(j, k); // singular == singular EXPECT_NE(j, i); // singular != valid } TEST(split, iterator_multipass) { const auto parts = split("a,b"); auto i = parts.begin(); ASSERT_NE(i, parts.end()); // copy the iterator to test LegacyForwardIterator's multipass guarantee auto j = i; ASSERT_EQ(i, j); ASSERT_EQ("a", *i); ASSERT_NE(parts.end(), ++i); EXPECT_EQ("b", *i); ASSERT_EQ("a", *j); // test that ++i left j unmodified ASSERT_NE(parts.end(), ++j); EXPECT_EQ("b", *j); EXPECT_EQ(i, j); } } // namespace ceph
2,923
23.366667
74
cc
null
ceph-main/src/test/common/test_static_ptr.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2017 Red Hat, Inc. * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <compare> #include <gtest/gtest.h> #include "common/static_ptr.h" using ceph::static_ptr; using ceph::make_static; class base { public: virtual int func() = 0; virtual ~base() = default; }; class sibling1 : public base { public: int func() override { return 0; } }; class sibling2 : public base { public: int func() override { return 9; } virtual int call(int) = 0; }; class grandchild : public sibling2 { protected: int val; public: explicit grandchild(int val) : val(val) {} virtual int call(int n) override { return n * val; } }; class great_grandchild : public grandchild { public: explicit great_grandchild(int val) : grandchild(val) {} int call(int n) override { return n + val; } }; #ifdef __cpp_lib_three_way_comparison TEST(StaticPtr, EmptyCreation) { static_ptr<base, sizeof(grandchild)> p; EXPECT_FALSE(p); EXPECT_EQ(p, nullptr); EXPECT_EQ(nullptr, p); EXPECT_TRUE(p.get() == nullptr); } TEST(StaticPtr, CreationCall) { { static_ptr<base, sizeof(grandchild)> p(std::in_place_type_t<sibling1>{}); EXPECT_TRUE(p); EXPECT_FALSE(p == nullptr); EXPECT_FALSE(nullptr == p); EXPECT_FALSE(p.get() == nullptr); EXPECT_EQ(p->func(), 0); EXPECT_EQ((*p).func(), 0); EXPECT_EQ((p.get())->func(), 0); } { auto p = make_static<base, sibling1>(); EXPECT_TRUE(p); EXPECT_FALSE(p == nullptr); EXPECT_FALSE(nullptr == p); EXPECT_FALSE(p.get() == nullptr); EXPECT_EQ(p->func(), 0); EXPECT_EQ((*p).func(), 0); EXPECT_EQ((p.get())->func(), 0); } } TEST(StaticPtr, CreateReset) { { static_ptr<base, sizeof(grandchild)> p(std::in_place_type_t<sibling1>{}); EXPECT_EQ((p.get())->func(), 0); p.reset(); EXPECT_FALSE(p); EXPECT_EQ(p, nullptr); EXPECT_EQ(nullptr, p); EXPECT_TRUE(p.get() == nullptr); } { static_ptr<base, sizeof(grandchild)> p(std::in_place_type_t<sibling1>{}); EXPECT_EQ((p.get())->func(), 0); p = nullptr; EXPECT_FALSE(p); EXPECT_EQ(p, nullptr); EXPECT_EQ(nullptr, p); EXPECT_TRUE(p.get() == nullptr); } } #endif // __cpp_lib_three_way_comparison TEST(StaticPtr, CreateEmplace) { static_ptr<base, sizeof(grandchild)> p(std::in_place_type_t<sibling1>{}); EXPECT_EQ((p.get())->func(), 0); p.emplace<grandchild>(30); EXPECT_EQ(p->func(), 9); } TEST(StaticPtr, Move) { // Won't compile. Good. // static_ptr<base, sizeof(base)> p1(std::in_place_type_t<grandchild>{}, 3); static_ptr<base, sizeof(base)> p1(std::in_place_type_t<sibling1>{}); static_ptr<base, sizeof(grandchild)> p2(std::in_place_type_t<grandchild>{}, 3); p2 = std::move(p1); EXPECT_EQ(p1->func(), 0); } TEST(StaticPtr, ImplicitUpcast) { static_ptr<base, sizeof(grandchild)> p1; static_ptr<sibling2, sizeof(grandchild)> p2(std::in_place_type_t<grandchild>{}, 3); p1 = std::move(p2); EXPECT_EQ(p1->func(), 9); p2.reset(); // Doesn't compile. Good. // p2 = p1; } TEST(StaticPtr, StaticCast) { static_ptr<base, sizeof(grandchild)> p1(std::in_place_type_t<grandchild>{}, 3); static_ptr<sibling2, sizeof(grandchild)> p2; p2 = ceph::static_pointer_cast<sibling2, sizeof(grandchild)>(std::move(p1)); EXPECT_EQ(p2->func(), 9); EXPECT_EQ(p2->call(10), 30); } TEST(StaticPtr, DynamicCast) { static constexpr auto sz = sizeof(great_grandchild); { static_ptr<base, sz> p1(std::in_place_type_t<grandchild>{}, 3); auto p2 = ceph::dynamic_pointer_cast<great_grandchild, sz>(std::move(p1)); EXPECT_FALSE(p2); } { static_ptr<base, sz> p1(std::in_place_type_t<grandchild>{}, 3); auto p2 = ceph::dynamic_pointer_cast<grandchild, sz>(std::move(p1)); EXPECT_TRUE(p2); EXPECT_EQ(p2->func(), 9); EXPECT_EQ(p2->call(10), 30); } } class constable { public: int foo() { return 2; } int foo() const { return 5; } }; TEST(StaticPtr, ConstCast) { static constexpr auto sz = sizeof(constable); { auto p1 = make_static<const constable>(); EXPECT_EQ(p1->foo(), 5); auto p2 = ceph::const_pointer_cast<constable, sz>(std::move(p1)); static_assert(!std::is_const<decltype(p2)::element_type>{}, "Things are more const than they ought to be."); EXPECT_TRUE(p2); EXPECT_EQ(p2->foo(), 2); } } TEST(StaticPtr, ReinterpretCast) { static constexpr auto sz = sizeof(grandchild); { auto p1 = make_static<grandchild>(3); auto p2 = ceph::reinterpret_pointer_cast<constable, sz>(std::move(p1)); static_assert(std::is_same<decltype(p2)::element_type, constable>{}, "Reinterpret is screwy."); auto p3 = ceph::reinterpret_pointer_cast<grandchild, sz>(std::move(p2)); static_assert(std::is_same<decltype(p3)::element_type, grandchild>{}, "Reinterpret is screwy."); EXPECT_EQ(p3->func(), 9); EXPECT_EQ(p3->call(10), 30); } } struct exceptional { exceptional() = default; exceptional(const exceptional& e) { throw std::exception(); } exceptional(exceptional&& e) { throw std::exception(); } }; TEST(StaticPtr, Exceptional) { static_ptr<exceptional> p1(std::in_place_type_t<exceptional>{}); EXPECT_ANY_THROW(static_ptr<exceptional> p2(std::move(p1))); }
5,651
25.046083
85
cc
null
ceph-main/src/test/common/test_str_map.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <gtest/gtest.h> #include "include/str_map.h" using namespace std; TEST(str_map, json) { map<string,string> str_map; stringstream ss; // well formatted ASSERT_EQ(0, get_json_str_map("{\"key\": \"value\"}", ss, &str_map)); ASSERT_EQ("value", str_map["key"]); // well formatted but not a JSON object ASSERT_EQ(-EINVAL, get_json_str_map("\"key\"", ss, &str_map)); ASSERT_NE(string::npos, ss.str().find("must be a JSON object")); } TEST(str_map, plaintext) { { map<string,string> str_map; ASSERT_EQ(0, get_str_map(" foo=bar\t\nfrob=nitz yeah right= \n\t", &str_map)); ASSERT_EQ(4u, str_map.size()); ASSERT_EQ("bar", str_map["foo"]); ASSERT_EQ("nitz", str_map["frob"]); ASSERT_EQ("", str_map["yeah"]); ASSERT_EQ("", str_map["right"]); } { map<string,string> str_map; ASSERT_EQ(0, get_str_map("that", &str_map)); ASSERT_EQ(1u, str_map.size()); ASSERT_EQ("", str_map["that"]); } { map<string,string> str_map; ASSERT_EQ(0, get_str_map(" \t \n ", &str_map)); ASSERT_EQ(0u, str_map.size()); ASSERT_EQ(0, get_str_map("", &str_map)); ASSERT_EQ(0u, str_map.size()); } { map<string,string> str_map; ASSERT_EQ(0, get_str_map(" key1=val1; key2=\tval2; key3\t = \t val3; \n ", &str_map, "\n;")); ASSERT_EQ(4u, str_map.size()); ASSERT_EQ("val1", str_map["key1"]); ASSERT_EQ("val2", str_map["key2"]); ASSERT_EQ("val3", str_map["key3"]); } } TEST(str_map, empty_values) { { map<string,string> str_map; ASSERT_EQ(0, get_str_map("M= P= L=", &str_map)); ASSERT_EQ(3u, str_map.size()); ASSERT_EQ("", str_map["M"]); ASSERT_EQ("", str_map["P"]); ASSERT_EQ("", str_map["L"]); } } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_str_map && * valgrind --tool=memcheck --leak-check=full \ * ./unittest_str_map * " * End: */
2,485
26.622222
97
cc
null
ceph-main/src/test/common/test_tableformatter.cc
#include "gtest/gtest.h" #include "common/Formatter.h" #include <iostream> #include <sstream> #include <string> using namespace ceph; TEST(tableformatter, singleline) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, longfloat) { std::stringstream sout; TableFormatter formatter; formatter.dump_float("float", 1.0 / 7); formatter.flush(sout); std::string cmp = "" "+----------------------+\n" "| float |\n" "+----------------------+\n" "| 0.14285714285714285 |\n" "+----------------------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, multiline) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "| 20 | 20 | string |\n" "+----------+--------+---------+\n"; formatter.flush(sout); EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, multiflush) { std::stringstream sout1; std::stringstream sout2; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout1); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n"; EXPECT_EQ(cmp, sout1.str()); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); formatter.flush(sout2); cmp = "" "| 20 | 20 | string |\n" "+----------+--------+---------+\n"; EXPECT_EQ(cmp, sout2.str()); } TEST(tableformatter, multireset) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); formatter.reset(); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); formatter.flush(sout); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 20 | 20 | string |\n" "+----------+--------+---------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, changingheaderlength) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "stringstring"); formatter.flush(sout); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n" "+----------+--------+---------------+\n" "| integer | float | string |\n" "+----------+--------+---------------+\n" "| 20 | 20 | stringstring |\n" "+----------+--------+---------------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, changingheader) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); formatter.dump_int("longinteger", 20); formatter.dump_float("double", 20.0); formatter.dump_string("char*", "stringstring"); formatter.flush(sout); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n" "+--------------+---------+---------------+\n" "| longinteger | double | char* |\n" "+--------------+---------+---------------+\n" "| 20 | 20 | stringstring |\n" "+--------------+---------+---------------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, extendingheader) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); formatter.dump_string("char*", "abcde"); formatter.flush(sout); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n" "+----------+--------+---------+--------+\n" "| integer | float | string | char* |\n" "+----------+--------+---------+--------+\n" "| 20 | 20 | string | abcde |\n" "+----------+--------+---------+--------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, stream) { std::stringstream sout; TableFormatter* formatter = (TableFormatter*) Formatter::create("table"); formatter->dump_stream("integer") << 10; formatter->dump_stream("float") << 10.0; formatter->dump_stream("string") << "string"; formatter->flush(sout); delete formatter; std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, multiline_keyval) { std::stringstream sout; TableFormatter* formatter = (TableFormatter*) Formatter::create("table-kv"); formatter->dump_int("integer", 10); formatter->dump_float("float", 10.0); formatter->dump_string("string", "string"); formatter->dump_int("integer", 20); formatter->dump_float("float", 20.0); formatter->dump_string("string", "string"); formatter->flush(sout); delete formatter; std::string cmp = "" "key::integer=\"10\" key::float=\"10\" key::string=\"string\" \n" "key::integer=\"20\" key::float=\"20\" key::string=\"string\" \n"; EXPECT_EQ(cmp, sout.str()); } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_tableformatter && * ./unittest_tableformatter * ' * End: */
7,420
27.109848
78
cc
null
ceph-main/src/test/common/test_time.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2004-2006 Sage Weil <[email protected]> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <ctime> #include "common/ceph_time.h" #include "include/rados.h" #include "gtest/gtest.h" #include "include/stringify.h" using namespace std; using ceph::real_clock; using ceph::real_time; using ceph::real_clock; using ceph::real_time; using ceph::coarse_real_clock; using ceph::coarse_mono_clock; using ceph::timespan; using ceph::signedspan; using std::chrono::seconds; using std::chrono::microseconds; using std::chrono::nanoseconds; static_assert(!real_clock::is_steady, "ceph::real_clock must not be steady."); static_assert(!coarse_real_clock::is_steady, "ceph::coarse_real_clock must not be steady."); static_assert(mono_clock::is_steady, "ceph::mono_clock must be steady."); static_assert(coarse_mono_clock::is_steady, "ceph::coarse_mono_clock must be steady."); // Before this file was written. static constexpr uint32_t bs = 1440701569; static constexpr uint32_t bns = 123456789; static constexpr uint32_t bus = 123456; static constexpr time_t btt = bs; static constexpr struct timespec bts = { bs, bns }; static struct ceph_timespec bcts = { ceph_le32(bs), ceph_le32(bns) }; static constexpr struct timeval btv = { bs, bus }; static constexpr double bd = bs + ((double)bns / 1000000000.); template<typename Clock> static void system_clock_sanity() { static const typename Clock::time_point brt(seconds(bs) + nanoseconds(bns)); const typename Clock::time_point now(Clock::now()); ASSERT_GT(now, brt); ASSERT_GT(Clock::to_time_t(now), btt); ASSERT_GT(Clock::to_timespec(now).tv_sec, bts.tv_sec); ASSERT_LT(Clock::to_timespec(now).tv_nsec, 1000000000L); ASSERT_GT(Clock::to_ceph_timespec(now).tv_sec, bcts.tv_sec); ASSERT_LT(Clock::to_ceph_timespec(now).tv_nsec, 1000000000UL); ASSERT_GT(Clock::to_timeval(now).tv_sec, btv.tv_sec); ASSERT_LT(Clock::to_timeval(now).tv_usec, 1000000L); } template<typename Clock> static void system_clock_conversions() { static typename Clock::time_point brt(seconds(bs) + nanoseconds(bns)); ASSERT_EQ(Clock::to_time_t(brt), btt); ASSERT_EQ(Clock::from_time_t(btt) + nanoseconds(bns), brt); { const struct timespec tts = Clock::to_timespec(brt); ASSERT_EQ(tts.tv_sec, bts.tv_sec); ASSERT_EQ(tts.tv_nsec, bts.tv_nsec); } ASSERT_EQ(Clock::from_timespec(bts), brt); { struct timespec tts; Clock::to_timespec(brt, tts); ASSERT_EQ(tts.tv_sec, bts.tv_sec); ASSERT_EQ(tts.tv_nsec, bts.tv_nsec); } { const struct ceph_timespec tcts = Clock::to_ceph_timespec(brt); ASSERT_EQ(tcts.tv_sec, bcts.tv_sec); ASSERT_EQ(tcts.tv_nsec, bcts.tv_nsec); } ASSERT_EQ(Clock::from_ceph_timespec(bcts), brt); { struct ceph_timespec tcts; Clock::to_ceph_timespec(brt, tcts); ASSERT_EQ(tcts.tv_sec, bcts.tv_sec); ASSERT_EQ(tcts.tv_nsec, bcts.tv_nsec); } { const struct timeval ttv = Clock::to_timeval(brt); ASSERT_EQ(ttv.tv_sec, btv.tv_sec); ASSERT_EQ(ttv.tv_usec, btv.tv_usec); } ASSERT_EQ(Clock::from_timeval(btv), brt - nanoseconds(bns - bus * 1000)); { struct timeval ttv; Clock::to_timeval(brt, ttv); ASSERT_EQ(ttv.tv_sec, btv.tv_sec); ASSERT_EQ(ttv.tv_usec, btv.tv_usec); } ASSERT_EQ(Clock::to_double(brt), bd); // Fudge factor ASSERT_LT(std::abs((Clock::from_double(bd) - brt).count()), 30); } TEST(RealClock, Sanity) { system_clock_sanity<real_clock>(); } TEST(RealClock, Conversions) { system_clock_conversions<real_clock>(); } TEST(CoarseRealClock, Sanity) { system_clock_sanity<coarse_real_clock>(); } TEST(CoarseRealClock, Conversions) { system_clock_conversions<coarse_real_clock>(); } TEST(TimePoints, SignedSubtraciton) { ceph::real_time rta(std::chrono::seconds(3)); ceph::real_time rtb(std::chrono::seconds(5)); ceph::coarse_real_time crta(std::chrono::seconds(3)); ceph::coarse_real_time crtb(std::chrono::seconds(5)); ceph::mono_time mta(std::chrono::seconds(3)); ceph::mono_time mtb(std::chrono::seconds(5)); ceph::coarse_mono_time cmta(std::chrono::seconds(3)); ceph::coarse_mono_time cmtb(std::chrono::seconds(5)); ASSERT_LT(rta - rtb, ceph::signedspan::zero()); ASSERT_LT((rta - rtb).count(), 0); ASSERT_GT(rtb - rta, ceph::signedspan::zero()); ASSERT_GT((rtb - rta).count(), 0); ASSERT_LT(crta - crtb, ceph::signedspan::zero()); ASSERT_LT((crta - crtb).count(), 0); ASSERT_GT(crtb - crta, ceph::signedspan::zero()); ASSERT_GT((crtb - crta).count(), 0); ASSERT_LT(mta - mtb, ceph::signedspan::zero()); ASSERT_LT((mta - mtb).count(), 0); ASSERT_GT(mtb - mta, ceph::signedspan::zero()); ASSERT_GT((mtb - mta).count(), 0); ASSERT_LT(cmta - cmtb, ceph::signedspan::zero()); ASSERT_LT((cmta - cmtb).count(), 0); ASSERT_GT(cmtb - cmta, ceph::signedspan::zero()); ASSERT_GT((cmtb - cmta).count(), 0); } TEST(TimePoints, stringify) { ceph::real_clock::time_point tp(seconds(1556122013) + nanoseconds(39923122)); string s = stringify(tp); ASSERT_EQ(s.size(), strlen("2019-04-24T11:06:53.039923-0500")); ASSERT_TRUE(s[26] == '-' || s[26] == '+'); ASSERT_EQ(s.substr(0, 9), "2019-04-2"); ceph::coarse_real_clock::time_point ctp(seconds(1556122013) + nanoseconds(399000000)); s = stringify(ctp); ASSERT_EQ(s.size(), strlen("2019-04-24T11:06:53.399000-0500")); ASSERT_TRUE(s[26] == '-' || s[26] == '+'); ASSERT_EQ(s.substr(0, 9), "2019-04-2"); } namespace { template<typename Rep, typename Period> std::string to_string(const chrono::duration<Rep, Period>& t) { std::ostringstream ss; ss << t; return ss.str(); } void float_format_eq(string_view lhs, string_view rhs, unsigned precision) { const float TOLERANCE = 10.0F / pow(10.0F, static_cast<float>(precision)); ASSERT_FALSE(lhs.empty()); ASSERT_EQ(lhs.back(), 's'); float lhs_v = std::stof(string{lhs, 0, lhs.find('s')}); ASSERT_NE(lhs.npos, lhs.find('.')); ASSERT_EQ(precision, lhs.find('s') - lhs.find('.') - 1); ASSERT_FALSE(rhs.empty()); ASSERT_EQ(rhs.back(), 's'); float rhs_v = std::stof(string{rhs, 0, rhs.find('s')}); EXPECT_NEAR(lhs_v, rhs_v, TOLERANCE); ASSERT_NE(rhs.npos, rhs.find('.')); EXPECT_EQ(precision, rhs.find('s') - rhs.find('.') - 1); } } TEST(TimeDurations, print) { float_format_eq("0.123456700s", to_string(std::chrono::duration_cast<ceph::timespan>(0.1234567s)), 9); float_format_eq("-0.123456700s", to_string(std::chrono::duration_cast<ceph::signedspan>(-0.1234567s)), 9); EXPECT_EQ("42s", to_string(42s)); float_format_eq("0.123000000s", to_string(123ms), 9); }
7,094
29.063559
87
cc
null
ceph-main/src/test/common/test_url_escape.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/url_escape.h" #include "gtest/gtest.h" TEST(url_escape, escape) { ASSERT_EQ(url_escape("foo bar"), std::string("foo%20bar")); ASSERT_EQ(url_escape("foo\nbar"), std::string("foo%0abar")); } TEST(url_escape, unescape) { ASSERT_EQ(url_unescape("foo%20bar"), std::string("foo bar")); ASSERT_EQ(url_unescape("foo%0abar"), std::string("foo\nbar")); ASSERT_EQ(url_unescape("%20"), std::string(" ")); ASSERT_EQ(url_unescape("\0%20"), std::string("\0 ")); ASSERT_EQ(url_unescape("\x01%20"), std::string("\x01 ")); } TEST(url_escape, all_chars) { std::string a; for (unsigned j=0; j<256; ++j) { a.push_back((char)j); } std::string b = url_escape(a); std::cout << "escaped: " << b << std::endl; ASSERT_EQ(a, url_unescape(b)); } TEST(url_escape, invalid) { ASSERT_THROW(url_unescape("foo%xx"), std::runtime_error); ASSERT_THROW(url_unescape("foo%%"), std::runtime_error); ASSERT_THROW(url_unescape("foo%"), std::runtime_error); ASSERT_THROW(url_unescape("foo%0"), std::runtime_error); }
1,134
29.675676
70
cc
null
ceph-main/src/test/common/test_util.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2011 New Dream Network * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License version 2, as published by the Free Software * Foundation. See file COPYING. * */ #include <filesystem> #include "gtest/gtest.h" #include "common/ceph_context.h" #include "include/util.h" using namespace std; namespace fs = std::filesystem; #if defined(__linux__) TEST(util, collect_sys_info) { if (!fs::exists("/etc/os-release")) { GTEST_SKIP() << "skipping as '/etc/os-release' does not exist"; } map<string, string> sys_info; CephContext *cct = (new CephContext(CEPH_ENTITY_TYPE_CLIENT))->get(); collect_sys_info(&sys_info, cct); ASSERT_TRUE(sys_info.find("distro") != sys_info.end()); ASSERT_TRUE(sys_info.find("distro_description") != sys_info.end()); cct->put(); } #endif
1,025
22.860465
71
cc
null
ceph-main/src/test/common/test_weighted_priority_queue.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "gtest/gtest.h" #include "common/Formatter.h" #include "common/WeightedPriorityQueue.h" #include <numeric> #include <vector> #include <map> #include <list> #include <tuple> #define CEPH_OP_CLASS_STRICT 0 #define CEPH_OP_CLASS_NORMAL 0 #define CEPH_OP_QUEUE_BACK 0 #define CEPH_OP_QUEUE_FRONT 0 class WeightedPriorityQueueTest : public testing::Test { protected: typedef unsigned Klass; // tuple<Prio, Klass, OpID> so that we can verfiy the op typedef std::tuple<unsigned, unsigned, unsigned> Item; typedef unsigned Prio; typedef unsigned Kost; typedef WeightedPriorityQueue<Item, Klass> WQ; // Simulate queue structure typedef std::list<std::pair<Kost, Item> > ItemList; typedef std::map<Klass, ItemList> KlassItem; typedef std::map<Prio, KlassItem> LQ; typedef std::list<Item> Removed; const unsigned max_prios = 5; // (0-4) * 64 const unsigned klasses = 37; // Make prime to help get good coverage void fill_queue(WQ &wq, LQ &strictq, LQ &normq, unsigned item_size, bool randomize = false) { unsigned p, k, c, o, op_queue, fob; for (unsigned i = 1; i <= item_size; ++i) { // Choose priority, class, cost and 'op' for this op. if (randomize) { p = (rand() % max_prios) * 64; k = rand() % klasses; c = rand() % (1<<22); // 4M cost // Make some of the costs 0, but make sure small costs // still work ok. if (c > (1<<19) && c < (1<<20)) { c = 0; } op_queue = rand() % 10; fob = rand() % 10; } else { p = (i % max_prios) * 64; k = i % klasses; c = (i % 8 == 0 || i % 16 == 0) ? 0 : 1 << (i % 23); op_queue = i % 7; // Use prime numbers to fob = i % 11; // get better coverage } o = rand() % (1<<16); // Choose how to enqueue this op. switch (op_queue) { case 6 : // Strict Queue if (fob == 4) { // Queue to the front. strictq[p][k].push_front(std::make_pair( c, std::make_tuple(p, k, o))); wq.enqueue_strict_front(Klass(k), p, std::make_tuple(p, k, o)); } else { //Queue to the back. strictq[p][k].push_back(std::make_pair( c, std::make_tuple(p, k, o))); wq.enqueue_strict(Klass(k), p, std::make_tuple(p, k, o)); } break; default: // Normal queue if (fob == 4) { // Queue to the front. normq[p][k].push_front(std::make_pair( c, std::make_tuple(p, k, o))); wq.enqueue_front(Klass(k), p, c, std::make_tuple(p, k, o)); } else { //Queue to the back. normq[p][k].push_back(std::make_pair( c, std::make_tuple(p, k, o))); wq.enqueue(Klass(k), p, c, std::make_tuple(p, k, o)); } break; } } } void test_queue(unsigned item_size, bool randomize = false) { // Due to the WRR queue having a lot of probabilistic logic // we can't determine the exact order OPs will be dequeued. // However, the queue should not dequeue a priority out of // order. It should also dequeue the strict priority queue // first and in order. In both the strict and normal queues // push front and back should be respected. Here we keep // track of the ops queued and make sure they dequeue // correctly. // Set up local tracking queues WQ wq(0, 0); LQ strictq, normq; fill_queue(wq, strictq, normq, item_size, randomize); // Test that the queue is dequeuing properly. typedef std::map<unsigned, unsigned> LastKlass; LastKlass last_strict, last_norm; while (!(wq.empty())) { Item r = wq.dequeue(); if (!(strictq.empty())) { // Check that there are no higher priorities // in the strict queue. LQ::reverse_iterator ri = strictq.rbegin(); EXPECT_EQ(std::get<0>(r), ri->first); // Check that if there are multiple classes in a priority // that it is not dequeueing the same class each time. LastKlass::iterator si = last_strict.find(std::get<0>(r)); if (strictq[std::get<0>(r)].size() > 1 && si != last_strict.end()) { EXPECT_NE(std::get<1>(r), si->second); } last_strict[std::get<0>(r)] = std::get<1>(r); Item t = strictq[std::get<0>(r)][std::get<1>(r)].front().second; EXPECT_EQ(std::get<2>(r), std::get<2>(t)); strictq[std::get<0>(r)][std::get<1>(r)].pop_front(); if (strictq[std::get<0>(r)][std::get<1>(r)].empty()) { strictq[std::get<0>(r)].erase(std::get<1>(r)); } if (strictq[std::get<0>(r)].empty()) { strictq.erase(std::get<0>(r)); } } else { // Check that if there are multiple classes in a priority // that it is not dequeueing the same class each time. LastKlass::iterator si = last_norm.find(std::get<0>(r)); if (normq[std::get<0>(r)].size() > 1 && si != last_norm.end()) { EXPECT_NE(std::get<1>(r), si->second); } last_norm[std::get<0>(r)] = std::get<1>(r); Item t = normq[std::get<0>(r)][std::get<1>(r)].front().second; EXPECT_EQ(std::get<2>(r), std::get<2>(t)); normq[std::get<0>(r)][std::get<1>(r)].pop_front(); if (normq[std::get<0>(r)][std::get<1>(r)].empty()) { normq[std::get<0>(r)].erase(std::get<1>(r)); } if (normq[std::get<0>(r)].empty()) { normq.erase(std::get<0>(r)); } } } } void SetUp() override { srand(time(0)); } void TearDown() override { } }; TEST_F(WeightedPriorityQueueTest, wpq_size){ WQ wq(0, 0); EXPECT_TRUE(wq.empty()); EXPECT_EQ(0u, wq.get_size_slow()); // Test the strict queue size. for (unsigned i = 1; i < 5; ++i) { wq.enqueue_strict(Klass(i),i, std::make_tuple(i, i, i)); EXPECT_FALSE(wq.empty()); EXPECT_EQ(i, wq.get_size_slow()); } // Test the normal queue size. for (unsigned i = 5; i < 10; ++i) { wq.enqueue(Klass(i), i, i, std::make_tuple(i, i, i)); EXPECT_FALSE(wq.empty()); EXPECT_EQ(i, wq.get_size_slow()); } // Test that as both queues are emptied // the size is correct. for (unsigned i = 8; i >0; --i) { wq.dequeue(); EXPECT_FALSE(wq.empty()); EXPECT_EQ(i, wq.get_size_slow()); } wq.dequeue(); EXPECT_TRUE(wq.empty()); EXPECT_EQ(0u, wq.get_size_slow()); } TEST_F(WeightedPriorityQueueTest, wpq_test_static) { test_queue(1000); } TEST_F(WeightedPriorityQueueTest, wpq_test_random) { test_queue(rand() % 500 + 500, true); } TEST_F(WeightedPriorityQueueTest, wpq_test_remove_by_class_null) { WQ wq(0, 0); LQ strictq, normq; unsigned num_items = 10; fill_queue(wq, strictq, normq, num_items); Removed wq_removed; // Pick a klass that was not enqueued wq.remove_by_class(klasses + 1, &wq_removed); EXPECT_EQ(0u, wq_removed.size()); } TEST_F(WeightedPriorityQueueTest, wpq_test_remove_by_class) { WQ wq(0, 0); LQ strictq, normq; unsigned num_items = 1000; fill_queue(wq, strictq, normq, num_items); unsigned num_to_remove = 0; const Klass k = 5; // Find how many ops are in the class for (LQ::iterator it = strictq.begin(); it != strictq.end(); ++it) { num_to_remove += it->second[k].size(); } for (LQ::iterator it = normq.begin(); it != normq.end(); ++it) { num_to_remove += it->second[k].size(); } Removed wq_removed; wq.remove_by_class(k, &wq_removed); // Check that the right ops were removed. EXPECT_EQ(num_to_remove, wq_removed.size()); EXPECT_EQ(num_items - num_to_remove, wq.get_size_slow()); for (Removed::iterator it = wq_removed.begin(); it != wq_removed.end(); ++it) { EXPECT_EQ(k, std::get<1>(*it)); } // Check that none were missed while (!(wq.empty())) { EXPECT_NE(k, std::get<1>(wq.dequeue())); } }
7,795
31.348548
76
cc
null
ceph-main/src/test/common/test_xmlformatter.cc
#include "gtest/gtest.h" #include "common/Formatter.h" #include <sstream> #include <string> using namespace ceph; TEST(xmlformatter, oneline) { std::stringstream sout; XMLFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); std::string cmp = "<integer>10</integer><float>10</float><string>string</string>"; EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, multiline) { std::stringstream sout; XMLFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); std::string cmp = "" "<integer>10</integer><float>10</float><string>string</string>" "<integer>20</integer><float>20</float><string>string</string>"; formatter.flush(sout); EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, multiflush) { std::stringstream sout1; std::stringstream sout2; XMLFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout1); std::string cmp = "" "<integer>10</integer>" "<float>10</float>" "<string>string</string>"; EXPECT_EQ(cmp, sout1.str()); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); formatter.flush(sout2); cmp = "" "<integer>20</integer>" "<float>20</float>" "<string>string</string>"; EXPECT_EQ(cmp, sout2.str()); } TEST(xmlformatter, pretty) { std::stringstream sout; XMLFormatter formatter( true, // pretty false, // lowercased false); // underscored formatter.open_object_section("xml"); formatter.dump_int("Integer", 10); formatter.dump_float("Float", 10.0); formatter.dump_string("String", "String"); formatter.close_section(); formatter.flush(sout); std::string cmp = "" "<xml>\n" " <Integer>10</Integer>\n" " <Float>10</Float>\n" " <String>String</String>\n" "</xml>\n\n"; EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, lowercased) { std::stringstream sout; XMLFormatter formatter( false, // pretty true, // lowercased false); // underscored formatter.dump_int("Integer", 10); formatter.dump_float("Float", 10.0); formatter.dump_string("String", "String"); formatter.flush(sout); std::string cmp = "" "<integer>10</integer>" "<float>10</float>" "<string>String</string>"; EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, underscored) { std::stringstream sout; XMLFormatter formatter( false, // pretty false, // lowercased true); // underscored formatter.dump_int("Integer Item", 10); formatter.dump_float("Float Item", 10.0); formatter.dump_string("String Item", "String"); formatter.flush(sout); std::string cmp = "" "<Integer_Item>10</Integer_Item>" "<Float_Item>10</Float_Item>" "<String_Item>String</String_Item>"; EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, lowercased_underscored) { std::stringstream sout; XMLFormatter formatter( false, // pretty true, // lowercased true); // underscored formatter.dump_int("Integer Item", 10); formatter.dump_float("Float Item", 10.0); formatter.dump_string("String Item", "String"); formatter.flush(sout); std::string cmp = "" "<integer_item>10</integer_item>" "<float_item>10</float_item>" "<string_item>String</string_item>"; EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, pretty_lowercased_underscored) { std::stringstream sout; XMLFormatter formatter( true, // pretty true, // lowercased true); // underscored formatter.dump_int("Integer Item", 10); formatter.dump_float("Float Item", 10.0); formatter.dump_string("String Item", "String"); formatter.flush(sout); std::string cmp = "" "<integer_item>10</integer_item>\n" "<float_item>10</float_item>\n" "<string_item>String</string_item>\n\n"; EXPECT_EQ(cmp, sout.str()); }
4,221
24.433735
84
cc
null
ceph-main/src/test/compressor/compressor_example.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2015 Mirantis, Inc. * * Author: Alyona Kiseleva <[email protected]> * * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #ifndef CEPH_COMPRESSOR_EXAMPLE_H #define CEPH_COMPRESSOR_EXAMPLE_H #include <unistd.h> #include <errno.h> #include <algorithm> #include <sstream> #include "crush/CrushWrapper.h" #include "osd/osd_types.h" #include "compressor/Compressor.h" class CompressorExample : public Compressor { public: CompressorExample() : Compressor(COMP_ALG_NONE, "example") {} ~CompressorExample() override {} int compress(const bufferlist &in, bufferlist &out, std::optional<int32_t> &compressor_message) override { out = in; return 0; } int decompress(const bufferlist &in, bufferlist &out, std::optional<int32_t> compressor_message) override { out = in; return 0; } int decompress(bufferlist::const_iterator &p, size_t compressed_len, bufferlist &out, std::optional<int32_t> compressor_message) override { p.copy(std::min<size_t>(p.get_remaining(), compressed_len), out); return 0; } }; #endif
1,442
25.722222
139
h
null
ceph-main/src/test/compressor/compressor_plugin_example.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2015 Mirantis, Inc. * * Author: Alyona Kiseleva <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <unistd.h> #include "ceph_ver.h" #include "compressor/CompressionPlugin.h" #include "compressor_example.h" using namespace std; class CompressorPluginExample : public CompressionPlugin { public: explicit CompressorPluginExample(CephContext* cct) : CompressionPlugin(cct) {} int factory(CompressorRef *cs, ostream *ss) override { if (compressor == 0) { CompressorExample *interface = new CompressorExample(); compressor = CompressorRef(interface); } *cs = compressor; return 0; } }; // ----------------------------------------------------------------------------- const char *__ceph_plugin_version() { return CEPH_GIT_NICE_VER; } // ----------------------------------------------------------------------------- int __ceph_plugin_init(CephContext *cct, const std::string& type, const std::string& name) { PluginRegistry *instance = cct->get_plugin_registry(); return instance->add(type, name, new CompressorPluginExample(cct)); }
1,555
24.933333
80
cc
null
ceph-main/src/test/compressor/test_compression.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2015 Mirantis, Inc. * * Author: Alyona Kiseleva <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <signal.h> #include <stdlib.h> #include "gtest/gtest.h" #include "common/ceph_context.h" #include "common/config.h" #include "compressor/Compressor.h" #include "compressor/CompressionPlugin.h" #include "global/global_context.h" #include "osd/OSDMap.h" using namespace std; class CompressorTest : public ::testing::Test, public ::testing::WithParamInterface<const char*> { public: std::string plugin; CompressorRef compressor; bool old_zlib_isal; CompressorTest() { // note for later old_zlib_isal = g_conf()->compressor_zlib_isal; plugin = GetParam(); size_t pos = plugin.find('/'); if (pos != std::string::npos) { string isal = plugin.substr(pos + 1); plugin = plugin.substr(0, pos); if (isal == "isal") { g_conf().set_val("compressor_zlib_isal", "true"); g_ceph_context->_conf.apply_changes(nullptr); } else if (isal == "noisal") { g_conf().set_val("compressor_zlib_isal", "false"); g_ceph_context->_conf.apply_changes(nullptr); } else { ceph_abort_msg("bad option"); } } cout << "[plugin " << plugin << " (" << GetParam() << ")]" << std::endl; } ~CompressorTest() override { g_conf().set_val("compressor_zlib_isal", old_zlib_isal ? "true" : "false"); g_ceph_context->_conf.apply_changes(nullptr); } void SetUp() override { compressor = Compressor::create(g_ceph_context, plugin); ASSERT_TRUE(compressor); } void TearDown() override { compressor.reset(); } }; TEST_P(CompressorTest, load_plugin) { } TEST_P(CompressorTest, small_round_trip) { bufferlist orig; orig.append("This is a short string. There are many strings like it but this one is mine."); bufferlist compressed; std::optional<int32_t> compressor_message; int r = compressor->compress(orig, compressed, compressor_message); ASSERT_EQ(0, r); bufferlist decompressed; r = compressor->decompress(compressed, decompressed, compressor_message); ASSERT_EQ(0, r); ASSERT_EQ(decompressed.length(), orig.length()); ASSERT_TRUE(decompressed.contents_equal(orig)); cout << "orig " << orig.length() << " compressed " << compressed.length() << " with " << GetParam() << std::endl; } TEST_P(CompressorTest, big_round_trip_repeated) { unsigned len = 1048576 * 4; bufferlist orig; while (orig.length() < len) { orig.append("This is a short string. There are many strings like it but this one is mine."); } bufferlist compressed; std::optional<int32_t> compressor_message; int r = compressor->compress(orig, compressed, compressor_message); ASSERT_EQ(0, r); bufferlist decompressed; r = compressor->decompress(compressed, decompressed, compressor_message); ASSERT_EQ(0, r); ASSERT_EQ(decompressed.length(), orig.length()); ASSERT_TRUE(decompressed.contents_equal(orig)); cout << "orig " << orig.length() << " compressed " << compressed.length() << " with " << GetParam() << std::endl; } TEST_P(CompressorTest, big_round_trip_randomish) { unsigned len = 1048576 * 10;//269; bufferlist orig; const char *alphabet = "abcdefghijklmnopqrstuvwxyz"; if (false) { while (orig.length() < len) { orig.append(alphabet[rand() % 10]); } } else { bufferptr bp(len); char *p = bp.c_str(); for (unsigned i=0; i<len; ++i) { p[i] = alphabet[rand() % 10]; } orig.append(bp); } bufferlist compressed; std::optional<int32_t> compressor_message; int r = compressor->compress(orig, compressed, compressor_message); ASSERT_EQ(0, r); bufferlist decompressed; r = compressor->decompress(compressed, decompressed, compressor_message); ASSERT_EQ(0, r); ASSERT_EQ(decompressed.length(), orig.length()); ASSERT_TRUE(decompressed.contents_equal(orig)); cout << "orig " << orig.length() << " compressed " << compressed.length() << " with " << GetParam() << std::endl; } #if 0 TEST_P(CompressorTest, big_round_trip_file) { bufferlist orig; int fd = ::open("bin/ceph-osd", O_RDONLY); struct stat st; ::fstat(fd, &st); orig.read_fd(fd, st.st_size); bufferlist compressed; int r = compressor->compress(orig, compressed); ASSERT_EQ(0, r); bufferlist decompressed; r = compressor->decompress(compressed, decompressed); ASSERT_EQ(0, r); ASSERT_EQ(decompressed.length(), orig.length()); ASSERT_TRUE(decompressed.contents_equal(orig)); cout << "orig " << orig.length() << " compressed " << compressed.length() << " with " << GetParam() << std::endl; } #endif TEST_P(CompressorTest, round_trip_osdmap) { #include "osdmaps/osdmap.2982809.h" auto compressor = Compressor::create(g_ceph_context, plugin); bufferlist orig; orig.append((char*)osdmap_a, sizeof(osdmap_a)); cout << "orig length " << orig.length() << std::endl; uint32_t size = 128*1024; OSDMap *o = new OSDMap; o->decode(orig); bufferlist fbl; o->encode(fbl, o->get_encoding_features() | CEPH_FEATURE_RESERVED); ASSERT_TRUE(fbl.contents_equal(orig)); for (int j = 0; j < 3; j++) { bufferlist chunk; uint32_t l = std::min(size, fbl.length() - j*size); chunk.substr_of(fbl, j*size, l); //fbl.rebuild(); bufferlist compressed; std::optional<int32_t> compressor_message; int r = compressor->compress(chunk, compressed, compressor_message); ASSERT_EQ(0, r); bufferlist decompressed; r = compressor->decompress(compressed, decompressed, compressor_message); ASSERT_EQ(0, r); ASSERT_EQ(decompressed.length(), chunk.length()); if (!decompressed.contents_equal(chunk)) { cout << "FAILED, orig bl was\n" << fbl << std::endl; ASSERT_TRUE(decompressed.contents_equal(chunk)); } cout << "chunk " << chunk.length() << " compressed " << compressed.length() << " decompressed " << decompressed.length() << " with " << plugin << std::endl; } delete o; } TEST_P(CompressorTest, compress_decompress) { const char* test = "This is test text"; int res; int len = strlen(test); bufferlist in, out; bufferlist after; bufferlist exp; in.append(test, len); std::optional<int32_t> compressor_message; res = compressor->compress(in, out, compressor_message); EXPECT_EQ(res, 0); res = compressor->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); exp.append(test); EXPECT_TRUE(exp.contents_equal(after)); after.clear(); size_t compressed_len = out.length(); out.append_zero(12); auto it = out.cbegin(); res = compressor->decompress(it, compressed_len, after, compressor_message); EXPECT_EQ(res, 0); EXPECT_TRUE(exp.contents_equal(after)); //large block and non-begin iterator for continuous block std::string data; data.resize(0x10000 * 1); for(size_t i = 0; i < data.size(); i++) data[i] = i / 256; in.clear(); out.clear(); in.append(data); exp = in; res = compressor->compress(in, out, compressor_message); EXPECT_EQ(res, 0); compressed_len = out.length(); out.append_zero(0x10000 - out.length()); after.clear(); out.c_str(); bufferlist prefix; prefix.append(string("some prefix")); size_t prefix_len = prefix.length(); prefix.claim_append(out); out.swap(prefix); it = out.cbegin(); it += prefix_len; res = compressor->decompress(it, compressed_len, after, compressor_message); EXPECT_EQ(res, 0); EXPECT_TRUE(exp.contents_equal(after)); } TEST_P(CompressorTest, sharded_input_decompress) { const size_t small_prefix_size=3; string test(128*1024,0); int len = test.size(); bufferlist in, out; in.append(test.c_str(), len); std::optional<int32_t> compressor_message; int res = compressor->compress(in, out, compressor_message); EXPECT_EQ(res, 0); EXPECT_GT(out.length(), small_prefix_size); bufferlist out2, tmp; tmp.substr_of(out, 0, small_prefix_size ); out2.append( tmp ); size_t left = out.length()-small_prefix_size; size_t offs = small_prefix_size; while( left > 0 ){ size_t shard_size = std::min<size_t>(2048, left); tmp.substr_of(out, offs, shard_size ); out2.append( tmp ); left -= shard_size; offs += shard_size; } bufferlist after; res = compressor->decompress(out2, after, compressor_message); EXPECT_EQ(res, 0); } void test_compress(CompressorRef compressor, size_t size) { char* data = (char*) malloc(size); for (size_t t = 0; t < size; t++) { data[t] = (t & 0xff) | (t >> 8); } bufferlist in; in.append(data, size); for (size_t t = 0; t < 10000; t++) { bufferlist out; std::optional<int32_t> compressor_message; int res = compressor->compress(in, out, compressor_message); EXPECT_EQ(res, 0); } free(data); } void test_decompress(CompressorRef compressor, size_t size) { char* data = (char*) malloc(size); for (size_t t = 0; t < size; t++) { data[t] = (t & 0xff) | (t >> 8); } bufferlist in, out; in.append(data, size); std::optional<int32_t> compressor_message; int res = compressor->compress(in, out, compressor_message); EXPECT_EQ(res, 0); for (size_t t = 0; t < 10000; t++) { bufferlist out_dec; int res = compressor->decompress(out, out_dec, compressor_message); EXPECT_EQ(res, 0); } free(data); } TEST_P(CompressorTest, compress_1024) { test_compress(compressor, 1024); } TEST_P(CompressorTest, compress_2048) { test_compress(compressor, 2048); } TEST_P(CompressorTest, compress_4096) { test_compress(compressor, 4096); } TEST_P(CompressorTest, compress_8192) { test_compress(compressor, 8192); } TEST_P(CompressorTest, compress_16384) { test_compress(compressor, 16384); } TEST_P(CompressorTest, decompress_1024) { test_decompress(compressor, 1024); } TEST_P(CompressorTest, decompress_2048) { test_decompress(compressor, 2048); } TEST_P(CompressorTest, decompress_4096) { test_decompress(compressor, 4096); } TEST_P(CompressorTest, decompress_8192) { test_decompress(compressor, 8192); } TEST_P(CompressorTest, decompress_16384) { test_decompress(compressor, 16384); } INSTANTIATE_TEST_SUITE_P( Compressor, CompressorTest, ::testing::Values( #ifdef HAVE_LZ4 "lz4", #endif #if defined(__x86_64__) || defined(__aarch64__) "zlib/isal", #endif "zlib/noisal", "snappy", #ifdef HAVE_BROTLI "brotli", #endif "zstd")); #if defined(__x86_64__) || defined(__aarch64__) TEST(ZlibCompressor, zlib_isal_compatibility) { g_conf().set_val("compressor_zlib_isal", "true"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef isal = Compressor::create(g_ceph_context, "zlib"); if (!isal) { // skip the test if the plugin is not ready return; } g_conf().set_val("compressor_zlib_isal", "false"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef zlib = Compressor::create(g_ceph_context, "zlib"); char test[101]; srand(time(0)); for (int i=0; i<100; ++i) test[i] = 'a' + rand()%26; test[100] = '\0'; int len = strlen(test); bufferlist in, out; in.append(test, len); // isal -> zlib std::optional<int32_t> compressor_message; int res = isal->compress(in, out, compressor_message); EXPECT_EQ(res, 0); bufferlist after; res = zlib->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); bufferlist exp; exp.append(static_cast<char*>(test)); EXPECT_TRUE(exp.contents_equal(after)); after.clear(); out.clear(); exp.clear(); // zlib -> isal res = zlib->compress(in, out, compressor_message); EXPECT_EQ(res, 0); res = isal->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); exp.append(static_cast<char*>(test)); EXPECT_TRUE(exp.contents_equal(after)); } #endif TEST(CompressionPlugin, all) { CompressorRef compressor; PluginRegistry *reg = g_ceph_context->get_plugin_registry(); EXPECT_TRUE(reg); CompressionPlugin *factory = dynamic_cast<CompressionPlugin*>(reg->get_with_load("compressor", "invalid")); EXPECT_FALSE(factory); factory = dynamic_cast<CompressionPlugin*>(reg->get_with_load("compressor", "example")); ASSERT_TRUE(factory); stringstream ss; EXPECT_EQ(0, factory->factory(&compressor, &ss)); EXPECT_TRUE(compressor.get()); { std::lock_guard l(reg->lock); EXPECT_EQ(-ENOENT, reg->remove("compressor", "does not exist")); EXPECT_EQ(0, reg->remove("compressor", "example")); EXPECT_EQ(0, reg->load("compressor", "example")); } } #if defined(__x86_64__) || defined(__aarch64__) TEST(ZlibCompressor, isal_compress_zlib_decompress_random) { g_conf().set_val("compressor_zlib_isal", "true"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef isal = Compressor::create(g_ceph_context, "zlib"); if (!isal) { // skip the test if the plugin is not ready return; } g_conf().set_val("compressor_zlib_isal", "false"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef zlib = Compressor::create(g_ceph_context, "zlib"); for (int cnt=0; cnt<100; cnt++) { srand(cnt + 1000); int log2 = (rand()%18) + 1; int size = (rand() % (1 << log2)) + 1; char test[size]; for (int i=0; i<size; ++i) test[i] = rand()%256; bufferlist in, out; in.append(test, size); std::optional<int32_t> compressor_message; int res = isal->compress(in, out, compressor_message); EXPECT_EQ(res, 0); bufferlist after; res = zlib->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); bufferlist exp; exp.append(test, size); EXPECT_TRUE(exp.contents_equal(after)); } } TEST(ZlibCompressor, isal_compress_zlib_decompress_walk) { g_conf().set_val("compressor_zlib_isal", "true"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef isal = Compressor::create(g_ceph_context, "zlib"); if (!isal) { // skip the test if the plugin is not ready return; } g_conf().set_val("compressor_zlib_isal", "false"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef zlib = Compressor::create(g_ceph_context, "zlib"); for (int cnt=0; cnt<100; cnt++) { srand(cnt + 1000); int log2 = (rand()%18) + 1; int size = (rand() % (1 << log2)) + 1; int range = 1; char test[size]; test[0] = rand()%256; for (int i=1; i<size; ++i) test[i] = test[i-1] + rand()%(range*2+1) - range; bufferlist in, out; in.append(test, size); std::optional<int32_t> compressor_message; int res = isal->compress(in, out, compressor_message); EXPECT_EQ(res, 0); bufferlist after; res = zlib->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); bufferlist exp; exp.append(test, size); EXPECT_TRUE(exp.contents_equal(after)); } } #endif // __x86_64__ #ifdef HAVE_QATZIP TEST(QAT, enc_qat_dec_noqat) { #ifdef HAVE_LZ4 const char* alg_collection[] = {"zlib", "lz4", "snappy"}; #else const char* alg_collection[] = {"zlib", "snappy"}; #endif for (auto alg : alg_collection) { g_conf().set_val("qat_compressor_enabled", "true"); CompressorRef q = Compressor::create(g_ceph_context, alg); g_conf().set_val("qat_compressor_enabled", "false"); CompressorRef noq = Compressor::create(g_ceph_context, alg); // generate random buffer for (int cnt=0; cnt<100; cnt++) { srand(cnt + 1000); int log2 = (rand()%18) + 1; int size = (rand() % (1 << log2)) + 1; char test[size]; for (int i=0; i<size; ++i) test[i] = rand()%256; bufferlist in, out; in.append(test, size); std::optional<int32_t> compressor_message; int res = q->compress(in, out, compressor_message); EXPECT_EQ(res, 0); bufferlist after; res = noq->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); bufferlist exp; exp.append(test, size); EXPECT_TRUE(exp.contents_equal(after)); } } } TEST(QAT, enc_noqat_dec_qat) { #ifdef HAVE_LZ4 const char* alg_collection[] = {"zlib", "lz4", "snappy"}; #else const char* alg_collection[] = {"zlib", "snappy"}; #endif for (auto alg : alg_collection) { g_conf().set_val("qat_compressor_enabled", "true"); CompressorRef q = Compressor::create(g_ceph_context, alg); g_conf().set_val("qat_compressor_enabled", "false"); CompressorRef noq = Compressor::create(g_ceph_context, alg); // generate random buffer for (int cnt=0; cnt<100; cnt++) { srand(cnt + 1000); int log2 = (rand()%18) + 1; int size = (rand() % (1 << log2)) + 1; char test[size]; for (int i=0; i<size; ++i) test[i] = rand()%256; bufferlist in, out; in.append(test, size); std::optional<int32_t> compressor_message; int res = noq->compress(in, out, compressor_message); EXPECT_EQ(res, 0); bufferlist after; res = q->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); bufferlist exp; exp.append(test, size); EXPECT_TRUE(exp.contents_equal(after)); } } } #endif // HAVE_QATZIP
17,393
27.375204
109
cc
null
ceph-main/src/test/compressor/osdmaps/osdmap.2982809.h
unsigned char osdmap_a[] = { 0x8,0x7,0xdf,0x56,0x9,0x0,0x7,0x1,0x91,0x47,0x5,0x0,0xb4,0xf4,0x63,0xa0, 0xc6,0x71,0x43,0xa8,0xbd,0x36,0xe4,0xa,0xb8,0xd2,0x33,0xd2,0x99,0x83,0x2d,0x0, 0x6d,0x34,0x16,0x52,0xe8,0x59,0x97,0x1c,0xa,0x4d,0x4e,0x5e,0x13,0x5c,0x3b,0x35, 0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x5,0x20,0xe, 0x0,0x0,0x1,0x3,0x0,0x2,0x0,0x20,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x83,0x2d,0x0,0x76,0x4a,0x1,0x0,0x0,0x0, 0x0,0x0,0x40,0x83,0x2d,0x0,0x0,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x9, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x1e, 0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x28, 0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x39, 0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x53, 0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x6d, 0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x71, 0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x72, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x72, 0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x7a, 0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x7b, 0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x7d, 0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x7e, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x7e, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x7e, 0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e, 0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x7e, 0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x81, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x81, 0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x86, 0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x87, 0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x88, 0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x91, 0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x92, 0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x94, 0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x95, 0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x95, 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x95, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x97, 0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x99, 0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x9a, 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x9b, 0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x9b, 0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x9d, 0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x9f, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x9f, 0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0xa3, 0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xa4, 0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xa6, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xa6, 0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0xa7, 0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xa7, 0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xa8, 0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xa9, 0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xae, 0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xb0, 0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xb0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xb1, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xb2, 0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xb2, 0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xb3, 0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xb3, 0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xb3, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xb3, 0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xb6, 0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xbb, 0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xbb, 0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xbc, 0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xbf, 0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xc0, 0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xc0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xc2, 0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xc6, 0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xc7, 0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xd7, 0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8, 0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xe1, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xe1, 0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xe5, 0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xe5, 0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0xe5, 0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xe6, 0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xe8, 0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0xe9, 0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0xec, 0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xee, 0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xee, 0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xf0, 0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xf0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xf0, 0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xf1, 0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xf1, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2, 0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xf2, 0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xf4, 0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0xf7, 0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xf7, 0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xf9, 0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xfa, 0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xfb, 0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0xad,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x3, 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x3, 0x1,0x0,0x0,0x0,0x0,0x0,0x59,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x5, 0x1,0x0,0x0,0x0,0x0,0x0,0x78,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x7, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x7, 0x1,0x0,0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x8, 0x1,0x0,0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x8, 0x1,0x0,0x0,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x9, 0x1,0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x9, 0x1,0x0,0x0,0x0,0x0,0x0,0x73,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xa, 0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xa, 0x1,0x0,0x0,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xc, 0x1,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xc, 0x1,0x0,0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xd, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xd, 0x1,0x0,0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xe, 0x1,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xe, 0x1,0x0,0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xf, 0x1,0x0,0x0,0x0,0x0,0x0,0x91,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x12, 0x1,0x0,0x0,0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x14, 0x1,0x0,0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x15, 0x1,0x0,0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x16, 0x1,0x0,0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x17, 0x1,0x0,0x0,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x18, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x1a, 0x1,0x0,0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x1b, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x1b, 0x1,0x0,0x0,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x1d, 0x1,0x0,0x0,0x0,0x0,0x0,0x25,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1f, 0x1,0x0,0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1f, 0x1,0x0,0x0,0x0,0x0,0x0,0x32,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x21, 0x1,0x0,0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x23, 0x1,0x0,0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x24, 0x1,0x0,0x0,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x26, 0x1,0x0,0x0,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x27, 0x1,0x0,0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x28, 0x1,0x0,0x0,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x2a, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x2a, 0x1,0x0,0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x2a, 0x1,0x0,0x0,0x0,0x0,0x0,0x74,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x30, 0x1,0x0,0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x30, 0x1,0x0,0x0,0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x32, 0x1,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x32, 0x1,0x0,0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x35, 0x1,0x0,0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x36, 0x1,0x0,0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x38, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x38, 0x1,0x0,0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x39, 0x1,0x0,0x0,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x3c, 0x1,0x0,0x0,0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x3d, 0x1,0x0,0x0,0x0,0x0,0x0,0x7d,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x42, 0x1,0x0,0x0,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x42, 0x1,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x42, 0x1,0x0,0x0,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x43, 0x1,0x0,0x0,0x0,0x0,0x0,0x7b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x45, 0x1,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x45, 0x1,0x0,0x0,0x0,0x0,0x0,0x8a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x48, 0x1,0x0,0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x48, 0x1,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x48, 0x1,0x0,0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x48, 0x1,0x0,0x0,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x4a, 0x1,0x0,0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xfa,0x21,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x27,0x9,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x1,0x34, 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x15,0x41,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x42,0x41,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x42,0x41,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, 0x0,0x0,0x0,0x72,0x62,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x5,0x10,0xda,0x0,0x0, 0x1,0x3,0x0,0x2,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x90,0x83,0x2d,0x0,0x98,0xbc,0x22,0x0,0x0,0x0,0x0,0x0, 0x90,0x83,0x2d,0x0,0x0,0x0,0x0,0x0,0x8f,0xd,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xee,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x2,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xd,0x0,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xd,0x0,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x16,0x0,0x0, 0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0xd3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x1e,0x0,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x1e,0x0,0x0, 0x0,0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x20,0x0,0x0, 0x0,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x21,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x21,0x0,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x21,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x21,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x21,0x0,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x28,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x28,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x28,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x2b,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x2b,0x0,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2b,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x2b,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x2b,0x0,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x2d,0x0,0x0, 0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x2d,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x2d,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x2d,0x0,0x0, 0x0,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x2e,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x2e,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x2e,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x2e,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x2f,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x2f,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x2f,0x0,0x0, 0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x31,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x31,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x31,0x0,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x31,0x0,0x0, 0x0,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x35,0x0,0x0, 0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x36,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x36,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x36,0x0,0x0, 0x0,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x38,0x0,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x38,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x38,0x0,0x0, 0x0,0x0,0x0,0x0,0xd5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x3a,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x3c,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x3c,0x0,0x0, 0x0,0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x3d,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3e,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3e,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x3f,0x0,0x0, 0x0,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x40,0x0,0x0, 0x0,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x41,0x0,0x0, 0x0,0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x43,0x0,0x0, 0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x44,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x48,0x0,0x0, 0x0,0x0,0x0,0x0,0x4a,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x4d,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x4d,0x0,0x0, 0x0,0x0,0x0,0x0,0xbc,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x56,0x0,0x0, 0x0,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x56,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x56,0x0,0x0, 0x0,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x57,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x57,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x5b,0x0,0x0, 0x0,0x0,0x0,0x0,0x9e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x5d,0x0,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x5d,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x60,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x60,0x0,0x0, 0x0,0x0,0x0,0x0,0x79,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x68,0x0,0x0, 0x0,0x0,0x0,0x0,0xed,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x6a,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x6a,0x0,0x0, 0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x99,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x6d,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x6d,0x0,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x6d,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x6d,0x0,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x6d,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x6e,0x0,0x0, 0x0,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x6e,0x0,0x0, 0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x70,0x0,0x0, 0x0,0x0,0x0,0x0,0x3e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x72,0x0,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x72,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x86,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x77,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x77,0x0,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x79,0x0,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x79,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x7a,0x0,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x7a,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x7e,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x7e,0x0,0x0, 0x0,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x7f,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x7f,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x65,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x88,0x0,0x0, 0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x88,0x0,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x90,0x0,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x90,0x0,0x0, 0x0,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x91,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x92,0x0,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x92,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x92,0x0,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x0,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x93,0x0,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x93,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x93,0x0,0x0, 0x0,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x95,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x95,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x95,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x95,0x0,0x0, 0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x96,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x96,0x0,0x0, 0x0,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x98,0x0,0x0, 0x0,0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x99,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x99,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x9b,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x9b,0x0,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x9b,0x0,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x9c,0x0,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x9d,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x9d,0x0,0x0, 0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x9e,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x9e,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x9e,0x0,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x9f,0x0,0x0, 0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x9f,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x9f,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x9f,0x0,0x0, 0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xa0,0x0,0x0, 0x0,0x0,0x0,0x0,0xba,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xa2,0x0,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xa2,0x0,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0xa2,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xa3,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xa3,0x0,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xa4,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xa4,0x0,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xa4,0x0,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xa4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0xa5,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0xa5,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0xa5,0x0,0x0, 0x0,0x0,0x0,0x0,0x38,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0xab,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xab,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xac,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xac,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xac,0x0,0x0, 0x0,0x0,0x0,0x0,0xcd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xae,0x0,0x0, 0x0,0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xaf,0x0,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0xb0,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0xb1,0x0,0x0, 0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xb2,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xb2,0x0,0x0, 0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xb2,0x0,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xb3,0x0,0x0, 0x0,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xb6,0x0,0x0, 0x0,0x0,0x0,0x0,0x8d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xb8,0x0,0x0, 0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xb8,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xb9,0x0,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xb9,0x0,0x0, 0x0,0x0,0x0,0x0,0x2c,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xbf,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xbf,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0xc1,0x0,0x0, 0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0xc1,0x0,0x0, 0x0,0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0xc4,0x0,0x0, 0x0,0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x8e,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0xdc,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xd9,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xd9,0x0,0x0, 0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xdc,0x0,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0xdc,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x3e,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xe1,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xe1,0x0,0x0, 0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xe5,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xe5,0x0,0x0, 0x0,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xe9,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xe9,0x0,0x0, 0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xea,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xea,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xea,0x0,0x0, 0x0,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0xea,0x0,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xeb,0x0,0x0, 0x0,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xeb,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xec,0x0,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xed,0x0,0x0, 0x0,0x0,0x0,0x0,0xc7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xf1,0x0,0x0, 0x0,0x0,0x0,0x0,0xcc,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xf5,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xf6,0x0,0x0, 0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xf6,0x0,0x0, 0x0,0x0,0x0,0x0,0x89,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0xfe,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xfe,0x0,0x0, 0x0,0x0,0x0,0x0,0xde,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x1,0x1,0x0, 0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x2,0x1,0x0, 0x0,0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x3,0x1,0x0, 0x0,0x0,0x0,0x0,0x25,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xa,0x1,0x0, 0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xb,0x1,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xb,0x1,0x0, 0x0,0x0,0x0,0x0,0x33,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xe,0x1,0x0, 0x0,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x10,0x1,0x0, 0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x11,0x1,0x0, 0x0,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x13,0x1,0x0, 0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x14,0x1,0x0, 0x0,0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x16,0x1,0x0, 0x0,0x0,0x0,0x0,0xd9,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x1c,0x1,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x1d,0x1,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x1d,0x1,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x1d,0x1,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x1d,0x1,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x1e,0x1,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x1f,0x1,0x0, 0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x1f,0x1,0x0, 0x0,0x0,0x0,0x0,0x76,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x22,0x1,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x22,0x1,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x22,0x1,0x0, 0x0,0x0,0x0,0x0,0x29,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x24,0x1,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x24,0x1,0x0, 0x0,0x0,0x0,0x0,0x96,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x31,0x1,0x0, 0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x34,0x1,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x34,0x1,0x0, 0x0,0x0,0x0,0x0,0x1e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x36,0x1,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x36,0x1,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x36,0x1,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x36,0x1,0x0, 0x0,0x0,0x0,0x0,0xeb,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x3e,0x1,0x0, 0x0,0x0,0x0,0x0,0xdd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x43,0x1,0x0, 0x0,0x0,0x0,0x0,0x8b,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x50,0x1,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x50,0x1,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x50,0x1,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x50,0x1,0x0, 0x0,0x0,0x0,0x0,0xaf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x53,0x1,0x0, 0x0,0x0,0x0,0x0,0x24,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x54,0x1,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x54,0x1,0x0, 0x0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x55,0x1,0x0, 0x0,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x58,0x1,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x58,0x1,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x30,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x63,0x1,0x0, 0x0,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x66,0x1,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x66,0x1,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x66,0x1,0x0, 0x0,0x0,0x0,0x0,0x8b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x68,0x1,0x0, 0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x69,0x1,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x69,0x1,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x6a,0x1,0x0, 0x0,0x0,0x0,0x0,0xa,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x71,0x1,0x0, 0x0,0x0,0x0,0x0,0x54,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x74,0x1,0x0, 0x0,0x0,0x0,0x0,0xb3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x77,0x1,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x77,0x1,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x77,0x1,0x0, 0x0,0x0,0x0,0x0,0x1c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x7a,0x1,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x7e,0x1,0x0, 0x0,0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x83,0x1,0x0, 0x0,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x84,0x1,0x0, 0x0,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x86,0x1,0x0, 0x0,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x89,0x1,0x0, 0x0,0x0,0x0,0x0,0x68,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x8d,0x1,0x0, 0x0,0x0,0x0,0x0,0x70,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x91,0x1,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x91,0x1,0x0, 0x0,0x0,0x0,0x0,0xb2,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x9c,0x1,0x0, 0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x9d,0x1,0x0, 0x0,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x9f,0x1,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x9f,0x1,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x9f,0x1,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0xa0,0x1,0x0, 0x0,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xa1,0x1,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xa1,0x1,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xa1,0x1,0x0, 0x0,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xa4,0x1,0x0, 0x0,0x0,0x0,0x0,0x9a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xa7,0x1,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xa7,0x1,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0xa7,0x1,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xa7,0x1,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xa8,0x1,0x0, 0x0,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xa9,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xa9,0x1,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xa9,0x1,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0xa9,0x1,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xa9,0x1,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xaa,0x1,0x0, 0x0,0x0,0x0,0x0,0x19,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0xad,0x1,0x0, 0x0,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xb0,0x1,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0xb0,0x1,0x0, 0x0,0x0,0x0,0x0,0x7b,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xb8,0x1,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xb8,0x1,0x0, 0x0,0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xbb,0x1,0x0, 0x0,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xbd,0x1,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0xbe,0x1,0x0, 0x0,0x0,0x0,0x0,0x1d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0xc0,0x1,0x0, 0x0,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0xc1,0x1,0x0, 0x0,0x0,0x0,0x0,0x91,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0xc5,0x1,0x0, 0x0,0x0,0x0,0x0,0x2,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xcd,0x1,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xcd,0x1,0x0, 0x0,0x0,0x0,0x0,0x35,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xd5,0x1,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xd6,0x1,0x0, 0x0,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0xd6,0x1,0x0, 0x0,0x0,0x0,0x0,0x57,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xe0,0x1,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xe2,0x1,0x0, 0x0,0x0,0x0,0x0,0x3d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0xe4,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xe6,0x1,0x0, 0x0,0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xe9,0x1,0x0, 0x0,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0xea,0x1,0x0, 0x0,0x0,0x0,0x0,0x43,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xf0,0x1,0x0, 0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf3,0x1,0x0, 0x0,0x0,0x0,0x0,0xb2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xf4,0x1,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xf5,0x1,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0xf5,0x1,0x0, 0x0,0x0,0x0,0x0,0xdf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xf8,0x1,0x0, 0x0,0x0,0x0,0x0,0xf0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xfa,0x1,0x0, 0x0,0x0,0x0,0x0,0x9d,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x5,0x2,0x0, 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x5,0x2,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x6,0x2,0x0, 0x0,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x6,0x2,0x0, 0x0,0x0,0x0,0x0,0x6d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x8,0x2,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x8,0x2,0x0, 0x0,0x0,0x0,0x0,0xf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xa,0x2,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0xb,0x2,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xb,0x2,0x0, 0x0,0x0,0x0,0x0,0xfa,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x11,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x11,0x2,0x0, 0x0,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x14,0x2,0x0, 0x0,0x0,0x0,0x0,0x92,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x17,0x2,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x18,0x2,0x0, 0x0,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x19,0x2,0x0, 0x0,0x0,0x0,0x0,0xec,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x1e,0x2,0x0, 0x0,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x22,0x2,0x0, 0x0,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x24,0x2,0x0, 0x0,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x25,0x2,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x25,0x2,0x0, 0x0,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x26,0x2,0x0, 0x0,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x27,0x2,0x0, 0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x28,0x2,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x29,0x2,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x29,0x2,0x0, 0x0,0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x2a,0x2,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x2b,0x2,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x2b,0x2,0x0, 0x0,0x0,0x0,0x0,0xf0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x2e,0x2,0x0, 0x0,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x2f,0x2,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x30,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x30,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x30,0x2,0x0, 0x0,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x31,0x2,0x0, 0x0,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x37,0x2,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x37,0x2,0x0, 0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x38,0x2,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x39,0x2,0x0, 0x0,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x3a,0x2,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x3a,0x2,0x0, 0x0,0x0,0x0,0x0,0xb9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x2,0x0, 0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x3c,0x2,0x0, 0x0,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x3d,0x2,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x3d,0x2,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x3d,0x2,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x3d,0x2,0x0, 0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x3e,0x2,0x0, 0x0,0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x42,0x2,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x43,0x2,0x0, 0x0,0x0,0x0,0x0,0xe,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x46,0x2,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x46,0x2,0x0, 0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x47,0x2,0x0, 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x47,0x2,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x48,0x2,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x48,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x48,0x2,0x0, 0x0,0x0,0x0,0x0,0xa9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x49,0x2,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x49,0x2,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x49,0x2,0x0, 0x0,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x4c,0x2,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x4d,0x2,0x0, 0x0,0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x4e,0x2,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x4e,0x2,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x4e,0x2,0x0, 0x0,0x0,0x0,0x0,0xc3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x53,0x2,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x53,0x2,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x53,0x2,0x0, 0x0,0x0,0x0,0x0,0x71,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x55,0x2,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x55,0x2,0x0, 0x0,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x56,0x2,0x0, 0x0,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x5b,0x2,0x0, 0x0,0x0,0x0,0x0,0xb5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x5d,0x2,0x0, 0x0,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x5f,0x2,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x60,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x60,0x2,0x0, 0x0,0x0,0x0,0x0,0xb7,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x67,0x2,0x0, 0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x68,0x2,0x0, 0x0,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x6a,0x2,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x6a,0x2,0x0, 0x0,0x0,0x0,0x0,0x41,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x74,0x2,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x74,0x2,0x0, 0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x75,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x75,0x2,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x75,0x2,0x0, 0x0,0x0,0x0,0x0,0x73,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x77,0x2,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x77,0x2,0x0, 0x0,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x79,0x2,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x79,0x2,0x0, 0x0,0x0,0x0,0x0,0x8f,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x7f,0x2,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x80,0x2,0x0, 0x0,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x82,0x2,0x0, 0x0,0x0,0x0,0x0,0xcb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x85,0x2,0x0, 0x0,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x85,0x2,0x0, 0x0,0x0,0x0,0x0,0x40,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x87,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x89,0x2,0x0, 0x0,0x0,0x0,0x0,0x91,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x8a,0x2,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x8a,0x2,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x8a,0x2,0x0, 0x0,0x0,0x0,0x0,0x1e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x8b,0x2,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x8c,0x2,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x8c,0x2,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x8c,0x2,0x0, 0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x8d,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x8d,0x2,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x8d,0x2,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x8e,0x2,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x8e,0x2,0x0, 0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x8e,0x2,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x8e,0x2,0x0, 0x0,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x8f,0x2,0x0, 0x0,0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x90,0x2,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x90,0x2,0x0, 0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x91,0x2,0x0, 0x0,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x91,0x2,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x92,0x2,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x92,0x2,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x92,0x2,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x92,0x2,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x93,0x2,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x93,0x2,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x93,0x2,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x93,0x2,0x0, 0x0,0x0,0x0,0x0,0xf0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x96,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x96,0x2,0x0, 0x0,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x9a,0x2,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0xa4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x9d,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x9d,0x2,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x9d,0x2,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x9d,0x2,0x0, 0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x9d,0x2,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x9e,0x2,0x0, 0x0,0x0,0x0,0x0,0x73,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xa9,0x2,0x0, 0x0,0x0,0x0,0x0,0x11,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xac,0x2,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xad,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xaf,0x2,0x0, 0x0,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0xb0,0x2,0x0, 0x0,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0xb2,0x2,0x0, 0x0,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xb6,0x2,0x0, 0x0,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xb7,0x2,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xb7,0x2,0x0, 0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xb8,0x2,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xb9,0x2,0x0, 0x0,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xba,0x2,0x0, 0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xbc,0x2,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xbc,0x2,0x0, 0x0,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0xc1,0x2,0x0, 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xc2,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xc2,0x2,0x0, 0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xc2,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xc2,0x2,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xc3,0x2,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0xc3,0x2,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xc3,0x2,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xc3,0x2,0x0, 0x0,0x0,0x0,0x0,0xb0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xc6,0x2,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xc6,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc6,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0xc7,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0xc7,0x2,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xc7,0x2,0x0, 0x0,0x0,0x0,0x0,0x57,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0xc8,0x2,0x0, 0x0,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xc9,0x2,0x0, 0x0,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xca,0x2,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xca,0x2,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xca,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xca,0x2,0x0, 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xcb,0x2,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xcb,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xcb,0x2,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xcb,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0xcb,0x2,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xcc,0x2,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xcc,0x2,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xcd,0x2,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xcd,0x2,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xcd,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xcd,0x2,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xcf,0x2,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xcf,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xcf,0x2,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xd0,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0xd0,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xd1,0x2,0x0, 0x0,0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xd3,0x2,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xd3,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xd3,0x2,0x0, 0x0,0x0,0x0,0x0,0xe8,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0xd6,0x2,0x0, 0x0,0x0,0x0,0x0,0x72,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xd7,0x2,0x0, 0x0,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xd8,0x2,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xda,0x2,0x0, 0x0,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xda,0x2,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xdb,0x2,0x0, 0x0,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xdc,0x2,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xdd,0x2,0x0, 0x0,0x0,0x0,0x0,0xce,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xdf,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xdf,0x2,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xdf,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xe0,0x2,0x0, 0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xe1,0x2,0x0, 0x0,0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0xe3,0x2,0x0, 0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xe4,0x2,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xe4,0x2,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xe4,0x2,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xe4,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xe5,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xe6,0x2,0x0, 0x0,0x0,0x0,0x0,0xe8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xe7,0x2,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xe8,0x2,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xe9,0x2,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xe9,0x2,0x0, 0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xe9,0x2,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xe9,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xe9,0x2,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0xea,0x2,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xea,0x2,0x0, 0x0,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xec,0x2,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xec,0x2,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xec,0x2,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xec,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xec,0x2,0x0, 0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0xed,0x2,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xed,0x2,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xee,0x2,0x0, 0x0,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xef,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0xf0,0x2,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0xf0,0x2,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xf0,0x2,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xf1,0x2,0x0, 0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xf1,0x2,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xf2,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xf2,0x2,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xf2,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xf2,0x2,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xf2,0x2,0x0, 0x0,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xf3,0x2,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xf4,0x2,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0xf4,0x2,0x0, 0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xf8,0x2,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xf8,0x2,0x0, 0x0,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xfa,0x2,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xfa,0x2,0x0, 0x0,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xfc,0x2,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0xfc,0x2,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xfc,0x2,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xfd,0x2,0x0, 0x0,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xfd,0x2,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xfd,0x2,0x0, 0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xfe,0x2,0x0, 0x0,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xfe,0x2,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0x2,0x0, 0x0,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x23,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x1,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x1,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x1,0x3,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x1,0x3,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1,0x3,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x2,0x3,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x2,0x3,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x2,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x2,0x3,0x0, 0x0,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x3,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x7,0x3,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x7,0x3,0x0, 0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x8,0x3,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x9,0x3,0x0, 0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0xb,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0xb,0x3,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xb,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xb,0x3,0x0, 0x0,0x0,0x0,0x0,0xe8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xd,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xd,0x3,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xd,0x3,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xe,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0xe,0x3,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x10,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x10,0x3,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x10,0x3,0x0, 0x0,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x11,0x3,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x12,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x12,0x3,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x12,0x3,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x12,0x3,0x0, 0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x13,0x3,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x13,0x3,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x14,0x3,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x14,0x3,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x14,0x3,0x0, 0x0,0x0,0x0,0x0,0x83,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x17,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x17,0x3,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x17,0x3,0x0, 0x0,0x0,0x0,0x0,0x61,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x1b,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x1b,0x3,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x1b,0x3,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x3,0x0, 0x0,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1e,0x3,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x1e,0x3,0x0, 0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x1f,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x1f,0x3,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x1f,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x1f,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x1f,0x3,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x20,0x3,0x0, 0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x20,0x3,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x20,0x3,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x21,0x3,0x0, 0x0,0x0,0x0,0x0,0x8f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x24,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x24,0x3,0x0, 0x0,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x25,0x3,0x0, 0x0,0x0,0x0,0x0,0xa5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x27,0x3,0x0, 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x27,0x3,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x27,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x27,0x3,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x28,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x28,0x3,0x0, 0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x28,0x3,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x28,0x3,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x2a,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x2b,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x2b,0x3,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2b,0x3,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x3,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x2c,0x3,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x2c,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x2c,0x3,0x0, 0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x2d,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x2d,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x2d,0x3,0x0, 0x0,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x2e,0x3,0x0, 0x0,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x2f,0x3,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x2f,0x3,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x2f,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x30,0x3,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x30,0x3,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x30,0x3,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x30,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x31,0x3,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x31,0x3,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x31,0x3,0x0, 0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x33,0x3,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x33,0x3,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x34,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x34,0x3,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x34,0x3,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x34,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x36,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x36,0x3,0x0, 0x0,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x36,0x3,0x0, 0x0,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x37,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x37,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x37,0x3,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x38,0x3,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x39,0x3,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x39,0x3,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x3a,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x3a,0x3,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x3a,0x3,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x3a,0x3,0x0, 0x0,0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x3b,0x3,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x3b,0x3,0x0, 0x0,0x0,0x0,0x0,0x79,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x3e,0x3,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x3e,0x3,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x3e,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x3f,0x3,0x0, 0x0,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x3f,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x3f,0x3,0x0, 0x0,0x0,0x0,0x0,0xb6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x41,0x3,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x41,0x3,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x41,0x3,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x42,0x3,0x0, 0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x43,0x3,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x43,0x3,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x43,0x3,0x0, 0x0,0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x45,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x45,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x45,0x3,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x46,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x46,0x3,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x46,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x46,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x46,0x3,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x47,0x3,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x47,0x3,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x47,0x3,0x0, 0x0,0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x4a,0x3,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x4a,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x4a,0x3,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x4a,0x3,0x0, 0x0,0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x4e,0x3,0x0, 0x0,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x4f,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x4f,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x4f,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x4f,0x3,0x0, 0x0,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x50,0x3,0x0, 0x0,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x53,0x3,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x54,0x3,0x0, 0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x54,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x54,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x54,0x3,0x0, 0x0,0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x56,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x56,0x3,0x0, 0x0,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x58,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x58,0x3,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x59,0x3,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x59,0x3,0x0, 0x0,0x0,0x0,0x0,0x6d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x5a,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x5a,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x5a,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x5a,0x3,0x0, 0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x5b,0x3,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x5c,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x5d,0x3,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x3,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x5e,0x3,0x0, 0x0,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x5f,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x5f,0x3,0x0, 0x0,0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x60,0x3,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x60,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x60,0x3,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x61,0x3,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x61,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x61,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x63,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x63,0x3,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x64,0x3,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x64,0x3,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x64,0x3,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x64,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x64,0x3,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x65,0x3,0x0, 0x0,0x0,0x0,0x0,0xc4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x3,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x67,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x67,0x3,0x0, 0x0,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x68,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x68,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x68,0x3,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x69,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x69,0x3,0x0, 0x0,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x6a,0x3,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x6a,0x3,0x0, 0x0,0x0,0x0,0x0,0xad,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x6b,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x6c,0x3,0x0, 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x6c,0x3,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x6c,0x3,0x0, 0x0,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x6d,0x3,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x6d,0x3,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x6d,0x3,0x0, 0x0,0x0,0x0,0x0,0x35,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x73,0x3,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x73,0x3,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x74,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x74,0x3,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x74,0x3,0x0, 0x0,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x77,0x3,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x78,0x3,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x78,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x78,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x78,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x79,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x79,0x3,0x0, 0x0,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x7a,0x3,0x0, 0x0,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x7d,0x3,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x7d,0x3,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x7d,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x7d,0x3,0x0, 0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x7e,0x3,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x7e,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x7f,0x3,0x0, 0x0,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x80,0x3,0x0, 0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x81,0x3,0x0, 0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x81,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x81,0x3,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x82,0x3,0x0, 0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x82,0x3,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x82,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x82,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x82,0x3,0x0, 0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x83,0x3,0x0, 0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x84,0x3,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x84,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x84,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x85,0x3,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x85,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x85,0x3,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x86,0x3,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x86,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x86,0x3,0x0, 0x0,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x87,0x3,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x87,0x3,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x87,0x3,0x0, 0x0,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x8a,0x3,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x8a,0x3,0x0, 0x0,0x0,0x0,0x0,0x61,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x8c,0x3,0x0, 0x0,0x0,0x0,0x0,0x8b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x90,0x3,0x0, 0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x92,0x3,0x0, 0x0,0x0,0x0,0x0,0x7c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x95,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x95,0x3,0x0, 0x0,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x96,0x3,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x96,0x3,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x96,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x96,0x3,0x0, 0x0,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x98,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x99,0x3,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x9a,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x9a,0x3,0x0, 0x0,0x0,0x0,0x0,0xc9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x9c,0x3,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x9c,0x3,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x9c,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x9c,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x9c,0x3,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x9d,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x9d,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x9d,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x9e,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x9e,0x3,0x0, 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x9f,0x3,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x9f,0x3,0x0, 0x0,0x0,0x0,0x0,0x87,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xa0,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xa0,0x3,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xa0,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xa0,0x3,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xa1,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xa1,0x3,0x0, 0x0,0x0,0x0,0x0,0x3b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xa2,0x3,0x0, 0x0,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0xa5,0x3,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0xa5,0x3,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xa7,0x3,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xa7,0x3,0x0, 0x0,0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xa9,0x3,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xa9,0x3,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xa9,0x3,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xa9,0x3,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xa9,0x3,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xaa,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xaa,0x3,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xaa,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xac,0x3,0x0, 0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0xad,0x3,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xae,0x3,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xae,0x3,0x0, 0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xae,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xae,0x3,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xaf,0x3,0x0, 0x0,0x0,0x0,0x0,0x27,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xb1,0x3,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xb1,0x3,0x0, 0x0,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xb2,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xb2,0x3,0x0, 0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xb2,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xb2,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xb2,0x3,0x0, 0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xb3,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xb4,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xb4,0x3,0x0, 0x0,0x0,0x0,0x0,0x29,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xb5,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0xb5,0x3,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xb5,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xb5,0x3,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xb6,0x3,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xb6,0x3,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xb6,0x3,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xb8,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xb8,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xb8,0x3,0x0, 0x0,0x0,0x0,0x0,0x97,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xba,0x3,0x0, 0x0,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xba,0x3,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xba,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xba,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xbb,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xbb,0x3,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0xbb,0x3,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xbb,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xbb,0x3,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xbd,0x3,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xbe,0x3,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xbe,0x3,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xbe,0x3,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xbf,0x3,0x0, 0x0,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0xc2,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xc2,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xc2,0x3,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xc2,0x3,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xc3,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xc3,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0xc3,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xc3,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xc3,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xc4,0x3,0x0, 0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xc6,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xc6,0x3,0x0, 0x0,0x0,0x0,0x0,0x52,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xc7,0x3,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xc7,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xc7,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xc8,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc8,0x3,0x0, 0x0,0x0,0x0,0x0,0x59,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xca,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0xca,0x3,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xca,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xcb,0x3,0x0, 0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0xcc,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0xcc,0x3,0x0, 0x0,0x0,0x0,0x0,0x3e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0xce,0x3,0x0, 0x0,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0xcf,0x3,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xcf,0x3,0x0, 0x0,0x0,0x0,0x0,0x49,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xd2,0x3,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xd2,0x3,0x0, 0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xd3,0x3,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xd3,0x3,0x0, 0x0,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xd4,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xd4,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xd4,0x3,0x0, 0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xd6,0x3,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xd6,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xd7,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xd7,0x3,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xd7,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xd7,0x3,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xd7,0x3,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xd8,0x3,0x0, 0x0,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xdb,0x3,0x0, 0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xdb,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xdd,0x3,0x0, 0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0xde,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xde,0x3,0x0, 0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xdf,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xdf,0x3,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xdf,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xdf,0x3,0x0, 0x0,0x0,0x0,0x0,0xbd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xe1,0x3,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xe1,0x3,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xe1,0x3,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xe2,0x3,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xe2,0x3,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0xe2,0x3,0x0, 0x0,0x0,0x0,0x0,0x62,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xe3,0x3,0x0, 0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xe5,0x3,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xe5,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xe6,0x3,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xe6,0x3,0x0, 0x0,0x0,0x0,0x0,0xbc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xe8,0x3,0x0, 0x0,0x0,0x0,0x0,0x53,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xe9,0x3,0x0, 0x0,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x3,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0xec,0x3,0x0, 0x0,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xec,0x3,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xed,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0xed,0x3,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xed,0x3,0x0, 0x0,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xed,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xed,0x3,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xee,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xee,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xee,0x3,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xee,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0xee,0x3,0x0, 0x0,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xef,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xf0,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xf0,0x3,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xf0,0x3,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xf1,0x3,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xf1,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0xf1,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xf1,0x3,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xf1,0x3,0x0, 0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xf2,0x3,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xf2,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xf2,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xf2,0x3,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xf3,0x3,0x0, 0x0,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xf5,0x3,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xf5,0x3,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xf5,0x3,0x0, 0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xf6,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xf6,0x3,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xf6,0x3,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xf6,0x3,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xf7,0x3,0x0, 0x0,0x0,0x0,0x0,0xb3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xfb,0x3,0x0, 0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xfd,0x3,0x0, 0x0,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x2,0x4,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x3,0x4,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x3,0x4,0x0, 0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x3,0x4,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x3,0x4,0x0, 0x0,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x4,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x4,0x4,0x0, 0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x5,0x4,0x0, 0x0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x6,0x4,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x6,0x4,0x0, 0x0,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x7,0x4,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x7,0x4,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x7,0x4,0x0, 0x0,0x0,0x0,0x0,0xad,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x9,0x4,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9,0x4,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xb,0x4,0x0, 0x0,0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xc,0x4,0x0, 0x0,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xd,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xd,0x4,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xe,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xe,0x4,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xe,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0xe,0x4,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xe,0x4,0x0, 0x0,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x4,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x10,0x4,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x10,0x4,0x0, 0x0,0x0,0x0,0x0,0xa3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x12,0x4,0x0, 0x0,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x12,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x12,0x4,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x12,0x4,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x12,0x4,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x14,0x4,0x0, 0x0,0x0,0x0,0x0,0xd7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x17,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x17,0x4,0x0, 0x0,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x17,0x4,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x17,0x4,0x0, 0x0,0x0,0x0,0x0,0xad,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x18,0x4,0x0, 0x0,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x1a,0x4,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x1a,0x4,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x1a,0x4,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x1a,0x4,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x1b,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x1b,0x4,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x1b,0x4,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x1c,0x4,0x0, 0x0,0x0,0x0,0x0,0x6b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x1e,0x4,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x1e,0x4,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x1e,0x4,0x0, 0x0,0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x1f,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x1f,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1f,0x4,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x20,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x20,0x4,0x0, 0x0,0x0,0x0,0x0,0xa2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x22,0x4,0x0, 0x0,0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x25,0x4,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x25,0x4,0x0, 0x0,0x0,0x0,0x0,0x2f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x27,0x4,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x28,0x4,0x0, 0x0,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x29,0x4,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x29,0x4,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x2a,0x4,0x0, 0x0,0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x2e,0x4,0x0, 0x0,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x30,0x4,0x0, 0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x30,0x4,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x31,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x31,0x4,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x31,0x4,0x0, 0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x31,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x31,0x4,0x0, 0x0,0x0,0x0,0x0,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x32,0x4,0x0, 0x0,0x0,0x0,0x0,0xa9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x34,0x4,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x34,0x4,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x34,0x4,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x35,0x4,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x35,0x4,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x35,0x4,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x35,0x4,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x36,0x4,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x36,0x4,0x0, 0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x36,0x4,0x0, 0x0,0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x38,0x4,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x38,0x4,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x38,0x4,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x39,0x4,0x0, 0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x39,0x4,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x3a,0x4,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x3a,0x4,0x0, 0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x3b,0x4,0x0, 0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x3b,0x4,0x0, 0x0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x3c,0x4,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x3c,0x4,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x3c,0x4,0x0, 0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x3d,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x3d,0x4,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x3e,0x4,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x3e,0x4,0x0, 0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x3f,0x4,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3f,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x3f,0x4,0x0, 0x0,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x41,0x4,0x0, 0x0,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x42,0x4,0x0, 0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x43,0x4,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x43,0x4,0x0, 0x0,0x0,0x0,0x0,0x39,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x44,0x4,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x44,0x4,0x0, 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x45,0x4,0x0, 0x0,0x0,0x0,0x0,0x1a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x47,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x47,0x4,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x48,0x4,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x48,0x4,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x48,0x4,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x48,0x4,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x49,0x4,0x0, 0x0,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x4a,0x4,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x4a,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x4a,0x4,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x4d,0x4,0x0, 0x0,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x4f,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x4f,0x4,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x4f,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x4f,0x4,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x4f,0x4,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x6e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x54,0x4,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x54,0x4,0x0, 0x0,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x54,0x4,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x55,0x4,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x55,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x55,0x4,0x0, 0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x56,0x4,0x0, 0x0,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x5b,0x4,0x0, 0x0,0x0,0x0,0x0,0xb7,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x62,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x73,0x4,0x0, 0x0,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x74,0x4,0x0, 0x0,0x0,0x0,0x0,0x9b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x77,0x4,0x0, 0x0,0x0,0x0,0x0,0x3d,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x7f,0x4,0x0, 0x0,0x0,0x0,0x0,0xe8,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x9d,0x4,0x0, 0x0,0x0,0x0,0x0,0xb4,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xa6,0x4,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0xa6,0x4,0x0, 0x0,0x0,0x0,0x0,0x1a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0xa8,0x4,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xa8,0x4,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xa8,0x4,0x0, 0x0,0x0,0x0,0x0,0x82,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xb5,0x4,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0xb5,0x4,0x0, 0x0,0x0,0x0,0x0,0xd1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xb9,0x4,0x0, 0x0,0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0xbd,0x4,0x0, 0x0,0x0,0x0,0x0,0xd2,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xee,0x4,0x0, 0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xee,0x4,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xee,0x4,0x0, 0x0,0x0,0x0,0x0,0xf8,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xf1,0x4,0x0, 0x0,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xf3,0x4,0x0, 0x0,0x0,0x0,0x0,0xb,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xf8,0x4,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xf8,0x4,0x0, 0x0,0x0,0x0,0x0,0x41,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xfe,0x4,0x0, 0x0,0x0,0x0,0x0,0x31,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x10,0x5,0x0, 0x0,0x0,0x0,0x0,0x1c,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x23,0x5,0x0, 0x0,0x0,0x0,0x0,0x7b,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x2f,0x5,0x0, 0x0,0x0,0x0,0x0,0xc2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x33,0x5,0x0, 0x0,0x0,0x0,0x0,0x81,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x45,0x5,0x0, 0x0,0x0,0x0,0x0,0xd2,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x6c,0x5,0x0, 0x0,0x0,0x0,0x0,0x1a,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xad,0x5,0x0, 0x0,0x0,0x0,0x0,0x4e,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1b,0x6,0x0, 0x0,0x0,0x0,0x0,0x96,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x2e,0x6,0x0, 0x0,0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x30,0x6,0x0, 0x0,0x0,0x0,0x0,0x60,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x38,0x6,0x0, 0x0,0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x39,0x6,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x39,0x6,0x0, 0x0,0x0,0x0,0x0,0xd6,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x5b,0x6,0x0, 0x0,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x60,0x6,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x60,0x6,0x0, 0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x62,0x6,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x62,0x6,0x0, 0x0,0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x64,0x6,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x64,0x6,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x64,0x6,0x0, 0x0,0x0,0x0,0x0,0x86,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x6c,0x6,0x0, 0x0,0x0,0x0,0x0,0xc8,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x76,0x6,0x0, 0x0,0x0,0x0,0x0,0xf6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x78,0x6,0x0, 0x0,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x79,0x6,0x0, 0x0,0x0,0x0,0x0,0x10,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x80,0x6,0x0, 0x0,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x82,0x6,0x0, 0x0,0x0,0x0,0x0,0xab,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x8d,0x6,0x0, 0x0,0x0,0x0,0x0,0x3c,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xaa,0x6,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xaa,0x6,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xaa,0x6,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xaa,0x6,0x0, 0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xae,0x6,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xae,0x6,0x0, 0x0,0x0,0x0,0x0,0x6b,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xb8,0x6,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xb8,0x6,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xb8,0x6,0x0, 0x0,0x0,0x0,0x0,0xa2,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xc2,0x6,0x0, 0x0,0x0,0x0,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xca,0x6,0x0, 0x0,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xcb,0x6,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xcc,0x6,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xcc,0x6,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xcc,0x6,0x0, 0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xcd,0x6,0x0, 0x0,0x0,0x0,0x0,0x44,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xf0,0x6,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xf0,0x6,0x0, 0x0,0x0,0x0,0x0,0x3e,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xf7,0x6,0x0, 0x0,0x0,0x0,0x0,0x88,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1,0x7,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x1,0x7,0x0, 0x0,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x2,0x7,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x2,0x7,0x0, 0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x3,0x7,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3,0x7,0x0, 0x0,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x5,0x7,0x0, 0x0,0x0,0x0,0x0,0x7,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xb,0x7,0x0, 0x0,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xd,0x7,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xd,0x7,0x0, 0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xd,0x7,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xe,0x7,0x0, 0x0,0x0,0x0,0x0,0x9e,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x2b,0x7,0x0, 0x0,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x2d,0x7,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x2e,0x7,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x2e,0x7,0x0, 0x0,0x0,0x0,0x0,0x51,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x34,0x7,0x0, 0x0,0x0,0x0,0x0,0xf1,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x4b,0x7,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x4b,0x7,0x0, 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x4c,0x7,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x4c,0x7,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x4c,0x7,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x4c,0x7,0x0, 0x0,0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x4e,0x7,0x0, 0x0,0x0,0x0,0x0,0xf9,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x60,0x7,0x0, 0x0,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x62,0x7,0x0, 0x0,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x63,0x7,0x0, 0x0,0x0,0x0,0x0,0x85,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x69,0x7,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x69,0x7,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x69,0x7,0x0, 0x0,0x0,0x0,0x0,0x39,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x70,0x7,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x70,0x7,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x70,0x7,0x0, 0x0,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x70,0x7,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x71,0x7,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x71,0x7,0x0, 0x0,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x76,0x7,0x0, 0x0,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x78,0x7,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x78,0x7,0x0, 0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x79,0x7,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x79,0x7,0x0, 0x0,0x0,0x0,0x0,0x8e,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x7f,0x7,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x80,0x7,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x80,0x7,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x80,0x7,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x80,0x7,0x0, 0x0,0x0,0x0,0x0,0x75,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x95,0x7,0x0, 0x0,0x0,0x0,0x0,0x92,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x97,0x7,0x0, 0x0,0x0,0x0,0x0,0xf7,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xa3,0x7,0x0, 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xa4,0x7,0x0, 0x0,0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xa5,0x7,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0xa5,0x7,0x0, 0x0,0x0,0x0,0x0,0x8b,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xac,0x7,0x0, 0x0,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xac,0x7,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xac,0x7,0x0, 0x0,0x0,0x0,0x0,0x4e,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xba,0x7,0x0, 0x0,0x0,0x0,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xc2,0x7,0x0, 0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xc3,0x7,0x0, 0x0,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xc6,0x7,0x0, 0x0,0x0,0x0,0x0,0xa1,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0xe3,0x7,0x0, 0x0,0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0xe4,0x7,0x0, 0x0,0x0,0x0,0x0,0xef,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0xee,0x7,0x0, 0x0,0x0,0x0,0x0,0xb0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xf8,0x7,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xf8,0x7,0x0, 0x0,0x0,0x0,0x0,0x18,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xf9,0x7,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xf9,0x7,0x0, 0x0,0x0,0x0,0x0,0x97,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x1,0x8,0x0, 0x0,0x0,0x0,0x0,0xa5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x3,0x8,0x0, 0x0,0x0,0x0,0x0,0x5e,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xc,0x8,0x0, 0x0,0x0,0x0,0x0,0x65,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x2b,0x8,0x0, 0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x2d,0x8,0x0, 0x0,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x2e,0x8,0x0, 0x0,0x0,0x0,0x0,0xc8,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x36,0x8,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x36,0x8,0x0, 0x0,0x0,0x0,0x0,0x78,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x42,0x8,0x0, 0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x42,0x8,0x0, 0x0,0x0,0x0,0x0,0xad,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x58,0x8,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x58,0x8,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x58,0x8,0x0, 0x0,0x0,0x0,0x0,0x52,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x65,0x8,0x0, 0x0,0x0,0x0,0x0,0x27,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x6b,0x8,0x0, 0x0,0x0,0x0,0x0,0x45,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x76,0x8,0x0, 0x0,0x0,0x0,0x0,0x45,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x80,0x8,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x80,0x8,0x0, 0x0,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x82,0x8,0x0, 0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x84,0x8,0x0, 0x0,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x86,0x8,0x0, 0x0,0x0,0x0,0x0,0xe,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x8b,0x8,0x0, 0x0,0x0,0x0,0x0,0x43,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x97,0x8,0x0, 0x0,0x0,0x0,0x0,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xa0,0x8,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xa1,0x8,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xa1,0x8,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0xa1,0x8,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xa1,0x8,0x0, 0x0,0x0,0x0,0x0,0xf,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xb7,0x8,0x0, 0x0,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xb7,0x8,0x0, 0x0,0x0,0x0,0x0,0xcb,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xbf,0x8,0x0, 0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xc0,0x8,0x0, 0x0,0x0,0x0,0x0,0xd5,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x8,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0xca,0x8,0x0, 0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0xcb,0x8,0x0, 0x0,0x0,0x0,0x0,0x4f,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xd5,0x8,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xd5,0x8,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xd6,0x8,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xd6,0x8,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0xd6,0x8,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xd6,0x8,0x0, 0x0,0x0,0x0,0x0,0x8f,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xdd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xdd,0x8,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xdd,0x8,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xdd,0x8,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xdd,0x8,0x0, 0x0,0x0,0x0,0x0,0xdc,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xe6,0x8,0x0, 0x0,0x0,0x0,0x0,0x20,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xeb,0x8,0x0, 0x0,0x0,0x0,0x0,0xe7,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x9,0x9,0x0, 0x0,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xc,0x9,0x0, 0x0,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x11,0x9,0x0, 0x0,0x0,0x0,0x0,0xd,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x1f,0x9,0x0, 0x0,0x0,0x0,0x0,0x44,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x2b,0x9,0x0, 0x0,0x0,0x0,0x0,0xd5,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x51,0x9,0x0, 0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x52,0x9,0x0, 0x0,0x0,0x0,0x0,0x40,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x6b,0x9,0x0, 0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x6b,0x9,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x6b,0x9,0x0, 0x0,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x70,0x9,0x0, 0x0,0x0,0x0,0x0,0xe8,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x77,0x9,0x0, 0x0,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x79,0x9,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x7a,0x9,0x0, 0x0,0x0,0x0,0x0,0x93,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x7f,0x9,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x7f,0x9,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x7f,0x9,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x80,0x9,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x80,0x9,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x80,0x9,0x0, 0x0,0x0,0x0,0x0,0xf7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x82,0x9,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x82,0x9,0x0, 0x0,0x0,0x0,0x0,0x4e,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x8c,0x9,0x0, 0x0,0x0,0x0,0x0,0x6a,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xb7,0x9,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xb8,0x9,0x0, 0x0,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xba,0x9,0x0, 0x0,0x0,0x0,0x0,0xb4,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xc6,0x9,0x0, 0x0,0x0,0x0,0x0,0xd7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xc8,0x9,0x0, 0x0,0x0,0x0,0x0,0x72,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xf2,0x9,0x0, 0x0,0x0,0x0,0x0,0x2e,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xff,0x9,0x0, 0x0,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x0,0xa,0x0, 0x0,0x0,0x0,0x0,0x78,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x2,0xa,0x0, 0x0,0x0,0x0,0x0,0xa7,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xb,0xa,0x0, 0x0,0x0,0x0,0x0,0xd5,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x16,0xa,0x0, 0x0,0x0,0x0,0x0,0x9b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x53,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x39,0xa,0x0, 0x0,0x0,0x0,0x0,0x8e,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x47,0xa,0x0, 0x0,0x0,0x0,0x0,0xa2,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x4f,0xa,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x4f,0xa,0x0, 0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x50,0xa,0x0, 0x0,0x0,0x0,0x0,0xf,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x55,0xa,0x0, 0x0,0x0,0x0,0x0,0xdb,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x5b,0xa,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x5b,0xa,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x5b,0xa,0x0, 0x0,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x5e,0xa,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x5f,0xa,0x0, 0x0,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x62,0xa,0x0, 0x0,0x0,0x0,0x0,0x84,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x71,0xa,0x0, 0x0,0x0,0x0,0x0,0x8d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x75,0xa,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x75,0xa,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x75,0xa,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x75,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x78,0xa,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x79,0xa,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x79,0xa,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x79,0xa,0x0, 0x0,0x0,0x0,0x0,0x53,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x7f,0xa,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x80,0xa,0x0, 0x0,0x0,0x0,0x0,0xc4,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x8b,0xa,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x8c,0xa,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x8c,0xa,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x8c,0xa,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x8c,0xa,0x0, 0x0,0x0,0x0,0x0,0x68,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x8e,0xa,0x0, 0x0,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x8f,0xa,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x8f,0xa,0x0, 0x0,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x91,0xa,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x92,0xa,0x0, 0x0,0x0,0x0,0x0,0xc4,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x9e,0xa,0x0, 0x0,0x0,0x0,0x0,0xca,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xa1,0xa,0x0, 0x0,0x0,0x0,0x0,0x16,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xaa,0xa,0x0, 0x0,0x0,0x0,0x0,0x7d,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xb4,0xa,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xb4,0xa,0x0, 0x0,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xb6,0xa,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xb7,0xa,0x0, 0x0,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xb9,0xa,0x0, 0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xba,0xa,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xba,0xa,0x0, 0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xbd,0xa,0x0, 0x0,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0xbe,0xa,0x0, 0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xbe,0xa,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xbf,0xa,0x0, 0x0,0x0,0x0,0x0,0x3c,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xc3,0xa,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xc3,0xa,0x0, 0x0,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xc5,0xa,0x0, 0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xca,0xa,0x0, 0x0,0x0,0x0,0x0,0x82,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xcd,0xa,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xcd,0xa,0x0, 0x0,0x0,0x0,0x0,0x4a,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xd7,0xa,0x0, 0x0,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xd8,0xa,0x0, 0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xd9,0xa,0x0, 0x0,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xdb,0xa,0x0, 0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xdc,0xa,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xdc,0xa,0x0, 0x0,0x0,0x0,0x0,0xf7,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xe5,0xa,0x0, 0x0,0x0,0x0,0x0,0xc9,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xfb,0xa,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0xfc,0xa,0x0, 0x0,0x0,0x0,0x0,0x81,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x13,0xb,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x14,0xb,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x14,0xb,0x0, 0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x15,0xb,0x0, 0x0,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x16,0xb,0x0, 0x0,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x17,0xb,0x0, 0x0,0x0,0x0,0x0,0x74,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x1d,0xb,0x0, 0x0,0x0,0x0,0x0,0x8c,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x2b,0xb,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x2b,0xb,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x2b,0xb,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2b,0xb,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x2b,0xb,0x0, 0x0,0x0,0x0,0x0,0xc8,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x46,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x46,0xb,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x46,0xb,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x46,0xb,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x46,0xb,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x48,0xb,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x48,0xb,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x48,0xb,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x48,0xb,0x0, 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x49,0xb,0x0, 0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x49,0xb,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x49,0xb,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x49,0xb,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x49,0xb,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x4a,0xb,0x0, 0x0,0x0,0x0,0x0,0x99,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x4a,0xb,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x4a,0xb,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x4b,0xb,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x4b,0xb,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x4b,0xb,0x0, 0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x4e,0xb,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x4f,0xb,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x4f,0xb,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x4f,0xb,0x0, 0x0,0x0,0x0,0x0,0xab,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x53,0xb,0x0, 0x0,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x53,0xb,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x53,0xb,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x56,0xb,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x56,0xb,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x56,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x56,0xb,0x0, 0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x57,0xb,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x57,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x57,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x57,0xb,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x57,0xb,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x58,0xb,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x58,0xb,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x58,0xb,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x58,0xb,0x0, 0x0,0x0,0x0,0x0,0xfe,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x5a,0xb,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x5b,0xb,0x0, 0x0,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x5e,0xb,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x5e,0xb,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x5e,0xb,0x0, 0x0,0x0,0x0,0x0,0x44,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x60,0xb,0x0, 0x0,0x0,0x0,0x0,0x18,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x64,0xb,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x64,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x64,0xb,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x64,0xb,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x65,0xb,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x65,0xb,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x65,0xb,0x0, 0x0,0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x69,0xb,0x0, 0x0,0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x70,0xb,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x70,0xb,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x70,0xb,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x70,0xb,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x70,0xb,0x0, 0x0,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x71,0xb,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x71,0xb,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x71,0xb,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x71,0xb,0x0, 0x0,0x0,0x0,0x0,0xfb,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x83,0xb,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x83,0xb,0x0, 0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x83,0xb,0x0, 0x0,0x0,0x0,0x0,0xcf,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x90,0xb,0x0, 0x0,0x0,0x0,0x0,0x66,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x9b,0xb,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x9b,0xb,0x0, 0x0,0x0,0x0,0x0,0x4e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x9c,0xb,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x9c,0xb,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x9d,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x9d,0xb,0x0, 0x0,0x0,0x0,0x0,0xdf,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0xa4,0xb,0x0, 0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xa4,0xb,0x0, 0x0,0x0,0x0,0x0,0x7d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xa7,0xb,0x0, 0x0,0x0,0x0,0x0,0x58,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xb0,0xb,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0xb1,0xb,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xb1,0xb,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0xb1,0xb,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xb1,0xb,0x0, 0x0,0x0,0x0,0x0,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xb2,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0xb3,0xb,0x0, 0x0,0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xb5,0xb,0x0, 0x0,0x0,0x0,0x0,0x53,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xbb,0xb,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xbb,0xb,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0xbb,0xb,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xbb,0xb,0x0, 0x0,0x0,0x0,0x0,0x32,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xc1,0xb,0x0, 0x0,0x0,0x0,0x0,0xfb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xc6,0xb,0x0, 0x0,0x0,0x0,0x0,0x45,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xcf,0xb,0x0, 0x0,0x0,0x0,0x0,0xc5,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xf8,0xb,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xf8,0xb,0x0, 0x0,0x0,0x0,0x0,0x2d,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x21,0xc,0x0, 0x0,0x0,0x0,0x0,0x1f,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x43,0xc,0x0, 0x0,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x49,0xc,0x0, 0x0,0x0,0x0,0x0,0x34,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x57,0xc,0x0, 0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x58,0xc,0x0, 0x0,0x0,0x0,0x0,0xa1,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x61,0xc,0x0, 0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x62,0xc,0x0, 0x0,0x0,0x0,0x0,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x6c,0xc,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x6c,0xc,0x0, 0x0,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x6e,0xc,0x0, 0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x6f,0xc,0x0, 0x0,0x0,0x0,0x0,0x22,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x7a,0xc,0x0, 0x0,0x0,0x0,0x0,0xfb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x7c,0xc,0x0, 0x0,0x0,0x0,0x0,0x45,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xa0,0xc,0x0, 0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xa0,0xc,0x0, 0x0,0x0,0x0,0x0,0xda,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xad,0xc,0x0, 0x0,0x0,0x0,0x0,0x78,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xaf,0xc,0x0, 0x0,0x0,0x0,0x0,0x95,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xb5,0xc,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xb5,0xc,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xb6,0xc,0x0, 0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb6,0xc,0x0, 0x0,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xb9,0xc,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xb9,0xc,0x0, 0x0,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0xba,0xc,0x0, 0x0,0x0,0x0,0x0,0xa1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0xbf,0xc,0x0, 0x0,0x0,0x0,0x0,0xdf,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xc5,0xc,0x0, 0x0,0x0,0x0,0x0,0xfa,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xd4,0xc,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0xd5,0xc,0x0, 0x0,0x0,0x0,0x0,0x3,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0xf7,0xc,0x0, 0x0,0x0,0x0,0x0,0x9d,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x5,0xd,0x0, 0x0,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x8,0xd,0x0, 0x0,0x0,0x0,0x0,0xe1,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x11,0xd,0x0, 0x0,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x14,0xd,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x14,0xd,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x14,0xd,0x0, 0x0,0x0,0x0,0x0,0x1b,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x1e,0xd,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x1e,0xd,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x1e,0xd,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x1e,0xd,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x1e,0xd,0x0, 0x0,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x21,0xd,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x21,0xd,0x0, 0x0,0x0,0x0,0x0,0xb4,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x2e,0xd,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x2e,0xd,0x0, 0x0,0x0,0x0,0x0,0xa,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x5d,0xd,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x5e,0xd,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5e,0xd,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x5e,0xd,0x0, 0x0,0x0,0x0,0x0,0xb1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x60,0xd,0x0, 0x0,0x0,0x0,0x0,0xb5,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x82,0xd,0x0, 0x0,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x84,0xd,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x84,0xd,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x84,0xd,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x84,0xd,0x0, 0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x85,0xd,0x0, 0x0,0x0,0x0,0x0,0x6c,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xa7,0xd,0x0, 0x0,0x0,0x0,0x0,0xed,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xab,0xd,0x0, 0x0,0x0,0x0,0x0,0x6b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xaf,0xd,0x0, 0x0,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xb4,0xd,0x0, 0x0,0x0,0x0,0x0,0xb9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xb5,0xd,0x0, 0x0,0x0,0x0,0x0,0x7b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xb7,0xd,0x0, 0x0,0x0,0x0,0x0,0x90,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xb8,0xd,0x0, 0x0,0x0,0x0,0x0,0x25,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xc3,0xd,0x0, 0x0,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xc3,0xd,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xc3,0xd,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc4,0xd,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xc4,0xd,0x0, 0x0,0x0,0x0,0x0,0x78,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xd2,0xd,0x0, 0x0,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xd3,0xd,0x0, 0x0,0x0,0x0,0x0,0xc9,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xdb,0xd,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xdb,0xd,0x0, 0x0,0x0,0x0,0x0,0xed,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xdd,0xd,0x0, 0x0,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xdd,0xd,0x0, 0x0,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xde,0xd,0x0, 0x0,0x0,0x0,0x0,0x27,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xf5,0xd,0x0, 0x0,0x0,0x0,0x0,0x6d,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x1,0xe,0x0, 0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x2,0xe,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x3,0xe,0x0, 0x0,0x0,0x0,0x0,0xab,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x4,0xe,0x0, 0x0,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x6,0xe,0x0, 0x0,0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x8,0xe,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x8,0xe,0x0, 0x0,0x0,0x0,0x0,0xdb,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x10,0xe,0x0, 0x0,0x0,0x0,0x0,0x94,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x11,0xe,0x0, 0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x12,0xe,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x12,0xe,0x0, 0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x14,0xe,0x0, 0x0,0x0,0x0,0x0,0xbb,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x1b,0xe,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x1b,0xe,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x1b,0xe,0x0, 0x0,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1d,0xe,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x1d,0xe,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1d,0xe,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1d,0xe,0x0, 0x0,0x0,0x0,0x0,0xfd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x20,0xe,0x0, 0x0,0x0,0x0,0x0,0xc,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x27,0xe,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x27,0xe,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x27,0xe,0x0, 0x0,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x28,0xe,0x0, 0x0,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x29,0xe,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x29,0xe,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x2b,0xe,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x2c,0xe,0x0, 0x0,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x2c,0xe,0x0, 0x0,0x0,0x0,0x0,0x22,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x36,0xe,0x0, 0x0,0x0,0x0,0x0,0x97,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x36,0xe,0x0, 0x0,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x37,0xe,0x0, 0x0,0x0,0x0,0x0,0x86,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x43,0xe,0x0, 0x0,0x0,0x0,0x0,0x45,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x5b,0xe,0x0, 0x0,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x5e,0xe,0x0, 0x0,0x0,0x0,0x0,0x9c,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x67,0xe,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x68,0xe,0x0, 0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x68,0xe,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x6a,0xe,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x6a,0xe,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x6a,0xe,0x0, 0x0,0x0,0x0,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x73,0xe,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x73,0xe,0x0, 0x0,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x75,0xe,0x0, 0x0,0x0,0x0,0x0,0x73,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x80,0xe,0x0, 0x0,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x82,0xe,0x0, 0x0,0x0,0x0,0x0,0x64,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x8c,0xe,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x8c,0xe,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x8c,0xe,0x0, 0x0,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x8f,0xe,0x0, 0x0,0x0,0x0,0x0,0xe5,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0xb4,0xe,0x0, 0x0,0x0,0x0,0x0,0xbd,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xcc,0xe,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xcc,0xe,0x0, 0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xce,0xe,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xce,0xe,0x0, 0x0,0x0,0x0,0x0,0xe4,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xdf,0xe,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xdf,0xe,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xdf,0xe,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xdf,0xe,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xdf,0xe,0x0, 0x0,0x0,0x0,0x0,0xdd,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xe5,0xe,0x0, 0x0,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0xe7,0xe,0x0, 0x0,0x0,0x0,0x0,0xa4,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xfe,0xe,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xfe,0xe,0x0, 0x0,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xfe,0xe,0x0, 0x0,0x0,0x0,0x0,0xe3,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xb,0xf,0x0, 0x0,0x0,0x0,0x0,0x8f,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x15,0xf,0x0, 0x0,0x0,0x0,0x0,0x9f,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x24,0xf,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x25,0xf,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x25,0xf,0x0, 0x0,0x0,0x0,0x0,0x45,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x30,0xf,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x30,0xf,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x31,0xf,0x0, 0x0,0x0,0x0,0x0,0x71,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x5a,0xf,0x0, 0x0,0x0,0x0,0x0,0xe1,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x64,0xf,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x64,0xf,0x0, 0x0,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x68,0xf,0x0, 0x0,0x0,0x0,0x0,0x9a,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x6e,0xf,0x0, 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x6e,0xf,0x0, 0x0,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x6f,0xf,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x70,0xf,0x0, 0x0,0x0,0x0,0x0,0x5c,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x7a,0xf,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x7a,0xf,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x7a,0xf,0x0, 0x0,0x0,0x0,0x0,0xac,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xbb,0xf,0x0, 0x0,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xbc,0xf,0x0, 0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xbd,0xf,0x0, 0x0,0x0,0x0,0x0,0x30,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xc6,0xf,0x0, 0x0,0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xc9,0xf,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xc9,0xf,0x0, 0x0,0x0,0x0,0x0,0xa7,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xe1,0xf,0x0, 0x0,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0xe2,0xf,0x0, 0x0,0x0,0x0,0x0,0x7f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0xe4,0xf,0x0, 0x0,0x0,0x0,0x0,0x57,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x8,0x10,0x0, 0x0,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x9,0x10,0x0, 0x0,0x0,0x0,0x0,0xd7,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x16,0x10,0x0, 0x0,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x17,0x10,0x0, 0x0,0x0,0x0,0x0,0xaf,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x20,0x10,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x20,0x10,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x20,0x10,0x0, 0x0,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x22,0x10,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x22,0x10,0x0, 0x0,0x0,0x0,0x0,0xcb,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3b,0x10,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x3b,0x10,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x3b,0x10,0x0, 0x0,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x3f,0x10,0x0, 0x0,0x0,0x0,0x0,0x2f,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x6d,0x10,0x0, 0x0,0x0,0x0,0x0,0x9c,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x74,0x10,0x0, 0x0,0x0,0x0,0x0,0x4d,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x7e,0x10,0x0, 0x0,0x0,0x0,0x0,0x8e,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x87,0x10,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x87,0x10,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x87,0x10,0x0, 0x0,0x0,0x0,0x0,0xe6,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x93,0x10,0x0, 0x0,0x0,0x0,0x0,0x10,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xa1,0x10,0x0, 0x0,0x0,0x0,0x0,0x65,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xba,0x10,0x0, 0x0,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xbd,0x10,0x0, 0x0,0x0,0x0,0x0,0x8d,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0xc7,0x10,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xc7,0x10,0x0, 0x0,0x0,0x0,0x0,0xb4,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xd5,0x10,0x0, 0x0,0x0,0x0,0x0,0xc1,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xf0,0x10,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0xf0,0x10,0x0, 0x0,0x0,0x0,0x0,0x8e,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xe,0x11,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xe,0x11,0x0, 0x0,0x0,0x0,0x0,0xd7,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x17,0x11,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x17,0x11,0x0, 0x0,0x0,0x0,0x0,0x17,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x22,0x11,0x0, 0x0,0x0,0x0,0x0,0x2e,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x26,0x11,0x0, 0x0,0x0,0x0,0x0,0xb2,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x2e,0x11,0x0, 0x0,0x0,0x0,0x0,0xa,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x32,0x11,0x0, 0x0,0x0,0x0,0x0,0x3b,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x3b,0x11,0x0, 0x0,0x0,0x0,0x0,0xd0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x3d,0x11,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3d,0x11,0x0, 0x0,0x0,0x0,0x0,0xe0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x48,0x11,0x0, 0x0,0x0,0x0,0x0,0xe6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x4a,0x11,0x0, 0x0,0x0,0x0,0x0,0xb9,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x52,0x11,0x0, 0x0,0x0,0x0,0x0,0x99,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x57,0x11,0x0, 0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x58,0x11,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x58,0x11,0x0, 0x0,0x0,0x0,0x0,0xa3,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x63,0x11,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x63,0x11,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x64,0x11,0x0, 0x0,0x0,0x0,0x0,0xb3,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x6e,0x11,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x6f,0x11,0x0, 0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x70,0x11,0x0, 0x0,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x71,0x11,0x0, 0x0,0x0,0x0,0x0,0x19,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x73,0x11,0x0, 0x0,0x0,0x0,0x0,0xed,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x7a,0x11,0x0, 0x0,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x7c,0x11,0x0, 0x0,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x7e,0x11,0x0, 0x0,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x84,0x11,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x84,0x11,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x84,0x11,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x84,0x11,0x0, 0x0,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x87,0x11,0x0, 0x0,0x0,0x0,0x0,0x5b,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x91,0x11,0x0, 0x0,0x0,0x0,0x0,0x8,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xc7,0x11,0x0, 0x0,0x0,0x0,0x0,0xd2,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xd0,0x11,0x0, 0x0,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xd4,0x11,0x0, 0x0,0x0,0x0,0x0,0x7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xd7,0x11,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xd7,0x11,0x0, 0x0,0x0,0x0,0x0,0x30,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xeb,0x11,0x0, 0x0,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xed,0x11,0x0, 0x0,0x0,0x0,0x0,0xef,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0xf1,0x11,0x0, 0x0,0x0,0x0,0x0,0xc2,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xf9,0x11,0x0, 0x0,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xfc,0x11,0x0, 0x0,0x0,0x0,0x0,0xeb,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x22,0x12,0x0, 0x0,0x0,0x0,0x0,0x82,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x27,0x12,0x0, 0x0,0x0,0x0,0x0,0x21,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x3c,0x12,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x3c,0x12,0x0, 0x0,0x0,0x0,0x0,0xb1,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x71,0x12,0x0, 0x0,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x73,0x12,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x73,0x12,0x0, 0x0,0x0,0x0,0x0,0x9e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x74,0x12,0x0, 0x0,0x0,0x0,0x0,0xaa,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x7c,0x12,0x0, 0x0,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x7d,0x12,0x0, 0x0,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x80,0x12,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x80,0x12,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x80,0x12,0x0, 0x0,0x0,0x0,0x0,0x3c,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x89,0x12,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x89,0x12,0x0, 0x0,0x0,0x0,0x0,0x2e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x8b,0x12,0x0, 0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x8b,0x12,0x0, 0x0,0x0,0x0,0x0,0x94,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x98,0x12,0x0, 0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x99,0x12,0x0, 0x0,0x0,0x0,0x0,0xd6,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xa7,0x12,0x0, 0x0,0x0,0x0,0x0,0x99,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0xca,0x12,0x0, 0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xcb,0x12,0x0, 0x0,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xcc,0x12,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xcc,0x12,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0xcd,0x12,0x0, 0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xce,0x12,0x0, 0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x12,0x0, 0x0,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xd0,0x12,0x0, 0x0,0x0,0x0,0x0,0x9d,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xd8,0x12,0x0, 0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xda,0x12,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xda,0x12,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0xda,0x12,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xda,0x12,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xda,0x12,0x0, 0x0,0x0,0x0,0x0,0x6d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xdd,0x12,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xdd,0x12,0x0, 0x0,0x0,0x0,0x0,0x46,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xdf,0x12,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xe0,0x12,0x0, 0x0,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xe5,0x12,0x0, 0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xe6,0x12,0x0, 0x0,0x0,0x0,0x0,0x8b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xe9,0x12,0x0, 0x0,0x0,0x0,0x0,0xf8,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xf3,0x12,0x0, 0x0,0x0,0x0,0x0,0x6,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x13,0x0, 0x0,0x0,0x0,0x0,0x19,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x1,0x13,0x0, 0x0,0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x3,0x13,0x0, 0x0,0x0,0x0,0x0,0x5f,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x21,0x13,0x0, 0x0,0x0,0x0,0x0,0x43,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x28,0x13,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x29,0x13,0x0, 0x0,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x2a,0x13,0x0, 0x0,0x0,0x0,0x0,0xc9,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x35,0x13,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x37,0x13,0x0, 0x0,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x38,0x13,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x38,0x13,0x0, 0x0,0x0,0x0,0x0,0xa9,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x41,0x13,0x0, 0x0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x42,0x13,0x0, 0x0,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x43,0x13,0x0, 0x0,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x44,0x13,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x44,0x13,0x0, 0x0,0x0,0x0,0x0,0x74,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x4f,0x13,0x0, 0x0,0x0,0x0,0x0,0x74,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x83,0x13,0x0, 0x0,0x0,0x0,0x0,0xb8,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x92,0x13,0x0, 0x0,0x0,0x0,0x0,0xe5,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x9f,0x13,0x0, 0x0,0x0,0x0,0x0,0x8c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0xa3,0x13,0x0, 0x0,0x0,0x0,0x0,0x35,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0xbb,0x13,0x0, 0x0,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xbe,0x13,0x0, 0x0,0x0,0x0,0x0,0xd9,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xe3,0x13,0x0, 0x0,0x0,0x0,0x0,0xb6,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xe7,0x13,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xe7,0x13,0x0, 0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xe7,0x13,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xe8,0x13,0x0, 0x0,0x0,0x0,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xf0,0x13,0x0, 0x0,0x0,0x0,0x0,0xef,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x1,0x14,0x0, 0x0,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x3,0x14,0x0, 0x0,0x0,0x0,0x0,0x7d,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x11,0x14,0x0, 0x0,0x0,0x0,0x0,0xae,0xee,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x0,0x15,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x0,0x15,0x0, 0x0,0x0,0x0,0x0,0xb3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x2,0x15,0x0, 0x0,0x0,0x0,0x0,0x97,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x1b,0x15,0x0, 0x0,0x0,0x0,0x0,0x59,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x26,0x15,0x0, 0x0,0x0,0x0,0x0,0x7a,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x40,0x15,0x0, 0x0,0x0,0x0,0x0,0x7a,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x5a,0x15,0x0, 0x0,0x0,0x0,0x0,0x64,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x69,0x15,0x0, 0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x6a,0x15,0x0, 0x0,0x0,0x0,0x0,0x94,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x6a,0x15,0x0, 0x0,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x6b,0x15,0x0, 0x0,0x0,0x0,0x0,0x9,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x83,0x15,0x0, 0x0,0x0,0x0,0x0,0x7d,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x8f,0x15,0x0, 0x0,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x90,0x15,0x0, 0x0,0x0,0x0,0x0,0x13,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xb9,0x15,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xb9,0x15,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xb9,0x15,0x0, 0x0,0x0,0x0,0x0,0xe1,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0xc3,0x15,0x0, 0x0,0x0,0x0,0x0,0xbd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xc6,0x15,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xc6,0x15,0x0, 0x0,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xc7,0x15,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xc8,0x15,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0xc8,0x15,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xc9,0x15,0x0, 0x0,0x0,0x0,0x0,0xe0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0xd1,0x15,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xd1,0x15,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xd2,0x15,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xd2,0x15,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xd2,0x15,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xd2,0x15,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xd2,0x15,0x0, 0x0,0x0,0x0,0x0,0x66,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xd3,0x15,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xd4,0x15,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xd4,0x15,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xd4,0x15,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xd5,0x15,0x0, 0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xd5,0x15,0x0, 0x0,0x0,0x0,0x0,0xb8,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xdd,0x15,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0xdd,0x15,0x0, 0x0,0x0,0x0,0x0,0xe6,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xe0,0x15,0x0, 0x0,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xe0,0x15,0x0, 0x0,0x0,0x0,0x0,0x94,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0xe8,0x15,0x0, 0x0,0x0,0x0,0x0,0xa4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xec,0x15,0x0, 0x0,0x0,0x0,0x0,0x84,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x14,0x16,0x0, 0x0,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x17,0x16,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x17,0x16,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x18,0x16,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x18,0x16,0x0, 0x0,0x0,0x0,0x0,0xbd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x1b,0x16,0x0, 0x0,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x1e,0x16,0x0, 0x0,0x0,0x0,0x0,0x6b,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x25,0x16,0x0, 0x0,0x0,0x0,0x0,0xbb,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x29,0x16,0x0, 0x0,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x2a,0x16,0x0, 0x0,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x2c,0x16,0x0, 0x0,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x2d,0x16,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x2e,0x16,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x2f,0x16,0x0, 0x0,0x0,0x0,0x0,0x8f,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x6c,0x16,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x6c,0x16,0x0, 0x0,0x0,0x0,0x0,0xc3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x6e,0x16,0x0, 0x0,0x0,0x0,0x0,0x22,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x78,0x16,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x78,0x16,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x79,0x16,0x0, 0x0,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x7a,0x16,0x0, 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x7b,0x16,0x0, 0x0,0x0,0x0,0x0,0xa5,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x94,0x16,0x0, 0x0,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x95,0x16,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x95,0x16,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x96,0x16,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x96,0x16,0x0, 0x0,0x0,0x0,0x0,0xc3,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xa0,0x16,0x0, 0x0,0x0,0x0,0x0,0x7b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xa1,0x16,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xa3,0x16,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xa3,0x16,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xa3,0x16,0x0, 0x0,0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xa6,0x16,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xa6,0x16,0x0, 0x0,0x0,0x0,0x0,0xdd,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xd5,0x16,0x0, 0x0,0x0,0x0,0x0,0x58,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xe3,0x16,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xe3,0x16,0x0, 0x0,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xe3,0x16,0x0, 0x0,0x0,0x0,0x0,0xa7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0xe5,0x16,0x0, 0x0,0x0,0x0,0x0,0x39,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xe6,0x16,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xe6,0x16,0x0, 0x0,0x0,0x0,0x0,0xf0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xed,0x16,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xee,0x16,0x0, 0x0,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xef,0x16,0x0, 0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xf0,0x16,0x0, 0x0,0x0,0x0,0x0,0xbe,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0xf9,0x16,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xf9,0x16,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xf9,0x16,0x0, 0x0,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0xfd,0x16,0x0, 0x0,0x0,0x0,0x0,0xd,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x1d,0x17,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x1d,0x17,0x0, 0x0,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x1e,0x17,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1f,0x17,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x1f,0x17,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x1f,0x17,0x0, 0x0,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x20,0x17,0x0, 0x0,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x21,0x17,0x0, 0x0,0x0,0x0,0x0,0x2e,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x2b,0x17,0x0, 0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x2d,0x17,0x0, 0x0,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x2e,0x17,0x0, 0x0,0x0,0x0,0x0,0xf1,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x37,0x17,0x0, 0x0,0x0,0x0,0x0,0x14,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x44,0x17,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x45,0x17,0x0, 0x0,0x0,0x0,0x0,0xa3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x47,0x17,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x47,0x17,0x0, 0x0,0x0,0x0,0x0,0xbe,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x50,0x17,0x0, 0x0,0x0,0x0,0x0,0x10,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x77,0x17,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x77,0x17,0x0, 0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x78,0x17,0x0, 0x0,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x79,0x17,0x0, 0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x17,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x7b,0x17,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x7b,0x17,0x0, 0x0,0x0,0x0,0x0,0xe0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x93,0x17,0x0, 0x0,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x94,0x17,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x94,0x17,0x0, 0x0,0x0,0x0,0x0,0x85,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xa9,0x17,0x0, 0x0,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xac,0x17,0x0, 0x0,0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xae,0x17,0x0, 0x0,0x0,0x0,0x0,0x4b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xb3,0x17,0x0, 0x0,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xb8,0x17,0x0, 0x0,0x0,0x0,0x0,0xf6,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0xd1,0x17,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xd2,0x17,0x0, 0x0,0x0,0x0,0x0,0x53,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xdd,0x17,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0xdd,0x17,0x0, 0x0,0x0,0x0,0x0,0x98,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xe1,0x17,0x0, 0x0,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xe3,0x17,0x0, 0x0,0x0,0x0,0x0,0x6,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xe7,0x17,0x0, 0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0xe8,0x17,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xe8,0x17,0x0, 0x0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xe9,0x17,0x0, 0x0,0x0,0x0,0x0,0x12,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xee,0x17,0x0, 0x0,0x0,0x0,0x0,0x74,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xf3,0x17,0x0, 0x0,0x0,0x0,0x0,0xd0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xff,0x17,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xff,0x17,0x0, 0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x18,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x0,0x18,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x0,0x18,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x1,0x18,0x0, 0x0,0x0,0x0,0x0,0x62,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0xa,0x18,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xa,0x18,0x0, 0x0,0x0,0x0,0x0,0xd7,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x10,0x18,0x0, 0x0,0x0,0x0,0x0,0x23,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x21,0x18,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x21,0x18,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x22,0x18,0x0, 0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x22,0x18,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x22,0x18,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x22,0x18,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x23,0x18,0x0, 0x0,0x0,0x0,0x0,0xfb,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x18,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x27,0x18,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x27,0x18,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x27,0x18,0x0, 0x0,0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x28,0x18,0x0, 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x28,0x18,0x0, 0x0,0x0,0x0,0x0,0xa6,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x2d,0x18,0x0, 0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x2d,0x18,0x0, 0x0,0x0,0x0,0x0,0x86,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x33,0x18,0x0, 0x0,0x0,0x0,0x0,0x5c,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x38,0x18,0x0, 0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x39,0x18,0x0, 0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x3a,0x18,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x3a,0x18,0x0, 0x0,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x3b,0x18,0x0, 0x0,0x0,0x0,0x0,0xf5,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x4c,0x18,0x0, 0x0,0x0,0x0,0x0,0xf4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x4e,0x18,0x0, 0x0,0x0,0x0,0x0,0xd6,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x68,0x18,0x0, 0x0,0x0,0x0,0x0,0x7e,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x74,0x18,0x0, 0x0,0x0,0x0,0x0,0x96,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x7e,0x18,0x0, 0x0,0x0,0x0,0x0,0x19,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x97,0x18,0x0, 0x0,0x0,0x0,0x0,0x7c,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xa0,0x18,0x0, 0x0,0x0,0x0,0x0,0xeb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xa5,0x18,0x0, 0x0,0x0,0x0,0x0,0xa5,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xb3,0x18,0x0, 0x0,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xb5,0x18,0x0, 0x0,0x0,0x0,0x0,0x98,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xbf,0x18,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0xbf,0x18,0x0, 0x0,0x0,0x0,0x0,0x37,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0xc0,0x18,0x0, 0x0,0x0,0x0,0x0,0x3b,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0xc8,0x18,0x0, 0x0,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xcb,0x18,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xcb,0x18,0x0, 0x0,0x0,0x0,0x0,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xd5,0x18,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xd6,0x18,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xd6,0x18,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xd6,0x18,0x0, 0x0,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xd8,0x18,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xd8,0x18,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xd8,0x18,0x0, 0x0,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0xd9,0x18,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xd9,0x18,0x0, 0x0,0x0,0x0,0x0,0x95,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xe7,0x18,0x0, 0x0,0x0,0x0,0x0,0xc1,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x9,0x19,0x0, 0x0,0x0,0x0,0x0,0x94,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x9,0x19,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0xa,0x19,0x0, 0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0xa,0x19,0x0, 0x0,0x0,0x0,0x0,0x51,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x27,0x19,0x0, 0x0,0x0,0x0,0x0,0x3,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x86,0x19,0x0, 0x0,0x0,0x0,0x0,0xa4,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0xa7,0x19,0x0, 0x0,0x0,0x0,0x0,0x97,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xa8,0x19,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xa8,0x19,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xa8,0x19,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xa8,0x19,0x0, 0x0,0x0,0x0,0x0,0x3c,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0xb1,0x19,0x0, 0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xb2,0x19,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xb3,0x19,0x0, 0x0,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xb4,0x19,0x0, 0x0,0x0,0x0,0x0,0xbf,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xc4,0x19,0x0, 0x0,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xc5,0x19,0x0, 0x0,0x0,0x0,0x0,0x13,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xe4,0x19,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xe4,0x19,0x0, 0x0,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xe5,0x19,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xe5,0x19,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xe5,0x19,0x0, 0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xe6,0x19,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xe6,0x19,0x0, 0x0,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xeb,0x19,0x0, 0x0,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xed,0x19,0x0, 0x0,0x0,0x0,0x0,0xe6,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xf2,0x19,0x0, 0x0,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xf4,0x19,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xf4,0x19,0x0, 0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xf4,0x19,0x0, 0x0,0x0,0x0,0x0,0xb3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xf7,0x19,0x0, 0x0,0x0,0x0,0x0,0x65,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x19,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xfb,0x19,0x0, 0x0,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xfd,0x19,0x0, 0x0,0x0,0x0,0x0,0x36,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x2,0x1a,0x0, 0x0,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x3,0x1a,0x0, 0x0,0x0,0x0,0x0,0x57,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x1b,0x1a,0x0, 0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x1c,0x1a,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x1c,0x1a,0x0, 0x0,0x0,0x0,0x0,0x7a,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x24,0x1a,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x24,0x1a,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x24,0x1a,0x0, 0x0,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x26,0x1a,0x0, 0x0,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x2c,0x1a,0x0, 0x0,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x2e,0x1a,0x0, 0x0,0x0,0x0,0x0,0x22,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x35,0x1a,0x0, 0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x37,0x1a,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x38,0x1a,0x0, 0x0,0x0,0x0,0x0,0x24,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x3e,0x1a,0x0, 0x0,0x0,0x0,0x0,0x40,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x57,0x1a,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x57,0x1a,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x57,0x1a,0x0, 0x0,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x58,0x1a,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x58,0x1a,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x58,0x1a,0x0, 0x0,0x0,0x0,0x0,0x7,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x60,0x1a,0x0, 0x0,0x0,0x0,0x0,0x30,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x69,0x1a,0x0, 0x0,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x6a,0x1a,0x0, 0x0,0x0,0x0,0x0,0x7d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x6e,0x1a,0x0, 0x0,0x0,0x0,0x0,0x63,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x78,0x1a,0x0, 0x0,0x0,0x0,0x0,0xe6,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x89,0x1a,0x0, 0x0,0x0,0x0,0x0,0x17,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x90,0x1a,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x90,0x1a,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x90,0x1a,0x0, 0x0,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x93,0x1a,0x0, 0x0,0x0,0x0,0x0,0x3c,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x9a,0x1a,0x0, 0x0,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x9b,0x1a,0x0, 0x0,0x0,0x0,0x0,0xa5,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xa3,0x1a,0x0, 0x0,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xa4,0x1a,0x0, 0x0,0x0,0x0,0x0,0x99,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xa5,0x1a,0x0, 0x0,0x0,0x0,0x0,0x50,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xa7,0x1a,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xa7,0x1a,0x0, 0x0,0x0,0x0,0x0,0xd2,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xb7,0x1a,0x0, 0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xb8,0x1a,0x0, 0x0,0x0,0x0,0x0,0xd8,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xd0,0x1a,0x0, 0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xd1,0x1a,0x0, 0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0xd2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x31,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xd4,0x1a,0x0, 0x0,0x0,0x0,0x0,0x55,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xda,0x1a,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0xdb,0x1a,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xdb,0x1a,0x0, 0x0,0x0,0x0,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xe4,0x1a,0x0, 0x0,0x0,0x0,0x0,0x2f,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xeb,0x1a,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0xeb,0x1a,0x0, 0x0,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xec,0x1a,0x0, 0x0,0x0,0x0,0x0,0xfe,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xf4,0x1a,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xf4,0x1a,0x0, 0x0,0x0,0x0,0x0,0xb,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x18,0x1b,0x0, 0x0,0x0,0x0,0x0,0xfd,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x22,0x1b,0x0, 0x0,0x0,0x0,0x0,0x52,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x2b,0x1b,0x0, 0x0,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x2b,0x1b,0x0, 0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x2c,0x1b,0x0, 0x0,0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x2e,0x1b,0x0, 0x0,0x0,0x0,0x0,0x5b,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x4c,0x1b,0x0, 0x0,0x0,0x0,0x0,0x2d,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x55,0x1b,0x0, 0x0,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x5a,0x1b,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x5a,0x1b,0x0, 0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x5c,0x1b,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x5c,0x1b,0x0, 0x0,0x0,0x0,0x0,0xc0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x66,0x1b,0x0, 0x0,0x0,0x0,0x0,0xe,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x6f,0x1b,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x70,0x1b,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x70,0x1b,0x0, 0x0,0x0,0x0,0x0,0x23,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x76,0x1b,0x0, 0x0,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x79,0x1b,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x79,0x1b,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x79,0x1b,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x79,0x1b,0x0, 0x0,0x0,0x0,0x0,0xa0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x96,0x1b,0x0, 0x0,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x98,0x1b,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x98,0x1b,0x0, 0x0,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x9b,0x1b,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x9b,0x1b,0x0, 0x0,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x9f,0x1b,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x9f,0x1b,0x0, 0x0,0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xa5,0x1b,0x0, 0x0,0x0,0x0,0x0,0x55,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xa7,0x1b,0x0, 0x0,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xa8,0x1b,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xa9,0x1b,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0xaa,0x1b,0x0, 0x0,0x0,0x0,0x0,0xaf,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xb3,0x1b,0x0, 0x0,0x0,0x0,0x0,0x98,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xbb,0x1b,0x0, 0x0,0x0,0x0,0x0,0x3b,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xcc,0x1b,0x0, 0x0,0x0,0x0,0x0,0x7f,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xd6,0x1b,0x0, 0x0,0x0,0x0,0x0,0xf2,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0xdf,0x1b,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xdf,0x1b,0x0, 0x0,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xe2,0x1b,0x0, 0x0,0x0,0x0,0x0,0x22,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xeb,0x1b,0x0, 0x0,0x0,0x0,0x0,0xa7,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xf2,0x1b,0x0, 0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xf3,0x1b,0x0, 0x0,0x0,0x0,0x0,0xde,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xfc,0x1b,0x0, 0x0,0x0,0x0,0x0,0x1,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x18,0x1c,0x0, 0x0,0x0,0x0,0x0,0x97,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x25,0x1c,0x0, 0x0,0x0,0x0,0x0,0xdb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x29,0x1c,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x2a,0x1c,0x0, 0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x2b,0x1c,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x2b,0x1c,0x0, 0x0,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x2c,0x1c,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x2c,0x1c,0x0, 0x0,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x2e,0x1c,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x2e,0x1c,0x0, 0x0,0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x2f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x2f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x2f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x31,0x1c,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x31,0x1c,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x31,0x1c,0x0, 0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x33,0x1c,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x33,0x1c,0x0, 0x0,0x0,0x0,0x0,0xfd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x37,0x1c,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x39,0x1c,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x39,0x1c,0x0, 0x0,0x0,0x0,0x0,0x67,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x3d,0x1c,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x3f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x3f,0x1c,0x0, 0x0,0x0,0x0,0x0,0xee,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x5a,0x1c,0x0, 0x0,0x0,0x0,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x62,0x1c,0x0, 0x0,0x0,0x0,0x0,0xed,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x69,0x1c,0x0, 0x0,0x0,0x0,0x0,0x83,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x1c,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x75,0x1c,0x0, 0x0,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x76,0x1c,0x0, 0x0,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x76,0x1c,0x0, 0x0,0x0,0x0,0x0,0x3d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x79,0x1c,0x0, 0x0,0x0,0x0,0x0,0x74,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x7e,0x1c,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x7e,0x1c,0x0, 0x0,0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x7f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x7f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x50,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x8a,0x1c,0x0, 0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x8b,0x1c,0x0, 0x0,0x0,0x0,0x0,0xb5,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x99,0x1c,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x9a,0x1c,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x9b,0x1c,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x9b,0x1c,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x9b,0x1c,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x9b,0x1c,0x0, 0x0,0x0,0x0,0x0,0x2,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0xa0,0x1c,0x0, 0x0,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xa1,0x1c,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xa1,0x1c,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xa1,0x1c,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xe1,0x1c,0x0, 0x0,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xe2,0x1c,0x0, 0x0,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0xe3,0x1c,0x0, 0x0,0x0,0x0,0x0,0xec,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xec,0x1c,0x0, 0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xec,0x1c,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xed,0x1c,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xed,0x1c,0x0, 0x0,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xee,0x1c,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xef,0x1c,0x0, 0x0,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xf0,0x1c,0x0, 0x0,0x0,0x0,0x0,0x45,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xf5,0x1c,0x0, 0x0,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xf8,0x1c,0x0, 0x0,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xfa,0x1c,0x0, 0x0,0x0,0x0,0x0,0xa5,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x3,0x1d,0x0, 0x0,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x6,0x1d,0x0, 0x0,0x0,0x0,0x0,0x53,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x11,0x1d,0x0, 0x0,0x0,0x0,0x0,0xa,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x29,0x1d,0x0, 0x0,0x0,0x0,0x0,0x6f,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x34,0x1d,0x0, 0x0,0x0,0x0,0x0,0x8e,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x49,0x1d,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x49,0x1d,0x0, 0x0,0x0,0x0,0x0,0xf,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x62,0x1d,0x0, 0x0,0x0,0x0,0x0,0xf1,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x85,0x1d,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x85,0x1d,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x85,0x1d,0x0, 0x0,0x0,0x0,0x0,0x56,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x8f,0x1d,0x0, 0x0,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x90,0x1d,0x0, 0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x90,0x1d,0x0, 0x0,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x91,0x1d,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x91,0x1d,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x91,0x1d,0x0, 0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x91,0x1d,0x0, 0x0,0x0,0x0,0x0,0x80,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x99,0x1d,0x0, 0x0,0x0,0x0,0x0,0x4,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x9b,0x1d,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x9b,0x1d,0x0, 0x0,0x0,0x0,0x0,0x21,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x9f,0x1d,0x0, 0x0,0x0,0x0,0x0,0x5d,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xa9,0x1d,0x0, 0x0,0x0,0x0,0x0,0x9e,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xb4,0x1d,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0xb4,0x1d,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0xb4,0x1d,0x0, 0x0,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0xb6,0x1d,0x0, 0x0,0x0,0x0,0x0,0x8f,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xca,0x1d,0x0, 0x0,0x0,0x0,0x0,0xff,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xd6,0x1d,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xd6,0x1d,0x0, 0x0,0x0,0x0,0x0,0xd1,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xe2,0x1d,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xe2,0x1d,0x0, 0x0,0x0,0x0,0x0,0xc2,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xe7,0x1d,0x0, 0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xe8,0x1d,0x0, 0x0,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xe9,0x1d,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xe9,0x1d,0x0, 0x0,0x0,0x0,0x0,0xd6,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xef,0x1d,0x0, 0x0,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xef,0x1d,0x0, 0x0,0x0,0x0,0x0,0x5c,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xf7,0x1d,0x0, 0x0,0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xf9,0x1d,0x0, 0x0,0x0,0x0,0x0,0x4a,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x4,0x1e,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x4,0x1e,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x5,0x1e,0x0, 0x0,0x0,0x0,0x0,0xc,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xe,0x1e,0x0, 0x0,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x10,0x1e,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x10,0x1e,0x0, 0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x11,0x1e,0x0, 0x0,0x0,0x0,0x0,0xf4,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x19,0x1e,0x0, 0x0,0x0,0x0,0x0,0xef,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1b,0x1e,0x0, 0x0,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x1c,0x1e,0x0, 0x0,0x0,0x0,0x0,0xe0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x25,0x1e,0x0, 0x0,0x0,0x0,0x0,0x9c,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x2e,0x1e,0x0, 0x0,0x0,0x0,0x0,0xaa,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x31,0x1e,0x0, 0x0,0x0,0x0,0x0,0x58,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x3b,0x1e,0x0, 0x0,0x0,0x0,0x0,0x42,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x48,0x1e,0x0, 0x0,0x0,0x0,0x0,0xae,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x57,0x1e,0x0, 0x0,0x0,0x0,0x0,0xf6,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x5c,0x1e,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x5c,0x1e,0x0, 0x0,0x0,0x0,0x0,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x64,0x1e,0x0, 0x0,0x0,0x0,0x0,0x65,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x71,0x1e,0x0, 0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x72,0x1e,0x0, 0x0,0x0,0x0,0x0,0x6,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x78,0x1e,0x0, 0x0,0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x7b,0x1e,0x0, 0x0,0x0,0x0,0x0,0x11,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0x37,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xbb,0x1e,0x0, 0x0,0x0,0x0,0x0,0xd6,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xc9,0x1e,0x0, 0x0,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xcc,0x1e,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xcc,0x1e,0x0, 0x0,0x0,0x0,0x0,0x94,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0xd2,0x1e,0x0, 0x0,0x0,0x0,0x0,0x13,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0xd8,0x1e,0x0, 0x0,0x0,0x0,0x0,0xd,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xe3,0x1e,0x0, 0x0,0x0,0x0,0x0,0xdc,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x17,0x1f,0x0, 0x0,0x0,0x0,0x0,0x3,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x23,0x1f,0x0, 0x0,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x24,0x1f,0x0, 0x0,0x0,0x0,0x0,0xb0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x2c,0x1f,0x0, 0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2d,0x1f,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x2e,0x1f,0x0, 0x0,0x0,0x0,0x0,0xce,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x3b,0x1f,0x0, 0x0,0x0,0x0,0x0,0x55,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x41,0x1f,0x0, 0x0,0x0,0x0,0x0,0xd5,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x50,0x1f,0x0, 0x0,0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x51,0x1f,0x0, 0x0,0x0,0x0,0x0,0x48,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x56,0x1f,0x0, 0x0,0x0,0x0,0x0,0x4c,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x60,0x1f,0x0, 0x0,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x61,0x1f,0x0, 0x0,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x67,0x1f,0x0, 0x0,0x0,0x0,0x0,0x7d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x6c,0x1f,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x6c,0x1f,0x0, 0x0,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x72,0x1f,0x0, 0x0,0x0,0x0,0x0,0xae,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x74,0x1f,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x74,0x1f,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x74,0x1f,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x74,0x1f,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x74,0x1f,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x75,0x1f,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x75,0x1f,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x75,0x1f,0x0, 0x0,0x0,0x0,0x0,0x17,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x76,0x1f,0x0, 0x0,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x7c,0x1f,0x0, 0x0,0x0,0x0,0x0,0x7c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x7d,0x1f,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x7e,0x1f,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x7e,0x1f,0x0, 0x0,0x0,0x0,0x0,0x89,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x82,0x1f,0x0, 0x0,0x0,0x0,0x0,0x65,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x87,0x1f,0x0, 0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x88,0x1f,0x0, 0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x88,0x1f,0x0, 0x0,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x8a,0x1f,0x0, 0x0,0x0,0x0,0x0,0xf1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x8d,0x1f,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x8e,0x1f,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x8e,0x1f,0x0, 0x0,0x0,0x0,0x0,0xa1,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xa5,0x1f,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xa5,0x1f,0x0, 0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xa6,0x1f,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xa6,0x1f,0x0, 0x0,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xa6,0x1f,0x0, 0x0,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xac,0x1f,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xac,0x1f,0x0, 0x0,0x0,0x0,0x0,0x57,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xaf,0x1f,0x0, 0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xb0,0x1f,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xb1,0x1f,0x0, 0x0,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xb3,0x1f,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xb3,0x1f,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xb3,0x1f,0x0, 0x0,0x0,0x0,0x0,0x8f,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xce,0x1f,0x0, 0x0,0x0,0x0,0x0,0x67,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xd0,0x1f,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xd1,0x1f,0x0, 0x0,0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0xd4,0x1f,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xd4,0x1f,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xd5,0x1f,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xd5,0x1f,0x0, 0x0,0x0,0x0,0x0,0xa9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xd7,0x1f,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0xd7,0x1f,0x0, 0x0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xd8,0x1f,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xd8,0x1f,0x0, 0x0,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xda,0x1f,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xda,0x1f,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xda,0x1f,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xda,0x1f,0x0, 0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xdb,0x1f,0x0, 0x0,0x0,0x0,0x0,0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xde,0x1f,0x0, 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xdf,0x1f,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xdf,0x1f,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xdf,0x1f,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xe0,0x1f,0x0, 0x0,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xe1,0x1f,0x0, 0x0,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xe4,0x1f,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xe5,0x1f,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xe5,0x1f,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xe5,0x1f,0x0, 0x0,0x0,0x0,0x0,0x94,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xf1,0x1f,0x0, 0x0,0x0,0x0,0x0,0xc1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xf7,0x1f,0x0, 0x0,0x0,0x0,0x0,0x9d,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x0,0x20,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x0,0x20,0x0, 0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x1,0x20,0x0, 0x0,0x0,0x0,0x0,0x9d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x7,0x20,0x0, 0x0,0x0,0x0,0x0,0x6,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x20,0x20,0x0, 0x0,0x0,0x0,0x0,0xa9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x25,0x20,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x25,0x20,0x0, 0x0,0x0,0x0,0x0,0x5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x27,0x20,0x0, 0x0,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x29,0x20,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x29,0x20,0x0, 0x0,0x0,0x0,0x0,0x49,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x31,0x20,0x0, 0x0,0x0,0x0,0x0,0x6f,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x36,0x20,0x0, 0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x37,0x20,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x37,0x20,0x0, 0x0,0x0,0x0,0x0,0x64,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x46,0x20,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x46,0x20,0x0, 0x0,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x4c,0x20,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x4c,0x20,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x4d,0x20,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x4d,0x20,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x4d,0x20,0x0, 0x0,0x0,0x0,0x0,0x90,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x51,0x20,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x51,0x20,0x0, 0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x52,0x20,0x0, 0x0,0x0,0x0,0x0,0x18,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x53,0x20,0x0, 0x0,0x0,0x0,0x0,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x54,0x20,0x0, 0x0,0x0,0x0,0x0,0xc,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x57,0x20,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x57,0x20,0x0, 0x0,0x0,0x0,0x0,0xbd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x59,0x20,0x0, 0x0,0x0,0x0,0x0,0xb9,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x66,0x20,0x0, 0x0,0x0,0x0,0x0,0x23,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x67,0x20,0x0, 0x0,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x6a,0x20,0x0, 0x0,0x0,0x0,0x0,0x96,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x6f,0x20,0x0, 0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x70,0x20,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x70,0x20,0x0, 0x0,0x0,0x0,0x0,0x17,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x75,0x20,0x0, 0x0,0x0,0x0,0x0,0x33,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x80,0x20,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x80,0x20,0x0, 0x0,0x0,0x0,0x0,0xe7,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x9a,0x20,0x0, 0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x9b,0x20,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x9b,0x20,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x9c,0x20,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x9c,0x20,0x0, 0x0,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xa2,0x20,0x0, 0x0,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xa7,0x20,0x0, 0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xa8,0x20,0x0, 0x0,0x0,0x0,0x0,0x60,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0xb9,0x20,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xb9,0x20,0x0, 0x0,0x0,0x0,0x0,0xa8,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xbd,0x20,0x0, 0x0,0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xbf,0x20,0x0, 0x0,0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xc2,0x20,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0xc2,0x20,0x0, 0x0,0x0,0x0,0x0,0x48,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xc3,0x20,0x0, 0x0,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xc4,0x20,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xc4,0x20,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xc4,0x20,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xc5,0x20,0x0, 0x0,0x0,0x0,0x0,0x14,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xc9,0x20,0x0, 0x0,0x0,0x0,0x0,0x41,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xd0,0x20,0x0, 0x0,0x0,0x0,0x0,0x94,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0xdb,0x20,0x0, 0x0,0x0,0x0,0x0,0x44,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xe5,0x20,0x0, 0x0,0x0,0x0,0x0,0x15,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0xec,0x20,0x0, 0x0,0x0,0x0,0x0,0xec,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xf1,0x20,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xf1,0x20,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xf2,0x20,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0xf2,0x20,0x0, 0x0,0x0,0x0,0x0,0x8,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xf6,0x20,0x0, 0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xf7,0x20,0x0, 0x0,0x0,0x0,0x0,0xc6,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x5,0x21,0x0, 0x0,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0xa,0x21,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xa,0x21,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xa,0x21,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xb,0x21,0x0, 0x0,0x0,0x0,0x0,0xf,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x11,0x21,0x0, 0x0,0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x14,0x21,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x14,0x21,0x0, 0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x16,0x21,0x0, 0x0,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x25,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x1c,0x21,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x1c,0x21,0x0, 0x0,0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x1e,0x21,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x1e,0x21,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x1e,0x21,0x0, 0x0,0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x23,0x21,0x0, 0x0,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x24,0x21,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x24,0x21,0x0, 0x0,0x0,0x0,0x0,0xb2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x36,0x21,0x0, 0x0,0x0,0x0,0x0,0x1a,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x3c,0x21,0x0, 0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x3d,0x21,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x3e,0x21,0x0, 0x0,0x0,0x0,0x0,0x1b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x41,0x21,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x41,0x21,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x41,0x21,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x42,0x21,0x0, 0x0,0x0,0x0,0x0,0xe6,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x6d,0x21,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x6d,0x21,0x0, 0x0,0x0,0x0,0x0,0x3c,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x82,0x21,0x0, 0x0,0x0,0x0,0x0,0xd7,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x8d,0x21,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8d,0x21,0x0, 0x0,0x0,0x0,0x0,0xdd,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x98,0x21,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x98,0x21,0x0, 0x0,0x0,0x0,0x0,0x9b,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xb9,0x21,0x0, 0x0,0x0,0x0,0x0,0x6e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xbe,0x21,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xbe,0x21,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xbf,0x21,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xbf,0x21,0x0, 0x0,0x0,0x0,0x0,0x6d,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0xc3,0x21,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xc3,0x21,0x0, 0x0,0x0,0x0,0x0,0xef,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xc6,0x21,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xc6,0x21,0x0, 0x0,0x0,0x0,0x0,0xab,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xc8,0x21,0x0, 0x0,0x0,0x0,0x0,0x58,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xcb,0x21,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x21,0x0, 0x0,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xcc,0x21,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xcd,0x21,0x0, 0x0,0x0,0x0,0x0,0x7e,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xd1,0x21,0x0, 0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xd2,0x21,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xd2,0x21,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xd2,0x21,0x0, 0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xd3,0x21,0x0, 0x0,0x0,0x0,0x0,0xdd,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xe5,0x21,0x0, 0x0,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x21,0x0, 0x0,0x0,0x0,0x0,0x81,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0xeb,0x21,0x0, 0x0,0x0,0x0,0x0,0x9b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xef,0x21,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0xef,0x21,0x0, 0x0,0x0,0x0,0x0,0x90,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xf6,0x21,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xf7,0x21,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf7,0x21,0x0, 0x0,0x0,0x0,0x0,0x59,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xf8,0x21,0x0, 0x0,0x0,0x0,0x0,0xd7,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xfe,0x21,0x0, 0x0,0x0,0x0,0x0,0x84,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1,0x22,0x0, 0x0,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x2,0x22,0x0, 0x0,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x3,0x22,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x3,0x22,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x3,0x22,0x0, 0x0,0x0,0x0,0x0,0x7b,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x7,0x22,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x8,0x22,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x8,0x22,0x0, 0x0,0x0,0x0,0x0,0xe9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xa,0x22,0x0, 0x0,0x0,0x0,0x0,0x91,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xc,0x22,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xd,0x22,0x0, 0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0xe,0x22,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0xe,0x22,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0xe,0x22,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xe,0x22,0x0, 0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xf,0x22,0x0, 0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x10,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x13,0x22,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x13,0x22,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x13,0x22,0x0, 0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x14,0x22,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x14,0x22,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x14,0x22,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x14,0x22,0x0, 0x0,0x0,0x0,0x0,0x86,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x19,0x22,0x0, 0x0,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x1a,0x22,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1a,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x1a,0x22,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x1b,0x22,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x1b,0x22,0x0, 0x0,0x0,0x0,0x0,0x2f,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x2c,0x22,0x0, 0x0,0x0,0x0,0x0,0x85,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x2d,0x22,0x0, 0x0,0x0,0x0,0x0,0x79,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x32,0x22,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x32,0x22,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x32,0x22,0x0, 0x0,0x0,0x0,0x0,0x93,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x36,0x22,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x36,0x22,0x0, 0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x37,0x22,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x37,0x22,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x38,0x22,0x0, 0x0,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x39,0x22,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x39,0x22,0x0, 0x0,0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x3b,0x22,0x0, 0x0,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x3d,0x22,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x3d,0x22,0x0, 0x0,0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x3e,0x22,0x0, 0x0,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x43,0x22,0x0, 0x0,0x0,0x0,0x0,0x97,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x43,0x22,0x0, 0x0,0x0,0x0,0x0,0x27,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x44,0x22,0x0, 0x0,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x45,0x22,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x45,0x22,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x45,0x22,0x0, 0x0,0x0,0x0,0x0,0xa3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x4a,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x4a,0x22,0x0, 0x0,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x4e,0x22,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x4e,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x4e,0x22,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x4e,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x4e,0x22,0x0, 0x0,0x0,0x0,0x0,0xb0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x56,0x22,0x0, 0x0,0x0,0x0,0x0,0x18,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x63,0x22,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x63,0x22,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x63,0x22,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x63,0x22,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x64,0x22,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x64,0x22,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x64,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x64,0x22,0x0, 0x0,0x0,0x0,0x0,0x15,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x68,0x22,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x68,0x22,0x0, 0x0,0x0,0x0,0x0,0x32,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x6a,0x22,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x6a,0x22,0x0, 0x0,0x0,0x0,0x0,0x26,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x6e,0x22,0x0, 0x0,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x6f,0x22,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x6f,0x22,0x0, 0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x70,0x22,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x70,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x70,0x22,0x0, 0x0,0x0,0x0,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x78,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x78,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x78,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x78,0x22,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x78,0x22,0x0, 0x0,0x0,0x0,0x0,0xbc,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x7b,0x22,0x0, 0x0,0x0,0x0,0x0,0x56,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x81,0x22,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x81,0x22,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x82,0x22,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x82,0x22,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x82,0x22,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x83,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x83,0x22,0x0, 0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x84,0x22,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x86,0x22,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x86,0x22,0x0, 0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x87,0x22,0x0, 0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x87,0x22,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x88,0x22,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x88,0x22,0x0, 0x0,0x0,0x0,0x0,0xe2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x8b,0x22,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x8b,0x22,0x0, 0x0,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x8c,0x22,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x8c,0x22,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x8c,0x22,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0xc7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x92,0x22,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x92,0x22,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x92,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x94,0x22,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x94,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x94,0x22,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x94,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x94,0x22,0x0, 0x0,0x0,0x0,0x0,0xf1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x98,0x22,0x0, 0x0,0x0,0x0,0x0,0x31,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xa2,0x22,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xa2,0x22,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xa2,0x22,0x0, 0x0,0x0,0x0,0x0,0x87,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xaa,0x22,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0xaa,0x22,0x0, 0x0,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xab,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xab,0x22,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xab,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xab,0x22,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xac,0x22,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xac,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xac,0x22,0x0, 0x0,0x0,0x0,0x0,0xe4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xb2,0x22,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xb2,0x22,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xb2,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xb5,0x22,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0xb5,0x22,0x0, 0x0,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xb6,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xb6,0x22,0x0, 0x0,0x0,0x0,0x0,0x4e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xb7,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xb7,0x22,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0x44,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x71,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x27,0x9,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x1,0x34,0x0,0x0, 0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x18,0x5,0x41,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x75,0x32,0x41,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x75,0x32,0x41,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x72,0x62,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x5,0x7d,0x2,0x0,0x0,0x1,0x3, 0x3,0x2,0x0,0x20,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x54,0x3d,0x2d,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x3d, 0x2d,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x71,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x80,0x1a,0x6,0x0,0x0,0x35,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0, 0x27,0x9,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1,0x1,0x59,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x5,0x41,0x1,0x0,0x0,0x0,0x2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x32,0x41,0x2,0x0,0x0,0x0,0x2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x32,0x41,0x6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x61,0x67,0x67,0x72,0x65,0x73,0x73,0x69,0x76, 0x65,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x6c,0x7a,0x34, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x72,0x62,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x5,0x1,0x1,0x0,0x0,0x1,0x3,0x0,0x2,0x0,0x4,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x32,0x2a, 0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x35,0x1a,0x0,0x0,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x20,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x1a, 0x6,0x0,0x0,0x35,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc0,0x27,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x74,0x65,0x73,0x74,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x76,0x6f,0x6c,0x75,0x6d,0x65, 0x73,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x69,0x6d,0x61, 0x67,0x65,0x73,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x63, 0x69,0x6e,0x64,0x65,0x72,0x2d,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x74,0x65,0x73,0x74,0x4e,0x0, 0x0,0x0,0x0,0x80,0x58,0x0,0xc4,0x5,0x0,0x0,0xc4,0x5,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x5,0x0, 0x0,0x0,0x5,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x81,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc4,0x5, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x27,0xad, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x33,0xb3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x2f,0x99,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x66,0xe6,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0xb0,0x4d,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x89,0xa7,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0xb8,0xab,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x4,0xae,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0xd5,0x9a,0x0,0x0,0xcd,0xcc,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x66,0xe6,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0xb9,0xad,0x0,0x0,0x99,0xd9,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x34,0xf3,0x0,0x0,0x0,0x0, 0x1,0x0,0x99,0xd9,0x0,0x0,0x0,0x0,0x1,0x0,0x66,0xe6,0x0,0x0,0x0,0x0, 0x1,0x0,0x32,0x96,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x64,0xa0,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xff,0xbf,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0xc0,0x0,0x0,0xaf,0x98,0x0,0x0,0x0,0x0,0x1,0x0,0x33,0xf3, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0xc2,0x9a,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x37,0x74, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x66,0xe6,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x66,0xe6, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x33,0xf3,0x0,0x0,0xc3,0x91,0x0,0x0,0x33,0xf3,0x0,0x0,0x29,0xb5, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xff,0xbf, 0x0,0x0,0x0,0x0,0x1,0x0,0x99,0xd9,0x0,0x0,0x1,0x90,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x47,0xaa,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xc1,0xa5,0x0,0x0,0x66,0xe6, 0x0,0x0,0x0,0x0,0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xbb,0xb0,0x0,0x0,0x0,0x0, 0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x34,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0xc4,0x5,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb8,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x61,0x99,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x1e,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x37,0xb1,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xe3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5d,0x99,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80, 0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd,0xe7,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x1a,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8, 0x52,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x7,0x54,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x48,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe2,0x1e,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x99,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xbc, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x66,0x28,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1, 0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x91,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x88,0x99,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xb6,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7a,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x50,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x1e,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xc4,0x1f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d, 0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x59,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e, 0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x50,0x28,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xb3,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x6b, 0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xe6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xdf,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf6,0x6b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x49,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x31,0x3a, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x97,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x8c,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdb,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x49,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xf9,0x2f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b, 0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe3,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x8b,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbd, 0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x56,0xa4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe2,0x6b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15,0x30,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb5,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf7,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xa4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdd,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x49,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0x69,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53, 0xbd,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x99,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xad,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdf,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x8b,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0xb3, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xce,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x93,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9a,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7, 0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa,0x4b,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x98,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf5,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80, 0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc4,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x6b,0x33,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0x8b,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf1, 0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e, 0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3f,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xec,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x99,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xc8,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0xa4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa1,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4f,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0x4a,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x8c,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x27,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3e,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc7,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f, 0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x51,0xbd,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xdb,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb9,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0xc8,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x15, 0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xd9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9d,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xae,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0x99,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x81,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9f,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80, 0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdb,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xb3,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x88,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf, 0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xce,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbc,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa5,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa3,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x51,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x86, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb0,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa7,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1, 0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x51,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x52,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xba,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcb,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x86,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0xa4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x48,0xbd,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbe,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0xc7, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5e,0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe1,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x86,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0x86,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb8,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xba,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0x51,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26, 0x52,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xcf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa9,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaa,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xce,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xb1,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0x7e, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x16,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2, 0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3c,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x95,0xc8,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb5,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x7e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xc7,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c, 0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3b,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3d,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x94,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x8b,0x8,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0x59, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x60,0xa4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xca,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0xbd,0x2b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc8,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd9,0xf7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd8,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x4e,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10, 0xfa,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc6,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa0,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xd5,0x2b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x4b, 0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xe0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x92,0x28,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1, 0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x53,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca, 0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x8c,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb1,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc7,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xbd,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x8d,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe, 0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe8,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e, 0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x42,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x8b,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xa4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3d,0xbd,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x11,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x49,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x85,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xde,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80, 0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xec,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x78,0x26,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xe8,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x27,0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4f,0x72,0xa,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xd5,0x2b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe5,0x6b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe5,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xc7,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x2,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x20,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfa,0x1f,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x4d,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0x59,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68, 0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xd6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x31,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x40,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc7,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xc8,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xb6, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd8,0x9b,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x86,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x6,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0x3e,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x60,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x98,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x6c,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfb,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3e,0x2,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9c,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x6,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x15, 0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xd9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xef,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xff,0x3e,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0x1e,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xdf,0xb2,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x62,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9c,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xb6,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b, 0x4e,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa0,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xc8,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x62,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xb7, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x16,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x97,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x65,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x59,0xc,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0x3f,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x34,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x19,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd9,0x1e,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xb4,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x68,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x48,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23, 0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x19,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf3,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd6,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd2,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xc8,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x62,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x34, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5b,0x59,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1, 0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x2,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0x6,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x25,0x3f,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb4,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x78,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xb4,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6, 0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x49,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e, 0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xeb,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x68, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x99,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1b,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c, 0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x7e,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x68,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x17, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x83,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x31,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xed,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcc,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x68,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xcd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb1,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xc8,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x73,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x37,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80, 0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xef,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb2,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xd3,0x37,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xb6,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70, 0x62,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc5,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x33,0xb4,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa0,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x59,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xb1,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x7e, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x39,0x62,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9d,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xb4,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0x59,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x72,0x62,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf8,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbc,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x59,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15, 0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x42,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x89,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x51,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xc8, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xcd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x45,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9, 0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0xe9,0x3, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa6,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x35,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69, 0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xd4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x80,0x1a,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x53,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7b,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x65,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa2,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1, 0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x70,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd0,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x7c,0x22,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x7e,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x80, 0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa1,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8,0x84,0x22,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9c,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xb6,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x86,0x22, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9e,0x28,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf0,0x8c,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x90,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfb,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e, 0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9d,0x92,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xda,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0x95,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0x39, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xde,0x99,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18, 0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe8,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4, 0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0xa4,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xba,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x86,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xa9,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbc,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xac,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x6c,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b, 0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfc,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc3,0xaf,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xb4,0x22,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc8,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0xc0,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xa8, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xec,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9b,0x52,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd, 0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x27,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0xc3,0x22, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbb,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbf,0xc6,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89, 0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcd,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xcb,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47, 0xce,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x18,0x8d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x49,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x92,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0x85,0x33,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x51, 0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x70,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1, 0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5e,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x53,0xe,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x4a,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x56,0xe, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xaf,0x59,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x18,0x8e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa2,0x28,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x5e,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa4,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0x61,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0x9b,0x3,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13, 0x3f,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xae,0x63,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a, 0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5c,0x66,0x1a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x66,0xe,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x69, 0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe3,0x6f,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4f,0x72,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc, 0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x74,0xe,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x77,0xe, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x57,0x7a,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x18,0x8e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x61,0x2,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x6c,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcf,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x7f,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0x82,0xe,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad, 0x84,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x64,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e, 0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe4,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xe7,0x13,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd9,0xe,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x39, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4c,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0x8a,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc, 0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0x28,0x16,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x90,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x2a,0x16,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xc4,0x1f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6a,0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x22,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa2,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x2d,0x16,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0x2d,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62, 0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2f,0x30,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbc,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd5,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x8d,0x17,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x10, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x93,0x32,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x18, 0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x24,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x69,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x13,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0x37,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2e,0xbd,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x54,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80, 0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xdb,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x90,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0xbc,0x3,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x8d,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84, 0x16,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x56,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x72,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb7,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x3a,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3,0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xbf,0xde,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xae,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x18,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa4,0xc,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x88, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x94,0x3c,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89, 0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x90,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xf0,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0x59,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d, 0xe1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd3,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5,0xf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x98,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x1b,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xe3,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x3f, 0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x71,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x15,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x11,0x6,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9c,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0xb6,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0x23,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xaa,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc5,0xe6,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x9b,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x42,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68, 0x26,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x58,0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0xf0,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xeb, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1, 0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb2,0x14,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xba,0x47,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x69,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xff,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb8,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x48,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x29,0x24,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96, 0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb2,0xed,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa8,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x28,0x19,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x31,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xd9, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xdf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5c,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xfa,0x2f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x2,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x8b,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf3,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80, 0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe7,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xd5,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x6,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a, 0x4a,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a,0x18,0x8b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb7,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf8,0xae,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0x31,0x3a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x28,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xbc, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa0,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x50,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x66,0x1a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xac,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x39,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x59,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2f,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x51,0x59,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80, 0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe7,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xb4,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x62,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0, 0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xcc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe6,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x96,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc1,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x2b,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x59,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x79, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xdb,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1, 0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5,0xf1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x6,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56,0xb4,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x59,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x48,0x62,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbf,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x59,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0x79,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x66,0xb4,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfd,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd9,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x1c,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa8,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x4c,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0x73, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4a,0xb2,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf4,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x15,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xb4,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x59,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x71,0x2e,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0xc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xae,0x8,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89, 0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe0,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x34,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xc8,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8, 0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xcc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xff,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e, 0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd3,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc8,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x73,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xf3, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5d,0x1f,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x18, 0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2, 0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xb4,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x4f,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x57,0x59,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x27,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0xb4,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xc8,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd, 0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xcc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf9,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e, 0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcb,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xb4,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x73,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x62, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xba,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1, 0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa3,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x59,0xc,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xac,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x79,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x34,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0xb4,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xcd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe1,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80, 0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x62,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0x36,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x77,0x27,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e, 0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9b,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xda,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x51,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0xf5,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0xb, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xce,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x22,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0, 0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x52,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4,0xb7,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19,0x9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa8,0x39,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xfb,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x11,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60, 0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x10,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf6,0xb7,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x59,0x25,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb4,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xba,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x57,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x3c, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfc,0x13,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x14,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xfd,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbc,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x2a,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xc1,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3b,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x3e,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc4,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x17,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed, 0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x14,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe8,0x0,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a, 0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6f,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9e,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0x2d,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbc,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x50, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xdc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4d,0x59,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x7e,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc4,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbf,0x41,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0xc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x19,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd8,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47, 0x3,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4e,0x30,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x35,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x5b,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xc6, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4f,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2, 0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0xa0,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x90,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x78,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x4a,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x10,0x1c,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x52,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc4,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x5,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe9, 0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x18,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x64,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfc,0x32,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xc9,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0x6c,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x64,0x5d,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x18, 0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xab,0x7f,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xa3,0x31,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x77,0xcd,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xb,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x4c,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x7e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x22,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e, 0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x93,0x36,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc8,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xcb,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0xc8, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x16,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0xa5,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x7e,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0x68,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x69,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3b,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x61,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8, 0xcf,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0xf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbe,0x4f,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a, 0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa8,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xd4,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0x68, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd0,0xa8,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19, 0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfc,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xe,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x41,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc6,0x3b,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89, 0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xec,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x7e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x68,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38, 0xd2,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x19,0xf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8b,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfe,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xba,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x51,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x52, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe5,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xde,0xd7,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc, 0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xab,0x31,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0x11,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x80,0xd5,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe8,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x3f,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb, 0x4d,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf8,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x60,0xb1,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa4,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x2d,0xe,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x44,0xda,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa5,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd, 0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0x17,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xee,0x54,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0x78,0x26, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd2,0xd7,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0xb3,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa8,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x41,0x6,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3, 0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x18,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa4,0xdc,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcc,0xb6,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x78, 0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x62,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2, 0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4d,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x68,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80, 0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xf0,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c, 0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x10,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x35,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3b,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9c,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3d,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x37,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde, 0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xf7,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x90,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0xe2,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xe2,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x28,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x13, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x43,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb1,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xe2,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2c,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x30,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x11,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x32,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94, 0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xe1,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb1,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf, 0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x11,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa3,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e, 0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc9,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xe8,0x34,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xe8, 0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x94,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xbc,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0xdf,0x3f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0x19,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd0,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x94,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcc,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2, 0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x11,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb8,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e, 0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xe8,0x34,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xec,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x3b,0x9,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x3b,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xff,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9f,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x3b,0x9,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35, 0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5a,0x44,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf0,0xdf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc8,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0xb9,0x31,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xe1, 0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4e,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xbf,0xe8,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc, 0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x47,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x3b,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xfa,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x94,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x3b,0x9,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a, 0xbc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4c,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf4,0xa,0x1c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xe4,0x3f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xac,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xeb,0x6,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc9,0xc1,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19, 0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x79,0xe7,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xed,0x6,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd4,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xc4,0x31,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xe9,0x3f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xba,0x57,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x80,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x29,0x2e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac, 0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xe4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x86,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a, 0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x31,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xef,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd8,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xc7,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0x5b, 0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe8,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x14,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x92,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x81,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x40,0xf3,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0x9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x19,0xca,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89, 0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb0,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0x80,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97, 0x5d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x18,0x89,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9b,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a, 0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9,0x60,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9c,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xcc,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7a,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x81,0xd3,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19, 0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0x63,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xd5,0x31,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x67,0x17, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x89,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbc,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x18,0x8a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x67,0x6b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd8,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd4,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x6d,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7, 0xe6,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xaf,0xdb,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5d,0xe9,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x70,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xde, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x81,0x39,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa0,0xec,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0, 0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x72,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x81,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x24,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x1b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb8,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x81,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22, 0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x1b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3c,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e, 0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfb,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9f,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x81,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x3b, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5,0xef,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x19, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x72,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x78,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb8,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0xef,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xef,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x83,0x3e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x19,0xb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc,0xfa,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa8,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xf1,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22, 0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd3,0x7a,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a, 0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf2,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb0,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xee,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xff,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2, 0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x71,0xfc,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0x41,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9c,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xf9,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xee,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x50,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf2,0x43,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd1,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd0,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xef,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xef,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35, 0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x8c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xfe,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xee, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x42,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2, 0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe0,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1, 0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x25,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x90,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xee,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xef,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xfd,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x38,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80, 0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x7e,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9, 0xb,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x25,0x80,0x8e,0x17,0x6b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6f,0x84,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x7,0x80,0x8e, 0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcb,0x60,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0xfc,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x1,0x15,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x85, 0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x10,0x80,0x8e,0x17,0x48,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x11,0x86,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x14,0x80,0x8e,0x17, 0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6e,0x4c,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x96,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0x80,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xff,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd6,0x4e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0xb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x22,0x9,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x83,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc8,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x1,0xd,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f, 0xb,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0xd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6e,0x51,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a, 0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd0,0x88,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcc,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x2,0x2a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x4, 0xd,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x18,0xe,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x19, 0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7d,0x54,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x5,0x2a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xdd,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xfc,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf0,0xce,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17,0x49,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5a,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18,0x8a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb7,0xd8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x8b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd0,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0xd3,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x9e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30, 0xd2,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x14,0xd7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3b,0xe6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x96,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xdc,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdd,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0xd9,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xc0, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x19,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x74,0x10,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x19, 0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x63,0xdb,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9, 0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0x7,0x2a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd4,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xde,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1b,0x28,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xd1,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0x17,0x49,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x41,0xd6,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb,0xa2,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x56,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb4,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x8e,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7, 0xc3,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x60,0xa,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a, 0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x69,0xa4,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x98,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x12,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x11,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0x5f, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x17,0x91,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x18, 0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd2,0xa6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c, 0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc6,0xc,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0xd,0x2a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x1c,0x15, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4f,0x62,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a,0x19,0xb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd9,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x89, 0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x93,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xa9,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0xab,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x67,0x1f,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a, 0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf2,0x64,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc0,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xae,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0xcb,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xae, 0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x81,0xa5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6,0x68,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0xb0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa8,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0xd2,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xa,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0x17,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2,0xb1,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7,0x22,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x6a,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc8,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xb4,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xd5,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71, 0xd5,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe4,0xd7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc0,0xcf,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xd4,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xdf,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1b,0x2c,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xd0, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0x17,0x49,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3b,0x2,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xdf,0x3e,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xb3,0x29,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9c,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x47,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1b,0x1d,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x39,0x29, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6e,0x41,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x5,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x38,0x49,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x21,0x80, 0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb5,0x3f,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd4,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x4b,0x29,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1b,0x29,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x43,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0xd,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf, 0x3e,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0x17,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc,0x26,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a, 0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6b,0x3c,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xad,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x44,0x29,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1b,0x15,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x40,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1b,0x1,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x73, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa9,0xb6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe2,0x46,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x19, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0x39,0x29,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x42,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1b,0x9,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x3a,0x29, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3b,0x3d,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x18,0x44,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x11,0x80, 0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x3b,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa5,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x3e,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0x3f,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e, 0x41,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x28,0x80,0x8e,0x17,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e, 0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6f,0x3d,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x3a,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcc,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xd8,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x33, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17,0x6f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb5,0x35,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0x17, 0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb4,0xb6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x3c,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd4,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0x28,0x15,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x75,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x34,0x38,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x75,0x32,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x3b,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd0,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x0,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x36,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0xb9,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x8c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb3,0xfe,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa2,0xda,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb0,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0xfd,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x37,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x34, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x6f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb5,0xa,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x1c,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x13,0xfd,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f, 0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x3,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc7,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xbe,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0xff,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd0,0x2,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0x17,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x15,0x34,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x30,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x30,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63, 0x40,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x24,0x80,0x8e,0x17,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x77,0x4,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa5,0x31,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x94,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0x1,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xba,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xfb,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0x7, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd7,0x9,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x13,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x24,0x1,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6, 0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x78,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd4,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x8,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x6,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x43,0xfc,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x76,0xbe,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x8,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xc0,0x29,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xcb,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf, 0xcd,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x11,0xcc,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x63,0xca,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xdd,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xf7,0x39,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xce, 0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf1,0xd2,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x24,0x80,0x8e,0x17, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4d,0xc6,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xc3,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xc9,0x30,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe2,0xcc,0x30, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0x17,0x64,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6a,0x7b,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x19,0xb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc2,0x33,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0xc7,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xd1,0x30,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1b,0x20,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xc8,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad, 0xc4,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xde,0xc0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a, 0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3d,0xc2,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xcf,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe1,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0xc5,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0xd0, 0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x11,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd,0xc3,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0x17, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x98,0x2,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xc3,0x29,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xac,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x6,0x25,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xff,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0x17,0x66,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7f,0xf8,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x66, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5a,0x36,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0x3,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xf5,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xfd,0x24,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x8,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0x17,0x66,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6a,0xf4,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e, 0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xae,0xfa,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xfc,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb4,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x1,0x25,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xf6, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x52,0x5,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0x17, 0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf5,0x6,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8, 0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x0,0x25,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xfc,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xf7,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0x17,0x66,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0xc3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x18,0x8c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x96,0xf9,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80, 0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc5,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb0,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xf6,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x18,0x6,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a, 0x22,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x1,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x42,0x15,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe,0x7e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdc,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0x12,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe2,0x16,0x6,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb1,0x1c, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0x17,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4c,0x90,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x72,0x14,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4, 0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0xd4,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb0,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xd3,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xcf,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x64,0xd1,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0x17,0x65, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb3,0xdd,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80, 0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x56,0x39,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd8,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xc6,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xcc,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5, 0xd5,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdd,0xd6,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x91,0xd8,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb8,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xdc,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb4,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xc8,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xca, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0x17,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x27,0xda,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb9,0x3b,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x89,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x7c,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0xd1,0x29, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf3,0x85,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0x17,0x68, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x22,0x88,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80, 0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xf5,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1b,0x20,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x8c,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0xe8,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16, 0xf4,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf6,0x80,0x8e,0x17,0x68,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfd,0xc8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a, 0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9c,0xe7,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa0,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0xec,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbd,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0xce,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0xe5, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x68,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd0,0xd3,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a,0x19, 0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x65,0xf2,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xea,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb5,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xed,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xef,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0x17,0x68,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3c,0xe9,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0x17,0x68, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6,0xf6,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x24,0x80, 0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xeb,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0xf1,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0xd0,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26, 0xd6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x51,0xd3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a, 0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x71,0xd9,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xd6,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd8,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xdb,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0xd8, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x18,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd5,0x70,0x27,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0x17, 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x88,0x4e,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x28, 0x80,0x8e,0x17,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcc,0xf9,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80, 0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0, 0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6d,0x53,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9a,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc1,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x12,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x12,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x12, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x33,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x86,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0x35,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xbc,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xcf,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa8,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xbc,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0xe0,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47, 0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xda,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8f,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc9,0xf0,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xbf,0x1b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0xbc,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xe5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x44,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x18,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb, 0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xe0,0x1b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xe5,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3d,0x9e,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x88,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80, 0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc8,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xb0,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0x75,0x1f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19, 0x9e,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa3,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3d,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa9,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xe5,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xbc, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xed,0xf2,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb7,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xe5,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbe,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x42,0x35,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x7d,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xbd,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, 0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8c,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4b,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x98,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0xe5,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x7d, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4f,0xbf,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x9e,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x94,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa5,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1a,0xf6,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xce,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe5,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x35,0x9e,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e, 0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x68,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x57,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0xe0, 0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xcb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2d,0x9e,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1, 0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb,0x7d,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xe0,0x1b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe0,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9,0x7d,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0xe5,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf1,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e, 0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5b,0xf8,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe4,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xcf,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x57,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xbd, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb9,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfe,0x7c,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x57,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xbc,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x91,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x58,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x50,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xce,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0x9e,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93, 0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xc9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x42,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb0,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcf,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xcf,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x57,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xbc, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x21,0xbf,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x89,0xfa,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xcf,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xbd,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9b,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfa,0x7c,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0xbd,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xe0,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48, 0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1f,0x35,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x69,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xec,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xbc,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0xe0,0x1b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xb0, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x11,0xa2,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x45,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xde,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xfc,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0xbf,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x53,0xcf,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80, 0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xbc,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xe8,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53, 0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9b,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x58,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd0,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xce,0x13,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1, 0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9, 0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x96,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xce,0x13, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x33,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x33,0xba,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb0,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xce,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0xce,0x13,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x28, 0xba,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x39,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e, 0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe,0xba,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb2,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xce,0x13,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0xba,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x40,0x98,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x11,0xe7,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xde,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0xbc,0x3,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x59,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe7,0x80,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xde, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7e,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xb6,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0xe7,0x13,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae, 0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x78,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc9,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x4a,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x3f, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x36,0x98,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x82,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x9b,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x23,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xdf,0x57,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x1c,0x80,0x8e,0xa1,0xde, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5b,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x1e,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xb5,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x6,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xba,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0x50,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1b,0x0,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x48,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x1e, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x79,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x59,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0x2,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xbc,0x3,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x55,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x14,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x24,0x98,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb5,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x59,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0xe7,0x13,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2, 0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4d,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x65,0x53,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b, 0xc,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x98,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x48,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x39, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7d,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x31,0xe7,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x2,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x5a,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x4d,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf4,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x14,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb6,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xea,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x59,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x6,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2, 0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdc,0x9b,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe6,0x4b,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe6,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x1f,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x8,0xe7,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x39,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0x4f,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfc,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x86,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x3f,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd4,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5,0x36,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xd5,0x2b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d, 0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa2,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf9,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x28,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x4, 0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xe5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd5,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x47,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x6b,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0xa4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x23,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x2, 0x2,0x0,0x0,0x5b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x16,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xb9,0x3,0x0,0x0, 0x2,0x2,0x0,0x0,0x26,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x52,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x34,0x5,0x0, 0x0,0xc8,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xee,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xaf,0x2, 0x0,0x0,0x40,0x3,0x0,0x0,0xfb,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfe,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x90, 0x0,0x0,0x0,0x2,0x2,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x55,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x4,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x63,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x2,0x2,0x0,0x0,0xbf,0x2,0x0,0x0,0x29,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x16,0x1,0x0,0x0,0xfd,0x2,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x2,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x94,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x3d,0x0,0x0,0x0,0x64,0x1,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x86,0x5,0x0,0x0,0x2,0x2,0x0,0x0,0x18,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x6c,0x5,0x0,0x0,0x7d,0x1,0x0,0x0,0x2,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0x34,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x6a,0x5,0x0,0x0,0xf2,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x4c,0x2,0x0,0x0,0x6c,0x5,0x0,0x0,0xb9,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x47,0x2,0x0,0x0,0xe1,0x4,0x0,0x0,0x2,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x94,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xa6,0x5,0x0,0x0,0x9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x85,0x2, 0x0,0x0,0x27,0x2,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x17, 0x5,0x0,0x0,0x32,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2d,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xb1,0x5,0x0,0x0, 0x32,0x1,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa9,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x45,0x1,0x0, 0x0,0x28,0x5,0x0,0x0,0x76,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8f,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x43,0x1, 0x0,0x0,0x2,0x2,0x0,0x0,0x70,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x96,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48, 0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0xa9,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa4,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x2,0x2,0x0,0x0,0xe,0x3,0x0,0x0,0xe8,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc4,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x5c,0x2,0x0,0x0,0x2,0x2,0x0,0x0,0x3d,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0xef,0x4,0x0,0x0,0xb3,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0xf9,0x4,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0x26,0x2,0x0,0x0,0xc3,0x0,0x0,0x0,0x70,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x2,0x2,0x0,0x0,0x9a,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x9e,0x5,0x0,0x0,0x71,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x9d,0x2,0x0,0x0,0xe9,0x4,0x0,0x0,0x1f, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x4b,0x5,0x0,0x0,0x25,0x0,0x0,0x0, 0x16,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0x55,0x1,0x0, 0x0,0x2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x5,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xa9,0xf3,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x1,0x0,0x0,0x5,0x0,0x0,0x0,0xc4,0x5,0x0, 0x0,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6,0x0,0x5,0x0,0x97,0xc7,0x78, 0x19,0x2,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0xbf,0xff,0xff,0xff,0x1e,0xfb,0xeb, 0x14,0x79,0xcc,0x8c,0x4,0x5,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0x4,0x0,0x5, 0x0,0x1e,0xfb,0xeb,0x14,0x6,0x0,0x0,0x0,0xb8,0xff,0xff,0xff,0xfc,0xff,0xff, 0xff,0xfa,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xf2,0xff,0xff,0xff,0x6d,0xff,0xff, 0xff,0x1b,0x47,0x95,0x3,0x84,0x47,0x95,0x3,0x48,0x41,0x95,0x3,0x30,0x3d,0x12, 0x3,0x57,0xea,0x84,0x3,0xb0,0x3,0x95,0x3,0x5,0x0,0x0,0x0,0xfd,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0xe1,0x0,0x0, 0x0,0xec,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x13,0x1,0x0,0x0,0x55,0x1,0x0, 0x0,0x70,0x1,0x0,0x0,0x8f,0x1,0x0,0x0,0xb6,0x1,0x0,0x0,0xcc,0x1,0x0, 0x0,0xf5,0x1,0x0,0x0,0x13,0x2,0x0,0x0,0x20,0x4,0x0,0x0,0x72,0x5,0x0, 0x0,0x7a,0x5,0x0,0x0,0x83,0x5,0x0,0x0,0x8b,0x5,0x0,0x0,0x92,0x5,0x0, 0x0,0x9a,0x5,0x0,0x0,0xa2,0x5,0x0,0x0,0xaa,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xfc,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x84,0x47,0x95,0x3,0x7,0x0,0x0, 0x0,0xfd,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xef,0xff,0xff, 0xff,0xe9,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xe7,0xff,0xff,0xff,0x30,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x5,0x0,0x0,0x0,0xfb,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x20,0x0,0x0, 0x0,0x24,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x43,0x0,0x0, 0x0,0x4a,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x80,0x0,0x0, 0x0,0x97,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0xba,0x0,0x0, 0x0,0xcb,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0x8b,0x1,0x0, 0x0,0xa3,0x1,0x0,0x0,0xc5,0x1,0x0,0x0,0xe0,0x1,0x0,0x0,0xfc,0x1,0x0, 0x0,0xe,0x2,0x0,0x0,0x1d,0x2,0x0,0x0,0xbc,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xfa,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x87,0x41,0x95,0x3,0x7,0x0,0x0, 0x0,0xfb,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xec,0xff,0xff, 0xff,0xeb,0xff,0xff,0xff,0xe5,0xff,0xff,0xff,0xe4,0xff,0xff,0xff,0x3d,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x19,0x4,0x83,0x0,0x5,0x0,0x0,0x0,0xf9,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x1d,0x0,0x0, 0x0,0x22,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x42,0x0,0x0, 0x0,0x4b,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x82,0x0,0x0, 0x0,0x9e,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0xbc,0x0,0x0, 0x0,0xca,0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x7a,0x1,0x0,0x0,0x92,0x1,0x0, 0x0,0xae,0x1,0x0,0x0,0xd1,0x1,0x0,0x0,0xe7,0x1,0x0,0x0,0x2,0x2,0x0, 0x0,0x12,0x2,0x0,0x0,0x21,0x2,0x0,0x0,0xbe,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xf8,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x9f,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0xc,0x1,0x0,0x0,0x10,0x1,0x0, 0x0,0x2c,0x1,0x0,0x0,0x34,0x1,0x0,0x0,0x38,0x1,0x0,0x0,0x3d,0x1,0x0, 0x0,0x44,0x1,0x0,0x0,0x49,0x1,0x0,0x0,0x26,0x2,0x0,0x0,0x2a,0x2,0x0, 0x0,0x2e,0x2,0x0,0x0,0x34,0x2,0x0,0x0,0x38,0x2,0x0,0x0,0x3f,0x2,0x0, 0x0,0x44,0x2,0x0,0x0,0x4a,0x2,0x0,0x0,0x4e,0x2,0x0,0x0,0x55,0x2,0x0, 0x0,0x5a,0x2,0x0,0x0,0x5e,0x2,0x0,0x0,0x62,0x2,0x0,0x0,0x66,0x2,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xf7,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x6e,0x3d,0x12, 0x3,0x6,0x0,0x0,0x0,0xf8,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xe1,0xff,0xff, 0xff,0xe0,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf4,0xff,0xff,0xff,0x3d,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x5,0x0,0x0,0x0,0xf6,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x4,0x1,0x0, 0x0,0xb,0x1,0x0,0x0,0xf,0x1,0x0,0x0,0x1a,0x1,0x0,0x0,0x31,0x1,0x0, 0x0,0x37,0x1,0x0,0x0,0x3b,0x1,0x0,0x0,0x41,0x1,0x0,0x0,0x46,0x1,0x0, 0x0,0x4d,0x1,0x0,0x0,0x27,0x2,0x0,0x0,0x2b,0x2,0x0,0x0,0x30,0x2,0x0, 0x0,0x36,0x2,0x0,0x0,0x3a,0x2,0x0,0x0,0x42,0x2,0x0,0x0,0x48,0x2,0x0, 0x0,0x4c,0x2,0x0,0x0,0x52,0x2,0x0,0x0,0x57,0x2,0x0,0x0,0x5c,0x2,0x0, 0x0,0x60,0x2,0x0,0x0,0x64,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xf5,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x1e,0x0,0x0, 0x0,0x2c,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x3c,0x0,0x0, 0x0,0x3f,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x4d,0x0,0x0, 0x0,0x52,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0x62,0x0,0x0, 0x0,0x63,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x67,0x0,0x0, 0x0,0x68,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xf4,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x6b,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x6e,0x0,0x0, 0x0,0x6f,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x72,0x0,0x0, 0x0,0x73,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x76,0x0,0x0, 0x0,0x77,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x83,0x0,0x0, 0x0,0x84,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x87,0x0,0x0, 0x0,0x89,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x8d,0x0,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xf3,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0xad,0x0,0x0, 0x0,0xc6,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0x22,0x1,0x0, 0x0,0x29,0x1,0x0,0x0,0x3e,0x1,0x0,0x0,0x50,0x1,0x0,0x0,0x5d,0x1,0x0, 0x0,0x6c,0x1,0x0,0x0,0x70,0x2,0x0,0x0,0x85,0x2,0x0,0x0,0x90,0x2,0x0, 0x0,0x9d,0x2,0x0,0x0,0xaa,0x2,0x0,0x0,0xb6,0x2,0x0,0x0,0xc1,0x2,0x0, 0x0,0xcc,0x2,0x0,0x0,0xd7,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,0xed,0x2,0x0, 0x0,0xfa,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xf2,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0x57,0xea,0x84,0x3,0x7,0x0,0x0,0x0,0xf3,0xff,0xff,0xff,0xee,0xff,0xff, 0xff,0xea,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe2,0xff,0xff,0xff,0xdf,0xff,0xff, 0xff,0xde,0xff,0xff,0xff,0x3d,0xa,0x83,0x0,0x7b,0x94,0x7d,0x0,0x2f,0xe,0x83, 0x0,0x3d,0xa,0x83,0x0,0x7b,0x94,0x7d,0x0,0x3d,0xa,0x83,0x0,0x7b,0x94,0x7d, 0x0,0x5,0x0,0x0,0x0,0xf1,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x16,0x0,0x0, 0x0,0xd9,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x3,0x1,0x0, 0x0,0x16,0x1,0x0,0x0,0x66,0x1,0x0,0x0,0x8a,0x1,0x0,0x0,0xaa,0x1,0x0, 0x0,0xca,0x1,0x0,0x0,0xe9,0x1,0x0,0x0,0x10,0x2,0x0,0x0,0x24,0x2,0x0, 0x0,0x74,0x5,0x0,0x0,0x7f,0x5,0x0,0x0,0x86,0x5,0x0,0x0,0x90,0x5,0x0, 0x0,0x98,0x5,0x0,0x0,0xa0,0x5,0x0,0x0,0xa8,0x5,0x0,0x0,0xb0,0x5,0x0, 0x0,0xb6,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xf0,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0xc,0x0,0x0, 0x0,0x15,0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0xee,0x0,0x0, 0x0,0x1,0x1,0x0,0x0,0x14,0x1,0x0,0x0,0x5a,0x1,0x0,0x0,0x77,0x1,0x0, 0x0,0x97,0x1,0x0,0x0,0xbd,0x1,0x0,0x0,0xd6,0x1,0x0,0x0,0xf8,0x1,0x0, 0x0,0x19,0x2,0x0,0x0,0x71,0x5,0x0,0x0,0x79,0x5,0x0,0x0,0x81,0x5,0x0, 0x0,0x89,0x5,0x0,0x0,0x91,0x5,0x0,0x0,0x99,0x5,0x0,0x0,0xa1,0x5,0x0, 0x0,0xa9,0x5,0x0,0x0,0xb1,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xef,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x5,0x0,0x0, 0x0,0xf,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0xea,0x0,0x0, 0x0,0xf7,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x54,0x1,0x0,0x0,0x6b,0x1,0x0, 0x0,0x86,0x1,0x0,0x0,0xa9,0x1,0x0,0x0,0xc0,0x1,0x0,0x0,0xd8,0x1,0x0, 0x0,0xfb,0x1,0x0,0x0,0x1f,0x2,0x0,0x0,0x73,0x5,0x0,0x0,0x7b,0x5,0x0, 0x0,0x82,0x5,0x0,0x0,0x8a,0x5,0x0,0x0,0x93,0x5,0x0,0x0,0x9b,0x5,0x0, 0x0,0xab,0x5,0x0,0x0,0xb2,0x5,0x0,0x0,0x60,0x0,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xee,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0, 0x0,0x91,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xd7,0x0,0x0, 0x0,0xfc,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x24,0x1,0x0,0x0,0x2d,0x1,0x0, 0x0,0x4b,0x1,0x0,0x0,0x53,0x1,0x0,0x0,0x60,0x1,0x0,0x0,0x6a,0x2,0x0, 0x0,0x73,0x2,0x0,0x0,0x8c,0x2,0x0,0x0,0x92,0x2,0x0,0x0,0xa1,0x2,0x0, 0x0,0xab,0x2,0x0,0x0,0xba,0x2,0x0,0x0,0xc4,0x2,0x0,0x0,0xcf,0x2,0x0, 0x0,0xd9,0x2,0x0,0x0,0xea,0x2,0x0,0x0,0xf6,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xed,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x18,0x0,0x0, 0x0,0x27,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x3e,0x0,0x0, 0x0,0x49,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x81,0x0,0x0, 0x0,0x9d,0x0,0x0,0x0,0xa9,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0xbe,0x0,0x0, 0x0,0xcc,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0x95,0x1,0x0, 0x0,0xb2,0x1,0x0,0x0,0xd2,0x1,0x0,0x0,0xeb,0x1,0x0,0x0,0x3,0x2,0x0, 0x0,0x14,0x2,0x0,0x0,0x3c,0x2,0x0,0x0,0xc0,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xec,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x1a,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x3a,0x0,0x0, 0x0,0x47,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x7c,0x0,0x0, 0x0,0x96,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0xb8,0x0,0x0, 0x0,0xc0,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x82,0x1,0x0, 0x0,0x9d,0x1,0x0,0x0,0xbb,0x1,0x0,0x0,0xd5,0x1,0x0,0x0,0xf0,0x1,0x0, 0x0,0x6,0x2,0x0,0x0,0x18,0x2,0x0,0x0,0xb9,0x5,0x0,0x0,0xc1,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xeb,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x31,0x0,0x0, 0x0,0x3b,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x5a,0x0,0x0, 0x0,0x7b,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0xac,0x0,0x0, 0x0,0xb9,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x71,0x1,0x0, 0x0,0x89,0x1,0x0,0x0,0x9e,0x1,0x0,0x0,0xbc,0x1,0x0,0x0,0xd9,0x1,0x0, 0x0,0xf1,0x1,0x0,0x0,0xa,0x2,0x0,0x0,0x17,0x2,0x0,0x0,0xba,0x5,0x0, 0x0,0xc2,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xea,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x2f,0xe,0x83,0x0,0x18,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x98,0x0,0x0, 0x0,0xb1,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x1b,0x1,0x0, 0x0,0x23,0x1,0x0,0x0,0x2a,0x1,0x0,0x0,0x3f,0x1,0x0,0x0,0x51,0x1,0x0, 0x0,0x5e,0x1,0x0,0x0,0xb7,0x1,0x0,0x0,0x86,0x2,0x0,0x0,0x93,0x2,0x0, 0x0,0xa0,0x2,0x0,0x0,0xae,0x2,0x0,0x0,0xb9,0x2,0x0,0x0,0xc3,0x2,0x0, 0x0,0xd8,0x2,0x0,0x0,0xe2,0x2,0x0,0x0,0xee,0x2,0x0,0x0,0xfd,0x2,0x0, 0x0,0x1b,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x3f,0x75,0x5,0x0,0x44,0x7a,0x5,0x0,0x5,0x0,0x0,0x0,0xe9,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0xd,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0xe6,0x0,0x0, 0x0,0xf4,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x52,0x1,0x0,0x0,0x5c,0x1,0x0, 0x0,0x7f,0x1,0x0,0x0,0xa0,0x1,0x0,0x0,0xbf,0x1,0x0,0x0,0xdb,0x1,0x0, 0x0,0x0,0x2,0x0,0x0,0x23,0x2,0x0,0x0,0x77,0x5,0x0,0x0,0x7e,0x5,0x0, 0x0,0x87,0x5,0x0,0x0,0x8f,0x5,0x0,0x0,0x96,0x5,0x0,0x0,0x9f,0x5,0x0, 0x0,0xa7,0x5,0x0,0x0,0xad,0x5,0x0,0x0,0xb3,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xe8,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x2,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xdf,0x0,0x0, 0x0,0xeb,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x57,0x1,0x0, 0x0,0x73,0x1,0x0,0x0,0x91,0x1,0x0,0x0,0xcd,0x1,0x0,0x0,0xf3,0x1,0x0, 0x0,0x16,0x2,0x0,0x0,0x70,0x5,0x0,0x0,0x78,0x5,0x0,0x0,0x80,0x5,0x0, 0x0,0x88,0x5,0x0,0x0,0x8c,0x5,0x0,0x0,0x95,0x5,0x0,0x0,0x9d,0x5,0x0, 0x0,0xa5,0x5,0x0,0x0,0xae,0x5,0x0,0x0,0xb7,0x5,0x0,0x0,0x44,0x0,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xe7,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x64,0x0,0x0, 0x0,0xda,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0x9,0x1,0x0, 0x0,0x17,0x1,0x0,0x0,0x5f,0x1,0x0,0x0,0x84,0x1,0x0,0x0,0xa1,0x1,0x0, 0x0,0xc9,0x1,0x0,0x0,0xe4,0x1,0x0,0x0,0x8,0x2,0x0,0x0,0x20,0x2,0x0, 0x0,0x76,0x5,0x0,0x0,0x7c,0x5,0x0,0x0,0x84,0x5,0x0,0x0,0x8e,0x5,0x0, 0x0,0x97,0x5,0x0,0x0,0x9e,0x5,0x0,0x0,0xa6,0x5,0x0,0x0,0xb5,0x5,0x0, 0x0,0xaf,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xe6,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x9c,0x0,0x0, 0x0,0xb7,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x1e,0x1,0x0, 0x0,0x26,0x1,0x0,0x0,0x2e,0x1,0x0,0x0,0x47,0x1,0x0,0x0,0x56,0x1,0x0, 0x0,0x62,0x1,0x0,0x0,0x69,0x2,0x0,0x0,0x72,0x2,0x0,0x0,0x8a,0x2,0x0, 0x0,0x96,0x2,0x0,0x0,0xa3,0x2,0x0,0x0,0xb1,0x2,0x0,0x0,0xbb,0x2,0x0, 0x0,0xc6,0x2,0x0,0x0,0xd1,0x2,0x0,0x0,0xdc,0x2,0x0,0x0,0xeb,0x2,0x0, 0x0,0xf4,0x2,0x0,0x0,0xff,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xe5,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x19,0x0,0x0, 0x0,0x25,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x41,0x0,0x0, 0x0,0x4f,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x88,0x0,0x0, 0x0,0xa0,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0xbf,0x0,0x0, 0x0,0xcf,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x85,0x1,0x0,0x0,0x98,0x1,0x0, 0x0,0xc4,0x1,0x0,0x0,0xdf,0x1,0x0,0x0,0xf7,0x1,0x0,0x0,0xb,0x2,0x0, 0x0,0x1b,0x2,0x0,0x0,0xbb,0x5,0x0,0x0,0xc3,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xe4,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xc,0x4,0x83,0x0,0x18,0x0,0x0, 0x0,0x28,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x4c,0x0,0x0, 0x0,0x56,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0xa7,0x0,0x0, 0x0,0xb0,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x76,0x1,0x0, 0x0,0xa6,0x1,0x0,0x0,0xc6,0x1,0x0,0x0,0xe2,0x1,0x0,0x0,0xf,0x2,0x0, 0x0,0x1e,0x2,0x0,0x0,0xbd,0x5,0x0,0x0,0xa,0x0,0x0,0x0,0x10,0x0,0x0, 0x0,0x1c,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x32,0x0,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5, 0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5, 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe2,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x9a,0x0,0x0, 0x0,0xb3,0x0,0x0,0x0,0xc9,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x1d,0x1,0x0, 0x0,0x25,0x1,0x0,0x0,0x2b,0x1,0x0,0x0,0x42,0x1,0x0,0x0,0x58,0x1,0x0, 0x0,0x63,0x1,0x0,0x0,0x6b,0x2,0x0,0x0,0x77,0x2,0x0,0x0,0x88,0x2,0x0, 0x0,0x98,0x2,0x0,0x0,0xa6,0x2,0x0,0x0,0xaf,0x2,0x0,0x0,0xbe,0x2,0x0, 0x0,0xc8,0x2,0x0,0x0,0xd4,0x2,0x0,0x0,0xdd,0x2,0x0,0x0,0xe7,0x2,0x0, 0x0,0xf8,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xe1,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0xd,0x1,0x0, 0x0,0x19,0x1,0x0,0x0,0x2f,0x1,0x0,0x0,0x32,0x1,0x0,0x0,0x39,0x1,0x0, 0x0,0x3c,0x1,0x0,0x0,0x43,0x1,0x0,0x0,0x48,0x1,0x0,0x0,0x4f,0x1,0x0, 0x0,0x28,0x2,0x0,0x0,0x2c,0x2,0x0,0x0,0x33,0x2,0x0,0x0,0x37,0x2,0x0, 0x0,0x3b,0x2,0x0,0x0,0x43,0x2,0x0,0x0,0x49,0x2,0x0,0x0,0x4d,0x2,0x0, 0x0,0x53,0x2,0x0,0x0,0x59,0x2,0x0,0x0,0x5d,0x2,0x0,0x0,0x61,0x2,0x0, 0x0,0x65,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xe0,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x5,0x1,0x0, 0x0,0xe,0x1,0x0,0x0,0x18,0x1,0x0,0x0,0x30,0x1,0x0,0x0,0x35,0x1,0x0, 0x0,0x3a,0x1,0x0,0x0,0x40,0x1,0x0,0x0,0x45,0x1,0x0,0x0,0x4a,0x1,0x0, 0x0,0x25,0x2,0x0,0x0,0x29,0x2,0x0,0x0,0x2f,0x2,0x0,0x0,0x35,0x2,0x0, 0x0,0x39,0x2,0x0,0x0,0x41,0x2,0x0,0x0,0x47,0x2,0x0,0x0,0x4b,0x2,0x0, 0x0,0x51,0x2,0x0,0x0,0x56,0x2,0x0,0x0,0x5b,0x2,0x0,0x0,0x5f,0x2,0x0, 0x0,0x63,0x2,0x0,0x0,0x67,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xdf,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x93,0x0,0x0, 0x0,0xa4,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0xff,0x0,0x0, 0x0,0x20,0x1,0x0,0x0,0x27,0x1,0x0,0x0,0x33,0x1,0x0,0x0,0x4c,0x1,0x0, 0x0,0x5b,0x1,0x0,0x0,0x6a,0x1,0x0,0x0,0x6c,0x2,0x0,0x0,0x7b,0x2,0x0, 0x0,0x8e,0x2,0x0,0x0,0x99,0x2,0x0,0x0,0xa7,0x2,0x0,0x0,0xb2,0x2,0x0, 0x0,0xbf,0x2,0x0,0x0,0xc5,0x2,0x0,0x0,0xd2,0x2,0x0,0x0,0xdb,0x2,0x0, 0x0,0xe9,0x2,0x0,0x0,0xf1,0x2,0x0,0x0,0xfe,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xde,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0, 0x0,0x94,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0xdb,0x0,0x0, 0x0,0xa,0x1,0x0,0x0,0x21,0x1,0x0,0x0,0x28,0x1,0x0,0x0,0x36,0x1,0x0, 0x0,0x4e,0x1,0x0,0x0,0x59,0x1,0x0,0x0,0x64,0x1,0x0,0x0,0x6d,0x2,0x0, 0x0,0x81,0x2,0x0,0x0,0x8f,0x2,0x0,0x0,0x9c,0x2,0x0,0x0,0xa9,0x2,0x0, 0x0,0xb4,0x2,0x0,0x0,0xc0,0x2,0x0,0x0,0xc9,0x2,0x0,0x0,0xd5,0x2,0x0, 0x0,0xde,0x2,0x0,0x0,0xe6,0x2,0x0,0x0,0xef,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xdd,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x65,0x1,0x0, 0x0,0x67,0x1,0x0,0x0,0x68,0x1,0x0,0x0,0x69,0x1,0x0,0x0,0x9c,0x1,0x0, 0x0,0x30,0x3,0x0,0x0,0x6a,0x3,0x0,0x0,0xbc,0x3,0x0,0x0,0x10,0x4,0x0, 0x0,0x59,0x4,0x0,0x0,0xd2,0x4,0x0,0x0,0xd3,0x4,0x0,0x0,0xd4,0x4,0x0, 0x0,0xd5,0x4,0x0,0x0,0xd6,0x4,0x0,0x0,0xd7,0x4,0x0,0x0,0xd8,0x4,0x0, 0x0,0xd9,0x4,0x0,0x0,0xda,0x4,0x0,0x0,0xdb,0x4,0x0,0x0,0xdc,0x4,0x0, 0x0,0xdd,0x4,0x0,0x0,0xde,0x4,0x0,0x0,0xdf,0x4,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xdc,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0xe0,0x4,0x0,0x0,0xe7,0x4,0x0,0x0,0xec,0x4,0x0,0x0,0xf0,0x4,0x0, 0x0,0xf8,0x4,0x0,0x0,0xfc,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x7,0x5,0x0, 0x0,0xc,0x5,0x0,0x0,0xf,0x5,0x0,0x0,0x16,0x5,0x0,0x0,0x1c,0x5,0x0, 0x0,0x21,0x5,0x0,0x0,0x26,0x5,0x0,0x0,0x2c,0x5,0x0,0x0,0x31,0x5,0x0, 0x0,0x36,0x5,0x0,0x0,0x3b,0x5,0x0,0x0,0x41,0x5,0x0,0x0,0x46,0x5,0x0, 0x0,0x4a,0x5,0x0,0x0,0x4f,0x5,0x0,0x0,0x53,0x5,0x0,0x0,0x5a,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xdb,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xad,0x9,0x83, 0x0,0x18,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0xe6,0x4,0x0,0x0,0xeb,0x4,0x0, 0x0,0xf2,0x4,0x0,0x0,0xf7,0x4,0x0,0x0,0xfd,0x4,0x0,0x0,0x2,0x5,0x0, 0x0,0x6,0x5,0x0,0x0,0xd,0x5,0x0,0x0,0x10,0x5,0x0,0x0,0x14,0x5,0x0, 0x0,0x19,0x5,0x0,0x0,0x1e,0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x29,0x5,0x0, 0x0,0x2e,0x5,0x0,0x0,0x33,0x5,0x0,0x0,0x3a,0x5,0x0,0x0,0x3e,0x5,0x0, 0x0,0x44,0x5,0x0,0x0,0x4b,0x5,0x0,0x0,0x55,0x5,0x0,0x0,0x5b,0x5,0x0, 0x0,0xc9,0x3,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x3f,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xda,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0xe9,0x4,0x0, 0x0,0xed,0x4,0x0,0x0,0xf3,0x4,0x0,0x0,0xf6,0x4,0x0,0x0,0xfb,0x4,0x0, 0x0,0x1,0x5,0x0,0x0,0x5,0x5,0x0,0x0,0xb,0x5,0x0,0x0,0x11,0x5,0x0, 0x0,0x15,0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1f,0x5,0x0,0x0,0x23,0x5,0x0, 0x0,0x2a,0x5,0x0,0x0,0x30,0x5,0x0,0x0,0x35,0x5,0x0,0x0,0x3c,0x5,0x0, 0x0,0x40,0x5,0x0,0x0,0x45,0x5,0x0,0x0,0x49,0x5,0x0,0x0,0x4e,0x5,0x0, 0x0,0x54,0x5,0x0,0x0,0x59,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xd9,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xe4,0x4,0x0, 0x0,0xe5,0x4,0x0,0x0,0xea,0x4,0x0,0x0,0xef,0x4,0x0,0x0,0xf4,0x4,0x0, 0x0,0xf9,0x4,0x0,0x0,0xfe,0x4,0x0,0x0,0x4,0x5,0x0,0x0,0x9,0x5,0x0, 0x0,0xe,0x5,0x0,0x0,0x13,0x5,0x0,0x0,0x18,0x5,0x0,0x0,0x1d,0x5,0x0, 0x0,0x22,0x5,0x0,0x0,0x28,0x5,0x0,0x0,0x2d,0x5,0x0,0x0,0x32,0x5,0x0, 0x0,0x37,0x5,0x0,0x0,0x3d,0x5,0x0,0x0,0x42,0x5,0x0,0x0,0x47,0x5,0x0, 0x0,0x4c,0x5,0x0,0x0,0x51,0x5,0x0,0x0,0x56,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xd8,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0xe3,0x4,0x0,0x0,0xe8,0x4,0x0,0x0,0xee,0x4,0x0,0x0,0xf1,0x4,0x0, 0x0,0xf5,0x4,0x0,0x0,0xfa,0x4,0x0,0x0,0xff,0x4,0x0,0x0,0x8,0x5,0x0, 0x0,0xa,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x17,0x5,0x0,0x0,0x1b,0x5,0x0, 0x0,0x20,0x5,0x0,0x0,0x25,0x5,0x0,0x0,0x2b,0x5,0x0,0x0,0x2f,0x5,0x0, 0x0,0x34,0x5,0x0,0x0,0x39,0x5,0x0,0x0,0x3f,0x5,0x0,0x0,0x43,0x5,0x0, 0x0,0x48,0x5,0x0,0x0,0x4d,0x5,0x0,0x0,0x52,0x5,0x0,0x0,0x58,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xd7,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x5d,0x5,0x0,0x0,0x57,0x5,0x0,0x0,0x5c,0x5,0x0, 0x0,0x38,0x5,0x0,0x0,0x5f,0x5,0x0,0x0,0x5e,0x5,0x0,0x0,0x60,0x5,0x0, 0x0,0x3,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x27,0x5,0x0,0x0,0x62,0x5,0x0, 0x0,0x63,0x5,0x0,0x0,0x64,0x5,0x0,0x0,0x65,0x5,0x0,0x0,0x66,0x5,0x0, 0x0,0x67,0x5,0x0,0x0,0x68,0x5,0x0,0x0,0x69,0x5,0x0,0x0,0x6a,0x5,0x0, 0x0,0x6b,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x6e,0x5,0x0, 0x0,0x6f,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xd6,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0xcd,0x46,0x95,0x3,0x7,0x0,0x0,0x0,0xdd,0xff,0xff,0xff,0xdc,0xff,0xff, 0xff,0xdb,0xff,0xff,0xff,0xda,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xd8,0xff,0xff, 0xff,0xd7,0xff,0xff,0xff,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0xad,0x9,0x83, 0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x5,0x0,0x0,0x0,0xd5,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x11,0x0,0x0, 0x0,0xd4,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x13,0x1,0x0,0x0,0x55,0x1,0x0,0x0,0x70,0x1,0x0,0x0,0x8f,0x1,0x0, 0x0,0xb6,0x1,0x0,0x0,0xcc,0x1,0x0,0x0,0xf5,0x1,0x0,0x0,0x13,0x2,0x0, 0x0,0x20,0x4,0x0,0x0,0x72,0x5,0x0,0x0,0x7a,0x5,0x0,0x0,0x83,0x5,0x0, 0x0,0x8b,0x5,0x0,0x0,0x92,0x5,0x0,0x0,0x9a,0x5,0x0,0x0,0xa2,0x5,0x0, 0x0,0xaa,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xd4,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xb,0x0,0x0, 0x0,0x16,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0xf1,0x0,0x0, 0x0,0x3,0x1,0x0,0x0,0x16,0x1,0x0,0x0,0x66,0x1,0x0,0x0,0x8a,0x1,0x0, 0x0,0xaa,0x1,0x0,0x0,0xca,0x1,0x0,0x0,0xe9,0x1,0x0,0x0,0x10,0x2,0x0, 0x0,0x24,0x2,0x0,0x0,0x74,0x5,0x0,0x0,0x7f,0x5,0x0,0x0,0x86,0x5,0x0, 0x0,0x90,0x5,0x0,0x0,0x98,0x5,0x0,0x0,0xa0,0x5,0x0,0x0,0xa8,0x5,0x0, 0x0,0xb0,0x5,0x0,0x0,0xb6,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xd3,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x8,0x0,0x0, 0x0,0xc,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0xe3,0x0,0x0, 0x0,0xee,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x14,0x1,0x0,0x0,0x5a,0x1,0x0, 0x0,0x77,0x1,0x0,0x0,0x97,0x1,0x0,0x0,0xbd,0x1,0x0,0x0,0xd6,0x1,0x0, 0x0,0xf8,0x1,0x0,0x0,0x19,0x2,0x0,0x0,0x71,0x5,0x0,0x0,0x79,0x5,0x0, 0x0,0x81,0x5,0x0,0x0,0x89,0x5,0x0,0x0,0x91,0x5,0x0,0x0,0x99,0x5,0x0, 0x0,0xa1,0x5,0x0,0x0,0xa9,0x5,0x0,0x0,0xb1,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xd2,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x5,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0xe0,0x0,0x0, 0x0,0xea,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x54,0x1,0x0, 0x0,0x6b,0x1,0x0,0x0,0x86,0x1,0x0,0x0,0xa9,0x1,0x0,0x0,0xc0,0x1,0x0, 0x0,0xd8,0x1,0x0,0x0,0xfb,0x1,0x0,0x0,0x1f,0x2,0x0,0x0,0x73,0x5,0x0, 0x0,0x7b,0x5,0x0,0x0,0x82,0x5,0x0,0x0,0x8a,0x5,0x0,0x0,0x93,0x5,0x0, 0x0,0x9b,0x5,0x0,0x0,0xab,0x5,0x0,0x0,0xb2,0x5,0x0,0x0,0x60,0x0,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xd1,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x17,0x0,0x0, 0x0,0xdc,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x6,0x1,0x0, 0x0,0x52,0x1,0x0,0x0,0x5c,0x1,0x0,0x0,0x7f,0x1,0x0,0x0,0xa0,0x1,0x0, 0x0,0xbf,0x1,0x0,0x0,0xdb,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x23,0x2,0x0, 0x0,0x77,0x5,0x0,0x0,0x7e,0x5,0x0,0x0,0x87,0x5,0x0,0x0,0x8f,0x5,0x0, 0x0,0x96,0x5,0x0,0x0,0x9f,0x5,0x0,0x0,0xa7,0x5,0x0,0x0,0xad,0x5,0x0, 0x0,0xb3,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xd0,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x14,0x0,0x0, 0x0,0xd5,0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0xf9,0x0,0x0, 0x0,0x12,0x1,0x0,0x0,0x57,0x1,0x0,0x0,0x73,0x1,0x0,0x0,0x91,0x1,0x0, 0x0,0xcd,0x1,0x0,0x0,0xf3,0x1,0x0,0x0,0x16,0x2,0x0,0x0,0x70,0x5,0x0, 0x0,0x78,0x5,0x0,0x0,0x80,0x5,0x0,0x0,0x88,0x5,0x0,0x0,0x8c,0x5,0x0, 0x0,0x95,0x5,0x0,0x0,0x9d,0x5,0x0,0x0,0xa5,0x5,0x0,0x0,0xae,0x5,0x0, 0x0,0xb7,0x5,0x0,0x0,0x44,0x0,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xcf,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x12,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0xda,0x0,0x0,0x0,0xe7,0x0,0x0, 0x0,0xf5,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x17,0x1,0x0,0x0,0x5f,0x1,0x0, 0x0,0x84,0x1,0x0,0x0,0xa1,0x1,0x0,0x0,0xc9,0x1,0x0,0x0,0xe4,0x1,0x0, 0x0,0x8,0x2,0x0,0x0,0x20,0x2,0x0,0x0,0x76,0x5,0x0,0x0,0x7c,0x5,0x0, 0x0,0x84,0x5,0x0,0x0,0x8e,0x5,0x0,0x0,0x97,0x5,0x0,0x0,0x9e,0x5,0x0, 0x0,0xa6,0x5,0x0,0x0,0xb5,0x5,0x0,0x0,0xaf,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xce,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x50,0x47,0x95,0x3,0x7,0x0,0x0, 0x0,0xd5,0xff,0xff,0xff,0xd4,0xff,0xff,0xff,0xd3,0xff,0xff,0xff,0xd2,0xff,0xff, 0xff,0xd1,0xff,0xff,0xff,0xd0,0xff,0xff,0xff,0xcf,0xff,0xff,0xff,0x30,0xa,0x83, 0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x5,0x0,0x0,0x0,0xcd,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x20,0x0,0x0, 0x0,0x24,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x43,0x0,0x0, 0x0,0x4a,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x80,0x0,0x0, 0x0,0x97,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0xba,0x0,0x0, 0x0,0xcb,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0x8b,0x1,0x0, 0x0,0xa3,0x1,0x0,0x0,0xc5,0x1,0x0,0x0,0xe0,0x1,0x0,0x0,0xfc,0x1,0x0, 0x0,0xe,0x2,0x0,0x0,0x1d,0x2,0x0,0x0,0xbc,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xcc,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x1d,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x33,0x0,0x0, 0x0,0x42,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x5f,0x0,0x0, 0x0,0x82,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0xb2,0x0,0x0, 0x0,0xbc,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x7a,0x1,0x0, 0x0,0x92,0x1,0x0,0x0,0xae,0x1,0x0,0x0,0xd1,0x1,0x0,0x0,0xe7,0x1,0x0, 0x0,0x2,0x2,0x0,0x0,0x12,0x2,0x0,0x0,0x21,0x2,0x0,0x0,0xbe,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xcb,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x2e,0x0,0x0, 0x0,0x39,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x54,0x0,0x0, 0x0,0x78,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0xa9,0x0,0x0, 0x0,0xb5,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0xf3,0x0,0x0, 0x0,0x81,0x1,0x0,0x0,0x95,0x1,0x0,0x0,0xb2,0x1,0x0,0x0,0xd2,0x1,0x0, 0x0,0xeb,0x1,0x0,0x0,0x3,0x2,0x0,0x0,0x14,0x2,0x0,0x0,0x3c,0x2,0x0, 0x0,0xc0,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xca,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x26,0x0,0x0, 0x0,0x2f,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x51,0x0,0x0, 0x0,0x5b,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0xa3,0x0,0x0, 0x0,0xae,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0xce,0x0,0x0, 0x0,0xf6,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0x9d,0x1,0x0,0x0,0xbb,0x1,0x0, 0x0,0xd5,0x1,0x0,0x0,0xf0,0x1,0x0,0x0,0x6,0x2,0x0,0x0,0x18,0x2,0x0, 0x0,0xb9,0x5,0x0,0x0,0xc1,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xc9,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x1f,0x0,0x0, 0x0,0x21,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x48,0x0,0x0, 0x0,0x50,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x8b,0x0,0x0, 0x0,0xa2,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0xc1,0x0,0x0, 0x0,0xd0,0x0,0x0,0x0,0x71,0x1,0x0,0x0,0x89,0x1,0x0,0x0,0x9e,0x1,0x0, 0x0,0xbc,0x1,0x0,0x0,0xd9,0x1,0x0,0x0,0xf1,0x1,0x0,0x0,0xa,0x2,0x0, 0x0,0x17,0x2,0x0,0x0,0xba,0x5,0x0,0x0,0xc2,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xc8,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x19,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x37,0x0,0x0, 0x0,0x41,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x7a,0x0,0x0, 0x0,0x88,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0xb6,0x0,0x0, 0x0,0xbf,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x85,0x1,0x0, 0x0,0x98,0x1,0x0,0x0,0xc4,0x1,0x0,0x0,0xdf,0x1,0x0,0x0,0xf7,0x1,0x0, 0x0,0xb,0x2,0x0,0x0,0x1b,0x2,0x0,0x0,0xbb,0x5,0x0,0x0,0xc3,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xc7,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xc,0x4,0x83, 0x0,0x18,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x38,0x0,0x0, 0x0,0x4c,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x9b,0x0,0x0, 0x0,0xa7,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0xd2,0x0,0x0, 0x0,0x76,0x1,0x0,0x0,0xa6,0x1,0x0,0x0,0xc6,0x1,0x0,0x0,0xe2,0x1,0x0, 0x0,0xf,0x2,0x0,0x0,0x1e,0x2,0x0,0x0,0xbd,0x5,0x0,0x0,0xa,0x0,0x0, 0x0,0x10,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x2b,0x0,0x0, 0x0,0x32,0x0,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xbc,0x74,0x5, 0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5, 0x0,0xbc,0x74,0x5,0x0,0x5,0x0,0x0,0x0,0xc6,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0x2c,0x41,0x95,0x3,0x7,0x0,0x0,0x0,0xcd,0xff,0xff,0xff,0xcc,0xff,0xff, 0xff,0xcb,0xff,0xff,0xff,0xca,0xff,0xff,0xff,0xc9,0xff,0xff,0xff,0xc8,0xff,0xff, 0xff,0xc7,0xff,0xff,0xff,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0xc,0x4,0x83, 0x0,0x5,0x0,0x0,0x0,0xc5,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0xc,0x1,0x0, 0x0,0x10,0x1,0x0,0x0,0x2c,0x1,0x0,0x0,0x34,0x1,0x0,0x0,0x38,0x1,0x0, 0x0,0x3d,0x1,0x0,0x0,0x44,0x1,0x0,0x0,0x49,0x1,0x0,0x0,0x26,0x2,0x0, 0x0,0x2a,0x2,0x0,0x0,0x2e,0x2,0x0,0x0,0x34,0x2,0x0,0x0,0x38,0x2,0x0, 0x0,0x3f,0x2,0x0,0x0,0x44,0x2,0x0,0x0,0x4a,0x2,0x0,0x0,0x4e,0x2,0x0, 0x0,0x55,0x2,0x0,0x0,0x5a,0x2,0x0,0x0,0x5e,0x2,0x0,0x0,0x62,0x2,0x0, 0x0,0x66,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xc4,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x4,0x1,0x0, 0x0,0xb,0x1,0x0,0x0,0xf,0x1,0x0,0x0,0x1a,0x1,0x0,0x0,0x31,0x1,0x0, 0x0,0x37,0x1,0x0,0x0,0x3b,0x1,0x0,0x0,0x41,0x1,0x0,0x0,0x46,0x1,0x0, 0x0,0x4d,0x1,0x0,0x0,0x27,0x2,0x0,0x0,0x2b,0x2,0x0,0x0,0x30,0x2,0x0, 0x0,0x36,0x2,0x0,0x0,0x3a,0x2,0x0,0x0,0x42,0x2,0x0,0x0,0x48,0x2,0x0, 0x0,0x4c,0x2,0x0,0x0,0x52,0x2,0x0,0x0,0x57,0x2,0x0,0x0,0x5c,0x2,0x0, 0x0,0x60,0x2,0x0,0x0,0x64,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xc3,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xfd,0x0,0x0, 0x0,0x7,0x1,0x0,0x0,0xd,0x1,0x0,0x0,0x19,0x1,0x0,0x0,0x2f,0x1,0x0, 0x0,0x32,0x1,0x0,0x0,0x39,0x1,0x0,0x0,0x3c,0x1,0x0,0x0,0x43,0x1,0x0, 0x0,0x48,0x1,0x0,0x0,0x4f,0x1,0x0,0x0,0x28,0x2,0x0,0x0,0x2c,0x2,0x0, 0x0,0x33,0x2,0x0,0x0,0x37,0x2,0x0,0x0,0x3b,0x2,0x0,0x0,0x43,0x2,0x0, 0x0,0x49,0x2,0x0,0x0,0x4d,0x2,0x0,0x0,0x53,0x2,0x0,0x0,0x59,0x2,0x0, 0x0,0x5d,0x2,0x0,0x0,0x61,0x2,0x0,0x0,0x65,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xc2,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0xfe,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0xe,0x1,0x0,0x0,0x18,0x1,0x0, 0x0,0x30,0x1,0x0,0x0,0x35,0x1,0x0,0x0,0x3a,0x1,0x0,0x0,0x40,0x1,0x0, 0x0,0x45,0x1,0x0,0x0,0x4a,0x1,0x0,0x0,0x25,0x2,0x0,0x0,0x29,0x2,0x0, 0x0,0x2f,0x2,0x0,0x0,0x35,0x2,0x0,0x0,0x39,0x2,0x0,0x0,0x41,0x2,0x0, 0x0,0x47,0x2,0x0,0x0,0x4b,0x2,0x0,0x0,0x51,0x2,0x0,0x0,0x56,0x2,0x0, 0x0,0x5b,0x2,0x0,0x0,0x5f,0x2,0x0,0x0,0x63,0x2,0x0,0x0,0x67,0x2,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xc1,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x0,0x0, 0x0,0x13,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x34,0x0,0x0, 0x0,0x35,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x40,0x0,0x0, 0x0,0x45,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x59,0x0,0x0, 0x0,0x61,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x65,0x0,0x0, 0x0,0x66,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x69,0x0,0x0, 0x0,0x6a,0x0,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xc0,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x6b,0x0,0x0,0x0,0x6c,0x0,0x0, 0x0,0x6d,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x70,0x0,0x0, 0x0,0x71,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x74,0x0,0x0, 0x0,0x75,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x79,0x0,0x0, 0x0,0x7e,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x85,0x0,0x0, 0x0,0x86,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x8a,0x0,0x0, 0x0,0x8c,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xbf,0xff,0xff, 0xff,0x4,0x0,0x5,0x0,0x79,0xcc,0x8c,0x4,0x2,0x0,0x0,0x0,0xb9,0xff,0xff, 0xff,0xb4,0xff,0xff,0xff,0x11,0x66,0x46,0x2,0x68,0x66,0x46,0x2,0x5,0x0,0x0, 0x0,0xbe,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x20,0x3d,0x12,0x3,0x6,0x0,0x0, 0x0,0xc5,0xff,0xff,0xff,0xc4,0xff,0xff,0xff,0xc3,0xff,0xff,0xff,0xc2,0xff,0xff, 0xff,0xc1,0xff,0xff,0xff,0xc0,0xff,0xff,0xff,0x30,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x5,0x0,0x0,0x0,0xbd,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0xad,0x0,0x0, 0x0,0xc6,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0x22,0x1,0x0, 0x0,0x29,0x1,0x0,0x0,0x3e,0x1,0x0,0x0,0x50,0x1,0x0,0x0,0x5d,0x1,0x0, 0x0,0x6c,0x1,0x0,0x0,0x70,0x2,0x0,0x0,0x85,0x2,0x0,0x0,0x90,0x2,0x0, 0x0,0x9d,0x2,0x0,0x0,0xaa,0x2,0x0,0x0,0xb6,0x2,0x0,0x0,0xc1,0x2,0x0, 0x0,0xcc,0x2,0x0,0x0,0xd7,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,0xed,0x2,0x0, 0x0,0xfa,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xbc,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x67,0x1,0x0, 0x0,0x68,0x1,0x0,0x0,0x69,0x1,0x0,0x0,0x9c,0x1,0x0,0x0,0x30,0x3,0x0, 0x0,0x6a,0x3,0x0,0x0,0xbc,0x3,0x0,0x0,0x10,0x4,0x0,0x0,0x59,0x4,0x0, 0x0,0xd2,0x4,0x0,0x0,0xd3,0x4,0x0,0x0,0xd4,0x4,0x0,0x0,0xd5,0x4,0x0, 0x0,0xd6,0x4,0x0,0x0,0xd7,0x4,0x0,0x0,0xd8,0x4,0x0,0x0,0xd9,0x4,0x0, 0x0,0xda,0x4,0x0,0x0,0xdb,0x4,0x0,0x0,0xdc,0x4,0x0,0x0,0xdd,0x4,0x0, 0x0,0xde,0x4,0x0,0x0,0xdf,0x4,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xbb,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x87,0x1,0x0, 0x0,0x6e,0x1,0x0,0x0,0x88,0x1,0x0,0x0,0x94,0x1,0x0,0x0,0x6f,0x1,0x0, 0x0,0x9a,0x1,0x0,0x0,0x99,0x1,0x0,0x0,0x72,0x1,0x0,0x0,0x6d,0x1,0x0, 0x0,0x96,0x1,0x0,0x0,0x78,0x1,0x0,0x0,0x83,0x1,0x0,0x0,0x8e,0x1,0x0, 0x0,0x80,0x1,0x0,0x0,0x7c,0x1,0x0,0x0,0x79,0x1,0x0,0x0,0x8c,0x1,0x0, 0x0,0x74,0x1,0x0,0x0,0x8d,0x1,0x0,0x0,0x7e,0x1,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0xba,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0xdd,0x32,0x23,0x1,0x4,0x0,0x0, 0x0,0xbb,0xff,0xff,0xff,0xb7,0xff,0xff,0xff,0xad,0xff,0xff,0xff,0xaa,0xff,0xff, 0xff,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0x76,0xcc,0x48,0x0,0xcd,0xcc,0x48, 0x0,0x5,0x0,0x0,0x0,0xb9,0xff,0xff,0xff,0x3,0x0,0x5,0x0,0x11,0x66,0x46, 0x2,0x2,0x0,0x0,0x0,0xba,0xff,0xff,0xff,0xb0,0xff,0xff,0xff,0xdd,0x32,0x23, 0x1,0x34,0x33,0x23,0x1,0x5,0x0,0x0,0x0,0xb8,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0x1b,0x47,0x95,0x3,0x7,0x0,0x0,0x0,0xbc,0xff,0xff,0xff,0xa3,0xff,0xff, 0xff,0xa2,0xff,0xff,0xff,0xa1,0xff,0xff,0xff,0xa0,0xff,0xff,0xff,0x9f,0xff,0xff, 0xff,0x9e,0xff,0xff,0xff,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0xad,0x9,0x83, 0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83, 0x0,0x5,0x0,0x0,0x0,0xb7,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0xba,0x1,0x0,0x0,0xb0,0x1,0x0, 0x0,0x9f,0x1,0x0,0x0,0xa5,0x1,0x0,0x0,0xad,0x1,0x0,0x0,0xb3,0x1,0x0, 0x0,0xb9,0x1,0x0,0x0,0xab,0x1,0x0,0x0,0xb8,0x1,0x0,0x0,0xfa,0x0,0x0, 0x0,0xa4,0x1,0x0,0x0,0xaf,0x1,0x0,0x0,0xa8,0x1,0x0,0x0,0xb5,0x1,0x0, 0x0,0xb4,0x1,0x0,0x0,0xa7,0x1,0x0,0x0,0xa2,0x1,0x0,0x0,0xc1,0x1,0x0, 0x0,0xb1,0x1,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xb6,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x89,0x2,0x0,0x0,0x79,0x2,0x0, 0x0,0x7,0x2,0x0,0x0,0x97,0x2,0x0,0x0,0xa5,0x2,0x0,0x0,0x5d,0x3,0x0, 0x0,0x6f,0x2,0x0,0x0,0x64,0x3,0x0,0x0,0x4f,0x3,0x0,0x0,0x11,0x2,0x0, 0x0,0x46,0x2,0x0,0x0,0xb5,0x2,0x0,0x0,0x32,0x2,0x0,0x0,0xca,0x2,0x0, 0x0,0x33,0x3,0x0,0x0,0xda,0x2,0x0,0x0,0x61,0x3,0x0,0x0,0x80,0x2,0x0, 0x0,0xe5,0x2,0x0,0x0,0xf5,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xb5,0xff,0xff, 0xff,0x2,0x0,0x5,0x0,0x34,0x33,0x23,0x1,0x4,0x0,0x0,0x0,0xb6,0xff,0xff, 0xff,0xac,0xff,0xff,0xff,0xab,0xff,0xff,0xff,0xa7,0xff,0xff,0xff,0xcd,0xcc,0x48, 0x0,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0x5,0x0,0x0, 0x0,0xb4,0xff,0xff,0xff,0x3,0x0,0x5,0x0,0x68,0x66,0x46,0x2,0x2,0x0,0x0, 0x0,0xb5,0xff,0xff,0xff,0xb2,0xff,0xff,0xff,0x34,0x33,0x23,0x1,0x34,0x33,0x23, 0x1,0x5,0x0,0x0,0x0,0xb3,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x1c,0x2,0x0,0x0,0xcd,0x2,0x0, 0x0,0x58,0x2,0x0,0x0,0x94,0x2,0x0,0x0,0x62,0x3,0x0,0x0,0xe1,0x2,0x0, 0x0,0x84,0x2,0x0,0x0,0x40,0x2,0x0,0x0,0x7d,0x2,0x0,0x0,0xbd,0x2,0x0, 0x0,0x5e,0x3,0x0,0x0,0xf0,0x2,0x0,0x0,0x75,0x3,0x0,0x0,0x9f,0x2,0x0, 0x0,0xad,0x2,0x0,0x0,0xfb,0x2,0x0,0x0,0x51,0x3,0x0,0x0,0x75,0x2,0x0, 0x0,0x6d,0x3,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xb2,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0x34,0x33,0x23,0x1,0x4,0x0,0x0,0x0,0xb3,0xff,0xff,0xff,0xaf,0xff,0xff, 0xff,0xae,0xff,0xff,0xff,0xa9,0xff,0xff,0xff,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48, 0x0,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0x5,0x0,0x0,0x0,0xb1,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x30,0x4,0x0, 0x0,0xc9,0x4,0x0,0x0,0xe9,0x3,0x0,0x0,0xa8,0x4,0x0,0x0,0x9,0x4,0x0, 0x0,0x12,0x4,0x0,0x0,0xf6,0x3,0x0,0x0,0xd,0x4,0x0,0x0,0x95,0x4,0x0, 0x0,0xfc,0x3,0x0,0x0,0x66,0x4,0x0,0x0,0xcd,0x4,0x0,0x0,0x7b,0x4,0x0, 0x0,0xbb,0x4,0x0,0x0,0xcf,0x4,0x0,0x0,0xbe,0x4,0x0,0x0,0xcb,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x18,0x4,0x0,0x0,0x4a,0x4,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0xb0,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x34,0x33,0x23,0x1,0x4,0x0,0x0, 0x0,0xb1,0xff,0xff,0xff,0xa8,0xff,0xff,0xff,0xa6,0xff,0xff,0xff,0xa5,0xff,0xff, 0xff,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48, 0x0,0x5,0x0,0x0,0x0,0xaf,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0x8,0x4,0x0,0x0,0x4c,0x4,0x0,0x0,0x2,0x4,0x0, 0x0,0xb3,0x3,0x0,0x0,0xe,0x4,0x0,0x0,0xa9,0x3,0x0,0x0,0x3e,0x4,0x0, 0x0,0x8c,0x3,0x0,0x0,0xfa,0x3,0x0,0x0,0xef,0x3,0x0,0x0,0x19,0x4,0x0, 0x0,0xcd,0x3,0x0,0x0,0x13,0x4,0x0,0x0,0xa0,0x3,0x0,0x0,0xdf,0x3,0x0, 0x0,0x6d,0x4,0x0,0x0,0x8a,0x3,0x0,0x0,0xd4,0x3,0x0,0x0,0xd9,0x3,0x0, 0x0,0x91,0x3,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xae,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xa,0x4,0x0,0x0,0xc0,0x4,0x0, 0x0,0xe2,0x3,0x0,0x0,0xf,0x4,0x0,0x0,0xcc,0x4,0x0,0x0,0x82,0x4,0x0, 0x0,0xce,0x4,0x0,0x0,0xf2,0x3,0x0,0x0,0xde,0x3,0x0,0x0,0x15,0x4,0x0, 0x0,0x22,0x4,0x0,0x0,0xca,0x4,0x0,0x0,0xfb,0x3,0x0,0x0,0xb4,0x4,0x0, 0x0,0x68,0x4,0x0,0x0,0x3,0x4,0x0,0x0,0x53,0x4,0x0,0x0,0xae,0x4,0x0, 0x0,0x97,0x4,0x0,0x0,0x41,0x4,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xad,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x76,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x6b,0x3,0x0, 0x0,0x6,0x4,0x0,0x0,0x85,0x3,0x0,0x0,0xd2,0x3,0x0,0x0,0xdd,0x3,0x0, 0x0,0xe5,0x3,0x0,0x0,0x7b,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0xd8,0x3,0x0, 0x0,0x7d,0x3,0x0,0x0,0x74,0x3,0x0,0x0,0x8d,0x3,0x0,0x0,0x88,0x3,0x0, 0x0,0x82,0x3,0x0,0x0,0xaf,0x3,0x0,0x0,0xfe,0x3,0x0,0x0,0x9d,0x3,0x0, 0x0,0xf8,0x3,0x0,0x0,0x7f,0x3,0x0,0x0,0xc8,0x3,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x81,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0xac,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0xff,0x3,0x0,0x0,0x44,0x4,0x0,0x0,0x90,0x3,0x0,0x0,0xd1,0x3,0x0, 0x0,0xdb,0x3,0x0,0x0,0xb6,0x3,0x0,0x0,0xd5,0x3,0x0,0x0,0x11,0x4,0x0, 0x0,0xf7,0x3,0x0,0x0,0x75,0x4,0x0,0x0,0x9f,0x3,0x0,0x0,0x2f,0x4,0x0, 0x0,0xe1,0x3,0x0,0x0,0x17,0x4,0x0,0x0,0x62,0x4,0x0,0x0,0x9c,0x4,0x0, 0x0,0xc,0x4,0x0,0x0,0xa5,0x3,0x0,0x0,0xb2,0x3,0x0,0x0,0x5,0x4,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0xab,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0x9,0x2,0x0,0x0,0x76,0x2,0x0,0x0,0xf4,0x1,0x0, 0x0,0xd3,0x1,0x0,0x0,0xfa,0x1,0x0,0x0,0x45,0x2,0x0,0x0,0x95,0x2,0x0, 0x0,0xda,0x1,0x0,0x0,0x68,0x2,0x0,0x0,0xed,0x1,0x0,0x0,0x7f,0x2,0x0, 0x0,0xb8,0x2,0x0,0x0,0xcb,0x2,0x0,0x0,0xcf,0x1,0x0,0x0,0x87,0x2,0x0, 0x0,0xdf,0x2,0x0,0x0,0x2d,0x2,0x0,0x0,0xa4,0x2,0x0,0x0,0xe3,0x1,0x0, 0x0,0xf3,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xaa,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0xc2,0x1,0x0, 0x0,0x5,0x2,0x0,0x0,0xc7,0x2,0x0,0x0,0x9e,0x2,0x0,0x0,0xef,0x1,0x0, 0x0,0x1a,0x2,0x0,0x0,0x3e,0x2,0x0,0x0,0x54,0x2,0x0,0x0,0xcb,0x1,0x0, 0x0,0x7e,0x2,0x0,0x0,0x74,0x2,0x0,0x0,0xe6,0x1,0x0,0x0,0xd0,0x1,0x0, 0x0,0xd4,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0xf9,0x1,0x0,0x0,0xde,0x1,0x0, 0x0,0xc3,0x1,0x0,0x0,0xb0,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xa9,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xbd,0x3,0x0, 0x0,0xfd,0x3,0x0,0x0,0xa7,0x4,0x0,0x0,0xb1,0x4,0x0,0x0,0x16,0x4,0x0, 0x0,0xb1,0x3,0x0,0x0,0xa6,0x3,0x0,0x0,0x2b,0x4,0x0,0x0,0xb,0x4,0x0, 0x0,0x86,0x4,0x0,0x0,0x43,0x4,0x0,0x0,0x76,0x4,0x0,0x0,0xce,0x3,0x0, 0x0,0xda,0x3,0x0,0x0,0x57,0x4,0x0,0x0,0x12,0x3,0x0,0x0,0xd6,0x3,0x0, 0x0,0xe0,0x3,0x0,0x0,0xf0,0x3,0x0,0x0,0x4,0x4,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0xa8,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0x7,0x4,0x0,0x0,0x6f,0x3,0x0,0x0,0x93,0x3,0x0,0x0,0xa2,0x3,0x0, 0x0,0x89,0x3,0x0,0x0,0xd7,0x3,0x0,0x0,0x8e,0x3,0x0,0x0,0xd3,0x3,0x0, 0x0,0xdc,0x3,0x0,0x0,0x86,0x3,0x0,0x0,0x7c,0x3,0x0,0x0,0x81,0x3,0x0, 0x0,0x7a,0x3,0x0,0x0,0x84,0x3,0x0,0x0,0xe7,0x3,0x0,0x0,0xab,0x3,0x0, 0x0,0x65,0x3,0x0,0x0,0xc7,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0xf9,0x3,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0xa7,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0xec,0x2,0x0,0x0,0xe3,0x2,0x0,0x0,0x6e,0x3,0x0, 0x0,0x76,0x3,0x0,0x0,0x8f,0x3,0x0,0x0,0x5a,0x3,0x0,0x0,0x87,0x3,0x0, 0x0,0x80,0x3,0x0,0x0,0xf7,0x2,0x0,0x0,0x83,0x3,0x0,0x0,0xfc,0x2,0x0, 0x0,0xd0,0x2,0x0,0x0,0x63,0x3,0x0,0x0,0xa2,0x2,0x0,0x0,0x4d,0x3,0x0, 0x0,0xb3,0x2,0x0,0x0,0x60,0x3,0x0,0x0,0x7e,0x3,0x0,0x0,0x8b,0x3,0x0, 0x0,0xc2,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xa6,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xc,0x2,0x0, 0x0,0x8b,0x2,0x0,0x0,0x6e,0x2,0x0,0x0,0xe1,0x1,0x0,0x0,0xf6,0x1,0x0, 0x0,0xe4,0x2,0x0,0x0,0xd7,0x1,0x0,0x0,0x82,0x2,0x0,0x0,0xd3,0x2,0x0, 0x0,0x78,0x2,0x0,0x0,0x34,0x3,0x0,0x0,0x9a,0x2,0x0,0x0,0x31,0x2,0x0, 0x0,0xb7,0x2,0x0,0x0,0xee,0x1,0x0,0x0,0xff,0x1,0x0,0x0,0xf2,0x2,0x0, 0x0,0xa8,0x2,0x0,0x0,0xea,0x1,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xa5,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x83,0x2,0x0, 0x0,0x50,0x2,0x0,0x0,0x71,0x2,0x0,0x0,0xac,0x2,0x0,0x0,0xd,0x2,0x0, 0x0,0x9b,0x2,0x0,0x0,0xe5,0x1,0x0,0x0,0xe8,0x2,0x0,0x0,0x3d,0x2,0x0, 0x0,0xf2,0x1,0x0,0x0,0xec,0x1,0x0,0x0,0x53,0x3,0x0,0x0,0x1,0x2,0x0, 0x0,0xd6,0x2,0x0,0x0,0x4b,0x3,0x0,0x0,0xdd,0x1,0x0,0x0,0x7c,0x2,0x0, 0x0,0xbc,0x2,0x0,0x0,0xf9,0x2,0x0,0x0,0x8d,0x2,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x0,0x0,0x0, 0x0,0x5,0x0,0x0,0x0,0xa3,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0xe0,0x4,0x0,0x0,0xe7,0x4,0x0,0x0,0xec,0x4,0x0, 0x0,0xf0,0x4,0x0,0x0,0xf8,0x4,0x0,0x0,0xfc,0x4,0x0,0x0,0x0,0x5,0x0, 0x0,0x7,0x5,0x0,0x0,0xc,0x5,0x0,0x0,0xf,0x5,0x0,0x0,0x16,0x5,0x0, 0x0,0x1c,0x5,0x0,0x0,0x21,0x5,0x0,0x0,0x26,0x5,0x0,0x0,0x2c,0x5,0x0, 0x0,0x31,0x5,0x0,0x0,0x36,0x5,0x0,0x0,0x3b,0x5,0x0,0x0,0x41,0x5,0x0, 0x0,0x46,0x5,0x0,0x0,0x4a,0x5,0x0,0x0,0x4f,0x5,0x0,0x0,0x53,0x5,0x0, 0x0,0x5a,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xa2,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xad,0x9,0x83,0x0,0x18,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0xe6,0x4,0x0, 0x0,0xeb,0x4,0x0,0x0,0xf2,0x4,0x0,0x0,0xf7,0x4,0x0,0x0,0xfd,0x4,0x0, 0x0,0x2,0x5,0x0,0x0,0x6,0x5,0x0,0x0,0xd,0x5,0x0,0x0,0x10,0x5,0x0, 0x0,0x14,0x5,0x0,0x0,0x19,0x5,0x0,0x0,0x1e,0x5,0x0,0x0,0x24,0x5,0x0, 0x0,0x29,0x5,0x0,0x0,0x2e,0x5,0x0,0x0,0x33,0x5,0x0,0x0,0x3a,0x5,0x0, 0x0,0x3e,0x5,0x0,0x0,0x44,0x5,0x0,0x0,0x4b,0x5,0x0,0x0,0x55,0x5,0x0, 0x0,0x5b,0x5,0x0,0x0,0xc9,0x3,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x3f,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xa1,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xe1,0x4,0x0, 0x0,0xe9,0x4,0x0,0x0,0xed,0x4,0x0,0x0,0xf3,0x4,0x0,0x0,0xf6,0x4,0x0, 0x0,0xfb,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x5,0x5,0x0,0x0,0xb,0x5,0x0, 0x0,0x11,0x5,0x0,0x0,0x15,0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1f,0x5,0x0, 0x0,0x23,0x5,0x0,0x0,0x2a,0x5,0x0,0x0,0x30,0x5,0x0,0x0,0x35,0x5,0x0, 0x0,0x3c,0x5,0x0,0x0,0x40,0x5,0x0,0x0,0x45,0x5,0x0,0x0,0x49,0x5,0x0, 0x0,0x4e,0x5,0x0,0x0,0x54,0x5,0x0,0x0,0x59,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xa0,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0xe4,0x4,0x0,0x0,0xe5,0x4,0x0,0x0,0xea,0x4,0x0,0x0,0xef,0x4,0x0, 0x0,0xf4,0x4,0x0,0x0,0xf9,0x4,0x0,0x0,0xfe,0x4,0x0,0x0,0x4,0x5,0x0, 0x0,0x9,0x5,0x0,0x0,0xe,0x5,0x0,0x0,0x13,0x5,0x0,0x0,0x18,0x5,0x0, 0x0,0x1d,0x5,0x0,0x0,0x22,0x5,0x0,0x0,0x28,0x5,0x0,0x0,0x2d,0x5,0x0, 0x0,0x32,0x5,0x0,0x0,0x37,0x5,0x0,0x0,0x3d,0x5,0x0,0x0,0x42,0x5,0x0, 0x0,0x47,0x5,0x0,0x0,0x4c,0x5,0x0,0x0,0x51,0x5,0x0,0x0,0x56,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0x9f,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0xe8,0x4,0x0,0x0,0xee,0x4,0x0, 0x0,0xf1,0x4,0x0,0x0,0xf5,0x4,0x0,0x0,0xfa,0x4,0x0,0x0,0xff,0x4,0x0, 0x0,0x8,0x5,0x0,0x0,0xa,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x17,0x5,0x0, 0x0,0x1b,0x5,0x0,0x0,0x20,0x5,0x0,0x0,0x25,0x5,0x0,0x0,0x2b,0x5,0x0, 0x0,0x2f,0x5,0x0,0x0,0x34,0x5,0x0,0x0,0x39,0x5,0x0,0x0,0x3f,0x5,0x0, 0x0,0x43,0x5,0x0,0x0,0x48,0x5,0x0,0x0,0x4d,0x5,0x0,0x0,0x52,0x5,0x0, 0x0,0x58,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0x9e,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x5d,0x5,0x0,0x0,0x57,0x5,0x0, 0x0,0x5c,0x5,0x0,0x0,0x38,0x5,0x0,0x0,0x5f,0x5,0x0,0x0,0x5e,0x5,0x0, 0x0,0x60,0x5,0x0,0x0,0x3,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x27,0x5,0x0, 0x0,0x62,0x5,0x0,0x0,0x63,0x5,0x0,0x0,0x64,0x5,0x0,0x0,0x65,0x5,0x0, 0x0,0x66,0x5,0x0,0x0,0x67,0x5,0x0,0x0,0x68,0x5,0x0,0x0,0x69,0x5,0x0, 0x0,0x6a,0x5,0x0,0x0,0x6b,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x6d,0x5,0x0, 0x0,0x6e,0x5,0x0,0x0,0x6f,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0x9d,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0,0x0,0x91,0x0,0x0, 0x0,0xa1,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0xfc,0x0,0x0, 0x0,0x1f,0x1,0x0,0x0,0x24,0x1,0x0,0x0,0x2d,0x1,0x0,0x0,0x4b,0x1,0x0, 0x0,0x53,0x1,0x0,0x0,0x60,0x1,0x0,0x0,0x6a,0x2,0x0,0x0,0x73,0x2,0x0, 0x0,0x8c,0x2,0x0,0x0,0x92,0x2,0x0,0x0,0xa1,0x2,0x0,0x0,0xab,0x2,0x0, 0x0,0xba,0x2,0x0,0x0,0xc4,0x2,0x0,0x0,0xcf,0x2,0x0,0x0,0xd9,0x2,0x0, 0x0,0xea,0x2,0x0,0x0,0xf6,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0x9c,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x2f,0xe,0x83,0x0,0x18,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x98,0x0,0x0, 0x0,0xb1,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x1b,0x1,0x0, 0x0,0x23,0x1,0x0,0x0,0x2a,0x1,0x0,0x0,0x3f,0x1,0x0,0x0,0x51,0x1,0x0, 0x0,0x5e,0x1,0x0,0x0,0xb7,0x1,0x0,0x0,0x86,0x2,0x0,0x0,0x93,0x2,0x0, 0x0,0xa0,0x2,0x0,0x0,0xae,0x2,0x0,0x0,0xb9,0x2,0x0,0x0,0xc3,0x2,0x0, 0x0,0xd8,0x2,0x0,0x0,0xe2,0x2,0x0,0x0,0xee,0x2,0x0,0x0,0xfd,0x2,0x0, 0x0,0x1b,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x3f,0x75,0x5,0x0,0x44,0x7a,0x5,0x0,0x5,0x0,0x0,0x0,0x9b,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x92,0x0,0x0, 0x0,0x9c,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xe9,0x0,0x0, 0x0,0x1e,0x1,0x0,0x0,0x26,0x1,0x0,0x0,0x2e,0x1,0x0,0x0,0x47,0x1,0x0, 0x0,0x56,0x1,0x0,0x0,0x62,0x1,0x0,0x0,0x69,0x2,0x0,0x0,0x72,0x2,0x0, 0x0,0x8a,0x2,0x0,0x0,0x96,0x2,0x0,0x0,0xa3,0x2,0x0,0x0,0xb1,0x2,0x0, 0x0,0xbb,0x2,0x0,0x0,0xc6,0x2,0x0,0x0,0xd1,0x2,0x0,0x0,0xdc,0x2,0x0, 0x0,0xeb,0x2,0x0,0x0,0xf4,0x2,0x0,0x0,0xff,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0x9a,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0, 0x0,0x90,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0xc9,0x0,0x0, 0x0,0xed,0x0,0x0,0x0,0x1d,0x1,0x0,0x0,0x25,0x1,0x0,0x0,0x2b,0x1,0x0, 0x0,0x42,0x1,0x0,0x0,0x58,0x1,0x0,0x0,0x63,0x1,0x0,0x0,0x6b,0x2,0x0, 0x0,0x77,0x2,0x0,0x0,0x88,0x2,0x0,0x0,0x98,0x2,0x0,0x0,0xa6,0x2,0x0, 0x0,0xaf,0x2,0x0,0x0,0xbe,0x2,0x0,0x0,0xc8,0x2,0x0,0x0,0xd4,0x2,0x0, 0x0,0xdd,0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0xf8,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0x99,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x93,0x0,0x0, 0x0,0xa4,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0xff,0x0,0x0, 0x0,0x20,0x1,0x0,0x0,0x27,0x1,0x0,0x0,0x33,0x1,0x0,0x0,0x4c,0x1,0x0, 0x0,0x5b,0x1,0x0,0x0,0x6a,0x1,0x0,0x0,0x6c,0x2,0x0,0x0,0x7b,0x2,0x0, 0x0,0x8e,0x2,0x0,0x0,0x99,0x2,0x0,0x0,0xa7,0x2,0x0,0x0,0xb2,0x2,0x0, 0x0,0xbf,0x2,0x0,0x0,0xc5,0x2,0x0,0x0,0xd2,0x2,0x0,0x0,0xdb,0x2,0x0, 0x0,0xe9,0x2,0x0,0x0,0xf1,0x2,0x0,0x0,0xfe,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0x98,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0, 0x0,0x94,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0xdb,0x0,0x0, 0x0,0xa,0x1,0x0,0x0,0x21,0x1,0x0,0x0,0x28,0x1,0x0,0x0,0x36,0x1,0x0, 0x0,0x4e,0x1,0x0,0x0,0x59,0x1,0x0,0x0,0x64,0x1,0x0,0x0,0x6d,0x2,0x0, 0x0,0x81,0x2,0x0,0x0,0x8f,0x2,0x0,0x0,0x9c,0x2,0x0,0x0,0xa9,0x2,0x0, 0x0,0xb4,0x2,0x0,0x0,0xc0,0x2,0x0,0x0,0xc9,0x2,0x0,0x0,0xd5,0x2,0x0, 0x0,0xde,0x2,0x0,0x0,0xe6,0x2,0x0,0x0,0xef,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0x97,0xff,0xff, 0xff,0x2,0x0,0x5,0x0,0x9,0xea,0x84,0x3,0x7,0x0,0x0,0x0,0xbd,0xff,0xff, 0xff,0x9d,0xff,0xff,0xff,0x9c,0xff,0xff,0xff,0x9b,0xff,0xff,0xff,0x9a,0xff,0xff, 0xff,0x99,0xff,0xff,0xff,0x98,0xff,0xff,0xff,0x30,0xa,0x83,0x0,0x6e,0x94,0x7d, 0x0,0x2f,0xe,0x83,0x0,0x30,0xa,0x83,0x0,0x6e,0x94,0x7d,0x0,0x30,0xa,0x83, 0x0,0x6e,0x94,0x7d,0x0,0x5,0x0,0x0,0x0,0x96,0xff,0xff,0xff,0x4,0x0,0x5, 0x0,0x22,0xfa,0xeb,0x14,0x6,0x0,0x0,0x0,0xd6,0xff,0xff,0xff,0xce,0xff,0xff, 0xff,0xc6,0xff,0xff,0xff,0xbe,0xff,0xff,0xff,0x97,0xff,0xff,0xff,0x6c,0xff,0xff, 0xff,0xcd,0x46,0x95,0x3,0x50,0x47,0x95,0x3,0x2c,0x41,0x95,0x3,0x20,0x3d,0x12, 0x3,0x9,0xea,0x84,0x3,0xb0,0x3,0x95,0x3,0x5,0x0,0x0,0x0,0x95,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x87,0x1,0x0, 0x0,0x6e,0x1,0x0,0x0,0x88,0x1,0x0,0x0,0x94,0x1,0x0,0x0,0x6f,0x1,0x0, 0x0,0x9a,0x1,0x0,0x0,0x99,0x1,0x0,0x0,0x72,0x1,0x0,0x0,0x6d,0x1,0x0, 0x0,0x96,0x1,0x0,0x0,0x78,0x1,0x0,0x0,0x83,0x1,0x0,0x0,0x8e,0x1,0x0, 0x0,0x80,0x1,0x0,0x0,0x7c,0x1,0x0,0x0,0x79,0x1,0x0,0x0,0x8c,0x1,0x0, 0x0,0x74,0x1,0x0,0x0,0x8d,0x1,0x0,0x0,0x7e,0x1,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0x94,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0xbe,0x1,0x0,0x0,0xba,0x1,0x0,0x0,0xb0,0x1,0x0,0x0,0x9f,0x1,0x0, 0x0,0xa5,0x1,0x0,0x0,0xad,0x1,0x0,0x0,0xb3,0x1,0x0,0x0,0xb9,0x1,0x0, 0x0,0xab,0x1,0x0,0x0,0xb8,0x1,0x0,0x0,0xfa,0x0,0x0,0x0,0xa4,0x1,0x0, 0x0,0xaf,0x1,0x0,0x0,0xa8,0x1,0x0,0x0,0xb5,0x1,0x0,0x0,0xb4,0x1,0x0, 0x0,0xa7,0x1,0x0,0x0,0xa2,0x1,0x0,0x0,0xc1,0x1,0x0,0x0,0xb1,0x1,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0x93,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x76,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0x6b,0x3,0x0,0x0,0x6,0x4,0x0,0x0,0x85,0x3,0x0, 0x0,0xd2,0x3,0x0,0x0,0xdd,0x3,0x0,0x0,0xe5,0x3,0x0,0x0,0x7b,0x3,0x0, 0x0,0xc1,0x3,0x0,0x0,0xd8,0x3,0x0,0x0,0x7d,0x3,0x0,0x0,0x74,0x3,0x0, 0x0,0x8d,0x3,0x0,0x0,0x88,0x3,0x0,0x0,0x82,0x3,0x0,0x0,0xaf,0x3,0x0, 0x0,0xfe,0x3,0x0,0x0,0x9d,0x3,0x0,0x0,0xf8,0x3,0x0,0x0,0x7f,0x3,0x0, 0x0,0xc8,0x3,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x81,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x92,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0xc2,0x1,0x0, 0x0,0x5,0x2,0x0,0x0,0xc7,0x2,0x0,0x0,0x9e,0x2,0x0,0x0,0xef,0x1,0x0, 0x0,0x1a,0x2,0x0,0x0,0x3e,0x2,0x0,0x0,0x54,0x2,0x0,0x0,0xcb,0x1,0x0, 0x0,0x7e,0x2,0x0,0x0,0x74,0x2,0x0,0x0,0xe6,0x1,0x0,0x0,0xd0,0x1,0x0, 0x0,0xd4,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0xf9,0x1,0x0,0x0,0xde,0x1,0x0, 0x0,0xc3,0x1,0x0,0x0,0xb0,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x91,0xff,0xff, 0xff,0x2,0x0,0x5,0x0,0xda,0x32,0x23,0x1,0x4,0x0,0x0,0x0,0x95,0xff,0xff, 0xff,0x94,0xff,0xff,0xff,0x93,0xff,0xff,0xff,0x92,0xff,0xff,0xff,0xcc,0xcc,0x48, 0x0,0xcc,0xcc,0x48,0x0,0x76,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0x5,0x0,0x0, 0x0,0x90,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0x30,0x4,0x0,0x0,0xc9,0x4,0x0,0x0,0xe9,0x3,0x0,0x0,0xa8,0x4,0x0, 0x0,0x9,0x4,0x0,0x0,0x12,0x4,0x0,0x0,0xf6,0x3,0x0,0x0,0xd,0x4,0x0, 0x0,0x95,0x4,0x0,0x0,0xfc,0x3,0x0,0x0,0x66,0x4,0x0,0x0,0xcd,0x4,0x0, 0x0,0x7b,0x4,0x0,0x0,0xbb,0x4,0x0,0x0,0xcf,0x4,0x0,0x0,0xbe,0x4,0x0, 0x0,0xcb,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x18,0x4,0x0,0x0,0x4a,0x4,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0x8f,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x6f,0x3,0x0,0x0,0x93,0x3,0x0, 0x0,0xa2,0x3,0x0,0x0,0x89,0x3,0x0,0x0,0xd7,0x3,0x0,0x0,0x8e,0x3,0x0, 0x0,0xd3,0x3,0x0,0x0,0xdc,0x3,0x0,0x0,0x86,0x3,0x0,0x0,0x7c,0x3,0x0, 0x0,0x81,0x3,0x0,0x0,0x7a,0x3,0x0,0x0,0x84,0x3,0x0,0x0,0xe7,0x3,0x0, 0x0,0xab,0x3,0x0,0x0,0x65,0x3,0x0,0x0,0xc7,0x3,0x0,0x0,0x0,0x4,0x0, 0x0,0xf9,0x3,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x8e,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xc,0x2,0x0, 0x0,0x8b,0x2,0x0,0x0,0x6e,0x2,0x0,0x0,0xe1,0x1,0x0,0x0,0xf6,0x1,0x0, 0x0,0xe4,0x2,0x0,0x0,0xd7,0x1,0x0,0x0,0x82,0x2,0x0,0x0,0xd3,0x2,0x0, 0x0,0x78,0x2,0x0,0x0,0x34,0x3,0x0,0x0,0x9a,0x2,0x0,0x0,0x31,0x2,0x0, 0x0,0xb7,0x2,0x0,0x0,0xee,0x1,0x0,0x0,0xff,0x1,0x0,0x0,0xf2,0x2,0x0, 0x0,0xa8,0x2,0x0,0x0,0xea,0x1,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x8d,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x83,0x2,0x0, 0x0,0x50,0x2,0x0,0x0,0x71,0x2,0x0,0x0,0xac,0x2,0x0,0x0,0xd,0x2,0x0, 0x0,0x9b,0x2,0x0,0x0,0xe5,0x1,0x0,0x0,0xe8,0x2,0x0,0x0,0x3d,0x2,0x0, 0x0,0xf2,0x1,0x0,0x0,0xec,0x1,0x0,0x0,0x53,0x3,0x0,0x0,0x1,0x2,0x0, 0x0,0xd6,0x2,0x0,0x0,0x4b,0x3,0x0,0x0,0xdd,0x1,0x0,0x0,0x7c,0x2,0x0, 0x0,0xbc,0x2,0x0,0x0,0xf9,0x2,0x0,0x0,0x8d,0x2,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0x8c,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x30,0x33,0x23,0x1,0x4,0x0,0x0, 0x0,0x90,0xff,0xff,0xff,0x8f,0xff,0xff,0xff,0x8e,0xff,0xff,0xff,0x8d,0xff,0xff, 0xff,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48, 0x0,0x5,0x0,0x0,0x0,0x8b,0xff,0xff,0xff,0x3,0x0,0x5,0x0,0xa,0x66,0x46, 0x2,0x2,0x0,0x0,0x0,0x91,0xff,0xff,0xff,0x8c,0xff,0xff,0xff,0xda,0x32,0x23, 0x1,0x30,0x33,0x23,0x1,0x5,0x0,0x0,0x0,0x8a,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x89,0x2,0x0,0x0,0x79,0x2,0x0, 0x0,0x7,0x2,0x0,0x0,0x97,0x2,0x0,0x0,0xa5,0x2,0x0,0x0,0x5d,0x3,0x0, 0x0,0x6f,0x2,0x0,0x0,0x64,0x3,0x0,0x0,0x4f,0x3,0x0,0x0,0x11,0x2,0x0, 0x0,0x46,0x2,0x0,0x0,0xb5,0x2,0x0,0x0,0x32,0x2,0x0,0x0,0xca,0x2,0x0, 0x0,0x33,0x3,0x0,0x0,0xda,0x2,0x0,0x0,0x61,0x3,0x0,0x0,0x80,0x2,0x0, 0x0,0xe5,0x2,0x0,0x0,0xf5,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x89,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xff,0x3,0x0, 0x0,0x44,0x4,0x0,0x0,0x90,0x3,0x0,0x0,0xd1,0x3,0x0,0x0,0xdb,0x3,0x0, 0x0,0xb6,0x3,0x0,0x0,0xd5,0x3,0x0,0x0,0x11,0x4,0x0,0x0,0xf7,0x3,0x0, 0x0,0x75,0x4,0x0,0x0,0x9f,0x3,0x0,0x0,0x2f,0x4,0x0,0x0,0xe1,0x3,0x0, 0x0,0x17,0x4,0x0,0x0,0x62,0x4,0x0,0x0,0x9c,0x4,0x0,0x0,0xc,0x4,0x0, 0x0,0xa5,0x3,0x0,0x0,0xb2,0x3,0x0,0x0,0x5,0x4,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0x88,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0x9,0x2,0x0,0x0,0x76,0x2,0x0,0x0,0xf4,0x1,0x0,0x0,0xd3,0x1,0x0, 0x0,0xfa,0x1,0x0,0x0,0x45,0x2,0x0,0x0,0x95,0x2,0x0,0x0,0xda,0x1,0x0, 0x0,0x68,0x2,0x0,0x0,0xed,0x1,0x0,0x0,0x7f,0x2,0x0,0x0,0xb8,0x2,0x0, 0x0,0xcb,0x2,0x0,0x0,0xcf,0x1,0x0,0x0,0x87,0x2,0x0,0x0,0xdf,0x2,0x0, 0x0,0x2d,0x2,0x0,0x0,0xa4,0x2,0x0,0x0,0xe3,0x1,0x0,0x0,0xf3,0x2,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0x87,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0xec,0x2,0x0,0x0,0xe3,0x2,0x0,0x0,0x6e,0x3,0x0, 0x0,0x76,0x3,0x0,0x0,0x8f,0x3,0x0,0x0,0x5a,0x3,0x0,0x0,0x87,0x3,0x0, 0x0,0x80,0x3,0x0,0x0,0xf7,0x2,0x0,0x0,0x83,0x3,0x0,0x0,0xfc,0x2,0x0, 0x0,0xd0,0x2,0x0,0x0,0x63,0x3,0x0,0x0,0xa2,0x2,0x0,0x0,0x4d,0x3,0x0, 0x0,0xb3,0x2,0x0,0x0,0x60,0x3,0x0,0x0,0x7e,0x3,0x0,0x0,0x8b,0x3,0x0, 0x0,0xc2,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x86,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0x30,0x33,0x23,0x1,0x4,0x0,0x0,0x0,0x8a,0xff,0xff,0xff,0x89,0xff,0xff, 0xff,0x88,0xff,0xff,0xff,0x87,0xff,0xff,0xff,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48, 0x0,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0x5,0x0,0x0,0x0,0x85,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x4c,0x3,0x0, 0x0,0x1c,0x2,0x0,0x0,0xcd,0x2,0x0,0x0,0x58,0x2,0x0,0x0,0x94,0x2,0x0, 0x0,0x62,0x3,0x0,0x0,0xe1,0x2,0x0,0x0,0x84,0x2,0x0,0x0,0x40,0x2,0x0, 0x0,0x7d,0x2,0x0,0x0,0xbd,0x2,0x0,0x0,0x5e,0x3,0x0,0x0,0xf0,0x2,0x0, 0x0,0x75,0x3,0x0,0x0,0x9f,0x2,0x0,0x0,0xad,0x2,0x0,0x0,0xfb,0x2,0x0, 0x0,0x51,0x3,0x0,0x0,0x75,0x2,0x0,0x0,0x6d,0x3,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0x84,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0x8,0x4,0x0,0x0,0x4c,0x4,0x0,0x0,0x2,0x4,0x0,0x0,0xb3,0x3,0x0, 0x0,0xe,0x4,0x0,0x0,0xa9,0x3,0x0,0x0,0x3e,0x4,0x0,0x0,0x8c,0x3,0x0, 0x0,0xfa,0x3,0x0,0x0,0xef,0x3,0x0,0x0,0x19,0x4,0x0,0x0,0xcd,0x3,0x0, 0x0,0x13,0x4,0x0,0x0,0xa0,0x3,0x0,0x0,0xdf,0x3,0x0,0x0,0x6d,0x4,0x0, 0x0,0x8a,0x3,0x0,0x0,0xd4,0x3,0x0,0x0,0xd9,0x3,0x0,0x0,0x91,0x3,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0x83,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0xa,0x4,0x0,0x0,0xc0,0x4,0x0,0x0,0xe2,0x3,0x0, 0x0,0xf,0x4,0x0,0x0,0xcc,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0xce,0x4,0x0, 0x0,0xf2,0x3,0x0,0x0,0xde,0x3,0x0,0x0,0x15,0x4,0x0,0x0,0x22,0x4,0x0, 0x0,0xca,0x4,0x0,0x0,0xfb,0x3,0x0,0x0,0xb4,0x4,0x0,0x0,0x68,0x4,0x0, 0x0,0x3,0x4,0x0,0x0,0x53,0x4,0x0,0x0,0xae,0x4,0x0,0x0,0x97,0x4,0x0, 0x0,0x41,0x4,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x82,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xbd,0x3,0x0,0x0,0xfd,0x3,0x0, 0x0,0xa7,0x4,0x0,0x0,0xb1,0x4,0x0,0x0,0x16,0x4,0x0,0x0,0xb1,0x3,0x0, 0x0,0xa6,0x3,0x0,0x0,0x2b,0x4,0x0,0x0,0xb,0x4,0x0,0x0,0x86,0x4,0x0, 0x0,0x43,0x4,0x0,0x0,0x76,0x4,0x0,0x0,0xce,0x3,0x0,0x0,0xda,0x3,0x0, 0x0,0x57,0x4,0x0,0x0,0x12,0x3,0x0,0x0,0xd6,0x3,0x0,0x0,0xe0,0x3,0x0, 0x0,0xf0,0x3,0x0,0x0,0x4,0x4,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x81,0xff,0xff, 0xff,0x2,0x0,0x5,0x0,0x30,0x33,0x23,0x1,0x4,0x0,0x0,0x0,0x85,0xff,0xff, 0xff,0x84,0xff,0xff,0xff,0x83,0xff,0xff,0xff,0x82,0xff,0xff,0xff,0xcc,0xcc,0x48, 0x0,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0x5,0x0,0x0, 0x0,0x80,0xff,0xff,0xff,0x3,0x0,0x5,0x0,0x60,0x66,0x46,0x2,0x2,0x0,0x0, 0x0,0x86,0xff,0xff,0xff,0x81,0xff,0xff,0xff,0x30,0x33,0x23,0x1,0x30,0x33,0x23, 0x1,0x5,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x4,0x0,0x5,0x0,0x6a,0xcc,0x8c, 0x4,0x2,0x0,0x0,0x0,0x8b,0xff,0xff,0xff,0x80,0xff,0xff,0xff,0xa,0x66,0x46, 0x2,0x60,0x66,0x46,0x2,0x5,0x0,0x0,0x0,0x7e,0xff,0xff,0xff,0x6,0x0,0x5, 0x0,0x8c,0xc6,0x78,0x19,0x2,0x0,0x0,0x0,0x96,0xff,0xff,0xff,0x7f,0xff,0xff, 0xff,0x22,0xfa,0xeb,0x14,0x6a,0xcc,0x8c,0x4,0x4,0x0,0x0,0x0,0x7d,0xff,0xff, 0xff,0x1,0x0,0x4,0x0,0xd0,0x10,0x83,0x0,0x18,0x0,0x0,0x0,0x7d,0x0,0x0, 0x0,0x46,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x15,0x1,0x0, 0x0,0xb4,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x7b,0x1,0x0, 0x0,0x7f,0x0,0x0,0x0,0xdd,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0xcd,0x0,0x0, 0x0,0xd3,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0xe5,0x0,0x0, 0x0,0x90,0x1,0x0,0x0,0x61,0x1,0x0,0x0,0x4e,0x0,0x0,0x0,0x7d,0x1,0x0, 0x0,0x55,0x0,0x0,0x0,0x99,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0xbe,0x7e,0x5, 0x0,0x12,0x0,0x1,0x0,0xbe,0x7e,0x5,0x0,0x12,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x0,0x0,0x7b,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0x10,0x83, 0x0,0x18,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x3d,0x0,0x0, 0x0,0xa5,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0xb4,0x0,0x0,0x0,0xbd,0x0,0x0, 0x0,0x8,0x1,0x0,0x0,0x7b,0x1,0x0,0x0,0x7f,0x0,0x0,0x0,0xdd,0x0,0x0, 0x0,0xbb,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0xf0,0x0,0x0, 0x0,0x5e,0x0,0x0,0x0,0xe5,0x0,0x0,0x0,0x90,0x1,0x0,0x0,0x61,0x1,0x0, 0x0,0x4e,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x55,0x0,0x0,0x0,0x99,0x0,0x0, 0x0,0xf2,0x0,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0xbe,0x7e,0x5,0x0,0x12,0x0,0x1,0x0,0xbe,0x7e,0x5, 0x0,0x12,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x79,0xff,0xff, 0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0xdc,0x1,0x0, 0x0,0xce,0x1,0x0,0x0,0x93,0x1,0x0,0x0,0x4,0x3,0x0,0x0,0x9,0x3,0x0, 0x0,0x7a,0x2,0x0,0x0,0x8,0x3,0x0,0x0,0x6,0x3,0x0,0x0,0x7,0x3,0x0, 0x0,0x9b,0x1,0x0,0x0,0xe8,0x1,0x0,0x0,0x5,0x3,0x0,0x0,0x1,0x3,0x0, 0x0,0xa,0x3,0x0,0x0,0xfe,0x1,0x0,0x0,0xc7,0x1,0x0,0x0,0x4,0x2,0x0, 0x0,0x2,0x3,0x0,0x0,0x15,0x2,0x0,0x0,0xfd,0x1,0x0,0x0,0x0,0x3,0x0, 0x0,0x22,0x2,0x0,0x0,0xac,0x1,0x0,0x0,0x3,0x3,0x0,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0, 0x0,0x78,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0, 0x0,0xdc,0x1,0x0,0x0,0xce,0x1,0x0,0x0,0x93,0x1,0x0,0x0,0x4,0x3,0x0, 0x0,0x9,0x3,0x0,0x0,0x7a,0x2,0x0,0x0,0x8,0x3,0x0,0x0,0x6,0x3,0x0, 0x0,0x7,0x3,0x0,0x0,0x9b,0x1,0x0,0x0,0xe8,0x1,0x0,0x0,0x5,0x3,0x0, 0x0,0x1,0x3,0x0,0x0,0xa,0x3,0x0,0x0,0xfe,0x1,0x0,0x0,0xc7,0x1,0x0, 0x0,0x4,0x2,0x0,0x0,0x2,0x3,0x0,0x0,0x15,0x2,0x0,0x0,0xfd,0x1,0x0, 0x0,0x0,0x3,0x0,0x0,0x22,0x2,0x0,0x0,0xac,0x1,0x0,0x0,0x3,0x3,0x0, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x4,0x0,0x0,0x0,0x77,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82, 0x0,0x18,0x0,0x0,0x0,0xb,0x3,0x0,0x0,0x23,0x3,0x0,0x0,0x1f,0x3,0x0, 0x0,0x1b,0x3,0x0,0x0,0x1e,0x3,0x0,0x0,0x19,0x3,0x0,0x0,0x17,0x3,0x0, 0x0,0x1d,0x3,0x0,0x0,0xd,0x3,0x0,0x0,0x13,0x3,0x0,0x0,0x15,0x3,0x0, 0x0,0x18,0x3,0x0,0x0,0x14,0x3,0x0,0x0,0x1c,0x3,0x0,0x0,0x22,0x3,0x0, 0x0,0xe,0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x16,0x3,0x0,0x0,0x1a,0x3,0x0, 0x0,0x20,0x3,0x0,0x0,0x11,0x3,0x0,0x0,0x10,0x3,0x0,0x0,0x21,0x3,0x0, 0x0,0xf,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x76,0xff,0xff,0xff,0x1,0x0,0x4, 0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0xb,0x3,0x0,0x0,0x23,0x3,0x0, 0x0,0x1f,0x3,0x0,0x0,0x1b,0x3,0x0,0x0,0x1e,0x3,0x0,0x0,0x19,0x3,0x0, 0x0,0x17,0x3,0x0,0x0,0x1d,0x3,0x0,0x0,0xd,0x3,0x0,0x0,0x13,0x3,0x0, 0x0,0x15,0x3,0x0,0x0,0x18,0x3,0x0,0x0,0x14,0x3,0x0,0x0,0x1c,0x3,0x0, 0x0,0x22,0x3,0x0,0x0,0xe,0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x16,0x3,0x0, 0x0,0x1a,0x3,0x0,0x0,0x20,0x3,0x0,0x0,0x11,0x3,0x0,0x0,0x10,0x3,0x0, 0x0,0x21,0x3,0x0,0x0,0xf,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x75,0xff,0xff, 0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0x28,0x3,0x0, 0x0,0x27,0x3,0x0,0x0,0x29,0x3,0x0,0x0,0x2b,0x3,0x0,0x0,0x26,0x3,0x0, 0x0,0x35,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x3a,0x3,0x0,0x0,0x25,0x3,0x0, 0x0,0x24,0x3,0x0,0x0,0x32,0x3,0x0,0x0,0x3b,0x3,0x0,0x0,0x2f,0x3,0x0, 0x0,0x39,0x3,0x0,0x0,0x2e,0x3,0x0,0x0,0x37,0x3,0x0,0x0,0x3c,0x3,0x0, 0x0,0x2c,0x3,0x0,0x0,0x36,0x3,0x0,0x0,0x2d,0x3,0x0,0x0,0x3d,0x3,0x0, 0x0,0x38,0x3,0x0,0x0,0x31,0x3,0x0,0x0,0x2a,0x3,0x0,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0, 0x0,0x74,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0, 0x0,0x28,0x3,0x0,0x0,0x27,0x3,0x0,0x0,0x29,0x3,0x0,0x0,0x2b,0x3,0x0, 0x0,0x26,0x3,0x0,0x0,0x35,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x3a,0x3,0x0, 0x0,0x25,0x3,0x0,0x0,0x24,0x3,0x0,0x0,0x32,0x3,0x0,0x0,0x3b,0x3,0x0, 0x0,0x2f,0x3,0x0,0x0,0x39,0x3,0x0,0x0,0x2e,0x3,0x0,0x0,0x37,0x3,0x0, 0x0,0x3c,0x3,0x0,0x0,0x2c,0x3,0x0,0x0,0x36,0x3,0x0,0x0,0x2d,0x3,0x0, 0x0,0x3d,0x3,0x0,0x0,0x38,0x3,0x0,0x0,0x31,0x3,0x0,0x0,0x2a,0x3,0x0, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x4,0x0,0x0,0x0,0x73,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82, 0x0,0x18,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0x5b,0x3,0x0,0x0,0x3f,0x3,0x0, 0x0,0x44,0x3,0x0,0x0,0x45,0x3,0x0,0x0,0x55,0x3,0x0,0x0,0x5f,0x3,0x0, 0x0,0x50,0x3,0x0,0x0,0x4a,0x3,0x0,0x0,0x47,0x3,0x0,0x0,0x41,0x3,0x0, 0x0,0x40,0x3,0x0,0x0,0x57,0x3,0x0,0x0,0x49,0x3,0x0,0x0,0x42,0x3,0x0, 0x0,0x43,0x3,0x0,0x0,0x46,0x3,0x0,0x0,0x54,0x3,0x0,0x0,0x4e,0x3,0x0, 0x0,0x52,0x3,0x0,0x0,0x48,0x3,0x0,0x0,0x56,0x3,0x0,0x0,0x58,0x3,0x0, 0x0,0x59,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x72,0xff,0xff,0xff,0x1,0x0,0x4, 0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0x5b,0x3,0x0, 0x0,0x3f,0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x45,0x3,0x0,0x0,0x55,0x3,0x0, 0x0,0x5f,0x3,0x0,0x0,0x50,0x3,0x0,0x0,0x4a,0x3,0x0,0x0,0x47,0x3,0x0, 0x0,0x41,0x3,0x0,0x0,0x40,0x3,0x0,0x0,0x57,0x3,0x0,0x0,0x49,0x3,0x0, 0x0,0x42,0x3,0x0,0x0,0x43,0x3,0x0,0x0,0x46,0x3,0x0,0x0,0x54,0x3,0x0, 0x0,0x4e,0x3,0x0,0x0,0x52,0x3,0x0,0x0,0x48,0x3,0x0,0x0,0x56,0x3,0x0, 0x0,0x58,0x3,0x0,0x0,0x59,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x71,0xff,0xff, 0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0xc4,0x3,0x0, 0x0,0xc6,0x3,0x0,0x0,0xc3,0x3,0x0,0x0,0xa7,0x3,0x0,0x0,0xac,0x3,0x0, 0x0,0xad,0x3,0x0,0x0,0xbf,0x3,0x0,0x0,0xb7,0x3,0x0,0x0,0xae,0x3,0x0, 0x0,0xa4,0x3,0x0,0x0,0xbb,0x3,0x0,0x0,0xc5,0x3,0x0,0x0,0xbe,0x3,0x0, 0x0,0xc2,0x3,0x0,0x0,0xb0,0x3,0x0,0x0,0xb5,0x3,0x0,0x0,0xa8,0x3,0x0, 0x0,0xa3,0x3,0x0,0x0,0xaa,0x3,0x0,0x0,0xb4,0x3,0x0,0x0,0xc0,0x3,0x0, 0x0,0xb9,0x3,0x0,0x0,0xba,0x3,0x0,0x0,0xb8,0x3,0x0,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0, 0x0,0x70,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0, 0x0,0xc4,0x3,0x0,0x0,0xc6,0x3,0x0,0x0,0xc3,0x3,0x0,0x0,0xa7,0x3,0x0, 0x0,0xac,0x3,0x0,0x0,0xad,0x3,0x0,0x0,0xbf,0x3,0x0,0x0,0xb7,0x3,0x0, 0x0,0xae,0x3,0x0,0x0,0xa4,0x3,0x0,0x0,0xbb,0x3,0x0,0x0,0xc5,0x3,0x0, 0x0,0xbe,0x3,0x0,0x0,0xc2,0x3,0x0,0x0,0xb0,0x3,0x0,0x0,0xb5,0x3,0x0, 0x0,0xa8,0x3,0x0,0x0,0xa3,0x3,0x0,0x0,0xaa,0x3,0x0,0x0,0xb4,0x3,0x0, 0x0,0xc0,0x3,0x0,0x0,0xb9,0x3,0x0,0x0,0xba,0x3,0x0,0x0,0xb8,0x3,0x0, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x4,0x0,0x0,0x0,0x6f,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82, 0x0,0x18,0x0,0x0,0x0,0x66,0x3,0x0,0x0,0x69,0x3,0x0,0x0,0x71,0x3,0x0, 0x0,0x79,0x3,0x0,0x0,0x97,0x3,0x0,0x0,0x95,0x3,0x0,0x0,0x94,0x3,0x0, 0x0,0x9a,0x3,0x0,0x0,0x70,0x3,0x0,0x0,0x68,0x3,0x0,0x0,0x6c,0x3,0x0, 0x0,0x9b,0x3,0x0,0x0,0xa1,0x3,0x0,0x0,0x92,0x3,0x0,0x0,0x9c,0x3,0x0, 0x0,0x96,0x3,0x0,0x0,0x73,0x3,0x0,0x0,0x9e,0x3,0x0,0x0,0x77,0x3,0x0, 0x0,0x99,0x3,0x0,0x0,0x72,0x3,0x0,0x0,0x98,0x3,0x0,0x0,0x67,0x3,0x0, 0x0,0x78,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x6e,0xff,0xff,0xff,0x1,0x0,0x4, 0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0x66,0x3,0x0,0x0,0x69,0x3,0x0, 0x0,0x71,0x3,0x0,0x0,0x79,0x3,0x0,0x0,0x97,0x3,0x0,0x0,0x95,0x3,0x0, 0x0,0x94,0x3,0x0,0x0,0x9a,0x3,0x0,0x0,0x70,0x3,0x0,0x0,0x68,0x3,0x0, 0x0,0x6c,0x3,0x0,0x0,0x9b,0x3,0x0,0x0,0xa1,0x3,0x0,0x0,0x92,0x3,0x0, 0x0,0x9c,0x3,0x0,0x0,0x96,0x3,0x0,0x0,0x73,0x3,0x0,0x0,0x9e,0x3,0x0, 0x0,0x77,0x3,0x0,0x0,0x99,0x3,0x0,0x0,0x72,0x3,0x0,0x0,0x98,0x3,0x0, 0x0,0x67,0x3,0x0,0x0,0x78,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x6d,0xff,0xff, 0xff,0x2,0x0,0x4,0x0,0xb0,0x3,0x95,0x3,0x7,0x0,0x0,0x0,0x73,0xff,0xff, 0xff,0x6f,0xff,0xff,0xff,0x7d,0xff,0xff,0xff,0x77,0xff,0xff,0xff,0x75,0xff,0xff, 0xff,0x79,0xff,0xff,0xff,0x71,0xff,0xff,0xff,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0xd0,0x10,0x83,0x0,0x5,0x0,0x1, 0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0x4,0x0,0x0,0x0,0x6c,0xff,0xff,0xff,0x2,0x0,0x4,0x0,0xb0,0x3,0x95, 0x3,0x7,0x0,0x0,0x0,0x72,0xff,0xff,0xff,0x6e,0xff,0xff,0xff,0x7b,0xff,0xff, 0xff,0x76,0xff,0xff,0xff,0x74,0xff,0xff,0xff,0x78,0xff,0xff,0xff,0x70,0xff,0xff, 0xff,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0xd0,0x10,0x83,0x0,0x5,0x0,0x1,0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x0,0x1,0x1,0xa,0x1,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x1,0x1,0x1,0xa,0x1,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x2,0x1,0x1,0xa,0x1,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x3,0x1,0x1,0xa,0x1,0x0,0x0,0x0,0xbf,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x4,0x1,0x1,0xa,0x1,0x0,0x0,0x0,0xbf,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0xff,0xff, 0xff,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x6f,0x73,0x64,0x1,0x0,0x0,0x0, 0x4,0x0,0x0,0x0,0x68,0x6f,0x73,0x74,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0, 0x72,0x61,0x63,0x6b,0x3,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x69,0x70,0x73,0x65, 0x72,0x76,0x69,0x63,0x65,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x72,0x6f,0x6f, 0x6d,0x5,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x64,0x61,0x74,0x61,0x63,0x65,0x6e, 0x74,0x65,0x72,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x72,0x6f,0x6f,0x74,0xa5, 0x5,0x0,0x0,0x6c,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x52,0x41,0x32,0x31,0x7e, 0x68,0x64,0x64,0x6d,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x52,0x41,0x32,0x31,0x6e, 0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39, 0x65,0x33,0x35,0x33,0x39,0x32,0x7e,0x68,0x64,0x64,0x6f,0xff,0xff,0xff,0xf,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x65,0x33,0x35,0x33,0x39, 0x32,0x70,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x79,0x36,0x31,0x38,0x32,0x36,0x7e,0x68,0x64,0x64,0x71,0xff,0xff,0xff, 0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x79,0x36,0x31, 0x38,0x32,0x36,0x72,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35, 0x33,0x39,0x33,0x39,0x65,0x30,0x33,0x38,0x36,0x36,0x7e,0x68,0x64,0x64,0x73,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x65, 0x30,0x33,0x38,0x36,0x36,0x74,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36, 0x32,0x35,0x33,0x39,0x33,0x39,0x79,0x33,0x31,0x34,0x31,0x36,0x7e,0x68,0x64,0x64, 0x75,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33, 0x39,0x79,0x33,0x31,0x34,0x31,0x36,0x76,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x79,0x32,0x32,0x39,0x35,0x32,0x7e,0x68, 0x64,0x64,0x77,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33, 0x39,0x33,0x39,0x79,0x32,0x32,0x39,0x35,0x32,0x78,0xff,0xff,0xff,0x13,0x0,0x0, 0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x79,0x33,0x33,0x30,0x34,0x39, 0x7e,0x68,0x64,0x64,0x79,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32, 0x35,0x33,0x39,0x33,0x39,0x79,0x33,0x33,0x30,0x34,0x39,0x7b,0xff,0xff,0xff,0x13, 0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x66,0x34,0x34,0x39, 0x32,0x38,0x7e,0x68,0x64,0x64,0x7d,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30, 0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x66,0x34,0x34,0x39,0x32,0x38,0x7e,0xff,0xff, 0xff,0xb,0x0,0x0,0x0,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x7e,0x68,0x64,0x64, 0x7f,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x30,0x35,0x31,0x33,0x2d,0x52,0x2d,0x30, 0x30,0x36,0x30,0x7e,0x68,0x64,0x64,0x80,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x53, 0x35,0x31,0x33,0x2d,0x41,0x2d,0x49,0x50,0x36,0x33,0x7e,0x68,0x64,0x64,0x81,0xff, 0xff,0xff,0x8,0x0,0x0,0x0,0x42,0x41,0x31,0x32,0x7e,0x68,0x64,0x64,0x82,0xff, 0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62, 0x34,0x30,0x39,0x35,0x31,0x7e,0x68,0x64,0x64,0x83,0xff,0xff,0xff,0x13,0x0,0x0, 0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62,0x37,0x38,0x34,0x32,0x39, 0x7e,0x68,0x64,0x64,0x84,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37, 0x39,0x38,0x38,0x31,0x38,0x62,0x33,0x37,0x33,0x32,0x37,0x7e,0x68,0x64,0x64,0x85, 0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38, 0x62,0x31,0x32,0x34,0x33,0x31,0x7e,0x68,0x64,0x64,0x86,0xff,0xff,0xff,0x8,0x0, 0x0,0x0,0x42,0x41,0x31,0x31,0x7e,0x68,0x64,0x64,0x87,0xff,0xff,0xff,0x13,0x0, 0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x34,0x30,0x31,0x38, 0x35,0x7e,0x68,0x64,0x64,0x88,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35, 0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x34,0x39,0x32,0x30,0x34,0x7e,0x68,0x64,0x64, 0x89,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31, 0x38,0x73,0x36,0x33,0x37,0x34,0x37,0x7e,0x68,0x64,0x64,0x8a,0xff,0xff,0xff,0x13, 0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x39,0x38,0x33, 0x31,0x33,0x7e,0x68,0x64,0x64,0x8b,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x53,0x35, 0x31,0x33,0x2d,0x41,0x2d,0x49,0x50,0x33,0x38,0x7e,0x68,0x64,0x64,0x8c,0xff,0xff, 0xff,0x8,0x0,0x0,0x0,0x42,0x41,0x31,0x30,0x7e,0x68,0x64,0x64,0x8d,0xff,0xff, 0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x76,0x35, 0x31,0x35,0x35,0x39,0x7e,0x68,0x64,0x64,0x8e,0xff,0xff,0xff,0x13,0x0,0x0,0x0, 0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x77,0x30,0x33,0x31,0x36,0x36,0x7e, 0x68,0x64,0x64,0x8f,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39, 0x38,0x38,0x31,0x38,0x76,0x36,0x34,0x33,0x33,0x34,0x7e,0x68,0x64,0x64,0x90,0xff, 0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x76, 0x34,0x37,0x31,0x30,0x30,0x7e,0x68,0x64,0x64,0x91,0xff,0xff,0xff,0x8,0x0,0x0, 0x0,0x42,0x41,0x30,0x39,0x7e,0x68,0x64,0x64,0x92,0xff,0xff,0xff,0x13,0x0,0x0, 0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62,0x30,0x34,0x33,0x32,0x32, 0x7e,0x68,0x64,0x64,0x93,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37, 0x39,0x38,0x38,0x31,0x38,0x62,0x30,0x30,0x31,0x37,0x34,0x7e,0x68,0x64,0x64,0x94, 0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38, 0x62,0x30,0x30,0x30,0x34,0x37,0x7e,0x68,0x64,0x64,0x95,0xff,0xff,0xff,0x13,0x0, 0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x61,0x38,0x32,0x38,0x35, 0x37,0x7e,0x68,0x64,0x64,0x96,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x30,0x35,0x31, 0x33,0x2d,0x52,0x2d,0x30,0x30,0x35,0x30,0x7e,0x68,0x64,0x64,0x97,0xff,0xff,0xff, 0x8,0x0,0x0,0x0,0x52,0x41,0x31,0x37,0x7e,0x68,0x64,0x64,0x98,0xff,0xff,0xff, 0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x66,0x39,0x39, 0x39,0x32,0x31,0x7e,0x68,0x64,0x64,0x99,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x77,0x36,0x36,0x37,0x32,0x36,0x7e,0x68, 0x64,0x64,0x9a,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33, 0x39,0x33,0x39,0x68,0x30,0x38,0x39,0x32,0x34,0x7e,0x68,0x64,0x64,0x9b,0xff,0xff, 0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x76,0x32, 0x30,0x32,0x30,0x35,0x7e,0x68,0x64,0x64,0x9c,0xff,0xff,0xff,0x13,0x0,0x0,0x0, 0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x68,0x37,0x30,0x36,0x35,0x35,0x7e, 0x68,0x64,0x64,0x9d,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35, 0x33,0x39,0x33,0x39,0x77,0x38,0x36,0x39,0x30,0x36,0x7e,0x68,0x64,0x64,0x9e,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x70, 0x34,0x34,0x36,0x32,0x33,0x9f,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36, 0x32,0x35,0x33,0x39,0x33,0x39,0x72,0x37,0x36,0x38,0x34,0x38,0xa0,0xff,0xff,0xff, 0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6e,0x36,0x36, 0x37,0x31,0x35,0xa1,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35, 0x33,0x39,0x33,0x39,0x72,0x31,0x39,0x39,0x37,0x32,0xa2,0xff,0xff,0xff,0xf,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x72,0x39,0x38,0x36,0x36, 0x33,0xa3,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x72,0x33,0x35,0x37,0x33,0x35,0xa5,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x76,0x35,0x31,0x35,0x35,0x39,0xa6, 0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38, 0x77,0x30,0x33,0x31,0x36,0x36,0xa7,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30, 0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x34,0x30,0x31,0x38,0x35,0xa8,0xff,0xff, 0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x76,0x36, 0x34,0x33,0x33,0x34,0xa9,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37, 0x39,0x38,0x38,0x31,0x38,0x62,0x34,0x30,0x39,0x35,0x31,0xaa,0xff,0xff,0xff,0xf, 0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62,0x30,0x34,0x33, 0x32,0x32,0xab,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38, 0x38,0x31,0x38,0x73,0x34,0x39,0x32,0x30,0x34,0xac,0xff,0xff,0xff,0xf,0x0,0x0, 0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x36,0x33,0x37,0x34,0x37, 0xad,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31, 0x38,0x62,0x30,0x30,0x31,0x37,0x34,0xae,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70, 0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62,0x37,0x38,0x34,0x32,0x39,0xaf,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62, 0x33,0x37,0x33,0x32,0x37,0xb0,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x42,0x41,0x31, 0x30,0xb1,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38, 0x31,0x38,0x76,0x34,0x37,0x31,0x30,0x30,0xb2,0xff,0xff,0xff,0x4,0x0,0x0,0x0, 0x42,0x41,0x31,0x32,0xb3,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37, 0x39,0x38,0x38,0x31,0x38,0x62,0x31,0x32,0x34,0x33,0x31,0xb4,0xff,0xff,0xff,0xb, 0x0,0x0,0x0,0x53,0x35,0x31,0x33,0x2d,0x41,0x2d,0x49,0x50,0x36,0x33,0xb5,0xff, 0xff,0xff,0x4,0x0,0x0,0x0,0x42,0x41,0x31,0x31,0xb6,0xff,0xff,0xff,0xf,0x0, 0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x39,0x38,0x33,0x31, 0x33,0xb7,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38, 0x31,0x38,0x62,0x30,0x30,0x30,0x34,0x37,0xb8,0xff,0xff,0xff,0x4,0x0,0x0,0x0, 0x52,0x41,0x30,0x31,0xb9,0xff,0xff,0xff,0xb,0x0,0x0,0x0,0x53,0x35,0x31,0x33, 0x2d,0x41,0x2d,0x49,0x50,0x33,0x38,0xba,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x42, 0x41,0x30,0x39,0xbb,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39, 0x38,0x38,0x31,0x38,0x61,0x38,0x32,0x38,0x35,0x37,0xbc,0xff,0xff,0xff,0xf,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6e,0x34,0x34,0x35,0x36, 0x31,0xbd,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x68,0x34,0x39,0x33,0x32,0x30,0x7e,0x68,0x64,0x64,0xbe,0xff,0xff,0xff, 0x8,0x0,0x0,0x0,0x52,0x41,0x31,0x33,0x7e,0x68,0x64,0x64,0xbf,0xff,0xff,0xff, 0xb,0x0,0x0,0x0,0x30,0x35,0x31,0x33,0x2d,0x52,0x2d,0x30,0x30,0x36,0x30,0xc0, 0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39, 0x64,0x33,0x32,0x33,0x30,0x38,0x7e,0x68,0x64,0x64,0xc1,0xff,0xff,0xff,0x13,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x62,0x38,0x34,0x36,0x35, 0x39,0x7e,0x68,0x64,0x64,0xc2,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36, 0x32,0x35,0x33,0x39,0x33,0x39,0x75,0x31,0x39,0x30,0x36,0x38,0x7e,0x68,0x64,0x64, 0xc3,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33, 0x39,0x75,0x30,0x35,0x36,0x35,0x30,0x7e,0x68,0x64,0x64,0xc4,0xff,0xff,0xff,0x13, 0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x74,0x35,0x31,0x37, 0x36,0x30,0x7e,0x68,0x64,0x64,0xc5,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30, 0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x76,0x31,0x35,0x31,0x37,0x34,0x7e,0x68,0x64, 0x64,0xc6,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x52,0x41,0x30,0x39,0x7e,0x68,0x64, 0x64,0xc7,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x68,0x39,0x34,0x31,0x34,0x34,0x7e,0x68,0x64,0x64,0xc8,0xff,0xff,0xff, 0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x74,0x31,0x31, 0x35,0x33,0x37,0x7e,0x68,0x64,0x64,0xc9,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6a,0x38,0x38,0x38,0x33,0x35,0x7e,0x68, 0x64,0x64,0xca,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33, 0x39,0x33,0x39,0x6a,0x34,0x34,0x31,0x39,0x38,0x7e,0x68,0x64,0x64,0xcb,0xff,0xff, 0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x73,0x30, 0x39,0x31,0x39,0x30,0x7e,0x68,0x64,0x64,0xcc,0xff,0xff,0xff,0x13,0x0,0x0,0x0, 0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6a,0x30,0x33,0x39,0x35,0x37,0x7e, 0x68,0x64,0x64,0xcd,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35, 0x33,0x39,0x33,0x39,0x73,0x39,0x30,0x32,0x39,0x38,0x7e,0x68,0x64,0x64,0xce,0xff, 0xff,0xff,0x8,0x0,0x0,0x0,0x52,0x41,0x30,0x35,0x7e,0x68,0x64,0x64,0xcf,0xff, 0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x71, 0x35,0x34,0x31,0x32,0x31,0x7e,0x68,0x64,0x64,0xd0,0xff,0xff,0xff,0x13,0x0,0x0, 0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6b,0x32,0x34,0x32,0x33,0x39, 0x7e,0x68,0x64,0x64,0xd1,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32, 0x35,0x33,0x39,0x33,0x39,0x71,0x38,0x30,0x35,0x38,0x32,0x7e,0x68,0x64,0x64,0xd2, 0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39, 0x71,0x37,0x38,0x39,0x34,0x31,0x7e,0x68,0x64,0x64,0xd3,0xff,0xff,0xff,0x13,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6d,0x35,0x38,0x30,0x36, 0x36,0x7e,0x68,0x64,0x64,0xd4,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36, 0x32,0x35,0x33,0x39,0x33,0x39,0x6b,0x35,0x39,0x39,0x32,0x36,0x7e,0x68,0x64,0x64, 0xd5,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33, 0x39,0x71,0x35,0x36,0x37,0x38,0x32,0x7e,0x68,0x64,0x64,0xd6,0xff,0xff,0xff,0x8, 0x0,0x0,0x0,0x52,0x41,0x30,0x31,0x7e,0x68,0x64,0x64,0xd7,0xff,0xff,0xff,0x13, 0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x70,0x34,0x34,0x36, 0x32,0x33,0x7e,0x68,0x64,0x64,0xd8,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30, 0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x72,0x37,0x36,0x38,0x34,0x38,0x7e,0x68,0x64, 0x64,0xd9,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x6e,0x36,0x36,0x37,0x31,0x35,0x7e,0x68,0x64,0x64,0xda,0xff,0xff,0xff, 0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x72,0x31,0x39, 0x39,0x37,0x32,0x7e,0x68,0x64,0x64,0xdb,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x72,0x39,0x38,0x36,0x36,0x33,0x7e,0x68, 0x64,0x64,0xdc,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33, 0x39,0x33,0x39,0x72,0x33,0x35,0x37,0x33,0x35,0x7e,0x68,0x64,0x64,0xdd,0xff,0xff, 0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6e,0x34, 0x34,0x35,0x36,0x31,0x7e,0x68,0x64,0x64,0xde,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x66,0x39,0x39,0x39,0x32,0x31,0xdf, 0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39, 0x77,0x36,0x36,0x37,0x32,0x36,0xe0,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30, 0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x75,0x31,0x39,0x30,0x36,0x38,0xe1,0xff,0xff, 0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x75,0x30, 0x35,0x36,0x35,0x30,0xe2,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32, 0x35,0x33,0x39,0x33,0x39,0x68,0x30,0x38,0x39,0x32,0x34,0xe4,0xff,0xff,0xff,0xf, 0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x68,0x39,0x34,0x31, 0x34,0x34,0xe5,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33, 0x39,0x33,0x39,0x74,0x31,0x31,0x35,0x33,0x37,0xe6,0xff,0xff,0xff,0xf,0x0,0x0, 0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x76,0x32,0x30,0x32,0x30,0x35, 0xe7,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33, 0x39,0x71,0x35,0x34,0x31,0x32,0x31,0xe8,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6b,0x32,0x34,0x32,0x33,0x39,0xe9,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x71, 0x38,0x30,0x35,0x38,0x32,0xea,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36, 0x32,0x35,0x33,0x39,0x33,0x39,0x68,0x37,0x30,0x36,0x35,0x35,0xeb,0xff,0xff,0xff, 0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6a,0x38,0x38, 0x38,0x33,0x35,0xec,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35, 0x33,0x39,0x33,0x39,0x6a,0x34,0x34,0x31,0x39,0x38,0xed,0xff,0xff,0xff,0xf,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x73,0x30,0x39,0x31,0x39, 0x30,0xee,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x77,0x38,0x36,0x39,0x30,0x36,0xef,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x71,0x37,0x38,0x39,0x34,0x31,0xf0, 0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39, 0x6d,0x35,0x38,0x30,0x36,0x36,0xf1,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30, 0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6b,0x35,0x39,0x39,0x32,0x36,0xf2,0xff,0xff, 0xff,0x4,0x0,0x0,0x0,0x52,0x41,0x31,0x37,0xf3,0xff,0xff,0xff,0xf,0x0,0x0, 0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x68,0x34,0x39,0x33,0x32,0x30, 0xf4,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33, 0x39,0x64,0x33,0x32,0x33,0x30,0x38,0xf5,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x62,0x38,0x34,0x36,0x35,0x39,0xf6,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x74, 0x35,0x31,0x37,0x36,0x30,0xf7,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x52,0x41,0x31, 0x33,0xf8,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x76,0x31,0x35,0x31,0x37,0x34,0xf9,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6a,0x30,0x33,0x39,0x35,0x37,0xfa, 0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x52,0x41,0x30,0x39,0xfb,0xff,0xff,0xff,0xf, 0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x73,0x39,0x30,0x32, 0x39,0x38,0xfc,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x52,0x41,0x30,0x35,0xfd,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x71, 0x35,0x36,0x37,0x38,0x32,0xfe,0xff,0xff,0xff,0xb,0x0,0x0,0x0,0x30,0x35,0x31, 0x33,0x2d,0x52,0x2d,0x30,0x30,0x35,0x30,0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x30,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x2,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x3,0x0, 0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x4,0x0,0x0,0x0,0x5, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x7,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x8, 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x9,0x0,0x0,0x0, 0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0xa,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0xb,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x31,0xc,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x32,0xd,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x33,0xe,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0xf, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x10,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x36,0x11,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x12,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x13,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x39,0x14,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x30,0x15,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x31,0x16,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x17, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x18,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x34,0x19,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x1a,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x1b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x37,0x1c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x38,0x1d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x39,0x1e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x1f, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x20,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x32,0x21,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x22,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x23,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x35,0x24,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x36,0x25,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x37,0x26,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x27, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x28,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x30,0x29,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x2a,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x2b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x33,0x2c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x34,0x2d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x35,0x2e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x2f, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x30,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x38,0x31,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x32,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x33,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x31,0x34,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x32,0x35,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x33,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x37, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x38,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x36,0x39,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x3a,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x3b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x39,0x3c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x30,0x3d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x31,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x3f, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x40,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x34,0x41,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x42,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x43,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x37,0x44,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x38,0x45,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x39,0x46,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x47, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x48,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x32,0x49,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x4a,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x4b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x35,0x4c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x36,0x4d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x37,0x4e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x4f, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x50,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x30,0x51,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x52,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x53,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x33,0x54,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x34,0x55,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x35,0x56,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x57, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x58,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x38,0x59,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x5a,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x5b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x31,0x5c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x32,0x5d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x33,0x5e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x5f, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x60,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x36,0x61,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x62,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x38,0x63,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x39,0x64,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x30,0x30,0x65,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x30,0x31,0x66,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x30,0x32,0x67,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30, 0x33,0x68,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34, 0x69,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x35,0x6a, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x36,0x6b,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x37,0x6c,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x38,0x6d,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x39,0x6e,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x30,0x6f,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x31,0x70,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x32,0x71,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x31,0x33,0x72,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x31,0x34,0x73,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x31,0x35,0x74,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x31,0x36,0x75,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x31,0x37,0x76,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x31,0x38,0x77,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x31, 0x39,0x78,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x30, 0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x31,0x7a, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x7b,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x7c,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x7d,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x7e,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x7f,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x80,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x81,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x82,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x33,0x30,0x83,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x33,0x31,0x84,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x33,0x32,0x85,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x33,0x33,0x86,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x33,0x34,0x87,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x33, 0x35,0x88,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36, 0x89,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x8a, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x8b,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x8c,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x8d,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x8e,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x8f,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x90,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x91,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x92,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x34,0x36,0x93,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x34,0x37,0x94,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x34,0x38,0x95,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x34,0x39,0x96,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x35,0x30,0x97,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35, 0x31,0x98,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x32, 0x99,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x33,0x9a, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x34,0x9b,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x35,0x9c,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x36,0x9d,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x37,0x9e,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x38,0x9f,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x39,0xa0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x36,0x30,0xa1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x36,0x31,0xa2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x36,0x32,0xa3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x36,0x33,0xa4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x36,0x34,0xa5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x36,0x35,0xa6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x36,0x36,0xa7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x36, 0x37,0xa8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x36,0x38, 0xa9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x36,0x39,0xaa, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x30,0xab,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x31,0xac,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x32,0xad,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x33,0xae,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x34,0xaf,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x35,0xb0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x36,0xb1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x37,0x37,0xb2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x37,0x38,0xb3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x37,0x39,0xb4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x38,0x30,0xb5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x38,0x31,0xb6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x38,0x32,0xb7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38, 0x33,0xb8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x34, 0xb9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x35,0xba, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x36,0xbb,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x37,0xbc,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x38,0xbd,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x39,0xbe,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x39,0x30,0xbf,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x39,0x31,0xc0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x39,0x32,0xc1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x39,0x33,0xc2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x39,0x34,0xc3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x39,0x35,0xc4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x39,0x36,0xc5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x39,0x37,0xc6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x39,0x38,0xc7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x39, 0x39,0xc8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x30, 0xc9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x31,0xca, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x32,0xcb,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x33,0xcc,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x34,0xcd,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x35,0xce,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x36,0xcf,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x37,0xd0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x38,0xd1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x30,0x39,0xd2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x31,0x30,0xd3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x31,0x31,0xd4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x31,0x32,0xd5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x31,0x33,0xd6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x31,0x34,0xd7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x31, 0x35,0xd8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x31,0x36, 0xd9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x31,0x37,0xda, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x31,0x38,0xdb,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x31,0x39,0xdc,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x30,0xdd,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x31,0xde,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x32,0xdf,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x33,0xe0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x34,0xe1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x32,0x35,0xe2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x32,0x36,0xe3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x32,0x37,0xe4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x32,0x38,0xe5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x32,0x39,0xe6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x33,0x30,0xe7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33, 0x31,0xe8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x32, 0xe9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x33,0xea, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x34,0xeb,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x35,0xec,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x36,0xed,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x37,0xee,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x38,0xef,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x39,0xf0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x34,0x30,0xf1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x34,0x31,0xf2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x34,0x32,0xf3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x34,0x33,0xf4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x34,0x34,0xf5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x34,0x35,0xf6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x34,0x36,0xf7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x34, 0x37,0xf8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x34,0x38, 0xf9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x34,0x39,0xfa, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x30,0xfb,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x31,0xfc,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x32,0xfd,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x33,0xfe,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x34,0xff,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x35,0x0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x36,0x1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x35,0x37,0x2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x35,0x38,0x3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x35,0x39,0x4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x36,0x30,0x5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x36,0x31,0x6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x36,0x32,0x7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36, 0x33,0x8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x34, 0x9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x35,0xa, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x36,0xb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x37,0xc,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x38,0xd,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x39,0xe,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x37,0x30,0xf,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x37,0x31,0x10,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x37,0x32,0x11,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x37,0x33,0x12,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x37,0x34,0x13,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x37,0x35,0x14,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x37,0x36,0x15,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x37,0x37,0x16,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x37,0x38,0x17,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x37, 0x39,0x18,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x30, 0x19,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x31,0x1a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x32,0x1b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x33,0x1c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x34,0x1d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x35,0x1e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x36,0x1f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x37,0x20,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x38,0x21,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x38,0x39,0x22,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x39,0x30,0x23,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x39,0x31,0x24,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x39,0x32,0x25,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x39,0x33,0x26,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x39,0x34,0x27,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x39, 0x35,0x28,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x39,0x36, 0x29,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x39,0x37,0x2a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x39,0x38,0x2b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x39,0x39,0x2c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x30,0x2d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x31,0x2e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x32,0x2f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x33,0x30,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x34,0x31,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x30,0x35,0x32,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x30,0x36,0x33,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x30,0x37,0x34,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x30,0x38,0x35,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x30,0x39,0x36,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x31,0x30,0x37,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31, 0x31,0x38,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x32, 0x39,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x33,0x3a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x34,0x3b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x35,0x3c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x36,0x3d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x37,0x3e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x38,0x3f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x39,0x40,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x32,0x30,0x41,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x32,0x31,0x42,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x32,0x32,0x43,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x32,0x33,0x44,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x32,0x34,0x45,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x32,0x35,0x46,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x32,0x36,0x47,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x32, 0x37,0x48,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x32,0x38, 0x49,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x32,0x39,0x4a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x30,0x4b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x31,0x4c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x32,0x4d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x33,0x4e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x34,0x4f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x35,0x50,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x36,0x51,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x33,0x37,0x52,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x33,0x38,0x53,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x33,0x39,0x54,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x34,0x30,0x55,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x34,0x31,0x56,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x34,0x32,0x57,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34, 0x33,0x58,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x34, 0x59,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x35,0x5a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x36,0x5b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x37,0x5c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x38,0x5d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x39,0x5e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x35,0x30,0x5f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x35,0x31,0x60,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x35,0x32,0x61,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x35,0x33,0x62,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x35,0x34,0x63,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x35,0x35,0x64,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x35,0x36,0x65,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x35,0x37,0x66,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x35,0x38,0x67,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x35, 0x39,0x68,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x30, 0x69,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x31,0x6a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x32,0x6b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x33,0x6c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x34,0x6d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x35,0x6e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x36,0x6f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x37,0x70,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x38,0x71,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x36,0x39,0x72,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x37,0x30,0x73,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x37,0x31,0x74,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x37,0x32,0x75,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x37,0x33,0x76,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x37,0x34,0x77,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x37, 0x35,0x78,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x37,0x36, 0x79,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x37,0x37,0x7a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x37,0x38,0x7b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x37,0x39,0x7c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x30,0x7d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x31,0x7e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x32,0x7f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x33,0x80,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x34,0x81,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x38,0x35,0x82,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x38,0x36,0x83,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x38,0x37,0x84,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x38,0x38,0x85,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x38,0x39,0x86,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x39,0x30,0x87,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39, 0x31,0x88,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x32, 0x89,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x33,0x8a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x34,0x8b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x35,0x8c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x36,0x8d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x37,0x8e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x38,0x8f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x39,0x90,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x30,0x30,0x91,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x30,0x31,0x92,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x30,0x32,0x93,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x30,0x33,0x94,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x30,0x34,0x95,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x30,0x35,0x96,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x30,0x36,0x97,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x30, 0x37,0x98,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x30,0x38, 0x99,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x30,0x39,0x9a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x30,0x9b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x31,0x9c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x32,0x9d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x33,0x9e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x34,0x9f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x35,0xa0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x36,0xa1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x31,0x37,0xa2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x31,0x38,0xa3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x31,0x39,0xa4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x32,0x30,0xa5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x32,0x31,0xa6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x32,0x32,0xa7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32, 0x33,0xa8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x34, 0xa9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x35,0xaa, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x36,0xab,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x37,0xac,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x38,0xad,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x39,0xae,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x33,0x30,0xaf,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x33,0x31,0xb0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x33,0x32,0xb1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x33,0x33,0xb2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x33,0x34,0xb3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x33,0x35,0xb4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x33,0x36,0xb5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x33,0x37,0xb6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x33,0x38,0xb7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x33, 0x39,0xb8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x30, 0xb9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x31,0xba, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x32,0xbb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x33,0xbc,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x34,0xbd,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x35,0xbe,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x36,0xbf,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x37,0xc0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x38,0xc1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x34,0x39,0xc2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x35,0x30,0xc3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x35,0x31,0xc4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x35,0x32,0xc5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x35,0x33,0xc6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x35,0x34,0xc7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x35, 0x35,0xc8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x35,0x36, 0xc9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x35,0x37,0xca, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x35,0x38,0xcb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x35,0x39,0xcc,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x30,0xcd,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x31,0xce,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x32,0xcf,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x33,0xd0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x34,0xd1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x36,0x35,0xd2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x36,0x36,0xd3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x36,0x37,0xd4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x36,0x38,0xd5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x36,0x39,0xd6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x37,0x30,0xd7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37, 0x31,0xd8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x32, 0xd9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x33,0xda, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x34,0xdb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x35,0xdc,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x36,0xdd,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x37,0xde,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x38,0xdf,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x39,0xe0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x38,0x30,0xe1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x38,0x31,0xe2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x38,0x32,0xe3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x38,0x33,0xe4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x38,0x34,0xe5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x38,0x35,0xe6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x38,0x36,0xe7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x38, 0x37,0xe8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x38,0x38, 0xe9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x38,0x39,0xea, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x30,0xeb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x31,0xec,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x32,0xed,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x33,0xee,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x34,0xef,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x35,0xf0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x36,0xf1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x39,0x37,0xf2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x39,0x38,0xf3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x39,0x39,0xf4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x30,0x30,0xf5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x30,0x31,0xf6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x30,0x32,0xf7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30, 0x33,0xf8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x34, 0xf9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x35,0xfa, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x36,0xfb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x37,0xfc,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x38,0xfd,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x39,0xfe,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x31,0x30,0xff,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x31,0x31,0x0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x31,0x32,0x1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x31,0x33,0x2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x31,0x34,0x3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x31,0x35,0x4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x31,0x36,0x5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x31,0x37,0x6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x31,0x38,0x7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x31, 0x39,0x8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x30, 0x9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x31,0xa, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x32,0xb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x33,0xc,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x34,0xd,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x35,0xe,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x36,0xf,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x37,0x10,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x38,0x11,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x32,0x39,0x12,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x33,0x30,0x13,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x33,0x31,0x14,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x33,0x32,0x15,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x33,0x33,0x16,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x33,0x34,0x17,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x33, 0x35,0x18,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x33,0x36, 0x19,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x33,0x37,0x1a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x33,0x38,0x1b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x33,0x39,0x1c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x30,0x1d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x31,0x1e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x32,0x1f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x33,0x20,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x34,0x21,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x34,0x35,0x22,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x34,0x36,0x23,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x34,0x37,0x24,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x34,0x38,0x25,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x34,0x39,0x26,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x35,0x30,0x27,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35, 0x31,0x28,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x32, 0x29,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x33,0x2a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x34,0x2b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x35,0x2c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x36,0x2d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x37,0x2e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x38,0x2f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x39,0x30,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x36,0x30,0x31,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x36,0x31,0x32,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x36,0x32,0x33,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x36,0x33,0x34,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x36,0x34,0x35,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x36,0x35,0x36,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x36,0x36,0x37,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x36, 0x37,0x38,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x36,0x38, 0x39,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x36,0x39,0x3a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x30,0x3b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x31,0x3c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x32,0x3d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x33,0x3e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x34,0x3f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x35,0x40,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x36,0x41,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x37,0x37,0x42,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x37,0x38,0x43,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x37,0x39,0x44,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x38,0x30,0x45,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x38,0x31,0x46,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x38,0x32,0x47,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38, 0x33,0x48,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x34, 0x49,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x35,0x4a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x36,0x4b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x37,0x4c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x38,0x4d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x39,0x4e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x39,0x30,0x4f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x39,0x31,0x50,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x39,0x32,0x51,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x39,0x33,0x52,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x39,0x34,0x53,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x39,0x35,0x54,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x39,0x36,0x55,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x39,0x37,0x56,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x39,0x38,0x57,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x39, 0x39,0x58,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x30, 0x59,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x31,0x5a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x32,0x5b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x33,0x5c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x34,0x5d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x35,0x5e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x36,0x5f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x37,0x60,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x38,0x61,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x30,0x39,0x62,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x31,0x30,0x63,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x31,0x31,0x64,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x31,0x32,0x65,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x31,0x33,0x66,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x31,0x34,0x67,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x31, 0x35,0x68,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x31,0x36, 0x69,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x31,0x37,0x6a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x31,0x38,0x6b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x31,0x39,0x6c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x30,0x6d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x31,0x6e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x32,0x6f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x33,0x70,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x34,0x71,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x32,0x35,0x72,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x32,0x36,0x73,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x32,0x37,0x74,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x32,0x38,0x75,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x32,0x39,0x76,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x33,0x30,0x77,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33, 0x31,0x78,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x32, 0x79,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x33,0x7a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x34,0x7b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x35,0x7c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x36,0x7d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x37,0x7e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x38,0x7f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x39,0x80,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x34,0x30,0x81,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x34,0x31,0x82,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x34,0x32,0x83,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x34,0x33,0x84,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x34,0x34,0x85,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x34,0x35,0x86,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x34,0x36,0x87,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x34, 0x37,0x88,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x34,0x38, 0x89,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x34,0x39,0x8a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x30,0x8b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x31,0x8c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x32,0x8d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x33,0x8e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x34,0x8f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x35,0x90,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x36,0x91,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x35,0x37,0x92,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x35,0x38,0x93,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x35,0x39,0x94,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x36,0x30,0x95,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x36,0x31,0x96,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x36,0x32,0x97,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36, 0x33,0x98,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x34, 0x99,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x35,0x9a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x36,0x9b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x37,0x9c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x38,0x9d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x39,0x9e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x37,0x30,0x9f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x37,0x31,0xa0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x37,0x32,0xa1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x37,0x33,0xa2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x37,0x34,0xa3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x37,0x35,0xa4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x37,0x36,0xa5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x37,0x37,0xa6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x37,0x38,0xa7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x37, 0x39,0xa8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x30, 0xa9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x31,0xaa, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x32,0xab,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x33,0xac,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x34,0xad,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x35,0xae,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x36,0xaf,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x37,0xb0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x38,0xb1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x38,0x39,0xb2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x39,0x30,0xb3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x39,0x31,0xb4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x39,0x32,0xb5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x39,0x33,0xb6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x39,0x34,0xb7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x39, 0x35,0xb8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x39,0x36, 0xb9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x39,0x37,0xba, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x39,0x38,0xbb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x39,0x39,0xbc,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x30,0xbd,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x31,0xbe,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x32,0xbf,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x33,0xc0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x34,0xc1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x30,0x35,0xc2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x30,0x36,0xc3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x30,0x37,0xc4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x30,0x38,0xc5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x30,0x39,0xc6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x31,0x30,0xc7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31, 0x31,0xc8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x32, 0xc9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x33,0xca, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x34,0xcb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x35,0xcc,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x36,0xcd,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x37,0xce,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x38,0xcf,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x39,0xd0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x32,0x30,0xd1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x32,0x31,0xd2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x32,0x32,0xd3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x32,0x33,0xd4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x32,0x34,0xd5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x32,0x35,0xd6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x32,0x36,0xd7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x32, 0x37,0xd8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x32,0x38, 0xd9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x32,0x39,0xda, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x30,0xdb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x31,0xdc,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x32,0xdd,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x33,0xde,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x34,0xdf,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x35,0xe0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x36,0xe1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x33,0x37,0xe2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x33,0x38,0xe3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x33,0x39,0xe4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x34,0x30,0xe5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x34,0x31,0xe6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x34,0x32,0xe7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34, 0x33,0xe8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x34, 0xe9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x35,0xea, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x36,0xeb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x37,0xec,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x38,0xed,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x39,0xee,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x35,0x30,0xef,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x35,0x31,0xf0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x35,0x32,0xf1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x35,0x33,0xf2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x35,0x34,0xf3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x35,0x35,0xf4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x35,0x36,0xf5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x35,0x37,0xf6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x35,0x38,0xf7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x35, 0x39,0xf8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x30, 0xf9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x31,0xfa, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x32,0xfb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x33,0xfc,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x34,0xfd,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x35,0xfe,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x36,0xff,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x37,0x0,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x38,0x1,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x36,0x39,0x2,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x37,0x30,0x3,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x37,0x31,0x4,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x37,0x32,0x5,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x37,0x33,0x6,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x37,0x34,0x7,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x37, 0x35,0x8,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x37,0x36, 0x9,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x37,0x37,0xa, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x37,0x38,0xb,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x37,0x39,0xc,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x30,0xd,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x31,0xe,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x32,0xf,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x33,0x10,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x34,0x11,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x38,0x35,0x12,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x38,0x36,0x13,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x38,0x37,0x14,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x38,0x38,0x15,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x38,0x39,0x16,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x39,0x30,0x17,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39, 0x31,0x18,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x32, 0x19,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x33,0x1a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x34,0x1b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x35,0x1c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x36,0x1d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x37,0x1e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x38,0x1f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x39,0x20,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x30,0x30,0x21,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x30,0x31,0x22,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x30,0x32,0x23,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x30,0x33,0x24,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x30,0x34,0x25,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x30,0x35,0x26,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x30,0x36,0x27,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x30, 0x37,0x28,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x30,0x38, 0x29,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x30,0x39,0x2a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x30,0x2b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x31,0x2c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x32,0x2d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x33,0x2e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x34,0x2f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x35,0x30,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x36,0x31,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x31,0x37,0x32,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x31,0x38,0x33,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x31,0x39,0x34,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x32,0x30,0x35,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x32,0x31,0x36,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x32,0x32,0x37,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32, 0x33,0x38,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x34, 0x39,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x35,0x3a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x36,0x3b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x37,0x3c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x38,0x3d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x39,0x3e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x33,0x30,0x3f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x33,0x31,0x40,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x33,0x32,0x41,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x33,0x33,0x42,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x33,0x34,0x43,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x33,0x35,0x44,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x33,0x36,0x45,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x33,0x37,0x46,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x33,0x38,0x47,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x33, 0x39,0x48,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x30, 0x49,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x31,0x4a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x32,0x4b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x33,0x4c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x34,0x4d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x35,0x4e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x36,0x4f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x37,0x50,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x38,0x51,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x34,0x39,0x52,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x35,0x30,0x53,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x35,0x31,0x54,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x35,0x32,0x55,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x35,0x33,0x56,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x35,0x34,0x57,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x35, 0x35,0x58,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x35,0x36, 0x59,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x35,0x37,0x5a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x35,0x38,0x5b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x35,0x39,0x5c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x30,0x5d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x31,0x5e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x32,0x5f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x33,0x60,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x34,0x61,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x36,0x35,0x62,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x36,0x36,0x63,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x36,0x37,0x64,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x36,0x38,0x65,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x36,0x39,0x66,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x37,0x30,0x67,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37, 0x31,0x68,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x32, 0x69,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x33,0x6a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x34,0x6b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x35,0x6c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x36,0x6d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x37,0x6e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x38,0x6f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x39,0x70,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x38,0x30,0x71,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x38,0x31,0x72,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x38,0x32,0x73,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x38,0x33,0x74,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x38,0x34,0x75,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x38,0x35,0x76,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x38,0x36,0x77,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x38, 0x37,0x78,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x38,0x38, 0x79,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x38,0x39,0x7a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x30,0x7b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x31,0x7c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x32,0x7d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x33,0x7e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x34,0x7f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x35,0x80,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x36,0x81,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x39,0x37,0x82,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x39,0x38,0x83,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x39,0x39,0x84,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x30,0x30,0x85,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x30,0x31,0x86,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x30,0x32,0x87,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30, 0x33,0x88,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x34, 0x89,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x35,0x8a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x36,0x8b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x37,0x8c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x38,0x8d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x39,0x8e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x31,0x30,0x8f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x31,0x31,0x90,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x31,0x32,0x91,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x39,0x31,0x33,0x92,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x31,0x34,0x93,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x39,0x31,0x35,0x94,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x31,0x36,0x95,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x31,0x37,0x96,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x31,0x38,0x97,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x31, 0x39,0x98,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x30, 0x99,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x31,0x9a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x32,0x9b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x33,0x9c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x34,0x9d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x35,0x9e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x36,0x9f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x37,0xa0,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x38,0xa1,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x39,0x32,0x39,0xa2,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x33,0x30,0xa3,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x39,0x33,0x31,0xa4,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x33,0x32,0xa5,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x33,0x33,0xa6,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x33,0x34,0xa7,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x33, 0x35,0xa8,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x33,0x36, 0xa9,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x33,0x37,0xaa, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x33,0x38,0xab,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x33,0x39,0xac,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x30,0xad,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x31,0xae,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x32,0xaf,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x33,0xb0,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x34,0xb1,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x39,0x34,0x35,0xb2,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x34,0x36,0xb3,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x39,0x34,0x37,0xb4,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x34,0x38,0xb5,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x34,0x39,0xb6,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x35,0x30,0xb7,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35, 0x31,0xb8,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x32, 0xb9,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x33,0xba, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x34,0xbb,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x35,0xbc,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x36,0xbd,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x37,0xbe,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x38,0xbf,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x39,0xc0,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x36,0x30,0xc1,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x39,0x36,0x31,0xc2,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x36,0x32,0xc3,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x39,0x36,0x33,0xc4,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x36,0x34,0xc5,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x36,0x35,0xc6,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x36,0x36,0xc7,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x36, 0x37,0xc8,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x36,0x38, 0xc9,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x36,0x39,0xcd, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x33,0xce,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x34,0xd1,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x37,0xd2,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x38,0xd3,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x39,0xd4,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x38,0x30,0xd5,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x38,0x31,0xd6,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x39,0x38,0x32,0xd7,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x38,0x33,0xd8,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x39,0x38,0x34,0xd9,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x38,0x35,0xda,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x38,0x36,0xdb,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x38,0x37,0xdc,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x38, 0x38,0xdd,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x38,0x39, 0xde,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x30,0xdf, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x31,0xe0,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x32,0xe1,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x33,0xe2,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x34,0xe5,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x37,0xe7,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x39,0xe9,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x30,0x31,0xef,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x30,0x37,0xf0,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x30,0x38,0xf2,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x30,0xf6,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x34,0xf7,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x35,0xf8,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x36,0xf9,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x37,0xfa,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x38,0xfb,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x39,0xfc,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x30,0xfd,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x31,0xfe,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x32,0xff,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x33,0x0,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x34,0x1,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x35,0x2,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x36,0x3,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x37,0x4,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x38,0x5,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x39,0x6,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x30,0x7,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x31,0x8,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x32,0x9,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x33,0xa,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x34,0xb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x35,0xc,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x36,0xd,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x37,0xe,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x38,0xf,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x39,0x10,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x30,0x11,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x31,0x12,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x32,0x13,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x33,0x15,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x35,0x16,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x36,0x17,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x37,0x18,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x38,0x19,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x39,0x20,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x35,0x36,0x22,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x35,0x38,0x2b,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x36,0x37,0x2f,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x37,0x31,0x30,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x37,0x32,0x3e,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x38,0x36,0x41,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x38,0x39,0x43,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x39,0x31,0x44,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x39,0x32,0x4a,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x39,0x38,0x4c,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x30,0x30,0x53,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x30,0x37,0x57,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x31,0x31,0x59,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x31,0x33,0x62,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x32,0x32,0x66,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x32,0x36,0x68,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x32,0x38,0x6d,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x33,0x33,0x75,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x34,0x31,0x76,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x34,0x32,0x7b,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x34,0x37,0x82,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x35,0x34,0x86,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x35,0x38,0x95,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x37,0x33,0x97,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x37,0x35,0x9c,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x38,0x30,0xa7,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x39,0x31,0xa8,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x39,0x32,0xae,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x39,0x38,0xb1,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x30,0x31,0xb4,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x30,0x34,0xbb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x31,0x31,0xbe,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x31,0x34,0xc0,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x31,0x36,0xc9,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x35,0xca,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x36,0xcb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x37,0xcc,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x38,0xcd,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x39,0xce,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x30,0xcf,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x31,0xd2,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x34,0xd3,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x35,0xd4,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x36,0xd5,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x37,0xd6,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x38,0xd7,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x39,0xd8,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x30,0xd9,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x31,0xda,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x32,0xdb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x33,0xdc,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x34,0xdd,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x35,0xde,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x36,0xdf,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x37,0xe0,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x38,0xe1,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x39,0xe2,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x30,0xe3,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x31,0xe4,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x32,0xe5,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x33,0xe6,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x34,0xe7,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x35,0xe8,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x36,0xe9,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x37,0xea,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x38,0xeb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x39,0xec,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x30,0xed,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x31,0xee,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x32,0xef,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x33,0xf0,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x34,0xf1,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x35,0xf2,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x36,0xf3,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x37,0xf4,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x38,0xf5,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x39,0xf6,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x30,0xf7,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x31,0xf8,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x32,0xf9,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x33,0xfa,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x34,0xfb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x35,0xfc,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x36,0xfd,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x37,0xfe,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x38,0xff,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x39,0x0,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x30,0x1,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x31,0x2,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x32,0x3,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x33,0x4,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x34,0x5,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x35,0x6,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x36,0x7,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x37,0x8,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x38,0x9,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x39,0xa,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x30,0xb,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x31,0xc,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x32,0xd,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x33,0xe,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x34,0xf,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x35,0x10,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x36,0x11,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x37,0x12,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x38,0x13,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x39,0x14,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x30,0x15,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x31,0x16,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x32,0x17,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x33,0x18,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x34,0x19,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x35,0x1a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x36,0x1b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x37,0x1c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x38,0x1d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x39,0x1e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x30,0x1f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x31,0x20,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x32,0x21,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x33,0x22,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x34,0x23,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x35,0x24,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x36,0x25,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x37,0x26,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x38,0x27,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x39,0x28,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x30,0x29,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x31,0x2a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x32,0x2b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x33,0x2c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x34,0x2d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x35,0x2e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x36,0x2f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x37,0x30,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x38,0x31,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x39,0x32,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x30,0x33,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x31,0x34,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x32,0x35,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x33,0x36,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x34,0x37,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x35,0x38,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x36,0x39,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x37,0x3a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x38,0x3b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x39,0x3c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x30,0x3d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x31,0x3e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x32,0x3f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x33,0x40,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x34,0x41,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x35,0x42,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x36,0x43,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x37,0x44,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x38,0x45,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x39,0x46,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x30,0x47,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x31,0x48,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x32,0x49,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x33,0x4a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x34,0x4b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x35,0x4c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x36,0x4d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x37,0x4e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x38,0x4f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x39,0x51,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x31,0x52,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x32,0x53,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x33,0x54,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x34,0x55,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x35,0x56,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x36,0x57,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x37,0x58,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x38,0x59,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x39,0x5a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x30,0x5b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x31,0x5c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x32,0x5d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x33,0x5e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x34,0x5f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x35,0x60,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x36,0x61,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x37,0x62,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x38,0x63,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x39,0x64,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x30,0x65,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x31,0x66,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x32,0x67,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x33,0x68,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x34,0x69,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x35,0x6a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x36,0x6b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x37,0x6c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x38,0x6d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x39,0x6e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x30,0x6f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x31,0x70,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x32,0x71,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x33,0x72,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x34,0x73,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x35,0x74,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x36,0x76,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x38,0x77,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x39,0x78,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x30,0x79,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x31,0x7a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x32,0x7b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x33,0x7c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x34,0x7e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x36,0x7f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x37,0x80,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x38,0x81,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x39,0x82,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x30,0x83,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x31,0x84,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x32,0x86,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x34,0x87,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x35,0x88,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x36,0x89,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x37,0x8a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x38,0x8b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x39,0x8c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x30,0x8e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x32,0x8f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x33,0x90,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x34,0x91,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x35,0x92,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x36,0x93,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x37,0x95,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x39,0x96,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x30,0x97,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x31,0x98,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x32,0x99,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x33,0x9a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x34,0x9b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x35,0x9d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x37,0x9e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x38,0x9f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x39,0xa0,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x30,0xa1,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x31,0xa2,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x32,0xa5,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x35,0xa6,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x36,0xa7,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x37,0xa8,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x38,0xa9,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x39,0xaa,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x30,0xab,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x31,0xad,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x33,0xae,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x34,0xaf,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x35,0xb0,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x36,0xb1,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x37,0xb2,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x38,0xb3,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x39,0xb5,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x31,0xb6,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x32,0xb7,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x33,0xb9,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x35,0xba,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x36,0xbb,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x37,0xbc,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x38,0xbd,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x39,0xbe,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x37,0x30,0xc0,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x37,0x32,0xc1,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x37,0x33,0xc2,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x37,0x34,0xc3,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x37,0x35,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x0,0x0,0x64,0x61,0x74,0x61,0x1,0x0,0x0,0x0,0x8,0x0,0x0, 0x0,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x72,0x62,0x64,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x62,0x61,0x72,0x6e, 0x4,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4,0x1,0x16,0x0,0x0,0x0,0x0,0x5d,0x5,0x0,0x0,0x6c,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x6e,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x70,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x72,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x74,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x76,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x78,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x7b,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x7e,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x80,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x81,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x82,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x83,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x84,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x85,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x86,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x87,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x88,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x89,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x8a,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x8b,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x8c,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x8d,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x8e,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x8f,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x90,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x91,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x92,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x93,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x94,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x95,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x96,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x97,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x98,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x99,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x9a,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x9b,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x9c,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x9d,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xbd,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xbe,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc0,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xc1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc2,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xc3,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc4,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xc5,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc6,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xc7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc8,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xc9,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xca,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xcb,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xcc,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xcd,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xce,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xcf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xd0,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xd1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xd2,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xd3,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xd4,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xd5,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xd6,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xd7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xd8,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xd9,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xda,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xdb,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xdc,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xdd,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x61,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x99,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x19,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x1d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x37,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x53,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x55,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x5f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x67,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x6b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x6d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x6f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x77,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x7f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x81,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x83,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x87,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x8d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x91,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x93,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x99,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xa3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xab,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xc1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xc5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xcd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xe5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xe9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x15,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x19,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x1d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x21,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x35,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x49,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x53,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x55,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x5f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x61,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x65,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x67,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x69,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x6b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x6d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x77,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x7d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x7f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x81,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x83,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x87,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x8d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x8f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x91,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x93,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x99,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x9b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x9d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xa3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xc7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xcd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xe5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xe9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x15,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x19,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x1d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x21,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x35,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x37,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x43,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x49,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x4b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x53,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x5d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x5f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x61,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x65,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x6b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x6d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x77,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x7d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x81,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x83,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x87,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x8d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x8f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x91,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x93,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x99,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x9b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x9d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xa3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xab,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xc1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xc7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xce,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xd4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xda,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xdc,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xde,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xe2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xf2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x16,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x18,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x20,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x44,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x62,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x86,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xae,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xb4,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xbe,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xcd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xcf,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xd7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xd9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xdb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xe9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xeb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x19,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x21,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x35,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x43,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x49,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x4b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x52,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x54,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x56,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x58,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x5c,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x5e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x60,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x62,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x64,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x66,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x6a,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x6c,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x6e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x70,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x72,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x74,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x77,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x7e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x80,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x84,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x87,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x8e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x90,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x99,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x9b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x9e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xa0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xa6,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xa8,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xaa,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x68, 0x64,0x64,0x48,0x0,0x0,0x0,0x6d,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6c,0xff,0xff,0xff,0x6f,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6e,0xff,0xff,0xff,0x71,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x70,0xff,0xff,0xff,0x73,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x72,0xff,0xff,0xff,0x75,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x74,0xff,0xff,0xff,0x77,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x76,0xff,0xff,0xff,0x79,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x78,0xff,0xff,0xff,0x7d,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7b,0xff,0xff,0xff,0x9e,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd7,0xff,0xff,0xff,0x9f,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd8,0xff,0xff,0xff,0xa0,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd9,0xff,0xff,0xff,0xa1,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xda,0xff,0xff,0xff,0xa2,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdb,0xff,0xff,0xff,0xa3,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdc,0xff,0xff,0xff,0xa5,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8d,0xff,0xff,0xff,0xa6,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8e,0xff,0xff,0xff,0xa7,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x87,0xff,0xff,0xff,0xa8,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8f,0xff,0xff,0xff,0xa9,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x82,0xff,0xff,0xff,0xaa,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x92,0xff,0xff,0xff,0xab,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x88,0xff,0xff,0xff,0xac,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x89,0xff,0xff,0xff,0xad,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x93,0xff,0xff,0xff,0xae,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x83,0xff,0xff,0xff,0xaf,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x84,0xff,0xff,0xff,0xb0,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8c,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x90,0xff,0xff,0xff,0xb2,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x81,0xff,0xff,0xff,0xb3,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x85,0xff,0xff,0xff,0xb4,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x80,0xff,0xff,0xff,0xb5,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x86,0xff,0xff,0xff,0xb6,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8a,0xff,0xff,0xff,0xb7,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x94,0xff,0xff,0xff,0xb8,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd6,0xff,0xff,0xff,0xb9,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8b,0xff,0xff,0xff,0xba,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x91,0xff,0xff,0xff,0xbb,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x95,0xff,0xff,0xff,0xbc,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdd,0xff,0xff,0xff,0xbf,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7f,0xff,0xff,0xff,0xde,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x98,0xff,0xff,0xff,0xdf,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc2,0xff,0xff,0xff,0xe1,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc3,0xff,0xff,0xff,0xe2,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9a,0xff,0xff,0xff,0xe4,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc7,0xff,0xff,0xff,0xe5,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc8,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9b,0xff,0xff,0xff,0xe7,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcf,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd0,0xff,0xff,0xff,0xe9,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd1,0xff,0xff,0xff,0xea,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9c,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc9,0xff,0xff,0xff,0xec,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xca,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcb,0xff,0xff,0xff,0xee,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9d,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd2,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd3,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd4,0xff,0xff,0xff,0xf2,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x97,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbd,0xff,0xff,0xff,0xf4,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc0,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc1,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc4,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbe,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc5,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcc,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc6,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcd,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xce,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd5,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7e,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x47,0x13,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x78, 0x0,0x0,0x0,0xf,0x2,0x0,0x0,0x44,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x92,0x1,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x3,0x0, 0x0,0x11,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x9d,0x1, 0x0,0x0,0x23,0x2,0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55, 0x3,0x0,0x0,0xff,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x1,0x0,0x0, 0x2a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0x15,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x4a,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x2,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x88,0x2,0x0,0x0,0x4b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x13,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x0,0x0, 0x0,0xaa,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x12,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x66, 0x1,0x0,0x0,0x2c,0x2,0x0,0x0,0xba,0x3,0x0,0x0,0x22,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe0,0x2,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3a,0x5, 0x0,0x0,0x31,0x5,0x0,0x0,0xbf,0x3,0x0,0x0,0xc4,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfa,0x2,0x0,0x0,0xed,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x22,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0, 0x0,0x57,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x17,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xf8,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xae,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x5, 0x0,0x0,0x32,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x19,0x2,0x0,0x0,0xee, 0x0,0x0,0x0,0x64,0x5,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc9,0x3,0x0,0x0,0x1e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x31,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xc4,0x3,0x0, 0x0,0xa1,0x2,0x0,0x0,0x5c,0x5,0x0,0x0,0xf5,0x1,0x0,0x0,0xb6,0x5,0x0, 0x0,0x11,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0xbb,0x3, 0x0,0x0,0xa7,0x5,0x0,0x0,0x27,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x22, 0x3,0x0,0x0,0xbc,0x1,0x0,0x0,0x9c,0x1,0x0,0x0,0x24,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x35,0x2,0x0,0x0,0x47,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x31,0x5,0x0,0x0,0x5b,0x5,0x0,0x0,0xbf,0x0,0x0,0x0,0xfc,0x0,0x0, 0x0,0xa1,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x39,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5c,0x2, 0x0,0x0,0xb6,0x1,0x0,0x0,0x77,0x2,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0x55,0x2,0x0,0x0,0xb6,0x0,0x0,0x0,0xee, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe8,0x4,0x0,0x0,0xe,0x0,0x0,0x0, 0x5b,0x2,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x41,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x5,0x0, 0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x80,0x5, 0x0,0x0,0xb6,0x1,0x0,0x0,0xa3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc, 0x3,0x0,0x0,0x6a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x50,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd1,0x1,0x0,0x0, 0x27,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x89,0x5,0x0,0x0,0x10,0x5,0x0, 0x0,0xe,0x5,0x0,0x0,0x13,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x57,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x44,0x0, 0x0,0x0,0xa7,0x5,0x0,0x0,0xab,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x49,0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x42,0x1,0x0,0x0,0xc4,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xe2,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x97,0x1,0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe2, 0x4,0x0,0x0,0x2,0x5,0x0,0x0,0xc4,0x2,0x0,0x0,0x5b,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x99,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb9,0x2,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x39,0x2, 0x0,0x0,0x2a,0x2,0x0,0x0,0x1a,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0xc4,0x2, 0x0,0x0,0xcf,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x54, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x5f,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xa0,0x2,0x0,0x0,0x6b,0x5,0x0,0x0,0xe5,0x4,0x0,0x0,0x1b,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xb2,0x0,0x0,0x0,0x66, 0x3,0x0,0x0,0x93,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x1,0x0,0x0, 0xdf,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0xf8,0x2,0x0, 0x0,0xa5,0x0,0x0,0x0,0x11,0x5,0x0,0x0,0x8f,0x1,0x0,0x0,0xee,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x99,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xba,0x3,0x0,0x0,0xb0,0x5,0x0,0x0,0xef,0x2,0x0,0x0,0x8c,0x2,0x0,0x0, 0x4f,0x1,0x0,0x0,0x2c,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x85,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x3,0x0, 0x0,0x22,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x5,0x0,0x0,0xc0,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x44,0x3,0x0,0x0,0xf4,0x0,0x0,0x0,0x1c, 0x1,0x0,0x0,0x8c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x5,0x0,0x0, 0xec,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0xd9,0x0,0x0, 0x0,0xb4,0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x96,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfb,0x4, 0x0,0x0,0x10,0x5,0x0,0x0,0x84,0x5,0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3d,0x5,0x0,0x0,0xb8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3a,0x5,0x0,0x0,0x33,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0, 0x0,0x34,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x58,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x8,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xae,0x5,0x0,0x0,0xda,0x0,0x0,0x0,0x6c,0x5,0x0,0x0, 0xe4,0x4,0x0,0x0,0xf,0x2,0x0,0x0,0x2b,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x41,0x2,0x0,0x0,0x30,0x3,0x0,0x0,0x2c,0x3,0x0,0x0,0x1e,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0x11,0x3,0x0,0x0,0x27, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x6b,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0xa2,0x0,0x0,0x0,0x73,0x2,0x0, 0x0,0xf5,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0xe2,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbb,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x51,0x0, 0x0,0x0,0xea,0x2,0x0,0x0,0x9a,0x5,0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3c,0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x51,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xce,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x31,0x5,0x0, 0x0,0xfb,0x1,0x0,0x0,0x7a,0x0,0x0,0x0,0xfc,0x1,0x0,0x0,0x5e,0x0,0x0, 0x0,0x5,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0x1b,0x0, 0x0,0x0,0xaf,0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20, 0x2,0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfa,0x4,0x0,0x0, 0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0x94,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x55,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0xb7,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdd,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf0,0x1,0x0,0x0,0xa7,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdf,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x0,0x0, 0x0,0x34,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x3,0x0,0x0,0xaa,0x5, 0x0,0x0,0x5c,0x2,0x0,0x0,0x4e,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb, 0x0,0x0,0x0,0xaa,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1b,0x2,0x0,0x0, 0x58,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x79,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xeb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x4, 0x0,0x0,0xdc,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0x8, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0xea,0x2,0x0,0x0, 0x16,0x1,0x0,0x0,0xe,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x66,0x5,0x0, 0x0,0x2,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xe1,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0x5c,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x9e,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x51,0x0,0x0,0x0,0x9d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x0, 0x0,0x0,0x9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x3,0x0,0x0,0xc7, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0xc9,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x30,0x2,0x0,0x0,0xe,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x18,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab, 0x5,0x0,0x0,0x73,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x19,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x1,0x0,0x0, 0x9a,0x5,0x0,0x0,0xd6,0x4,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xfd,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x31,0x5,0x0,0x0,0xf8,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0xcb,0x0,0x0,0x0,0xb9,0x0, 0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x1c, 0x0,0x0,0x0,0x5c,0x2,0x0,0x0,0x55,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xb6,0x5,0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x23,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0, 0x0,0x7,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x74,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xda,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x22,0x5,0x0,0x0,0x5d,0x1,0x0,0x0, 0x86,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x4f,0x5,0x0,0x0,0x6c,0x5,0x0, 0x0,0xbb,0x1,0x0,0x0,0xd5,0x1,0x0,0x0,0xf,0x0,0x0,0x0,0xa7,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xd5,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1b,0x5,0x0,0x0,0x5,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x49,0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x33,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x0,0x0, 0x0,0xe,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0xe9,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd1,0x2,0x0,0x0,0x3f,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x98,0x2,0x0,0x0,0x2b,0x1,0x0,0x0,0x37,0x5,0x0,0x0,0xeb,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x5f,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x8,0x5,0x0,0x0,0x2e,0x3,0x0,0x0,0xb, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x31,0x5,0x0,0x0, 0x1e,0x2,0x0,0x0,0xb,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x41,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0, 0x0,0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xcc,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x1d,0x0,0x0,0x0,0xbf, 0x3,0x0,0x0,0x47,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x46,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x2,0x0,0x0, 0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x86,0x5,0x0,0x0,0x6a,0x3,0x0, 0x0,0x3f,0x5,0x0,0x0,0xf3,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4d,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0, 0x0,0x0,0xe2,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0xc5, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0xaa,0x0,0x0,0x0, 0xe1,0x4,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x51,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x2,0x0, 0x0,0x55,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0xd8,0x0, 0x0,0x0,0xb2,0x5,0x0,0x0,0xfd,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49, 0x2,0x0,0x0,0x22,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0, 0x56,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x4,0x0,0x0,0x33,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x93,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0xbd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x62,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x25,0x2,0x0,0x0,0x47,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x65,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x79,0x5,0x0, 0x0,0x3e,0x3,0x0,0x0,0x18,0x1,0x0,0x0,0x8f,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x14,0x5,0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9b, 0x3,0x0,0x0,0xf8,0x2,0x0,0x0,0xed,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0xf0,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x93,0x5,0x0,0x0,0xe4,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x78,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x2, 0x0,0x0,0x42,0x2,0x0,0x0,0xd6,0x1,0x0,0x0,0x8a,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0xae,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7c,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8f,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x5,0x0, 0x0,0x13,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0x43,0x0, 0x0,0x0,0xdc,0x4,0x0,0x0,0x53,0x1,0x0,0x0,0xe7,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x34,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0xe2,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x85,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x34,0x2,0x0,0x0,0xe1,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x2a,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x86,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xc6,0x2,0x0,0x0,0x49,0x2,0x0,0x0,0x5e,0x2,0x0,0x0,0x2b, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbb,0x3,0x0,0x0,0x69,0x1,0x0,0x0, 0x57,0x5,0x0,0x0,0x5a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8c,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x11,0x3,0x0, 0x0,0x38,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x45,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0x47,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x97,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1c,0x1, 0x0,0x0,0xce,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0xe2, 0x2,0x0,0x0,0x8f,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x9e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x41,0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x49,0x0,0x0, 0x0,0x71,0x1,0x0,0x0,0xf,0x3,0x0,0x0,0xda,0x0,0x0,0x0,0x61,0x5,0x0, 0x0,0xe7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x44,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0xbb,0x3,0x0,0x0,0x4d, 0x2,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x10,0x4,0x0,0x0, 0x5b,0x5,0x0,0x0,0x14,0x2,0x0,0x0,0xbd,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x28,0x2,0x0,0x0,0xd8,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x2f,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0x5d,0x1, 0x0,0x0,0x6d,0x5,0x0,0x0,0x2f,0x3,0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xea,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3f,0x2,0x0,0x0,0x56,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xab,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe4,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0xc7,0x1,0x0,0x0,0xc9,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x73,0x0,0x0,0x0,0xba,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf8, 0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0xe4,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x6,0x2,0x0,0x0,0xac,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x55,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xba,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf9,0x4, 0x0,0x0,0xbd,0x5,0x0,0x0,0xbc,0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x47,0x5,0x0,0x0,0x2d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x61,0x1,0x0,0x0,0x2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5f,0x0,0x0, 0x0,0x4e,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0x60,0x1, 0x0,0x0,0x5f,0x1,0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac, 0x0,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x20,0x4,0x0,0x0, 0x22,0x5,0x0,0x0,0xc,0x3,0x0,0x0,0xbc,0x1,0x0,0x0,0x3e,0x1,0x0,0x0, 0x8e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0x99,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x99,0x3, 0x0,0x0,0xc3,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x11, 0x1,0x0,0x0,0xa1,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0xb6,0x5,0x0,0x0,0x35, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x2a,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xae,0x5,0x0,0x0,0xaf,0x5,0x0,0x0,0x1c,0x5,0x0,0x0,0xc1,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0x9,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0x86,0x5,0x0,0x0, 0xea,0x2,0x0,0x0,0x56,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7f,0x5,0x0,0x0,0x97,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdc,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x3, 0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x96, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0xc0,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x9b,0x1,0x0,0x0,0xc0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5, 0x0,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x3,0x0,0x0, 0xce,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x2,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xdd,0x4,0x0,0x0,0x33,0x5,0x0,0x0,0x7e,0x0, 0x0,0x0,0x35,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0xba, 0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xef,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x27,0x5,0x0,0x0,0x4e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0, 0x0,0xf1,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x18,0x1, 0x0,0x0,0xb6,0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x21, 0x2,0x0,0x0,0xda,0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0xb2,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0x71,0x3,0x0,0x0,0x5a,0x0,0x0,0x0,0x7a,0x1,0x0,0x0, 0x2b,0x1,0x0,0x0,0x8e,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x3,0x5,0x0,0x0,0x7b,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x5,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0x63,0x2,0x0,0x0,0xaf,0x2, 0x0,0x0,0x93,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0xf3, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0x4a,0x3,0x0,0x0, 0x6a,0x5,0x0,0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x4,0x0, 0x0,0xf7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0xca,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0xea,0x2,0x0,0x0,0xe, 0x3,0x0,0x0,0xd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x13,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb4,0x3,0x0,0x0, 0x6,0x5,0x0,0x0,0x72,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x14,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xad,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x18,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf0,0x1, 0x0,0x0,0xb2,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x74,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x51,0x0,0x0,0x0,0x64, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x9e,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0xc1,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x77,0x5,0x0,0x0,0x10,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x28,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x12, 0x1,0x0,0x0,0x4a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2a,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0, 0x53,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x60,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x3a,0x2,0x0,0x0,0x4d,0x0, 0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0xc4, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x0,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x59,0x3,0x0,0x0,0x62,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x42,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98, 0x1,0x0,0x0,0x57,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x44,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbe,0x5,0x0,0x0, 0xc1,0x5,0x0,0x0,0x66,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x46,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x89,0x5,0x0,0x0,0xc2,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x47,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x5, 0x0,0x0,0xf,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0x52, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x2b,0x3,0x0,0x0, 0x6c,0x2,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x54,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0, 0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0xc4,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x1d,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5f,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x3f,0x3,0x0,0x0,0x57,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0x36,0x2,0x0, 0x0,0xf,0x1,0x0,0x0,0x17,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x63,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5, 0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0xdb, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x5,0x0,0x0,0xed,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x3c,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xc4,0x2,0x0,0x0,0xb7,0x1,0x0,0x0,0x16,0x1,0x0,0x0,0x6b,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0x9,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x7c,0x5,0x0,0x0,0x47,0x3,0x0,0x0,0x10,0x1,0x0,0x0, 0x74,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x52,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x87,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x92,0x2,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x89,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x0,0x0, 0x0,0x16,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf5,0x4,0x0,0x0,0x11,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x38,0x0,0x0,0x0,0x56, 0x3,0x0,0x0,0xb7,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x90,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9,0x0,0x0,0x0, 0x4d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0xec,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x8e,0x5, 0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x76, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0xb7,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x93,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa0,0x2,0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37, 0x5,0x0,0x0,0xf,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x2,0x0,0x0, 0x6c,0x5,0x0,0x0,0x57,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2d,0x3,0x0,0x0,0x3c,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xaf,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6c,0x3, 0x0,0x0,0x8c,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0x87,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xf9,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x36,0x2,0x0,0x0,0x6b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x0,0x0, 0x0,0x1f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0xf2,0x0, 0x0,0x0,0x19,0x5,0x0,0x0,0xbe,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x69, 0x3,0x0,0x0,0xad,0x3,0x0,0x0,0x91,0x1,0x0,0x0,0x6d,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x15,0x3,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x3, 0x0,0x0,0x68,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x5,0x0,0x0,0x10, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0xfd,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0x96,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x3,0x3,0x0,0x0,0x65,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe4, 0x4,0x0,0x0,0x9b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcd,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x1,0x0,0x0, 0x77,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x1,0x0,0x0,0x2a,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x91,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x30,0x2,0x0,0x0,0x5f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x70,0x5,0x0, 0x0,0x42,0x5,0x0,0x0,0xef,0x4,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x37,0x1,0x0,0x0,0x1d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5, 0x5,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x4,0x0,0x0, 0x9e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x56,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x11,0x1,0x0,0x0,0xe0,0x0,0x0,0x0,0xa,0x2,0x0,0x0,0x4e, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x71,0x3,0x0,0x0,0xd5,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x54,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6,0x3,0x0,0x0,0x75,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfa,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc, 0x1,0x0,0x0,0x7b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x5,0x0,0x0, 0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x18,0x0,0x0, 0x0,0x67,0x1,0x0,0x0,0xfe,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfe,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x3, 0x0,0x0,0xf8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x3,0x0,0x0,0x5e, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x4e,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0xdb,0x1,0x0, 0x0,0xf4,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6b,0x1,0x0,0x0,0x8a,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x18,0x3,0x0,0x0,0x85, 0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x5,0x0,0x0, 0xe6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0x38,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0xfb,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x16,0x5,0x0,0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x23,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x24,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbf,0x3,0x0, 0x0,0x64,0x1,0x0,0x0,0x13,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe,0x3,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe, 0x5,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe6,0x4,0x0,0x0, 0xf4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x5f,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x21,0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x92,0x1, 0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x1e, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x22,0x2,0x0,0x0, 0xbb,0x2,0x0,0x0,0x7b,0x2,0x0,0x0,0xa6,0x1,0x0,0x0,0xe2,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2a,0x3,0x0,0x0,0x45,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6a,0x1,0x0,0x0,0x2c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63, 0x5,0x0,0x0,0xf8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x42,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0, 0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x3,0x0,0x0,0x3f,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x1c,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x29,0x3,0x0,0x0,0xf8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x3,0x0, 0x0,0xdc,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x1,0x0,0x0,0xff,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x3,0x0,0x0,0xf5,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xd9,0x4,0x0,0x0,0x7,0x5,0x0,0x0, 0x13,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x4a,0x5,0x0, 0x0,0x96,0x5,0x0,0x0,0xb3,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x2, 0x0,0x0,0x9d,0x1,0x0,0x0,0x89,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x98,0x2,0x0,0x0,0x11,0x5,0x0,0x0,0x7,0x5,0x0,0x0,0x4b,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xa3,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x73,0x2,0x0,0x0,0xea,0x2,0x0,0x0,0x5a,0x5,0x0,0x0,0x22,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x49,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xf8,0x2,0x0,0x0,0x68,0x0,0x0,0x0,0x3d,0x1,0x0,0x0, 0xfd,0x4,0x0,0x0,0xf,0x3,0x0,0x0,0x9e,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x75,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x39,0x2,0x0,0x0,0xe2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x77,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3d,0x5, 0x0,0x0,0xb,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x77,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x79,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd9,0x4,0x0,0x0,0x42,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xaf,0x5,0x0, 0x0,0xec,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x5f,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xa9,0x5,0x0,0x0,0x68,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xd5,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x2f,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0x43,0x5,0x0,0x0, 0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0xcb,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x4,0x0,0x0,0xb,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x95,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa1,0x0,0x0,0x0,0xe7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x96,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0, 0x0,0xa2,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x5,0x0,0x0,0xae,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa0,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x78,0x3,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa5,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x5, 0x0,0x0,0xc4,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x90, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x7d,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x8a,0x2,0x0,0x0,0xba,0x2,0x0,0x0,0x86,0x5,0x0, 0x0,0x74,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x6d,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x6d,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xfb,0x1,0x0,0x0,0xb2,0x0,0x0,0x0,0xa0,0x2,0x0,0x0, 0x36,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x28,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x2b,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0x4b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5d,0x1,0x0,0x0,0x47,0x1,0x0,0x0,0x6f,0x0,0x0,0x0,0x77,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0xfb,0x1,0x0, 0x0,0x73,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x46,0x0,0x0,0x0,0x5,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3e, 0x1,0x0,0x0,0xa0,0x5,0x0,0x0,0x2a,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x49,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xed,0x4,0x0,0x0,0x42,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd7,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7b,0x1, 0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x34, 0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0xe,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x78,0x3,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x46,0x3,0x0, 0x0,0xd1,0x2,0x0,0x0,0xaf,0x2,0x0,0x0,0x9f,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd8,0x4,0x0,0x0,0x6d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf, 0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x1,0x0,0x0, 0x9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x42,0x5,0x0, 0x0,0x47,0x2,0x0,0x0,0x35,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x3, 0x0,0x0,0xcc,0x2,0x0,0x0,0xea,0x4,0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x3c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf1,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x50,0x1,0x0,0x0,0x29,0x0,0x0,0x0,0x31,0x3,0x0,0x0,0x13,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0xc0,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x19,0x3,0x0,0x0,0x9,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb, 0x3,0x0,0x0,0x34,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x2,0x0,0x0, 0xc2,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0xff,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x9,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x81,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3,0x2,0x0,0x0,0x98,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x3,0x0, 0x0,0xe,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0x9,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x2,0x0,0x0,0xfc,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x14,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x28,0x2,0x0,0x0,0x42,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x17,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xed,0x2, 0x0,0x0,0x90,0x2,0x0,0x0,0xbc,0x5,0x0,0x0,0x3b,0x0,0x0,0x0,0x27,0x3, 0x0,0x0,0x64,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xa4, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x37,0x0,0x0,0x0, 0xf,0x2,0x0,0x0,0x5f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1d,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x5,0x0, 0x0,0x56,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x3,0x0,0x0,0xa5,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0,0xe,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2c,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x4b,0x2,0x0,0x0,0xba,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x46,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x3,0x0,0x0,0xd6,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x2a,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x6a, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x64,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0x33,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x86,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x40,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf, 0x3,0x0,0x0,0xab,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x41,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe6,0x4,0x0,0x0, 0xa7,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0x13,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf1,0x2,0x0,0x0,0x4e,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xea,0x4,0x0,0x0,0x12,0x5,0x0,0x0,0x1e,0x3,0x0,0x0,0x2d, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x19,0x2,0x0,0x0,0x11,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc1,0x5,0x0,0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x6c,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x6d,0x5,0x0,0x0,0x27,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0xbe,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x62,0x5,0x0,0x0,0x21,0x2,0x0,0x0, 0xf3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xaa,0x3,0x0,0x0,0xc5,0x1,0x0, 0x0,0xaf,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe4,0x0, 0x0,0x0,0xc9,0x1,0x0,0x0,0xd1,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xa,0x5,0x0,0x0,0xf8,0x2,0x0,0x0,0x85,0x0,0x0,0x0,0x6a, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x75,0x1,0x0,0x0, 0x2f,0x3,0x0,0x0,0xdf,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x62,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x5,0x0, 0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0x8e,0x0, 0x0,0x0,0xed,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x66,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14, 0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x68,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x3,0x0,0x0, 0x6,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0xcf,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0x1f,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0xb2,0x1,0x0,0x0,0xd7,0x0,0x0,0x0,0x46, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0xcc,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0x49,0x2,0x0,0x0,0xb6,0x5,0x0, 0x0,0x82,0x5,0x0,0x0,0x7,0x3,0x0,0x0,0x1e,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xdb,0x1,0x0,0x0,0x32,0x3,0x0,0x0,0x51,0x0,0x0,0x0,0x7b,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x6,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x82,0x5,0x0,0x0,0x91,0x1,0x0,0x0, 0xdc,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x2,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x90,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd2,0x2,0x0,0x0,0x7b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x93,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0, 0x0,0x92,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x84,0x5,0x0,0x0,0x25,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0xea,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0xe1,0x0,0x0,0x0,0x4,0x2,0x0,0x0, 0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0x0,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4,0x3,0x0,0x0,0x97,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa6,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x92,0x2,0x0,0x0,0x25,0x1,0x0,0x0,0x27,0x2,0x0,0x0,0x4e,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf7,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb4,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1b, 0x0,0x0,0x0,0xc3,0x2,0x0,0x0,0xdb,0x1,0x0,0x0,0x11,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0xfe,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb6,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x9c,0x3,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbc,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x11,0x1, 0x0,0x0,0x48,0x1,0x0,0x0,0x3,0x5,0x0,0x0,0x5b,0x5,0x0,0x0,0x36,0x3, 0x0,0x0,0x16,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0xba, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0xb9,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5b,0x3,0x0,0x0,0x50,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb,0x3,0x0,0x0,0x27,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2, 0x0,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc5,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x2,0x0,0x0, 0xd1,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x5,0x0,0x0,0x12,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0xe6,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x56,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xce,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x10,0x4,0x0,0x0,0x44,0x5,0x0,0x0,0x1,0x1,0x0,0x0,0x3c,0x1,0x0,0x0, 0x5e,0x2,0x0,0x0,0x21,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd2,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x2,0x0, 0x0,0x67,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0xb1,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x2,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdc,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6,0x2,0x0,0x0,0xd9,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdd,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf4,0x0, 0x0,0x0,0x79,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0xf4, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x79,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xfd,0x2,0x0,0x0,0x32,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x56,0x2,0x0,0x0,0x5d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24, 0x3,0x0,0x0,0x55,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf3,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x5,0x0,0x0, 0x7a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x46,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0x6,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0x5b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfb,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x90,0x0,0x0,0x0,0xef,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfe,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x5,0x0, 0x0,0xe0,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x1d,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0x15,0x3,0x0,0x0,0xa6, 0x2,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x81,0x0,0x0,0x0, 0x99,0x5,0x0,0x0,0x5,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc0,0x5,0x0,0x0,0xd2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x0, 0x0,0x0,0x1d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x42, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x5,0x0,0x0,0xe0,0x4,0x0,0x0, 0xcf,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x10,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x1,0x0, 0x0,0xbe,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x35,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0xc0,0x1,0x0,0x0,0x19,0x2,0x0,0x0, 0x19,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0xec,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x85,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xbc,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x31,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4d,0x1,0x0, 0x0,0x4b,0x2,0x0,0x0,0xed,0x4,0x0,0x0,0x36,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x3,0x1,0x0,0x0,0xa9,0x1,0x0,0x0,0x3e,0x1,0x0,0x0,0x8c,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x5,0x0,0x0,0xc,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x2f,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x41,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x4b,0x5,0x0,0x0,0xf1,0x4,0x0,0x0,0x6c,0x0,0x0,0x0,0xb7,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xef,0x4,0x0,0x0,0x37,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x66,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x21,0x5,0x0,0x0,0xfe, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf1,0x4,0x0,0x0,0x2d,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0xad,0x5,0x0,0x0,0xed,0x0,0x0, 0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0xf5,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x2,0x0,0x0,0x2b,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x9c,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x53,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x6c,0x5,0x0,0x0,0x1c,0x5,0x0,0x0,0x60,0x2,0x0,0x0,0x16,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x24,0x5,0x0,0x0,0x59,0x3, 0x0,0x0,0x37,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x73, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0x44,0x3,0x0,0x0, 0xd2,0x4,0x0,0x0,0x65,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x60,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x3,0x0, 0x0,0x81,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x4,0x0,0x0,0x24,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0xd1,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x28,0x5,0x0,0x0,0xb6,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf7,0x1,0x0,0x0,0x2a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x69,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x2, 0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x4,0x0,0x0,0x48, 0x5,0x0,0x0,0x28,0x5,0x0,0x0,0x1d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6d,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x43,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6e,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x0,0x0, 0x0,0xc5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x9c,0x0, 0x0,0x0,0x78,0x3,0x0,0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x72,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5, 0x5,0x0,0x0,0x8a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x75,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x2,0x0,0x0, 0x27,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf2,0x4,0x0,0x0,0x20,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x78,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x75,0x0, 0x0,0x0,0x34,0x0,0x0,0x0,0x39,0x5,0x0,0x0,0xf,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x9d,0x5,0x0,0x0,0xf3,0x1,0x0,0x0,0x6c,0x0,0x0,0x0,0x5b, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x8b,0x0,0x0,0x0, 0x4d,0x2,0x0,0x0,0x64,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8e,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x3,0x0, 0x0,0xe,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0xe4,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x79,0x5,0x0,0x0,0x10,0x3,0x0,0x0,0xc2, 0x3,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x92,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb5,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0x8f,0x2,0x0, 0x0,0xf9,0x4,0x0,0x0,0x60,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9a,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x3, 0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x47, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x61,0x2,0x0,0x0, 0x5e,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6a,0x5,0x0, 0x0,0x50,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0xfb,0x4, 0x0,0x0,0x96,0x3,0x0,0x0,0xa5,0x5,0x0,0x0,0x8f,0x5,0x0,0x0,0x37,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x3b,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x26,0x3,0x0,0x0,0x8a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb2,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x67,0x2, 0x0,0x0,0xe,0x1,0x0,0x0,0xc8,0x0,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x8c,0x5,0x0,0x0,0x5f,0x1,0x0,0x0,0x1e, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x97,0x1,0x0,0x0, 0x4d,0x1,0x0,0x0,0x37,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xbc,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0, 0x0,0xbc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0x55,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x3,0x0,0x0,0x32,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0xe0,0x2,0x0,0x0,0xb7,0x5,0x0,0x0, 0xd9,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0x91,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x24,0x3,0x0,0x0,0xa4,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x96,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x37,0x5,0x0,0x0,0xc6,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0x3f,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4,0x3,0x0,0x0,0x5c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xde,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x99, 0x2,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe1,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x1,0x0,0x0, 0xb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x98,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x39,0x3, 0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x2,0x0,0x0,0xc9, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x24,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x22,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x10,0x4,0x0,0x0,0x69,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51, 0x5,0x0,0x0,0xf8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf7,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7a,0x5,0x0,0x0, 0xf4,0x4,0x0,0x0,0xde,0x4,0x0,0x0,0x87,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf8,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0xe4,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x47,0x2,0x0,0x0,0xbf,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfd,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5b,0x2,0x0,0x0,0xd9,0x1,0x0,0x0,0x24,0x3,0x0,0x0,0x15,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2a,0x5,0x0,0x0,0xba,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d, 0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x10,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0, 0xf1,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x46,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0x19,0x3, 0x0,0x0,0x24,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0x86, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x9f,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xaa,0x3,0x0,0x0,0xf6,0x0,0x0, 0x0,0xfc,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xc5,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0xfd,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xb5,0x5,0x0,0x0,0xed,0x4,0x0,0x0,0xc5,0x3,0x0,0x0,0x8f,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0xb4,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x84,0x5,0x0,0x0,0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x45,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x2,0x0, 0x0,0x1a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x6a,0x2, 0x0,0x0,0x36,0x1,0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57, 0x5,0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4e,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x69,0x0,0x0,0x0, 0x45,0x3,0x0,0x0,0xb5,0x5,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb8,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x51,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x0, 0x0,0x0,0x8f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0x81, 0x1,0x0,0x0,0x15,0x3,0x0,0x0,0x36,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x56,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x63,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x57,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0, 0x0,0x56,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xea,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x5,0x0,0x0,0x38,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0xad,0x5,0x0,0x0,0xfa,0x4,0x0,0x0, 0x3c,0x1,0x0,0x0,0x85,0x2,0x0,0x0,0x60,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x62,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc4,0x2,0x0,0x0,0xd1,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6e,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x3, 0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0x92, 0x1,0x0,0x0,0xba,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x79,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7a,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x0,0x0, 0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x7b,0x2, 0x0,0x0,0x43,0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36, 0x3,0x0,0x0,0xc1,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x84,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0, 0x78,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x36,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x2c,0x2,0x0,0x0,0xdd,0x2,0x0,0x0,0xe2, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x67,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x61,0x0,0x0, 0x0,0x86,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0xf5,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x5f,0x2,0x0,0x0,0x70,0x0,0x0,0x0, 0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0xa2,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x60,0x1,0x0,0x0,0xf3,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x1d, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0xae,0x0,0x0,0x0, 0x1e,0x2,0x0,0x0,0x1e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa7,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd1,0x1,0x0, 0x0,0xb2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x3,0x0,0x0,0xc7,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x43,0x5,0x0,0x0,0x9b,0x3,0x0,0x0,0x3d, 0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x5,0x0,0x0, 0xea,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x3,0x0,0x0,0x13,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x55,0x2,0x0,0x0,0x79,0x3, 0x0,0x0,0xd,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x1,0x0,0x0,0x48, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x11,0x5,0x0,0x0, 0xbf,0x3,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc4,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x5,0x0, 0x0,0x72,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x2a,0x2, 0x0,0x0,0x7,0x1,0x0,0x0,0xec,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xca,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b, 0x0,0x0,0x0,0x81,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd0,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xdc,0x4,0x0,0x0, 0x84,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x45,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd1,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x59,0x2,0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd4,0x2, 0x0,0x0,0x37,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x67, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x1,0x0,0x0,0xb2,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb,0x1,0x0,0x0,0x72,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb, 0x1,0x0,0x0,0x2,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe3,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x42,0x3,0x0,0x0, 0x21,0x3,0x0,0x0,0xaa,0x5,0x0,0x0,0xf3,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe6,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x6a,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0xd4,0x4,0x0,0x0,0x86,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xb1,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x11,0x3,0x0,0x0,0xc3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xef,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x25,0x0,0x0,0x0,0xdf,0x1,0x0,0x0,0x3a,0x3,0x0,0x0,0x61,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x62,0x5,0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x9c,0x1,0x0,0x0,0x30,0x5,0x0,0x0,0x16,0x3,0x0,0x0,0x55,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x8c,0x0,0x0,0x0,0x86, 0x1,0x0,0x0,0xe6,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf6,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x65,0x1,0x0,0x0, 0x85,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf7,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xaa,0x1,0x0,0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfe,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xbb,0x3, 0x0,0x0,0x53,0x1,0x0,0x0,0xe4,0x4,0x0,0x0,0x5,0x5,0x0,0x0,0xab,0x0, 0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x33, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x4a,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0xb,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf7,0x1,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x38, 0x0,0x0,0x0,0xdf,0x1,0x0,0x0,0x15,0x2,0x0,0x0,0xe,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x8e,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe3,0x4, 0x0,0x0,0x58,0x1,0x0,0x0,0x6,0x3,0x0,0x0,0x70,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0xad,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x69,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x19,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x2,0x0, 0x0,0xb2,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x5,0x0,0x0,0x4c,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x2e,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x22,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x1,0x3,0x0,0x0,0x75,0x1,0x0,0x0,0x14,0x5,0x0,0x0,0xd6,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x4,0x0,0x0,0xc,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x1d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x33,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x2b,0x3,0x0,0x0,0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x40,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x2,0x0, 0x0,0x56,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0x50,0x1, 0x0,0x0,0x70,0x2,0x0,0x0,0x74,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x44,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5f, 0x1,0x0,0x0,0xc3,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4d,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x1,0x0,0x0, 0x4b,0x0,0x0,0x0,0x16,0x3,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4e,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x1a,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0x65,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0xe2,0x0,0x0,0x0,0xaa,0x2, 0x0,0x0,0x14,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x3,0x0,0x0,0xc3, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x75,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x14,0x2,0x0,0x0,0xe7,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5,0x3,0x0,0x0,0xfd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb, 0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x61,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x0,0x0,0x0, 0x43,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x54,0x3,0x0, 0x0,0x24,0x2,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x69,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2, 0x0,0x0,0xc0,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x80, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0xa8,0x5,0x0,0x0, 0xdd,0x4,0x0,0x0,0x51,0x5,0x0,0x0,0x17,0x3,0x0,0x0,0x45,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x85,0x2,0x0,0x0,0xff,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x40,0x0,0x0,0x0,0x2c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf1, 0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0x73,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x42,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x82,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x5d,0x1,0x0,0x0,0x2b,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x83,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x3, 0x0,0x0,0x34,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x94, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x8b,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x56,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x20,0x3,0x0,0x0,0x25,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x92,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a, 0x5,0x0,0x0,0x31,0x5,0x0,0x0,0xba,0x5,0x0,0x0,0x76,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x52,0x1,0x0,0x0,0x46,0x1,0x0,0x0, 0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0xaa,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x3b,0x0,0x0,0x0,0x9b,0x3, 0x0,0x0,0xee,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x86, 0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa1,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfd,0x0,0x0,0x0,0x2a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa2,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x0,0x0, 0x0,0x4,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x5,0x0,0x0,0x4a,0x3, 0x0,0x0,0x42,0x1,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xab,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x65, 0x1,0x0,0x0,0x1c,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x70,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbb,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6,0x3,0x0,0x0,0xc3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbe,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x5, 0x0,0x0,0x7a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x13, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x1,0x0,0x0,0x74,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x41,0x2,0x0,0x0,0xe9,0x2,0x0,0x0,0x77,0x3,0x0,0x0,0x22,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x2,0x0,0x0,0xde,0x4,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x14,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x99,0x3,0x0,0x0,0x59,0x5,0x0,0x0,0xbb,0x1,0x0,0x0,0xc3,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xde,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x4,0x0, 0x0,0x26,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x90,0x5, 0x0,0x0,0xf4,0x0,0x0,0x0,0xea,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf2,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1e, 0x3,0x0,0x0,0xb9,0x5,0x0,0x0,0x1f,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdb,0x4,0x0,0x0,0xe9,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x14,0x2,0x0,0x0,0x2f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf8,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x5, 0x0,0x0,0x6b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x57, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x5,0x0,0x0,0xb1,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xfc,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb9, 0x0,0x0,0x0,0x38,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x3c,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0xb2,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xd2,0x2,0x0,0x0,0x49,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xb3,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x57,0x2,0x0,0x0,0xd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x40,0x3,0x0,0x0,0x5c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1c,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x77,0x0,0x0, 0x0,0x1e,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0xc1,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf5,0x4,0x0,0x0,0x16,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x22,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30, 0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x24,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x48,0x2,0x0,0x0, 0xbc,0x1,0x0,0x0,0x8e,0x5,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2d,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7f,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x31,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb6,0x5, 0x0,0x0,0xb9,0x3,0x0,0x0,0x37,0x5,0x0,0x0,0x2b,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0x59,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x38,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x54,0x5,0x0,0x0,0x31,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x39,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x0,0x0, 0x0,0xe2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x2,0x0,0x0,0x89,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0xd4,0x4,0x0,0x0,0x52,0x2,0x0,0x0, 0xa6,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x2,0x0,0x0,0x6a,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x26,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4a,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe2,0x4,0x0,0x0,0x31,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x54,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4c,0x1,0x0, 0x0,0x45,0x3,0x0,0x0,0x4d,0x1,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x70,0x3,0x0,0x0,0x68,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x58,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18, 0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x60,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x43,0x3,0x0,0x0, 0xe6,0x2,0x0,0x0,0xde,0x4,0x0,0x0,0x57,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x69,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x31,0x5,0x0,0x0,0xd1,0x2,0x0,0x0,0x61,0x2,0x0,0x0,0x61,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x2,0x0,0x0,0x11,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x70,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf0,0x1,0x0,0x0,0xb2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x71,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x3,0x0, 0x0,0x29,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0x39,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0,0x0,0xc3,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x68,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x78,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x24,0x3,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x82,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x3, 0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87, 0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0xe9, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0xf6,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x26,0x3,0x0,0x0,0xe,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x98,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x68, 0x5,0x0,0x0,0x2c,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x47,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0xe8,0x1,0x0,0x0, 0xa4,0x3,0x0,0x0,0xf7,0x4,0x0,0x0,0xe9,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9c,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x2b,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xc,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x2,0x0,0x0,0xef,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6c,0x2,0x0,0x0,0x6b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa6,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x41,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa7,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x5,0x0, 0x0,0x2d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x7d,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0xc9,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x61,0x5,0x0,0x0,0x90,0x0,0x0,0x0, 0xb4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x48,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0xba,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x7,0x3,0x0,0x0,0xb9,0x0,0x0,0x0,0xc3, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0xc5,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x47,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x10,0x4,0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20, 0x0,0x0,0x0,0xa4,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcc,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x2,0x0,0x0, 0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x61,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x24,0x5,0x0,0x0,0x47,0x5, 0x0,0x0,0xe,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6, 0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0x6c, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x23,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x38,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xff,0x4,0x0,0x0,0xfc,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96, 0x3,0x0,0x0,0xae,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe1,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x3,0x0,0x0, 0xff,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0xc0,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x61,0x2,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xea,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x42,0x1,0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xeb,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x2,0x0, 0x0,0x68,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x2e,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0xff,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3a,0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x5, 0x0,0x0,0x48,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, 0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x65, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x9,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x70,0x1,0x0,0x0, 0xf9,0x4,0x0,0x0,0xdf,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x0,0x0, 0x0,0x10,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0xc0,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x8,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2f,0x1,0x0,0x0,0x46,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x12,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x95,0x3,0x0,0x0,0x5f,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x14,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x3, 0x0,0x0,0x50,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16, 0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0xfc, 0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x7d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x22,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9f,0x5,0x0,0x0,0x2a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2b,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x0,0x0, 0x0,0x2c,0x3,0x0,0x0,0xf1,0x1,0x0,0x0,0x96,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x50,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8, 0x4,0x0,0x0,0x68,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3b,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x2,0x0,0x0, 0xef,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x26,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x5,0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc6,0x3,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xff,0x2,0x0,0x0,0xef,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x48,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x2,0x0, 0x0,0x31,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0x7,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x1e,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0x18,0x1,0x0,0x0,0x27,0x0,0x0,0x0, 0x39,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0x24,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x71,0x1,0x0,0x0,0x3,0x2,0x0,0x0,0x67, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x9,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0x49,0x2,0x0,0x0, 0x9b,0x1,0x0,0x0,0x5f,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x60,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x5,0x0, 0x0,0xdf,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x5,0x0,0x0,0xec,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x3,0x0,0x0,0x56,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x59,0x0,0x0,0x0,0xac,0x1,0x0,0x0, 0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x45,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe,0x5,0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7a,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x89,0x5,0x0,0x0,0x8,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x81,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x3,0x0, 0x0,0x56,0x1,0x0,0x0,0x64,0x2,0x0,0x0,0xce,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x38,0x1,0x0,0x0,0x41,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x86,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b, 0x3,0x0,0x0,0xc0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x88,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x3,0x0,0x0, 0x13,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0xe0,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x94,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x37,0x1,0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x98,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3,0x0, 0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6a,0x5,0x0,0x0,0xfd,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0x59,0x4,0x0,0x0,0x4d, 0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa9,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0xd1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0x80,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x1f,0x1,0x0,0x0,0x27,0x5,0x0,0x0,0xf8, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x9,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x2,0x0,0x0,0x80,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x9,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x66,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xb5,0x0,0x0,0x0,0x11,0x5,0x0,0x0,0x26,0x3,0x0,0x0,0x8c,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x22,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x2b,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd6,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3b,0x1,0x0,0x0,0x70,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd9,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x0, 0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda, 0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x63, 0x2,0x0,0x0,0x9f,0x5,0x0,0x0,0xea,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdb,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xce,0x2,0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xde,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9,0x2,0x0, 0x0,0x26,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0xb9,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x59,0x2,0x0,0x0,0x90,0x1,0x0,0x0,0x7b, 0x0,0x0,0x0,0xc6,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe6,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0, 0x1d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf4,0x4,0x0,0x0,0x1e,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0xea,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x14,0x5,0x0,0x0,0x66,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf1,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x96,0x0,0x0,0x0,0x71,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf2,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9a,0x3,0x0, 0x0,0xba,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x9e,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3,0x0,0x0,0x2d,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfa,0x2,0x0,0x0,0x21,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2a,0x3,0x0,0x0,0x3a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x23,0x3, 0x0,0x0,0x6a,0x2,0x0,0x0,0xdc,0x2,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x17,0x5,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1a,0x1,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x14,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x61,0x2,0x0, 0x0,0x75,0x1,0x0,0x0,0xe2,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x3f,0x2,0x0,0x0,0xce,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x18,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf, 0x2,0x0,0x0,0xe9,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1d,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x1,0x0,0x0, 0x33,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x19,0x2,0x0,0x0,0x8,0x0,0x0, 0x0,0x8a,0x2,0x0,0x0,0xe6,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x22,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2, 0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x45, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x90,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xfa,0x2,0x0,0x0,0x20,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1f,0x5,0x0,0x0,0xeb,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4a, 0x2,0x0,0x0,0xc6,0x2,0x0,0x0,0x8e,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0xeb,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x31,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x94,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x33,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x1, 0x0,0x0,0x78,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0xcb, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0xb,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0xec,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe1,0x4,0x0,0x0,0x3d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x38,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9, 0x2,0x0,0x0,0xb3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3a,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x1,0x0,0x0, 0x46,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x8b,0x5,0x0, 0x0,0x2d,0x1,0x0,0x0,0x96,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3e,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0, 0x0,0x0,0xdb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x33, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x5,0x0,0x0,0x21,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0xc9,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x46,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x4b,0x2,0x0,0x0,0xc3,0x2,0x0,0x0,0xb3,0x0,0x0,0x0,0x76,0x1, 0x0,0x0,0x4,0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4b,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x1,0x0,0x0, 0x6d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x3,0x0,0x0,0x43,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xa,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0x92,0x1,0x0,0x0,0x57,0x3, 0x0,0x0,0x33,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0xd2, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x73,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd1,0x1,0x0,0x0,0xbc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x58,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf0, 0x1,0x0,0x0,0x18,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0x63,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x84,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x61,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x61,0x1,0x0,0x0,0x3c,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x64,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x2, 0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdf,0x4,0x0,0x0,0x37, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0xf1,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x82,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x40,0x1,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x83,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x59, 0x2,0x0,0x0,0xe8,0x4,0x0,0x0,0xf,0x5,0x0,0x0,0x7f,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0x7a,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x85,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x22,0x3,0x0,0x0,0xf8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x88,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x3, 0x0,0x0,0x81,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x3,0x0,0x0,0xb, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x2,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x43,0x5,0x0,0x0,0x70,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x93,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa1,0x5,0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde, 0x0,0x0,0x0,0x19,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x99,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x3,0x0,0x0, 0x2e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x7b,0x2,0x0, 0x0,0x71,0x3,0x0,0x0,0x16,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9f,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x5, 0x0,0x0,0x52,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0x4c, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0xe0,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x64,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7f,0x1,0x0,0x0,0x97,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6c, 0x2,0x0,0x0,0x39,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb4,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2f,0x1,0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb5,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x0, 0x0,0x0,0x10,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x5b, 0x2,0x0,0x0,0xfb,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb9,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x21,0x3,0x0,0x0,0xed,0x4,0x0,0x0,0xbb,0x2,0x0,0x0,0xb7,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x54,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x69,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfb, 0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0x5,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0xda,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xcb,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xfc,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x65,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xa,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x30,0x3,0x0,0x0,0x60,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8f,0x5,0x0,0x0,0x8a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd9,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x1,0x0, 0x0,0x42,0x2,0x0,0x0,0x6a,0x0,0x0,0x0,0x25,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x6c,0x2,0x0,0x0,0xf9,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0xfd,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xa,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0x69,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0xe,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf8,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe4,0x0,0x0,0x0,0x44,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfa,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x89,0x0, 0x0,0x0,0xc0,0x1,0x0,0x0,0x15,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xed,0x0,0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfe,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x3,0x0, 0x0,0xc7,0x1,0x0,0x0,0x90,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe8,0x1,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1, 0x2,0x0,0x0,0x6b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x3,0x0,0x0, 0x75,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xb,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0x22,0x5,0x0, 0x0,0xe,0x2,0x0,0x0,0x3e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x10,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x1, 0x0,0x0,0x64,0x5,0x0,0x0,0x8c,0x2,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x51,0x0,0x0,0x0,0xbb,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x15,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3b,0x1,0x0,0x0,0xad,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x19,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x5,0x0, 0x0,0x9e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0xec,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x8a,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x23,0x1,0x0,0x0,0xd9,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x25,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4a,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x26,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x5, 0x0,0x0,0xbf,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27, 0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x3,0x0,0x0,0x70, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xb,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x2,0x0,0x0,0x4d,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xb,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x70,0x5,0x0,0x0,0x49,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2e,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22, 0x2,0x0,0x0,0xc4,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x0,0x0,0x0, 0x6d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xb,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x61,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xb,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0xc2,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe0,0x4,0x0,0x0,0x65,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3c,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x1,0x0, 0x0,0xfc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x99,0x3,0x0,0x0,0xe7,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x20,0x3,0x0,0x0,0x90,0x2,0x0,0x0,0x45,0x1,0x0,0x0,0x8e,0x5,0x0, 0x0,0x28,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x55,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x1, 0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58, 0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0x9a, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xb,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x55,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xb,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2a,0x2,0x0,0x0,0x7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x64,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51, 0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6e,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0,0x0, 0x42,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0xb,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0x5c,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0xb,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x9f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7e,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x59,0x1,0x0,0x0,0xd1,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x80,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0, 0x0,0x41,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0xe9,0x2, 0x0,0x0,0x68,0x3,0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x86,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77, 0x0,0x0,0x0,0xe7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x87,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa1,0x1,0x0,0x0, 0x24,0x1,0x0,0x0,0xac,0x1,0x0,0x0,0x77,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8b,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe0,0x2,0x0,0x0,0xc4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8e,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x0, 0x0,0x0,0x2f,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x67,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x78,0x3,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x93,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x5,0x0, 0x0,0xf7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0xe3,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0x42,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0x45,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaa,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa8,0x5,0x0,0x0,0xbc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xae,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3, 0x0,0x0,0x9d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf, 0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x54,0x3,0x0,0x0,0x59, 0x4,0x0,0x0,0x2d,0x1,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb1,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xb2,0x2,0x0,0x0,0x8c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb3,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x3,0x0, 0x0,0x64,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0xd3,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x3,0x0,0x0,0x94,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0x18,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbf,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x23,0x3,0x0,0x0,0x49,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc5,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3, 0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6, 0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x98, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0xb,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x4,0x0,0x0,0x6f,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xb,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0xd5,0x2,0x0,0x0,0xf7,0x0,0x0, 0x0,0x99,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0xf3,0x4, 0x0,0x0,0x37,0x5,0x0,0x0,0xbf,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdc,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57, 0x2,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe1,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x3,0x0,0x0, 0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xb,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0x82,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xb,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x50,0x3,0x0,0x0,0x98,0x1,0x0,0x0,0x86, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xb,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x56,0x2,0x0,0x0, 0x7a,0x0,0x0,0x0,0xd5,0x1,0x0,0x0,0xaf,0x5,0x0,0x0,0xd6,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xb,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x8e,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x40,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0, 0x3,0x0,0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x3,0x0,0x0, 0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0xe4,0x4,0x0, 0x0,0x26,0x3,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x16,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x2, 0x0,0x0,0xc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x0, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x26,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x58,0x3,0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b, 0x5,0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x26,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x0,0x0,0x0, 0x27,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x84,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0x49,0x1,0x0,0x0,0xa0,0x2, 0x0,0x0,0x6d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x2d, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x99,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x87,0x0,0x0,0x0,0x18,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22, 0x1,0x0,0x0,0x81,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x42,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x3,0x0,0x0, 0x1d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x29,0x5,0x0,0x0,0xf0,0x4,0x0, 0x0,0x7f,0x0,0x0,0x0,0x41,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x44,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xb6,0x0, 0x0,0x0,0xa1,0x5,0x0,0x0,0xc7,0x1,0x0,0x0,0xea,0x4,0x0,0x0,0x29,0x2, 0x0,0x0,0xd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x75, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0x15,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x5e,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xcf,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4c,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb, 0x1,0x0,0x0,0x1b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x0,0x0,0x0, 0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x2c,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0xe,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5b,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcf,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5d,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x3,0x0, 0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xc, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0xd5,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3,0x0,0x0,0x38,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xc,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0x95,0x3,0x0,0x0, 0x22,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0xaa,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x1,0x0,0x0,0xb7,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x72,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x92,0x3,0x0,0x0,0x22,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x73,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x0,0x0, 0x0,0xaf,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x1f,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x74,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x54,0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0xb6,0x5,0x0,0x0,0x24,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x1d,0x2,0x0,0x0,0xa5, 0x0,0x0,0x0,0x77,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7a,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0, 0xe7,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x33,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x5,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xea,0x4,0x0,0x0,0x74,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8b,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8e,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e,0x0,0x0, 0x0,0xd5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xc, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x6a,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0xc,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x76,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x97,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbb,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2, 0x0,0x0,0x59,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x5,0x0,0x0,0x4a, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x2,0x0,0x0,0x91,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x62,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x49,0x5,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa2,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1, 0x1,0x0,0x0,0x17,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa3,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x5,0x0,0x0, 0xd8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x71,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x35,0x3,0x0,0x0,0x63,0x0,0x0,0x0,0x37, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0x45,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb2,0x2,0x0,0x0,0xc1,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbc,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17, 0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbe,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x3,0x0,0x0, 0x4b,0x5,0x0,0x0,0x98,0x2,0x0,0x0,0x34,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc2,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd2,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc3,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x1, 0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x1,0x0,0x0,0xc6, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x93,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x47,0x2,0x0,0x0,0xbf,0x3,0x0, 0x0,0xdf,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xc, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x5,0x0,0x0,0x23,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x92,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xc,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x22,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd1,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x30,0x1,0x0,0x0,0x36,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd3,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x3, 0x0,0x0,0x7a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x2,0x0,0x0,0xa3, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0x61,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x65,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x87,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xee,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88, 0x2,0x0,0x0,0x61,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xef,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x0,0x0,0x0, 0x25,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x12,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x5,0x0,0x0,0xa3,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xb1,0x5,0x0,0x0,0x7,0x3,0x0,0x0,0xbd, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x5,0x0,0x0,0x22,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x4c,0x2,0x0, 0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0xbd,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0xb,0x2,0x0,0x0,0xe8, 0x0,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x43,0x5,0x0,0x0, 0xf9,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x94,0x0,0x0,0x0,0x86,0x0,0x0,0x0, 0x47,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0x1d,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x3,0x0,0x0,0x10,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0xd2,0x0,0x0,0x0,0xd9, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xd,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xad,0x0,0x0,0x0,0xc0,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x28,0x5,0x0,0x0,0x4,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x3,0x2,0x0,0x0,0x20,0x3,0x0,0x0,0x95,0x3,0x0,0x0,0x15,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x1,0x0,0x0,0x13,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x9,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x29,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x69,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x8e,0x2,0x0,0x0,0x90,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0xdd,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x31,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x3,0x1,0x0,0x0,0xa2,0x5,0x0,0x0,0x5f,0x0,0x0,0x0,0x67,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa,0x3,0x0,0x0,0x59,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x34,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5, 0x0,0x0,0x0,0x59,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x36,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x0,0x0,0x0, 0xac,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x3,0x0,0x0,0x2,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0x36,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xba,0x2,0x0,0x0,0xcf,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3c,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x5e,0x5,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x40,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38,0x2,0x0, 0x0,0x7e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x98,0x5, 0x0,0x0,0xcc,0x1,0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c, 0x2,0x0,0x0,0x89,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4e,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x3,0x0,0x0, 0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x19,0x3,0x0,0x0,0x4c,0x5,0x0, 0x0,0xb5,0x5,0x0,0x0,0xf4,0x2,0x0,0x0,0x27,0x0,0x0,0x0,0x47,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x57,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf1,0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x58,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x86,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0xe0,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x20,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x8e,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x61,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6,0x2,0x0,0x0,0xf4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x62,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x5, 0x0,0x0,0xf8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x8f, 0x5,0x0,0x0,0xa1,0x0,0x0,0x0,0xde,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x67,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc5,0x3,0x0,0x0,0x16,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x69,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x3,0x0, 0x0,0xb2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x71,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0xd7,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x6,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7d,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd8,0x1,0x0,0x0,0x13,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7e,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x4, 0x0,0x0,0x38,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0x55, 0x1,0x0,0x0,0xb7,0x3,0x0,0x0,0x6,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x84,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x6c,0x2,0x0,0x0,0x57,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x87,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x3,0x0, 0x0,0x68,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x2,0x0,0x0,0x84,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0xbd,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x47,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xa9,0x2,0x0,0x0,0x53,0x2,0x0,0x0,0x74,0x0,0x0,0x0,0x25,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0xb0,0x3,0x0,0x0,0xfa,0x4, 0x0,0x0,0x51,0x2,0x0,0x0,0x95,0x1,0x0,0x0,0x76,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xa9,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa2,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xef,0x2,0x0,0x0,0xc2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa8,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6b,0x5,0x0, 0x0,0x65,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x2c,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x4e,0x2,0x0,0x0,0x9d, 0x5,0x0,0x0,0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb6,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x91,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x3,0x0,0x0,0x9e,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0x91,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc3,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xbb,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc7,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbb,0x3,0x0, 0x0,0xa2,0x0,0x0,0x0,0x74,0x5,0x0,0x0,0x7b,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xbe,0x3,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcc,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x48, 0x3,0x0,0x0,0xd1,0x2,0x0,0x0,0x18,0x5,0x0,0x0,0x12,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x55,0x1,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xcf,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd2,0x2,0x0,0x0,0x58,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd4,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x0, 0x0,0x0,0xfe,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x2a, 0x1,0x0,0x0,0xfa,0x2,0x0,0x0,0xf,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdc,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfd,0x4,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdd,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x3,0x0, 0x0,0x7a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x2,0x0,0x0,0xf8,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0xeb,0x1,0x0,0x0,0x2f, 0x5,0x0,0x0,0xf0,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe4,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x55,0x0,0x0,0x0, 0x60,0x0,0x0,0x0,0x86,0x2,0x0,0x0,0x77,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe6,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x43,0x0,0x0,0x0,0xc0,0x3,0x0,0x0,0xab,0x2,0x0,0x0,0xf6,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xcc,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfa,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x14,0x5,0x0,0x0,0xf4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfd,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbf,0x2,0x0, 0x0,0x23,0x1,0x0,0x0,0x1f,0x5,0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4,0x5,0x0,0x0,0xfa,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x31, 0x1,0x0,0x0,0x4d,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x66,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x31,0x3,0x0,0x0,0xc5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2a,0x3, 0x0,0x0,0x51,0x5,0x0,0x0,0xb5,0x5,0x0,0x0,0x9,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x9d,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x60, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x19,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x69,0x1,0x0,0x0,0xdc,0x4,0x0, 0x0,0x1d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0xa9,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x80,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x26,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1f,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x73,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x20,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1, 0x0,0x0,0x7a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x67,0x2,0x0,0x0,0x4e, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x38,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xd7,0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0x69,0x3,0x0, 0x0,0x57,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x5f,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x71,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0xc4,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3e,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb,0x3,0x0,0x0,0x50,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3f,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0xe1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x68, 0x1,0x0,0x0,0xb7,0x3,0x0,0x0,0x25,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x16,0x5,0x0,0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x48,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0, 0x0,0xf0,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0xc4,0x0, 0x0,0x0,0xf2,0x4,0x0,0x0,0x66,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe, 0x3,0x0,0x0,0x5f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x53,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0, 0x11,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0x1d,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x43,0x3,0x0,0x0,0x91,0x0,0x0,0x0,0xff,0x4, 0x0,0x0,0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x86,0x5,0x0,0x0,0xf8, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x10,0x2,0x0,0x0, 0x2a,0x3,0x0,0x0,0xc0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5c,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x3,0x0, 0x0,0xab,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x71,0x5,0x0,0x0,0xa1,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x1d,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xde,0x2,0x0,0x0,0xf4,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x67,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x68,0x1,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6a,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0, 0x0,0x0,0x91,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x84, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x3b,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x46,0x3,0x0,0x0,0x1e,0x0,0x0,0x0,0xbb,0x5,0x0, 0x0,0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x3,0x0,0x0,0x7d,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x29,0x0,0x0,0x0,0x26, 0x5,0x0,0x0,0x6a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x82,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf,0x3,0x0,0x0, 0x8,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x85,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf6,0x2,0x0,0x0,0xf4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x90,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbd,0x1, 0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe8,0x1,0x0,0x0,0x22, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0xf3,0x1,0x0,0x0, 0x72,0x2,0x0,0x0,0xe,0x2,0x0,0x0,0xb6,0x5,0x0,0x0,0xf,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x27,0x3,0x0,0x0,0x77,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9e,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49, 0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x9f,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x5,0x0,0x0, 0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x64,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0xe7,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0x4f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa8,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xed,0x2,0x0,0x0,0xcc,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xab,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x0,0x0, 0x0,0x81,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x4b,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x2,0x0,0x0,0x22,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0xed,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb7,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x92,0x2,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbc,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x0, 0x0,0x0,0x96,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x1e, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x5c,0x0,0x0,0x0, 0xd8,0x4,0x0,0x0,0x66,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc1,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3,0x0, 0x0,0x82,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x3d,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xd5,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0xeb,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xce,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x73,0x2,0x0,0x0,0x22,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd2,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5, 0x0,0x0,0xee,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x40, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x98,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd9,0x4,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xde,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa1,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe2,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40, 0x3,0x0,0x0,0x6a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe3,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xee,0x0,0x0,0x0, 0x4e,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x6,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0xce,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xd2,0x1,0x0,0x0,0x9e,0x0,0x0,0x0,0xd6, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x3,0x0,0x0,0x4b,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x44,0x1,0x0,0x0,0x8e,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x41,0x3,0x0,0x0,0x49,0x3,0x0,0x0,0x5a,0x2,0x0,0x0,0xc4,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x21,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x22,0x2,0x0,0x0, 0x34,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0x1e,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xc,0x5,0x0,0x0,0x53,0x2, 0x0,0x0,0x21,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x3,0x0,0x0,0x48, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x49,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x39,0x5,0x0,0x0,0x47,0x1,0x0, 0x0,0xe9,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0xc,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x6b,0x1,0x0,0x0,0x1f, 0x1,0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x2,0x0,0x0, 0x72,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb,0x3,0x0,0x0,0x7b,0x0,0x0, 0x0,0xbc,0x3,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x12,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf1,0x0, 0x0,0x0,0x7d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x1d, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x56,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xf,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x86,0x2,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd8, 0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x98,0x1,0x0,0x0,0x42,0x0,0x0,0x0,0x3, 0x3,0x0,0x0,0xd6,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x24,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe0,0x2,0x0,0x0, 0xfc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x5,0x0,0x0,0xba,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x97,0x5,0x0,0x0,0xd8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf,0x1,0x0,0x0,0x2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x31,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x0,0x0, 0x0,0x8c,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0xf3,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb5,0x5,0x0,0x0,0x41,0x3,0x0,0x0,0xf7, 0x1,0x0,0x0,0x7f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x35,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbc,0x5,0x0,0x0, 0xfc,0x4,0x0,0x0,0x1d,0x3,0x0,0x0,0x1d,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3d,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x52,0x3,0x0,0x0,0xc3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x40,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x3, 0x0,0x0,0xf,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x82, 0x5,0x0,0x0,0x1b,0x2,0x0,0x0,0x9d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7c,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x44,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1a,0x5,0x0, 0x0,0x19,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xb,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x39,0x3,0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a, 0x2,0x0,0x0,0xbb,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x61,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x1,0x0,0x0, 0x96,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x97,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x3,0x0,0x0,0x2e,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x66,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x10,0x4,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x69,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe,0x5,0x0, 0x0,0x13,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x2f,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0xae,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x83,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x47,0x3,0x0,0x0,0x75,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x84,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x5, 0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x36, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x43,0x0,0x0,0x0, 0x7a,0x1,0x0,0x0,0xcc,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x90,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x5,0x0, 0x0,0xea,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x1d,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0x73, 0x2,0x0,0x0,0x7a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x98,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0, 0xcd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xd2,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0xda,0x0,0x0,0x0,0xa,0x2, 0x0,0x0,0xa2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0xe4, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x73,0x5,0x0,0x0,0xe6,0x2,0x0,0x0, 0xf3,0x4,0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa5,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x5,0x0, 0x0,0xe,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5,0x5,0x0,0x0,0xe0,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0xeb,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0x20,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaa,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1d,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xab,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xad,0x3, 0x0,0x0,0x13,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x3,0x0,0x0,0x15, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0xa0,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xf,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x5a,0x1,0x0,0x0,0xed,0x0,0x0, 0x0,0x6f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0xde,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x5,0x0,0x0,0x0,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbb,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa1,0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbc,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x3, 0x0,0x0,0x2a,0x1,0x0,0x0,0xfe,0x2,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x34,0x5,0x0,0x0,0xe3,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xbe,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8b,0x5,0x0,0x0,0x9a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xbf,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x3,0x0, 0x0,0x6,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x49,0x1, 0x0,0x0,0xfd,0x1,0x0,0x0,0xa3,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c, 0x1,0x0,0x0,0xd8,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcc,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0, 0xc,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xf6,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0xb2,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe8,0x4,0x0,0x0,0x2b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd5,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x1a,0x3,0x0, 0x0,0xd9,0x0,0x0,0x0,0xbd,0x1,0x0,0x0,0x59,0x0,0x0,0x0,0x10,0x4,0x0, 0x0,0x27,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x22,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x99, 0x3,0x0,0x0,0x62,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xdd,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x0,0x0,0x0, 0xa4,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x31,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe6,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x96,0x3,0x0,0x0,0x64,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe8,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x5,0x0, 0x0,0x59,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x26,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x2,0x0,0x0,0x94,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf3,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x20,0x2,0x0,0x0,0x2c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfa,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8,0x0, 0x0,0x0,0xbc,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x5,0x0,0x0,0x29, 0x5,0x0,0x0,0x87,0x5,0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xaa,0x1,0x0,0x0,0x81,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0, 0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x10, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x3,0x0,0x0,0x1d,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x23,0x1,0x0,0x0,0x33,0x0,0x0,0x0,0xae, 0x3,0x0,0x0,0xfe,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0, 0xf,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xc6,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x50,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x24,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x21,0x2,0x0,0x0,0x37,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x27,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x10, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1c,0x3,0x0,0x0,0x5b,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0x3e,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x10,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x31,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x29,0x3,0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x32,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x0, 0x0,0x0,0x4e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0x2e, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x42,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x2,0x5,0x0,0x0,0x33,0x5,0x0,0x0,0xb5,0x5,0x0,0x0,0xec,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xf8,0x4,0x0,0x0,0x6, 0x1,0x0,0x0,0x84,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x43,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0xc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xe,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x13,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x56,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x40,0x3,0x0,0x0,0x6e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x58,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x58,0x3,0x0, 0x0,0x2d,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x7,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4,0x3,0x0,0x0,0x9e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5c,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41, 0x2,0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5e,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe8,0x0,0x0,0x0, 0x94,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x60,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x40,0x3,0x0,0x0,0x62,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x64,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x2, 0x0,0x0,0x8e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x1e, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0xd9,0x1,0x0,0x0, 0xfe,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6c,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3b,0x5,0x0, 0x0,0x32,0x1,0x0,0x0,0x7e,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1e,0x3,0x0,0x0,0xe2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x76,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x46, 0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0x4d,0x2,0x0,0x0,0x4,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x10,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x71,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7b,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x38,0x0,0x0,0x0,0x26,0x2,0x0,0x0,0x99,0x2,0x0,0x0,0x85,0x1,0x0, 0x0,0x2d,0x3,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x81,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x0, 0x0,0x0,0xbb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0xbb, 0x1,0x0,0x0,0x77,0x1,0x0,0x0,0x8e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x83,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x21,0x5,0x0,0x0,0xa8,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x84,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0, 0x0,0x58,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x10, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0xd5,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0xc3,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x10,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x73,0x2,0x0,0x0,0xb2,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x96,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4d,0x2,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9e,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x19,0x2, 0x0,0x0,0x10,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x76, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0x5f,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0xb6,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x29,0x2,0x0,0x0,0x2c,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38, 0x5,0x0,0x0,0x69,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xaa,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0, 0xe6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbd,0x1,0x0,0x0,0x6a,0x2,0x0, 0x0,0x8a,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb3,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x24,0x5, 0x0,0x0,0x63,0x2,0x0,0x0,0x4f,0x1,0x0,0x0,0x57,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x53,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb6,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x45,0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb9,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x5,0x0, 0x0,0xd2,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x10, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0x41,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x11,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x10,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0xbc,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xca,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd3,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcf,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3, 0x0,0x0,0x9a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0xf3, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x98,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x23,0x5,0x0,0x0,0x30,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x21,0x2,0x0,0x0,0xbc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3e, 0x3,0x0,0x0,0xbe,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xde,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x3,0x0,0x0, 0x27,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0xb8,0x3,0x0, 0x0,0x9f,0x0,0x0,0x0,0x7f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe0,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3c,0x5, 0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0xc, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc6,0x1,0x0,0x0,0xb7,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x1c,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x92,0x2,0x0,0x0,0xab,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xea,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f, 0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xeb,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x1,0x0,0x0, 0xd9,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0x5d,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x53,0x0,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x88,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0x86,0x0,0x0,0x0,0x3c,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x3b,0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x9d,0x5,0x0,0x0,0x77,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x11,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x12,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0xac,0x1,0x0,0x0,0x19,0x1,0x0,0x0,0x66,0x0,0x0,0x0,0xab,0x0,0x0, 0x0,0x27,0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x13,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x2, 0x0,0x0,0xe0,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x4e, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0xbe,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x71,0x5,0x0,0x0,0x9b,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc0,0x3,0x0,0x0,0xf4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x28,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x85, 0x2,0x0,0x0,0xf4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2e,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x1,0x0,0x0, 0x8f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0xd6,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x11,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0xe9,0x2,0x0,0x0,0xe7,0x0, 0x0,0x0,0x6,0x1,0x0,0x0,0x67,0x5,0x0,0x0,0x6f,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0xb2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x36,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x90,0x0,0x0,0x0,0x6d,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x9f,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4c,0x1,0x0,0x0,0x90,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3, 0x3,0x0,0x0,0x63,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4f,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd,0x5,0x0,0x0, 0x6d,0x2,0x0,0x0,0xfe,0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0x69,0x3,0x0,0x0, 0x10,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x2a,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x11,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xf7,0x1,0x0,0x0,0xd,0x1,0x0,0x0,0x85,0x2, 0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0xe4, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x41,0x3,0x0,0x0,0x49,0x3,0x0,0x0, 0x12,0x5,0x0,0x0,0x1e,0x1,0x0,0x0,0xb1,0x2,0x0,0x0,0x26,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x16,0x3,0x0,0x0,0x47,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6c,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0, 0x2,0x0,0x0,0x21,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x71,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc1,0x2,0x0,0x0, 0x60,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x93,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x11,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0x68,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0xcf, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0x81,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x7a,0x2,0x0,0x0,0x4,0x3,0x0, 0x0,0x56,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x11, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x56,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0xc9, 0x3,0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x96,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x0,0x0,0x0, 0x8b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x42,0x5,0x0, 0x0,0xde,0x4,0x0,0x0,0xf7,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x0, 0x0,0x0,0x9e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xa4, 0x0,0x0,0x0,0xb7,0x3,0x0,0x0,0x7d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x9e,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf0,0x1,0x0,0x0,0x3c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa2,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0, 0x0,0x59,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x11, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0x1,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2e,0x3,0x0,0x0,0xa2,0x0,0x0,0x0,0x5f, 0x5,0x0,0x0,0x9a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbc,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x3,0x0,0x0, 0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0x9b,0x3,0x0, 0x0,0xf,0x3,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc5,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x1, 0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0x70, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0x4a,0x3,0x0,0x0, 0x6a,0x1,0x0,0x0,0xb3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xca,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x1,0x0, 0x0,0x4b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x11, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x5,0x0,0x0,0x3e,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0xd5,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x11,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd2,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x19,0x3,0x0,0x0,0x42,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd6,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x1, 0x0,0x0,0x46,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x42, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x5,0x0,0x0,0x6c,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x72,0x5,0x0,0x0,0x50,0x1,0x0,0x0,0xa3,0x1,0x0, 0x0,0xee,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x9,0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39, 0x3,0x0,0x0,0x17,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf1,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x23,0x1,0x0,0x0, 0xe8,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0xfc,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf2,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x69,0x3,0x0,0x0,0x5c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf6,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x5, 0x0,0x0,0x6a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0x4c, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x2,0x0,0x0,0x48,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x69,0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2f, 0x1,0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x3,0x0,0x0,0x13,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x98,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0xa3,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x2,0x0,0x0,0xb3,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xae,0x5,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x99,0x2,0x0,0x0,0x16,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x14,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x2,0x0, 0x0,0x69,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0xdb,0x0, 0x0,0x0,0x3c,0x1,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x16,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2, 0x4,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x18,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x3,0x0,0x0, 0x4,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0xc7,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa1,0x5,0x0,0x0,0x12,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x33,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x14,0x3,0x0,0x0,0x91,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0xcc,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x12,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x21,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x22,0x1,0x0,0x0,0x84,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e, 0x2,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3e,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x1,0x0,0x0, 0xb2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x37,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x49,0x2,0x0,0x0,0x2d,0x5, 0x0,0x0,0x11,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47, 0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x51, 0x5,0x0,0x0,0xbd,0x1,0x0,0x0,0xf,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x48,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x15,0x5,0x0,0x0,0x8,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4a,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x3,0x0, 0x0,0xee,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x4,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x67,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x56,0x5,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3b,0x1,0x0,0x0,0x59,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x59,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf9,0x4, 0x0,0x0,0x5c,0x3,0x0,0x0,0x9d,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5f,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x16,0x5,0x0,0x0,0xec,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x62,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x3,0x0, 0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0x74,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x51,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x74,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xaf,0x0,0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7a,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x2, 0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d, 0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0xd8, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x12,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0xa7,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x12,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0x5a,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb4,0x2,0x0,0x0,0x77,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8c,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28, 0x1,0x0,0x0,0x81,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x90,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x5,0x0,0x0, 0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0xdf,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x72,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x17,0x5,0x0,0x0,0x70,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa1,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe6,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xaa,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x62,0x5,0x0, 0x0,0x1c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x55,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x97,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb4,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x9b,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb5,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x3, 0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8, 0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x36, 0x2,0x0,0x0,0x37,0x3,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb9,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xb9,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc3,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0, 0x0,0x10,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0xe6,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x11,0x3,0x0,0x0,0xc6, 0x1,0x0,0x0,0xbb,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcd,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x4,0x0,0x0, 0x46,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0x1a,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xd7,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x34,0x1,0x0,0x0,0x2,0x5,0x0,0x0,0xc, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x12,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2,0x3,0x0,0x0,0x78,0x0,0x0,0x0, 0x7c,0x0,0x0,0x0,0xc3,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xea,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0, 0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x3,0x0,0x0,0x39,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0x67,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xa9,0x5,0x0,0x0,0x32,0x5,0x0,0x0,0x11,0x5,0x0,0x0, 0x55,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x9,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0x7f,0x0, 0x0,0x0,0x9f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0xb2, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0x1b,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x11,0x3,0x0,0x0,0x4a,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x88,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x38,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0x76,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x13,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x2e,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd1,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x10,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4, 0x0,0x0,0x1c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x7d, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x78,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0xa1,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf,0x3,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1d, 0x2,0x0,0x0,0x94,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0xf5,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x13,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x39,0x3,0x0,0x0,0x27,0x0,0x0,0x0,0x8f,0x0,0x0,0x0, 0xff,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x70,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x13,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6c,0x2,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x35,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfa,0x4,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x39,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x2,0x0, 0x0,0xc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x5,0x0,0x0,0xec,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0xba, 0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x41,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x0,0x0,0x0, 0xa3,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0xb2,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x13,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xb0,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0xc6, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x5,0x0,0x0,0x17,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe0,0x1,0x0,0x0,0x36,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0x3c,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0xe7,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x13,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x10,0x5,0x0,0x0,0x59,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x69,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x52,0x2,0x0,0x0,0x63,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x70,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x4, 0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0xce, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0xb1,0x5,0x0,0x0, 0x23,0x3,0x0,0x0,0x26,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x76,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x5,0x0, 0x0,0x7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x6b,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0xaa,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x13,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3b,0x5,0x0,0x0,0xd5,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x89,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x88,0x5,0x0,0x0,0xa6,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8e,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x0, 0x0,0x0,0xcb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x44, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0x84,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb2,0x2,0x0,0x0,0xe9,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x76,0x0,0x0,0x0,0x77,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf, 0x0,0x0,0x0,0xce,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa2,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x64,0x1,0x0,0x0, 0x94,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x3,0x0,0x0,0x15,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x13,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0xf0,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xbf,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc3,0x3,0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc0,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0, 0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x58,0x5,0x0,0x0,0x86,0x0, 0x0,0x0,0x1e,0x3,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc8,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x23, 0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd5,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x3,0x0,0x0, 0x4,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd7,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe2,0x4,0x0,0x0,0xb1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe5,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb,0x3, 0x0,0x0,0xe1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x5,0x0,0x0,0xcf, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0x89,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0xba,0x5,0x0, 0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0xfe,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x3,0x0,0x0,0x16,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x34,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x88,0x2,0x0,0x0,0x38,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x11,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x0, 0x0,0x0,0xbd,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13, 0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x70, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0xc9,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0xb1,0x5,0x0,0x0,0xd1,0x2,0x0, 0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x68,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0xd5,0x4,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0x94,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x26,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe,0x5,0x0,0x0,0x57,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x28,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc8,0x0, 0x0,0x0,0x5a,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0xe6,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2b,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x26,0x5,0x0,0x0,0x11,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2d,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x3,0x0, 0x0,0x2b,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x73,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x1c,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0xcd,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3d,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4c,0x1,0x0,0x0,0x5c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x42,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x73,0x3, 0x0,0x0,0x4b,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x5b,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x97,0x5,0x0,0x0,0xd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x15,0x5,0x0,0x0,0x9a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x49,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x5,0x0, 0x0,0x17,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0xe4,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x5,0x0,0x0,0x39,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x36,0x2,0x0,0x0,0x3a,0x0,0x0,0x0, 0x82,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x14,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xa7,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x14,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x4e,0x1,0x0,0x0,0x39,0x2,0x0,0x0,0x56, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0xd9,0x1,0x0,0x0, 0xe5,0x4,0x0,0x0,0xbd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x75,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x2,0x0, 0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0xbd,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0xa8,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x77,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x89,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x77,0x2,0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8a,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x0, 0x0,0x0,0x65,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91, 0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0x6c,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe5,0x4,0x0,0x0,0x6,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa2,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a, 0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa6,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x0,0x0,0x0, 0xfc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x14,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x35,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x14,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe8,0x4,0x0,0x0,0xca,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb5,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x21,0x2,0x0,0x0,0xa1,0x3,0x0,0x0,0x42,0x1,0x0,0x0,0xb2,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0x42,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa3,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd2,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49, 0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd4,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x4,0x0,0x0, 0x63,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x14,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0xaa,0x0,0x0, 0x0,0x9a,0x3,0x0,0x0,0x9b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdb,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x4, 0x0,0x0,0x56,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed, 0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x3c, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0xce,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x8a,0x5,0x0,0x0,0xf8,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x0,0x2,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe, 0x2,0x0,0x0,0x1b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfd,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x2,0x0,0x0, 0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x14,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x68,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x15,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x4e,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf1,0x4,0x0,0x0,0x68,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x47,0x1,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x11,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0, 0x0,0xe1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x15, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x68,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0x73,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0x29,0x5,0x0,0x0,0x34,0x1,0x0,0x0, 0x8d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x15,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0x99,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x15,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x43,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x35,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xea,0x2,0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3d,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0, 0x0,0xb1,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x15, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xad,0x0,0x0,0x0,0x4e,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x15,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x58,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1b,0x3,0x0,0x0,0x93,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5d,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x3, 0x0,0x0,0xbb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x6e, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x15,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0x2a,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x60,0x2,0x0,0x0,0x16,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfd, 0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7a,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x2,0x0,0x0, 0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x15,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x3,0x0,0x0,0xa3,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x15,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x7b,0x2,0x0,0x0,0x54,0x0, 0x0,0x0,0x95,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x3c, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x15,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x5,0x0,0x0,0x84,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe1,0x4,0x0,0x0,0x4a,0x3,0x0,0x0,0x5f,0x1,0x0,0x0,0x54,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x1,0x0,0x0,0x67,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x91,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x67,0x0,0x0,0x0,0x70,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x93,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x5, 0x0,0x0,0x87,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x24, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x15,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x6d,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0x77,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa,0x3,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42, 0x1,0x0,0x0,0x51,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb4,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd5,0x0,0x0,0x0, 0xcc,0x1,0x0,0x0,0x1,0x3,0x0,0x0,0x98,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb8,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x70,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbb,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc4,0x2, 0x0,0x0,0x63,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x5,0x0,0x0,0xef, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x15,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x3,0x0,0x0,0x0,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x34,0x2,0x0,0x0,0xfc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd6,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d, 0x1,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xdd,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x0,0x0,0x0, 0x85,0x1,0x0,0x0,0x76,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xee,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x71,0x3,0x0,0x0,0x3d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf8,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2, 0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0xb8, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x15,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x2c,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5e,0x5,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x10,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf, 0x0,0x0,0x0,0x6a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x11,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x2,0x0,0x0, 0xc9,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0xd5,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x94,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x8a,0x2,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x6c,0x0,0x0,0x0,0x70,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x26,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0, 0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x97,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x16,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0xef,0x4,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x16,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3a,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbc,0x5,0x0,0x0,0xba,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3b,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb,0x1, 0x0,0x0,0x4b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40, 0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0x7f, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0x1c,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x22,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa6,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x52,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87, 0x5,0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x55,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x51,0x0,0x0,0x0, 0xf1,0x1,0x0,0x0,0x68,0x3,0x0,0x0,0x20,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x56,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x41,0x1,0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x59,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x3, 0x0,0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a, 0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x3,0x0,0x0,0x99, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0x10,0x5,0x0,0x0, 0x66,0x2,0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x64,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x5,0x0, 0x0,0xe1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x1c,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x16,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x5,0x0,0x0,0x70,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x16,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0xac,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x77,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc6,0x1,0x0,0x0,0xce,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x78,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x0, 0x0,0x0,0x44,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b, 0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0xe, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x1,0x0,0x0,0xa8,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0xdc,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x42,0x1,0x0,0x0,0xe9,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a, 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8f,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x3,0x0,0x0, 0xc0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0xd,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa4,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3f,0x5,0x0,0x0,0xd2,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa7,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x2,0x0, 0x0,0x91,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0x32,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x16,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x69,0x5,0x0,0x0,0x46,0x5,0x0,0x0,0x31, 0x3,0x0,0x0,0x40,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xaf,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0, 0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x46,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0xe0,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x6,0x1,0x0,0x0,0xee,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x6d, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5f,0x5,0x0,0x0,0x99,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe9,0x0,0x0,0x0,0x64,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f, 0x5,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xda,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x3,0x0,0x0, 0x21,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2e,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x31,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x18,0x5,0x0,0x0,0xdc,0x4,0x0,0x0,0xa6,0x5,0x0,0x0,0x8f, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x18,0x1,0x0,0x0, 0x78,0x3,0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xeb,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x0,0x0, 0x0,0x78,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0x36,0x5, 0x0,0x0,0xba,0x3,0x0,0x0,0x63,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f, 0x0,0x0,0x0,0x48,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf0,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x98,0x0,0x0,0x0, 0x6b,0x1,0x0,0x0,0x5a,0x5,0x0,0x0,0x5c,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf3,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3a,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2, 0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0xf3, 0x0,0x0,0x0,0x49,0x3,0x0,0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd8,0x0,0x0,0x0,0x52,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x58,0x3,0x0, 0x0,0x5b,0x1,0x0,0x0,0x4b,0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2b,0x5,0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x12,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6, 0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x17,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0, 0x20,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x17,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x63,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0xf,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x65,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1f,0x1,0x0,0x0,0x50,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2f,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x0,0x0, 0x0,0x62,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0xaa,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x4,0x0,0x0,0x21,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x43,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3,0x2,0x0,0x0,0x97,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x45,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2, 0x0,0x0,0x37,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0xac, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x17,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x77,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x17,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x96,0x2,0x0,0x0,0xfa,0x4,0x0, 0x0,0x5f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x8e,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x5,0x0,0x0,0x60,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x80,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5c,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x56,0x5,0x0,0x0,0x66,0x5,0x0,0x0,0x12,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0x7e,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xfa,0x4,0x0,0x0,0x30,0x5,0x0,0x0,0x3c,0x1,0x0,0x0,0xa2, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x17,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x95,0x1,0x0,0x0, 0x74,0x5,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x66,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0, 0x0,0x77,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x1,0x0,0x0,0xc1,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x9c,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x39,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x72,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x52,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x76,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x1, 0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x5,0x0,0x0,0x7c, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x17,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x32,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x17,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd3,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8, 0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x89,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x2,0x0,0x0, 0x37,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x17,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x6b,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x5,0x0,0x0,0x64,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x85,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x94,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa1,0x1,0x0,0x0,0xa6,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9e,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x3,0x0, 0x0,0x9c,0x3,0x0,0x0,0x71,0x5,0x0,0x0,0x7c,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x45,0x1,0x0,0x0,0x13,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb2,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8, 0x2,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb8,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xac,0x3,0x0,0x0, 0xb,0x0,0x0,0x0,0xf,0x2,0x0,0x0,0x46,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd3,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xe1,0x4,0x0,0x0,0xa7,0x0,0x0,0x0,0x6,0x2,0x0,0x0,0x67,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x96,0x3,0x0,0x0,0x46,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdd,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x6c,0x2,0x0,0x0,0x8e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdf,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x0,0x0, 0x0,0x82,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3,0x0,0x0,0xce,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x9e,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf4,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x63,0x5,0x0,0x0,0x4d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf7,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x5, 0x0,0x0,0x59,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0xa4, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x5,0x0,0x0,0x5b,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0xc4,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x6,0x2,0x0,0x0,0xa6,0x1,0x0,0x0,0xd8,0x1,0x0,0x0,0x9e,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0xad,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x16,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd1,0x1,0x0,0x0,0xec,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1c,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x1, 0x0,0x0,0xc2,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d, 0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0x7f, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0x21,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x35,0x3,0x0,0x0,0x3a,0x5,0x0, 0x0,0x6e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0x26,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x70,0x2,0x0,0x0,0x89,0x5,0x0,0x0,0xf0, 0x4,0x0,0x0,0x34,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x33,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0, 0xb2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0xc9,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x45,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9d,0x5,0x0,0x0,0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4c,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6b,0x5,0x0, 0x0,0x42,0x5,0x0,0x0,0x5e,0x2,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb5,0x5,0x0,0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x56,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7, 0x2,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x58,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0, 0x6c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x2d,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x5,0x0,0x0,0xbb,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7d,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x41,0x2,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7e,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x5,0x0, 0x0,0xd4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x6d,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x23,0x5,0x0,0x0,0xe5,0x4,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x18,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa,0x2,0x0,0x0,0x48,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x92,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xad,0x0,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x95,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x2, 0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0xa6, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0xce,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x29,0x2,0x0,0x0,0xbd,0x5,0x0,0x0,0xa9,0x5,0x0,0x0,0xe1,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x18,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x6d,0x0,0x0,0x0, 0xe,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x2,0x0,0x0,0xff,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xee,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc0,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1e,0x2,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc1,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x2,0x0, 0x0,0x96,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x2b,0x1, 0x0,0x0,0xaf,0x5,0x0,0x0,0x11,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcc,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a, 0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcd,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x0,0x0,0x0, 0x29,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0x84,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x58,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe8,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x0,0x2,0x0,0x0,0x84,0x1,0x0,0x0,0xd2,0x1,0x0,0x0,0x9d,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x40,0x5,0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xec,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9, 0x2,0x0,0x0,0xf2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xed,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0xc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x71,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x4d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf8,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xbd,0x5,0x0,0x0,0x7a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfb,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x3,0x0, 0x0,0x13,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0x1e,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x5b,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2b,0x5,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x49,0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x2, 0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0x5e, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x5,0x0,0x0,0xf6,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x24,0x3,0x0,0x0,0x22,0x3,0x0,0x0,0xce,0x2,0x0,0x0,0x9c,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x5,0x0,0x0,0x1c,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2a,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xf,0x2,0x0,0x0,0x4,0x2,0x0,0x0,0x77,0x1,0x0,0x0,0x7f,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x19,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xdb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3a,0x5,0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x40,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0, 0x0,0xe7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x19, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x39,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x93,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x11,0x3,0x0,0x0,0x77,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4c,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x38,0x2,0x0,0x0,0x23,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x53,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3, 0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0xbd, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x2a,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa1,0x5,0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xed,0x0,0x0,0x0,0x44,0x3,0x0,0x0,0x4d,0x5,0x0,0x0,0x2e,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x6,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x9,0x3,0x0,0x0,0xf1,0x0,0x0,0x0, 0xb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x19,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x62,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x19,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x21,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x96,0x5,0x0,0x0,0xb3,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8d,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x92,0x0,0x0,0x0,0x6a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8e,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x0,0x0, 0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x19, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0xc8,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0x59,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf5,0x4,0x0,0x0,0xe4,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x97,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x49,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9a,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x1, 0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0x22, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0xfb,0x1,0x0,0x0, 0x2a,0x3,0x0,0x0,0x15,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb5,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x5,0x0, 0x0,0x3e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x19, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0x8f,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0x53,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x56,0x2,0x0,0x0,0x81,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc9,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe7,0x2,0x0,0x0,0x29,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xca,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x1, 0x0,0x0,0xe,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x23,0x3,0x0,0x0,0x36, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xb3,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x42,0x1,0x0,0x0,0xed,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd7,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2, 0x4,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xda,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x2,0x0,0x0, 0x86,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x19,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x5,0x0,0x0,0x3d,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x19,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x2b,0x5, 0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x10, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xf4,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x1a,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x34,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x48,0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30, 0x3,0x0,0x0,0x2f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x5,0x0,0x0, 0xaa,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x1a,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0xa,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x1a,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4c,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x47,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4f,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x66,0x0,0x0, 0x0,0x35,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x1a, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0x29,0x0, 0x0,0x0,0xf9,0x4,0x0,0x0,0x20,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x54,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd, 0x5,0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x60,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x5,0x0,0x0, 0x52,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1a,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x8f,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1a,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0xec,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8a,0x5,0x0,0x0,0x91,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7c,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x0, 0x0,0xbf,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1a, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x65,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x1a,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x1a,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8f,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x63,0x1,0x0,0x0,0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9a,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x5, 0x0,0x0,0xaa,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e, 0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x5,0x0,0x0,0xf3, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x1a,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xed,0x2,0x0,0x0, 0x41,0x2,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xab,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x0,0x0, 0x0,0x12,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x1a, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0x2f,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x1a,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0x44, 0x2,0x0,0x0,0xe7,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb6,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xff,0x4,0x0,0x0, 0x20,0x5,0x0,0x0,0x67,0x2,0x0,0x0,0x34,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb7,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x23,0x5,0x0,0x0,0x61,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb9,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x2, 0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe, 0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0xda, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x1a,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0x13,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1a,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x70,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd1,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7, 0x4,0x0,0x0,0xed,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd5,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0, 0xb7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1a,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x4,0x0,0x0,0x7a,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x1a,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0xec,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfa,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc0,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfe,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x0,0x0, 0x0,0xfc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1b, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0xb9,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x1b,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x65,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x13,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xef,0x4,0x0,0x0,0xe2,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x17,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x3, 0x0,0x0,0xe8,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0xe1, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x9,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x42,0x3,0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x22,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa, 0x2,0x0,0x0,0xa3,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x24,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x5,0x0,0x0, 0xf8,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0xd8,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0x2d,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0x2c, 0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0xd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3a,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xac,0x1,0x0,0x0,0x99,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3c,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x2,0x0, 0x0,0x5b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x1b, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xc,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0xc6,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1b,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x47,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfc,0x4,0x0,0x0,0x2d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x48,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5, 0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0x1b, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x76,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x40,0x5,0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x52,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49, 0x3,0x0,0x0,0xb4,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x53,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0x9,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xd,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x3,0x0,0x0,0x37,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x62,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6d,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xac,0x3,0x0,0x0,0x68,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x77,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x5,0x0, 0x0,0xf3,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x1b, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0xa9,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0xcc,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x1b,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x95,0x1,0x0,0x0,0x3b,0x0,0x0,0x0,0x7a,0x5,0x0,0x0, 0x7b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x63,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x22,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x35,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x96,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x1,0x0, 0x0,0x57,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x1b, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x3,0x0,0x0,0x21,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x9b, 0x1,0x0,0x0,0xb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa8,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x49,0x5,0x0,0x0, 0x29,0x5,0x0,0x0,0xd3,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa9,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x8f,0x2,0x0,0x0,0x6c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb1,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x5, 0x0,0x0,0x45,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x62, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0xa,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2e,0x3,0x0,0x0,0x2,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc0,0x5,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc1,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61, 0x1,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xca,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3,0x0,0x0, 0xbb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xd,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0xb7,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xf1,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xda,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8,0x5,0x0,0x0,0x44,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe0,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x5,0x0, 0x0,0xcc,0x1,0x0,0x0,0x6c,0x1,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x9b,0x1,0x0,0x0,0xb0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xee,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a, 0x2,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf0,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0, 0x62,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0xdc,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x5,0x0,0x0,0xa,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x13,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xaa,0x5,0x0,0x0,0xb3,0x5,0x0,0x0,0x33,0x2,0x0,0x0,0x26,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x26,0x2,0x0,0x0,0xfd,0x1,0x0, 0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0xc6,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x1f,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0xf1,0x0,0x0,0x0, 0x3c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0xd5,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0xbb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x40,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1f,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x3,0x0, 0x0,0x20,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x90,0x2,0x0,0x0,0x96,0x2, 0x0,0x0,0x39,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x36,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0, 0x1,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3b,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x0,0x0,0x0, 0xa,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xfb,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x4,0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x84,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x49,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x2a,0x2,0x0,0x0,0x5b,0x5,0x0,0x0,0xe,0x5,0x0,0x0,0x3c,0x2,0x0,0x0, 0x7f,0x1,0x0,0x0,0xad,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4a,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0, 0x0,0xc0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0xc0,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0x1c,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x23,0x3,0x0,0x0,0x9d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5e,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x1, 0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f, 0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0x59, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x1c,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x1f,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x1c,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0x5a,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xba,0x3,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6c,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7, 0x5,0x0,0x0,0x45,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x74,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x2,0x0,0x0, 0x4a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0xe,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3,0x5,0x0,0x0,0x64,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8d,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x6,0x2,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8e,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x3,0x0, 0x0,0x14,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x2,0x0,0x0,0x1a,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0xc9,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x96,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x8,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x2, 0x0,0x0,0x2e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e, 0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0x21, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1c,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x4e,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x1c,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x90,0x0,0x0,0x0,0x90,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16, 0x5,0x0,0x0,0xec,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb3,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x4,0x0,0x0, 0x48,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x12,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x9c,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc0,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd9,0x4,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc7,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0, 0x0,0x61,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x60,0x1,0x0,0x0,0x64,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x45,0x5,0x0,0x0,0x46,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x83,0x5,0x0,0x0,0xd8,0x0,0x0,0x0,0x15,0x2,0x0,0x0, 0x2c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0x3b,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe8,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc4,0x3,0x0,0x0,0xb0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xed,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x0,0x0, 0x0,0x9d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x2c,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0x61,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7e,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf7,0x1, 0x0,0x0,0x5f,0x3,0x0,0x0,0x4f,0x1,0x0,0x0,0x2a,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x79,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x12,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x3,0x0, 0x0,0x40,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x7b,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0x9,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1d,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xad,0x0,0x0,0x0,0x8c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x23,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2a,0x5, 0x0,0x0,0xf3,0x4,0x0,0x0,0x5e,0x2,0x0,0x0,0x49,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x26,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x15,0x2,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2a,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x2,0x0, 0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x23,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x36,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf5,0x4,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x38,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x78,0x5, 0x0,0x0,0x4,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d, 0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0xeb, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x61,0x0,0x0,0x0, 0x69,0x0,0x0,0x0,0xa3,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x48,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5,0x0, 0x0,0x5b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x5,0x0,0x0,0x60,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x5,0x0,0x0,0x5a,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0x3d,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4e,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfe,0x1,0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4f,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5, 0x0,0x0,0xfb,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51, 0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0xf8, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x27,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x3a,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37, 0x1,0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5e,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x0,0x0,0x0, 0xa,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x5b,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0xee,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x24,0x5,0x0,0x0,0xd3,0x4,0x0,0x0,0x67,0x0,0x0,0x0,0x44, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0xf4,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0xad,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x19,0x5,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61, 0x1,0x0,0x0,0xbe,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7f,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa,0x1,0x0,0x0, 0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x5,0x0,0x0,0x11,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x1,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x88,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x2e,0x5,0x0,0x0,0xa4,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x90,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x5,0x0, 0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x5,0x0,0x0,0x16,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0x3d,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0xaa,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaf,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe6,0x2,0x0,0x0,0x25,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb1,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3, 0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2, 0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xbd, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x7d,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6b,0x5,0x0,0x0,0x42,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc,0x1,0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc0,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf, 0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc6,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x0,0x0,0x0, 0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xfc,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0x91,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd5,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x80,0x5,0x0,0x0,0x8a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd6,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x5,0x0, 0x0,0x9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0xbb,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x59,0x2,0x0,0x0,0x26,0x2,0x0,0x0,0xfd, 0x1,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe1,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb6,0x0,0x0,0x0, 0xbb,0x5,0x0,0x0,0x31,0x1,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe8,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfa,0x4,0x0,0x0,0x51,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xeb,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x2, 0x0,0x0,0x63,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef, 0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xfc, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x65,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xef,0x0,0x0,0x0,0x2f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x23, 0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0,0x0, 0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x1e,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0xda,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x1e,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x5c,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1f,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x2,0x0, 0x0,0x85,0x0,0x0,0x0,0x38,0x3,0x0,0x0,0x97,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe,0x5,0x0,0x0,0x38,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc, 0x5,0x0,0x0,0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0, 0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x1e,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x80,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1e,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0xe8,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0xe1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x48,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x86,0x1,0x0,0x0,0xa7,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x54,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x3,0x0, 0x0,0x3e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0x29,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1d,0x1,0x0,0x0,0xf1,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x81,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6f,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x82,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x0, 0x0,0x0,0x8f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x16, 0x2,0x0,0x0,0x3a,0x3,0x0,0x0,0xbb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x87,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc1,0x2,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8c,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x2,0x0, 0x0,0x90,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0xd5,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0xa4,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x14,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa4,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe2,0x4,0x0,0x0,0x13,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa6,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x5, 0x0,0x0,0xe4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x20, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x1e,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0x1b,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x1e,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x8f,0x5,0x0,0x0,0xd4,0x2,0x0, 0x0,0xb0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x62,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0xd2,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc7,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x35,0x0,0x0,0x0,0x81,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd4,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x0, 0x0,0x0,0xe9,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x7b, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x1e,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0xee,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1e,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x6e,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xba,0x2,0x0,0x0,0xc,0x5,0x0,0x0,0x57,0x2,0x0,0x0,0x2f,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x5,0x0,0x0,0x51,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf0,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x14,0x2,0x0,0x0,0x76,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf5,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x0, 0x0,0x0,0x64,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x4e, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1e,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x3,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5b,0x1,0x0,0x0,0x9a,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x28,0x1,0x0,0x0,0x58,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x16,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac, 0x1,0x0,0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1a,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x0,0x0,0x0, 0x94,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1f,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x3d,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x1f,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x5,0x0,0x0,0x86,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0xaa,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2b,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1f,0x5,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x30,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x1,0x0, 0x0,0xc6,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x1f, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x10,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x1f,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc6,0x1,0x0,0x0,0x27,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3c,0x5,0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x40,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfb,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x41,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x5, 0x0,0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x1c, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x66,0x1,0x0,0x0, 0xcf,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x47,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x2,0x0, 0x0,0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x1f, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x1,0x0,0x0,0x6e,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x1f,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x52,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x56,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1e,0x2,0x0,0x0,0x50,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5f,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x0, 0x0,0x0,0x5c,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0xd9,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0xa2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x61,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x66,0x2,0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x64,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x0,0x0, 0x0,0x90,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x1f, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xaf,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x1f,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x46,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x63,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x75,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb6,0x5,0x0,0x0,0xf8,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x80,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x2, 0x0,0x0,0x2b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x40, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xc0,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0xa0,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb6,0x5,0x0,0x0,0x11,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x91,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a, 0x2,0x0,0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x92,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x5,0x0,0x0, 0x6d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x1f,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x5,0x0,0x0,0x5,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x1f,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x4f,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x6a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa6,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa9,0x1,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xad,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf9,0x4,0x0, 0x0,0x20,0x5,0x0,0x0,0xbd,0x1,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x8f,0x0,0x0,0x0,0xe0,0x2,0x0,0x0,0x18,0x1,0x0,0x0,0x52,0x2, 0x0,0x0,0xe9,0x4,0x0,0x0,0x44,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb4,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed, 0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbf,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x90,0x0,0x0,0x0, 0x26,0x1,0x0,0x0,0xa1,0x1,0x0,0x0,0x91,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc4,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2f,0x5,0x0,0x0,0xff,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd4,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x1, 0x0,0x0,0xc0,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x2,0x0,0x0,0xcf, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0xb,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0xa7,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x47,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe8,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2, 0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xed,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe0,0x4,0x0,0x0, 0x70,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x1f,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x60,0x5,0x0,0x0,0x68,0x1,0x0, 0x0,0xfd,0x2,0x0,0x0,0xb7,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf1,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x0, 0x0,0x0,0xe,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0xa4, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x2,0x0,0x0,0x9c,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0x2e,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x4a,0x2,0x0,0x0,0x52,0x5,0x0,0x0,0xb5,0x0,0x0,0x0,0xfd,0x0, 0x0,0x0,0x96,0x3,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63, 0x1,0x0,0x0,0x5d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x1,0x0,0x0, 0x30,0x1,0x0,0x0,0x71,0x1,0x0,0x0,0xeb,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2f,0x1,0x0,0x0,0x27,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x0, 0x0,0x0,0xdf,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7a,0x5,0x0,0x0,0xb7, 0x1,0x0,0x0,0xe7,0x4,0x0,0x0,0xd7,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x21,0x3,0x0,0x0,0x48,0x2,0x0,0x0,0xa,0x2,0x0,0x0,0x31,0x0,0x0,0x0, 0x4d,0x2,0x0,0x0,0xcf,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x11,0x5,0x0, 0x0,0x73,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0xda,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x1,0x0,0x0,0x41,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x59,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x22,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0xd5,0x2,0x0,0x0,0xab,0x2,0x0, 0x0,0x46,0x0,0x0,0x0,0x66,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x16,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd1,0x0, 0x0,0x0,0x92,0x2,0x0,0x0,0x2,0x3,0x0,0x0,0x14,0x5,0x0,0x0,0xcc,0x2, 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x58, 0x1,0x0,0x0,0xf6,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe2,0x2,0x0,0x0,0xfd,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x3,0x0, 0x0,0xe0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x31,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x67,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x3a,0x0,0x0,0x0,0x49,0x0,0x0,0x0, 0x4,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x3f,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2f,0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x24,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x5, 0x0,0x0,0x5d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0xb2, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x3,0x0,0x0,0x25,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xbd,0x1,0x0,0x0,0x99,0x3,0x0,0x0,0xef,0x4,0x0, 0x0,0xb9,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0xe9,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x26, 0x2,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xba,0x3,0x0,0x0, 0x11,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x26,0x0,0x0,0x0,0xde,0x4,0x0,0x0, 0xf6,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x53,0x1,0x0,0x0,0xfa,0x2,0x0, 0x0,0x47,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x1, 0x0,0x0,0x91,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xd4, 0x0,0x0,0x0,0x3,0x2,0x0,0x0,0xc4,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x60,0x2,0x0,0x0,0x37,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x34,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x4,0x0, 0x0,0x59,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x4,0x0,0x0,0x6f,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0xc7,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x55,0x2,0x0,0x0,0x30,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xc2,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0x3e,0x0,0x0,0x0,0x7a,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x79,0x5,0x0,0x0,0x72,0x5, 0x0,0x0,0x42,0x2,0x0,0x0,0x76,0x1,0x0,0x0,0x1b,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0xa7, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x66,0x5,0x0,0x0,0x25,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0xb2,0x2,0x0,0x0,0x36,0x1,0x0, 0x0,0xdf,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x1a,0x1, 0x0,0x0,0x3f,0x1,0x0,0x0,0x8b,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4c, 0x0,0x0,0x0,0x30,0x3,0x0,0x0,0x3c,0x5,0x0,0x0,0xe2,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x70,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x63,0x1,0x0,0x0,0x70,0x2,0x0,0x0,0xbc,0x5,0x0,0x0,0xd2,0x0,0x0, 0x0,0x37,0x2,0x0,0x0,0xf,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x44,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x5, 0x0,0x0,0xc9,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x5,0x0,0x0,0x1e, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x3,0x0,0x0,0x97,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x6d,0x2,0x0,0x0,0x3c,0x0,0x0, 0x0,0x16,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0xe9,0x1, 0x0,0x0,0x4d,0x2,0x0,0x0,0xe2,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0xc6,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x92,0x2,0x0,0x0,0xeb, 0x2,0x0,0x0,0x6d,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x53,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x43,0x5,0x0,0x0, 0x25,0x5,0x0,0x0,0xa3,0x2,0x0,0x0,0x26,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa6,0x5,0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2d,0x0, 0x0,0x0,0xbe,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x58,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0xd5,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x22,0x5,0x0,0x0,0x34,0x2,0x0,0x0,0x3f,0x2,0x0,0x0,0x24,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0xbe,0x5,0x0,0x0,0xc9,0x2,0x0, 0x0,0xe7,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x4,0x0,0x0,0x2e,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x99,0x5,0x0,0x0,0xd4,0x0,0x0,0x0,0x46, 0x3,0x0,0x0,0x85,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x63,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x0,0x0,0x0, 0xe,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x6b,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0x51,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x66,0x5,0x0,0x0,0xfa,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x31,0x3,0x0,0x0,0x11,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x2,0x0, 0x0,0xfb,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0xbc,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x3,0x0,0x0,0xe6,0x4,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x1e,0x0,0x0,0x0, 0xc0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0xe4,0x1,0x0, 0x0,0x36,0x1,0x0,0x0,0x6e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x73,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x81,0x5, 0x0,0x0,0x90,0x1,0x0,0x0,0x3d,0x1,0x0,0x0,0x21,0x0,0x0,0x0,0x2f,0x3, 0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x3e, 0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0xee,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x81,0x5,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x62,0x2,0x0, 0x0,0x6c,0x5,0x0,0x0,0x35,0x3,0x0,0x0,0x6d,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x88,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe4, 0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x81,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x5,0x0,0x0, 0xd8,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0x9,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x5b,0x5,0x0,0x0,0x19,0x5,0x0,0x0,0x9b,0x3, 0x0,0x0,0x6f,0x0,0x0,0x0,0x55,0x2,0x0,0x0,0xb1,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x55,0x3,0x0,0x0,0xd8,0x4,0x0,0x0,0x36,0x1,0x0,0x0,0x6a, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0xfa,0x4,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x8,0x5,0x0,0x0,0xf3,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xa,0x2,0x0,0x0,0x22,0x0,0x0,0x0,0x62,0x2,0x0,0x0,0x4d,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x1,0x0,0x0,0xcf,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0xd2,0x1,0x0,0x0, 0x92,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7e,0x5,0x0, 0x0,0x3c,0x5,0x0,0x0,0xa8,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x98,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3, 0x0,0x0,0xe3,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x5,0x0,0x0,0x48, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x83,0x5,0x0,0x0, 0xd3,0x4,0x0,0x0,0x3f,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x43,0x0,0x0, 0x0,0x41,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0x5,0x1,0x0,0x0,0x67,0x3,0x0, 0x0,0x8f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0x50,0x1, 0x0,0x0,0x2c,0x3,0x0,0x0,0xfc,0x1,0x0,0x0,0x5,0x0,0x0,0x0,0xf,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x8c,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0x99,0x3,0x0,0x0,0x67,0x5,0x0,0x0, 0x6c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x91,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x73,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0x6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x64,0x2,0x0,0x0,0x9,0x0,0x0,0x0,0x6,0x3,0x0,0x0,0x33,0x0,0x0,0x0, 0x9e,0x5,0x0,0x0,0x4d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x39,0x3,0x0, 0x0,0x18,0x1,0x0,0x0,0x3b,0x1,0x0,0x0,0x72,0x2,0x0,0x0,0x21,0x1,0x0, 0x0,0xe,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0x65,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x4e,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x37,0x1,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x76,0x0,0x0,0x0,0x6b,0x1,0x0,0x0,0xd4,0x4,0x0,0x0,0x37,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x92,0x3,0x0,0x0,0x9b,0x1,0x0,0x0,0x43,0x5,0x0,0x0,0xdf, 0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x13,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x12,0x0,0x0,0x0,0xc9,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x2a,0x0, 0x0,0x0,0xc2,0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x12, 0x2,0x0,0x0,0x73,0x3,0x0,0x0,0x67,0x5,0x0,0x0,0x67,0x1,0x0,0x0,0x95, 0x5,0x0,0x0,0x17,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbd,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x64,0x0,0x0,0x0, 0x70,0x5,0x0,0x0,0x4b,0x2,0x0,0x0,0xfb,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x37,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbf,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x10,0x4, 0x0,0x0,0x19,0x5,0x0,0x0,0x92,0x5,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x82,0x1,0x0,0x0,0x38,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x31,0x5,0x0,0x0,0x67,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x78,0x0,0x0, 0x0,0x2a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x1,0x0,0x0,0x58,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x50,0x1,0x0,0x0,0xf, 0x5,0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0, 0x48,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0xc4,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x8f,0x2,0x0,0x0,0xa3,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x81,0x2,0x0,0x0,0x85,0x2,0x0,0x0,0x5e,0x5,0x0,0x0,0xdc, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x69,0x2,0x0,0x0, 0x45,0x5,0x0,0x0,0x9a,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xcf,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x5,0x0, 0x0,0xc6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x1,0x0,0x0,0xa6,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x14,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0x17,0x0,0x0,0x0,0xfd,0x1,0x0,0x0, 0x51,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x91,0x5,0x0, 0x0,0x49,0x5,0x0,0x0,0xa1,0x2,0x0,0x0,0xa5,0x0,0x0,0x0,0xaa,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x72,0x3,0x0,0x0,0x82,0x1,0x0,0x0,0x4d,0x5, 0x0,0x0,0xbd,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x6c, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0xf0,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0x23,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe,0x5,0x0,0x0,0x9e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x55, 0x1,0x0,0x0,0x9,0x1,0x0,0x0,0x67,0x0,0x0,0x0,0x4,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x11,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf0,0x4,0x0,0x0,0x69,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x2, 0x0,0x0,0x3c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x9, 0x1,0x0,0x0,0x22,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5c,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0x46,0x5,0x0,0x0,0x67,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x13,0x1,0x0,0x0,0x5f,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb7,0x3,0x0,0x0,0xc,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88, 0x2,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xea,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x3,0x0,0x0, 0x7c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0x9b,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0x73,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8e,0x2,0x0,0x0,0x6a,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x19,0x3,0x0, 0x0,0x1d,0x2,0x0,0x0,0xad,0x5,0x0,0x0,0xbf,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x37,0x1,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96, 0x5,0x0,0x0,0xbf,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xca,0x0,0x0,0x0, 0x69,0x5,0x0,0x0,0x89,0x5,0x0,0x0,0x1e,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb2,0x1,0x0,0x0,0x43,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x1, 0x0,0x0,0x41,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x11,0x3,0x0,0x0,0x17, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0xe4,0x1,0x0,0x0, 0x5b,0x1,0x0,0x0,0x5e,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x5,0x0, 0x0,0x33,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0xc0,0x0, 0x0,0x0,0x66,0x2,0x0,0x0,0x43,0x1,0x0,0x0,0xaf,0x2,0x0,0x0,0xb7,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x8c,0x2,0x0,0x0,0xa0,0x1,0x0,0x0,0x5e, 0x0,0x0,0x0,0x18,0x2,0x0,0x0,0x27,0x0,0x0,0x0,0xf1,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xba,0x2,0x0,0x0,0x10,0x1,0x0,0x0,0xe,0x0,0x0,0x0, 0xd7,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x1c,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x15,0x2, 0x0,0x0,0x7a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x4,0x0,0x0,0x9, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x4c,0x5,0x0,0x0,0x90,0x2,0x0,0x0, 0x14,0x0,0x0,0x0,0x99,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x60,0x5,0x0,0x0,0x19,0x5,0x0,0x0,0x2f,0x0,0x0, 0x0,0x85,0x1,0x0,0x0,0x7f,0x5,0x0,0x0,0x2d,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xbf,0x3,0x0,0x0,0x82,0x1,0x0,0x0,0x27,0x0,0x0,0x0,0x5d,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0xa4,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x17,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x62,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0xd3,0x0,0x0,0x0,0x3c,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0x3c,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xeb,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5b,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x4e,0x0,0x0,0x0,0x92,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0x9d,0x2,0x0,0x0,0x1f,0x3,0x0, 0x0,0x7f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x36,0x0, 0x0,0x0,0x6a,0x2,0x0,0x0,0x13,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x24,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfd, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x26,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x5,0x0,0x0, 0x18,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x18,0x5,0x0, 0x0,0x7f,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x29,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x98,0x0, 0x0,0x0,0xfd,0x4,0x0,0x0,0xd,0x1,0x0,0x0,0xc5,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x38,0x5,0x0,0x0,0xb5,0x0,0x0,0x0,0xd1, 0x1,0x0,0x0,0xc6,0x3,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf,0x3,0x0,0x0,0x9b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x49,0x3,0x0, 0x0,0x34,0x2,0x0,0x0,0x4b,0x2,0x0,0x0,0x5d,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa1,0x3,0x0,0x0,0x6,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe, 0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x32,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x3,0x0,0x0, 0x55,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x9d,0x2,0x0, 0x0,0xe2,0x2,0x0,0x0,0x3f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x35,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa3,0x2, 0x0,0x0,0x86,0x2,0x0,0x0,0x35,0x2,0x0,0x0,0x1b,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x2d,0x5,0x0,0x0,0xcf, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x33,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0xa1,0x2,0x0,0x0,0xdd,0x4,0x0, 0x0,0xfb,0x4,0x0,0x0,0x4e,0x3,0x0,0x0,0x5d,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1f,0x3,0x0,0x0,0x30,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xe2, 0x2,0x0,0x0,0xa0,0x1,0x0,0x0,0x9e,0x5,0x0,0x0,0x9c,0x1,0x0,0x0,0x15, 0x3,0x0,0x0,0x66,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3b,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48,0x3,0x0,0x0, 0xaa,0x2,0x0,0x0,0xbf,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x37,0x1,0x0,0x0, 0x5c,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0xa1,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0x27,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa5,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x43,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x5,0x0, 0x0,0x33,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0xb0,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x1,0x0,0x0,0x63,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0xb6,0x0,0x0,0x0,0x12,0x0,0x0,0x0, 0x9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x86,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x28,0x2,0x0,0x0,0x56,0x1, 0x0,0x0,0x50,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x3e, 0x5,0x0,0x0,0xd4,0x4,0x0,0x0,0x17,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xea,0x2,0x0,0x0,0x9c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x52,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0, 0x0,0x17,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x51,0x0, 0x0,0x0,0x9e,0x5,0x0,0x0,0xd4,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x56,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37, 0x5,0x0,0x0,0xd,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x57,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0, 0x5,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0xe0,0x2,0x0, 0x0,0x64,0x1,0x0,0x0,0xa9,0x1,0x0,0x0,0x34,0x2,0x0,0x0,0x4d,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x5,0x0,0x0,0x46,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x31,0x3,0x0,0x0,0xf9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x56,0x5,0x0,0x0,0x63,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7b,0x2,0x0, 0x0,0x24,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x9f,0x0, 0x0,0x0,0x1e,0x2,0x0,0x0,0x5c,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x62,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb, 0x3,0x0,0x0,0x9d,0x2,0x0,0x0,0x55,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x5b,0x1,0x0,0x0,0x62,0x1,0x0,0x0, 0x64,0x2,0x0,0x0,0x37,0x1,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x9d,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0xd,0x3,0x0,0x0,0x25,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0xc5,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6b,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x70,0x5,0x0,0x0,0x11,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x3a,0x3,0x0,0x0, 0x1d,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x37,0x1,0x0, 0x0,0x55,0x0,0x0,0x0,0x99,0x5,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1,0x1,0x0,0x0,0x86,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x66, 0x5,0x0,0x0,0x48,0x3,0x0,0x0,0x51,0x2,0x0,0x0,0x50,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x73,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf,0x3,0x0,0x0,0x3d,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x74,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x21,0x5, 0x0,0x0,0x3,0x3,0x0,0x0,0x74,0x5,0x0,0x0,0x23,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x44,0x2,0x0,0x0,0xf7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x7b,0x2,0x0,0x0,0xf,0x1,0x0,0x0,0x2b,0x2,0x0,0x0,0xc3,0x2,0x0,0x0, 0x57,0x3,0x0,0x0,0x6f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x78,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf,0x3,0x0, 0x0,0xd1,0x1,0x0,0x0,0x88,0x5,0x0,0x0,0xbb,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xdd,0x2,0x0,0x0,0x2a,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x26, 0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x80,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe4,0x0,0x0,0x0, 0x56,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x99,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0xd9,0x2,0x0,0x0,0xa1,0x2,0x0,0x0,0x22,0x0,0x0,0x0,0x1a,0x5,0x0, 0x0,0xc9,0x3,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x82,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7a,0x5, 0x0,0x0,0xeb,0x0,0x0,0x0,0x29,0x5,0x0,0x0,0xc3,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x3f, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x85,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5,0x3,0x0,0x0,0xb4,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x13,0x5,0x0,0x0,0x3a,0x3,0x0,0x0,0x2d,0x3,0x0,0x0,0xe,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x3,0x0,0x0,0x6c,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0xc9,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xa5,0x5,0x0,0x0,0xb0,0x5,0x0,0x0,0x2b,0x0,0x0,0x0,0x7d,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xc3,0x2,0x0,0x0,0xec,0x4,0x0,0x0,0x16, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x31,0x0,0x0,0x0, 0x1f,0x3,0x0,0x0,0x5b,0x3,0x0,0x0,0x2f,0x1,0x0,0x0,0x5,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x58,0x0,0x0, 0x0,0x30,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0x9c,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x93,0x2,0x0,0x0,0x31,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9d,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x22,0x0, 0x0,0x0,0xe8,0x4,0x0,0x0,0x2b,0x5,0x0,0x0,0x21,0x2,0x0,0x0,0xf3,0x1, 0x0,0x0,0x92,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0x28, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x74,0x5,0x0,0x0, 0x66,0x5,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xe8,0x1,0x0, 0x0,0xb8,0x3,0x0,0x0,0x4,0x1,0x0,0x0,0x4a,0x5,0x0,0x0,0x57,0x0,0x0, 0x0,0xd7,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x59,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x4,0x0,0x0,0xeb,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xaf,0x5,0x0,0x0,0x4d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa9,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x5, 0x0,0x0,0x28,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xf5, 0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x34,0x5,0x0,0x0,0x4f,0x0,0x0,0x0,0xdf, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0xfa,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc0,0x1,0x0,0x0,0x5a,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x72,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x62, 0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xba,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x0,0x0,0x0, 0xd9,0x1,0x0,0x0,0xb7,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4c,0x2,0x0,0x0,0x86,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbd,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4a,0x0, 0x0,0x0,0xf0,0x1,0x0,0x0,0x4f,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xa0,0x5,0x0,0x0,0x8e,0x5,0x0,0x0,0x96,0x3,0x0,0x0,0x13, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x80,0x5,0x0,0x0, 0x9a,0x5,0x0,0x0,0x1c,0x3,0x0,0x0,0x5a,0x0,0x0,0x0,0x25,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0xb9,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0xfe,0x1,0x0,0x0,0x2a,0x3, 0x0,0x0,0xf7,0x4,0x0,0x0,0x5f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d, 0x5,0x0,0x0,0x30,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x42,0x2,0x0,0x0, 0x60,0x2,0x0,0x0,0xbd,0x0,0x0,0x0,0xb,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1e,0x2,0x0,0x0,0xb9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xca,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x48,0x2, 0x0,0x0,0x38,0x2,0x0,0x0,0x4b,0x5,0x0,0x0,0x7a,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x66,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xcd,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x33,0x5,0x0,0x0,0x3b,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xcf,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x5,0x0, 0x0,0xb2,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x11,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x16,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x5b,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x5,0x3,0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x0, 0x0,0x0,0x39,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x1e, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0xd8,0x2,0x0,0x0, 0x77,0x2,0x0,0x0,0x32,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xea,0x2,0x0, 0x0,0x9a,0x0,0x0,0x0,0x3d,0x1,0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf9,0x4,0x0,0x0,0x21,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35, 0x2,0x0,0x0,0xae,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xde,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x61,0x5,0x0,0x0, 0xb2,0x0,0x0,0x0,0x47,0x3,0x0,0x0,0x3d,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdf,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xab,0x2,0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe1,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x0, 0x0,0x0,0x69,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x3,0x0,0x0,0x30, 0x3,0x0,0x0,0xcc,0x2,0x0,0x0,0xb6,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x77,0x2,0x0,0x0,0x5d,0x1,0x0,0x0,0xc2,0x5,0x0,0x0,0xac,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xfb,0x4,0x0,0x0,0xc7,0x0,0x0, 0x0,0x8b,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x69,0x2, 0x0,0x0,0x96,0x0,0x0,0x0,0xd5,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49, 0x0,0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc7,0x1,0x0,0x0, 0xaa,0x5,0x0,0x0,0xbe,0x2,0x0,0x0,0x26,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x5b,0x0,0x0,0x0,0xc1,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xeb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf7,0x0, 0x0,0x0,0xc0,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x3,0x0,0x0,0x1d, 0x2,0x0,0x0,0x80,0x5,0x0,0x0,0x6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x7b,0x0,0x0,0x0,0xc3,0x2,0x0,0x0,0x63,0x1,0x0,0x0,0xc6,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x85,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x19,0x2,0x0,0x0,0x2e,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52, 0x5,0x0,0x0,0x63,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x60,0x5,0x0,0x0, 0x4e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x8f,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x8a,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x48,0x5,0x0,0x0,0x97,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x29,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x16,0x2,0x0,0x0,0x6,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x13,0x5,0x0,0x0,0x69,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf4,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd, 0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x60,0x2,0x0,0x0,0x5b,0x0,0x0,0x0, 0xc1,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x1,0x0,0x0,0x44,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x90,0x1,0x0,0x0,0x42,0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0x8b, 0x5,0x0,0x0,0x84,0x1,0x0,0x0,0x27,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x64,0x2,0x0,0x0,0x79,0x3,0x0,0x0,0x55,0x1,0x0,0x0,0x25,0x5,0x0,0x0, 0x77,0x3,0x0,0x0,0x8f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x90,0x2,0x0, 0x0,0x20,0x5,0x0,0x0,0x59,0x2,0x0,0x0,0xa8,0x0,0x0,0x0,0x37,0x3,0x0, 0x0,0x63,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9,0x5,0x0,0x0,0xc7,0x1, 0x0,0x0,0xad,0x5,0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5c, 0x2,0x0,0x0,0x2c,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x0,0x0,0x0, 0x78,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x38,0x5,0x0, 0x0,0x56,0x5,0x0,0x0,0x3,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x3, 0x0,0x0,0x28,0x0,0x0,0x0,0xd2,0x1,0x0,0x0,0xa7,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0x2d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x50,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x11,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x43,0x0,0x0, 0x0,0xe0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0xad,0x0,0x0,0x0,0x25,0x3,0x0, 0x0,0x9e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0x59,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x70,0x2,0x0,0x0,0xa1, 0x0,0x0,0x0,0x53,0x2,0x0,0x0,0xf,0x3,0x0,0x0,0x67,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe,0x5,0x0,0x0,0xd1,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x44,0x5,0x0,0x0,0xf,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1b,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb,0x0, 0x0,0x0,0x5d,0x1,0x0,0x0,0x8b,0x1,0x0,0x0,0xe6,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xae,0x3,0x0,0x0,0x21,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x62,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x22,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x56,0x5,0x0, 0x0,0x58,0x5,0x0,0x0,0xe,0x3,0x0,0x0,0xc5,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0xf0,0x4,0x0,0x0,0xb0,0x5,0x0,0x0,0xc1,0x0,0x0,0x0,0xf5,0x4, 0x0,0x0,0x73,0x3,0x0,0x0,0x6,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41, 0x3,0x0,0x0,0xc6,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x27,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x12,0x2,0x0,0x0, 0xe0,0x1,0x0,0x0,0x35,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0xb6,0x5,0x0,0x0, 0xc6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x18,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0x73,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x56,0x5,0x0,0x0,0xd7,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x34,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe0,0x4,0x0,0x0,0xd8,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x35,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x5,0x0, 0x0,0x70,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0xc0,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0xd5,0x4,0x0,0x0,0x62, 0x5,0x0,0x0,0x26,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x39,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb8,0x0,0x0,0x0, 0xc7,0x1,0x0,0x0,0x81,0x2,0x0,0x0,0x77,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x50,0x3,0x0,0x0,0x6c,0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0x5f,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xad,0x5,0x0,0x0,0xd2,0x1,0x0,0x0,0x27,0x0, 0x0,0x0,0x14,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0xe7, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x5c,0x5,0x0,0x0, 0x65,0x5,0x0,0x0,0x3d,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x40,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x3,0x0, 0x0,0xc6,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0x36,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0xc0,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xf3,0x4,0x0,0x0,0xbc,0x5,0x0,0x0,0x62,0x0,0x0,0x0,0x12,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0x70,0x5,0x0,0x0,0xe7,0x2, 0x0,0x0,0xa4,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0x29,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xa,0x5,0x0,0x0,0x41,0x3,0x0,0x0,0xc4,0x3,0x0,0x0,0xba, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x4,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x42,0x3,0x0,0x0,0x6,0x5,0x0, 0x0,0x43,0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0x5f,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xc0,0x3,0x0,0x0,0x5c,0x3,0x0,0x0,0x6b,0x5,0x0,0x0,0x3e,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x26,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc4,0x2,0x0,0x0,0xb7,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5c,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xef,0x2, 0x0,0x0,0xfe,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x1f,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x29,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf7,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x61,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0, 0x0,0x9b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x22,0x2, 0x0,0x0,0x1f,0x1,0x0,0x0,0x48,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x44, 0x2,0x0,0x0,0x4f,0x1,0x0,0x0,0xde,0x4,0x0,0x0,0x27,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x68,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x77,0x3,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6a,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x50,0x0, 0x0,0x0,0xa,0x3,0x0,0x0,0x52,0x2,0x0,0x0,0x9b,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x76,0x1,0x0,0x0,0x5b,0x2,0x0,0x0,0x20,0x2,0x0,0x0,0x19, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x5,0x0,0x0,0x70,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5c,0x3,0x0,0x0,0xdb,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x74,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48, 0x3,0x0,0x0,0xd8,0x1,0x0,0x0,0xc,0x1,0x0,0x0,0x30,0x1,0x0,0x0,0xa7, 0x5,0x0,0x0,0x3c,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x76,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x5,0x0,0x0, 0xe7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0x4b,0x1,0x0, 0x0,0xfc,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0xfd,0x1,0x0,0x0,0xb5,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0xd1,0x2,0x0,0x0,0x1c,0x1, 0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x28, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0xeb,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0xd9,0x2,0x0,0x0,0xad,0x0,0x0,0x0,0x43,0x1,0x0, 0x0,0x49,0x5,0x0,0x0,0xb7,0x5,0x0,0x0,0x87,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2e,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x86,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7, 0x0,0x0,0x0,0xa0,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x87,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa7,0x5,0x0,0x0, 0xe6,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8a,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfd,0x1,0x0,0x0,0xfc,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8c,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x11,0x3, 0x0,0x0,0x70,0x2,0x0,0x0,0x55,0x1,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0xbb,0x5,0x0,0x0,0x23, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x69,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x5e,0x0,0x0, 0x0,0xd4,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x34,0x0, 0x0,0x0,0xea,0x4,0x0,0x0,0xb6,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x93,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc7, 0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x94,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x62,0x2,0x0,0x0, 0x49,0x1,0x0,0x0,0xbb,0x5,0x0,0x0,0x39,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x97,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x7b,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0x5a,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0x20,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0x5c,0x1,0x0,0x0,0xa3,0x0,0x0,0x0,0x9e, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0xaa,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x11,0x5,0x0,0x0,0xaa,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe1,0x4,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa3,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x54, 0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x58,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xba,0x5,0x0,0x0,0xc6,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x3,0x2,0x0,0x0,0x68,0x3,0x0,0x0,0xfe,0x4,0x0,0x0,0x7c,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0x29,0x3,0x0,0x0,0x15,0x2, 0x0,0x0,0xbb,0x1,0x0,0x0,0x57,0x2,0x0,0x0,0xe3,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0xc3,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xb9,0x3,0x0,0x0,0x30,0x1,0x0,0x0,0x90,0x5,0x0,0x0,0x9b,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x22,0x1,0x0,0x0,0x28,0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0x62,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38,0x3,0x0,0x0,0x70,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x15,0x3,0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb3,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7b,0x5,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x0, 0x0,0x0,0x2a,0x3,0x0,0x0,0xa,0x5,0x0,0x0,0x1e,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x79,0x5,0x0,0x0,0x10,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x4b,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x22,0x2,0x0,0x0, 0x95,0x3,0x0,0x0,0x8f,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xba,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2c,0x2,0x0, 0x0,0x15,0x1,0x0,0x0,0x83,0x5,0x0,0x0,0x86,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf,0x3,0x0,0x0,0x2f,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e, 0x0,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc0,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb8,0x0,0x0,0x0, 0xe9,0x1,0x0,0x0,0x3b,0x1,0x0,0x0,0x9f,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x15,0x2,0x0,0x0,0xed,0x2,0x0,0x0,0x76,0x0,0x0,0x0,0x38,0x1,0x0, 0x0,0x68,0x5,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc3,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x1, 0x0,0x0,0x6c,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0xae, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0x77,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe8,0x1,0x0,0x0,0xdc,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xca,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89, 0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcc,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x5,0x0,0x0, 0x46,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0xdc,0x4,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x44,0x2,0x0,0x0,0x6a,0x1,0x0,0x0,0x8e,0x2, 0x0,0x0,0x57,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0x70, 0x1,0x0,0x0,0x24,0x2,0x0,0x0,0x33,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd2,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0, 0x0,0x33,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x4,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x5,0x0,0x0,0x16,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0xb9,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdf,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa6,0x0,0x0,0x0,0xf,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe1,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x0, 0x0,0x0,0xb4,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0xc5, 0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x4a,0x2,0x0,0x0,0x18,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x0,0x0, 0x0,0x2b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x6d,0x0, 0x0,0x0,0x2f,0x2,0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xec,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x12, 0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x5e,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xe8,0x4,0x0,0x0,0xa6,0x5,0x0,0x0,0xbb,0x0,0x0,0x0,0xcf,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x71,0x1,0x0,0x0,0x15,0x2, 0x0,0x0,0x86,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x6c, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9,0x5,0x0,0x0,0x2c,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x13,0x5,0x0,0x0,0x6f,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xc0,0x2,0x0,0x0,0x5d,0x1,0x0,0x0,0x99,0x5,0x0,0x0,0xaf,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x2f,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x79,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfc,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x84,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfd,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x46,0x1, 0x0,0x0,0xed,0x2,0x0,0x0,0xb5,0x5,0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0xb9,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x45,0x5,0x0,0x0,0x31,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe,0x1,0x0, 0x0,0x55,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x21,0x2,0x0,0x0,0x68,0x5, 0x0,0x0,0x6,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa3, 0x2,0x0,0x0,0x7,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x5,0x0,0x0, 0x8b,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x3,0x0,0x0,0xf4,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x2,0x0,0x0,0x36,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x35,0x3,0x0,0x0,0x11,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x10,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x1,0x0, 0x0,0x6d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x85,0x2,0x0,0x0,0x90,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xa7,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x67,0x5,0x0,0x0,0x4e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x0, 0x0,0x0,0x42,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xef, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0x97,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x36,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x41,0x5,0x0,0x0,0x46,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x28,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa2, 0x0,0x0,0x0,0x89,0x1,0x0,0x0,0xb7,0x1,0x0,0x0,0x99,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x7b,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xea,0x4,0x0,0x0,0x3c,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd4,0x2, 0x0,0x0,0x8f,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x5,0x0,0x0,0x44, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0xc7,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x46,0x5,0x0, 0x0,0x3,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0xdf,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0xb0,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0xfc,0x1,0x0,0x0,0x6d,0x0,0x0,0x0, 0x5d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x34,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xba,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5b,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xee,0x2,0x0,0x0,0xd2,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x20,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0xec,0x0,0x0,0x0,0x92,0x2,0x0, 0x0,0xd,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x92,0x3,0x0,0x0,0x30,0x2, 0x0,0x0,0x9d,0x5,0x0,0x0,0x24,0x2,0x0,0x0,0x6d,0x5,0x0,0x0,0x7,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x3d, 0x1,0x0,0x0,0xd5,0x1,0x0,0x0,0xa7,0x5,0x0,0x0,0x2e,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x64,0x1,0x0,0x0,0xc6,0x3,0x0,0x0, 0xf6,0x4,0x0,0x0,0x1f,0x5,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x43,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x81,0x1,0x0,0x0,0xd9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x45,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3, 0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x5,0x0,0x0,0x35, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7,0x4,0x0,0x0,0x21,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x7a,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7b,0x5,0x0,0x0,0x14,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb2, 0x1,0x0,0x0,0xbb,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x53,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x25,0x3,0x0,0x0, 0x15,0x5,0x0,0x0,0x76,0x1,0x0,0x0,0x39,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xc0,0x5,0x0,0x0,0xc4,0x1,0x0,0x0,0x26,0x3,0x0,0x0,0x6e,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xba,0x5,0x0,0x0,0xb4,0x3,0x0,0x0,0x7a,0x5,0x0,0x0,0x52, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8f,0x2,0x0,0x0,0x93,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x8,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe5,0x4,0x0,0x0,0x9e,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x62,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d, 0x5,0x0,0x0,0x9f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x64,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x64,0x0,0x0,0x0, 0x79,0x5,0x0,0x0,0xff,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x66,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x44,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0x4d,0x0,0x0,0x0,0xd5,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x97,0x1,0x0,0x0,0x64,0x2,0x0,0x0,0xaf,0x2, 0x0,0x0,0x9d,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x23, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0xe2,0x1,0x0,0x0, 0xc0,0x2,0x0,0x0,0x2b,0x3,0x0,0x0,0x7f,0x0,0x0,0x0,0x92,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x67,0x5,0x0,0x0,0x23,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7, 0x0,0x0,0x0,0x24,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x73,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x5,0x0,0x0, 0xaa,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x3,0x0,0x0,0x1e,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x47,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x79,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xc0,0x2,0x0,0x0,0xde,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x35,0x3,0x0,0x0, 0x62,0x5,0x0,0x0,0x9c,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb,0x2,0x0, 0x0,0xc6,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x19,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x71,0x1,0x0,0x0,0x3a,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0x8f,0x1,0x0,0x0,0x87,0x0,0x0,0x0, 0x9b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0xe7,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5b,0x5,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1e,0x2,0x0,0x0,0x39,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xea,0x4,0x0, 0x0,0x23,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0xf5,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x14,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x3,0x0,0x0,0xb2,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf3,0x4,0x0,0x0,0xb1,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x5c,0x2,0x0,0x0,0x98,0x3,0x0,0x0,0xde,0x2,0x0,0x0, 0xab,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0xb1,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x89,0x1,0x0,0x0,0x40,0x5, 0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0xb7, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0xf1,0x0,0x0,0x0, 0x54,0x1,0x0,0x0,0x2c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x93,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1a,0x3,0x0, 0x0,0x49,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x4a,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x49,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x55,0x0,0x0,0x0,0xd5,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x52,0x3,0x0,0x0,0x44, 0x1,0x0,0x0,0x3b,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x97,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x5,0x0,0x0, 0xb6,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x84,0x5,0x0,0x0,0x12,0x1,0x0, 0x0,0x5a,0x5,0x0,0x0,0x50,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x62,0x5, 0x0,0x0,0x68,0x1,0x0,0x0,0x58,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x9,0x3,0x0,0x0,0xb6,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xee, 0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0x76,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2b,0x5,0x0,0x0,0x93,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe9,0x4,0x0,0x0,0xf8,0x4,0x0,0x0,0x9a,0x0,0x0,0x0,0x58,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0x98,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x55,0x1,0x0,0x0,0x9,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x3, 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x21,0x5,0x0,0x0,0x32, 0x5,0x0,0x0,0x3a,0x3,0x0,0x0,0x1c,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x5f, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x23,0x2,0x0,0x0, 0x49,0x3,0x0,0x0,0x8c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x3,0x0, 0x0,0x43,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xe8,0x4, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e,0x2,0x0,0x0,0xa2,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0xa8,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaf,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x29,0x2,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x2, 0x0,0x0,0x2d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x2,0x0,0x0,0xb4, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0xbf,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0xce,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x24,0x3,0x0,0x0,0xeb,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd9, 0x2,0x0,0x0,0x31,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x99,0x3,0x0,0x0,0xfb,0x1,0x0,0x0,0x81,0x1,0x0,0x0, 0x56,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x56,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x86,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x5f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x62,0x2,0x0,0x0,0x66,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xcb,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0, 0x0,0xbb,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x3,0x0,0x0,0xde,0x4, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0x2f, 0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x0,0x0,0x0, 0x6a,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xa7,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xaa,0x3,0x0,0x0,0x18,0x0,0x0,0x0,0x1e,0x2, 0x0,0x0,0xed,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0x5a, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0xfd,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x71,0x1,0x0,0x0,0xaa,0x1,0x0, 0x0,0x37,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0x42,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x1d,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xaf,0x5,0x0,0x0,0x97,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x36,0x5,0x0,0x0,0x40,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0xcb,0x0,0x0, 0x0,0x6c,0x3,0x0,0x0,0x18,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x3, 0x0,0x0,0xaa,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x94, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x66,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0x12,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb5,0x3,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3a, 0x3,0x0,0x0,0x59,0x4,0x0,0x0,0xb3,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x31,0x3,0x0,0x0,0x97,0x1,0x0,0x0,0x69,0x5,0x0,0x0,0x1d,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x5f,0x2,0x0,0x0,0x56,0x5, 0x0,0x0,0x66,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x27,0x2,0x0,0x0,0x42,0x2,0x0,0x0, 0xd1,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfb,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x3,0x0, 0x0,0xcb,0x0,0x0,0x0,0x7c,0x5,0x0,0x0,0xb,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x22,0x3,0x0,0x0,0x4c,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0x4,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x2,0x0,0x0,0x2b,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x77,0x1,0x0,0x0, 0xe6,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xf3,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x1,0x0,0x0,0xbf,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x84,0x5,0x0,0x0,0x80,0x5,0x0,0x0,0x57,0x2,0x0,0x0,0xa3, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x5,0x0,0x0,0x4,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x41,0x5,0x0,0x0,0x2c,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1a,0x5,0x0,0x0,0x13,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x27, 0x5,0x0,0x0,0xf4,0x4,0x0,0x0,0xc3,0x5,0x0,0x0,0xa6,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x63,0x0,0x0,0x0,0xb6,0x5,0x0,0x0, 0x8f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x25,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0x58,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x86,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x18,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x3,0x0, 0x0,0x3c,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0x2e,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x5,0x0,0x0,0x5c,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x35,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xaf,0x2,0x0,0x0,0x18,0x1,0x0,0x0,0x7f,0x0,0x0,0x0,0x1b,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x23,0x3,0x0,0x0,0x7d,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x23,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x30,0x5,0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x26,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x2,0x0, 0x0,0xb2,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x3,0x0,0x0,0x3d,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x2,0x0,0x0,0x3a,0x0,0x0,0x0,0x3e, 0x3,0x0,0x0,0x3f,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x29,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x3,0x0,0x0, 0x97,0x5,0x0,0x0,0xf4,0x4,0x0,0x0,0x43,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x24,0x5,0x0,0x0,0xd3,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2c,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xb,0x3, 0x0,0x0,0x24,0x1,0x0,0x0,0xb,0x1,0x0,0x0,0x8a,0x0,0x0,0x0,0xf,0x5, 0x0,0x0,0xf4,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0xa, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x1f,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc2,0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x26, 0x5,0x0,0x0,0xc9,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3d,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x2,0x0,0x0, 0x5d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x80,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x37,0x0, 0x0,0x0,0xed,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x60, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0xc1,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x57,0x3,0x0,0x0,0xfb,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1d,0x5,0x0,0x0,0xed,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7, 0x0,0x0,0x0,0xd,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4c,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x2,0x0,0x0, 0x48,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x5,0x0,0x0,0xc9,0x1,0x0, 0x0,0x9c,0x1,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x52,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x0, 0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x2,0x0,0x0,0x21, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0xfa,0x4,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x18,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xbb,0x5,0x0,0x0,0x7c,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc0, 0x2,0x0,0x0,0x92,0x5,0x0,0x0,0xca,0x1,0x0,0x0,0xce,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0x2e,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xaf,0x5,0x0,0x0,0xa5,0x5,0x0,0x0,0x76,0x1,0x0,0x0,0x6f,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x5,0x0,0x0,0x2e,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xea,0x4,0x0,0x0,0x85,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x64,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x43,0x2,0x0,0x0,0x74,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x69,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0, 0x0,0x6d,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x99,0x3,0x0,0x0,0x60,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0,0xc4,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0xa4,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x72,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf4,0x4,0x0,0x0,0x79,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x74,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x62,0x5, 0x0,0x0,0xe8,0x1,0x0,0x0,0xad,0x3,0x0,0x0,0x9d,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe7,0x2,0x0,0x0,0x7f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x79,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9b,0x3,0x0,0x0,0xfc,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x5,0x0, 0x0,0xd,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x8a,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x62,0x5,0x0,0x0,0x47,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1e,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa3,0x3,0x0,0x0,0xb0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x82,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x12,0x2, 0x0,0x0,0xf,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0x7f, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x3,0x0,0x0,0x38,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0xa,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x76,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd, 0x5,0x0,0x0,0x56,0x5,0x0,0x0,0xbe,0x2,0x0,0x0,0x8e,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x19,0x2,0x0,0x0,0x77,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xcc,0x1,0x0,0x0,0x73,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x93,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x5, 0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfa,0x4,0x0,0x0,0x59, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x38,0x3,0x0,0x0,0x78,0x5,0x0,0x0, 0x49,0x1,0x0,0x0,0x20,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x98,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x1,0x0, 0x0,0x58,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x63,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0xc6,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x1c,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9d,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x68,0x5,0x0,0x0,0xba,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9e,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x3, 0x0,0x0,0x9d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0x77, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc6,0x3,0x0,0x0,0x25,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x60,0x5,0x0,0x0,0x40,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc6,0x0,0x0,0x0,0x7a,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa8,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b, 0x5,0x0,0x0,0x98,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa9,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x2,0x0,0x0, 0x94,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x25,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0xbf,0x2, 0x0,0x0,0x25,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x5,0x0,0x0,0x92, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0xa6,0x2,0x0,0x0, 0xbe,0x2,0x0,0x0,0x7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb0,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x0,0x0, 0x0,0x6c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe2,0x2,0x0,0x0,0x60,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x9c,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf,0x5,0x0,0x0,0x2a,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb7,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3b,0x3,0x0,0x0,0x40,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xba,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x0, 0x0,0x0,0xb2,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x64, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x4c,0x1,0x0,0x0, 0x44,0x5,0x0,0x0,0xd,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xbe,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x4,0x0, 0x0,0x36,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0xae,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x74, 0x0,0x0,0x0,0xff,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xce,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x1,0x0,0x0, 0x3e,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x7a,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x91,0x1,0x0,0x0,0x2f,0x3, 0x0,0x0,0xda,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x2,0x0,0x0,0xc6, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0xc5,0x1,0x0,0x0, 0x71,0x0,0x0,0x0,0xac,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd3,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x73,0x2,0x0, 0x0,0x4e,0x1,0x0,0x0,0x54,0x5,0x0,0x0,0x64,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc6,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56, 0x2,0x0,0x0,0x14,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xda,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x13,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x96,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x2,0x0,0x0,0x0,0x7c,0x5, 0x0,0x0,0xc4,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0xf0, 0x1,0x0,0x0,0xe6,0x4,0x0,0x0,0x39,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd2,0x1,0x0,0x0,0xc5,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe4,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x0,0x0, 0x0,0x9b,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0xba,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xfc,0x1,0x0,0x0,0x6c, 0x0,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xeb,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0xd0,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xed,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xa6,0x2,0x0,0x0,0x22,0x2,0x0,0x0,0x2e,0x2,0x0,0x0,0x64,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0x69,0x3,0x0,0x0,0x1,0x3, 0x0,0x0,0xb2,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0xd,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf4,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x14,0x2,0x0,0x0,0xbe,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf5,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc7,0x0,0x0, 0x0,0xad,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0xd7,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x2,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xb9,0x5,0x0,0x0,0xc2,0x3,0x0,0x0,0xc,0x3,0x0,0x0, 0x52,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0xab,0x5,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfd,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x84,0x1, 0x0,0x0,0xa0,0x5,0x0,0x0,0x55,0x3,0x0,0x0,0x97,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x55,0x2,0x0,0x0,0x61,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x0,0x0, 0x0,0xa,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x7d,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa,0x3,0x0,0x0,0xa8,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x9e,0x0,0x0,0x0, 0x73,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x59,0x4,0x0, 0x0,0xd,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2f,0x2, 0x0,0x0,0xef,0x2,0x0,0x0,0x54,0x3,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x59,0x3,0x0,0x0,0xa1,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xd9,0x4,0x0,0x0,0x8a,0x1,0x0,0x0,0x72,0x5,0x0,0x0,0x63,0x5,0x0,0x0, 0x66,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x10,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x2,0x0, 0x0,0x93,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0xf5,0x0, 0x0,0x0,0x1c,0x1,0x0,0x0,0x36,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x75, 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x16,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0,0x0, 0xec,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0x85,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1c,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x54,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1d,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0, 0x0,0x3,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0xce,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0xc4,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x54,0x5,0x0,0x0,0xef,0x0,0x0,0x0,0x17,0x2,0x0,0x0, 0x17,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x28,0x1,0x0, 0x0,0x22,0x2,0x0,0x0,0x2a,0x5,0x0,0x0,0xba,0x5,0x0,0x0,0x9d,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0xc,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x46,0x1,0x0,0x0,0x49,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x56,0x1,0x0,0x0,0x59,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2d,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x0,0x0, 0x0,0x7,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x92,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x5,0x0,0x0,0x6a,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x31,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x34,0x1,0x0,0x0,0x59,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x32,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x2, 0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x73, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0x19,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x41,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5f,0x5,0x0,0x0,0x30,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x40,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae, 0x3,0x0,0x0,0x89,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x41,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xaf,0x5,0x0,0x0, 0x5f,0x2,0x0,0x0,0x33,0x5,0x0,0x0,0xac,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x45,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x6c,0x2,0x0,0x0,0x20,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x61,0x0,0x0, 0x0,0xbe,0x3,0x0,0x0,0xfa,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x48,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x5, 0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x42, 0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4a,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x72,0x5,0x0,0x0,0xec,0x0,0x0,0x0,0x6b,0x5,0x0,0x0,0x2f,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0x41,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x41,0x5,0x0,0x0,0xbc,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x55,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb, 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x56,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x5,0x0,0x0, 0xcc,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x2,0x0,0x0,0x11,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0xfc,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x5b,0x5,0x0,0x0,0x57,0x2,0x0,0x0,0x3f, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x4d,0x0,0x0,0x0, 0xad,0x3,0x0,0x0,0x16,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x63,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7,0x2,0x0, 0x0,0xfe,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x2,0x0,0x0,0x59,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0xbb,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x35,0x1,0x0,0x0,0x59,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6b,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x3, 0x0,0x0,0x77,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0xbd, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3c,0x5,0x0,0x0,0xfa,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe9,0x2,0x0,0x0,0xa1,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xad,0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x76,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x99, 0x2,0x0,0x0,0x15,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x36,0x3,0x0,0x0,0xe,0x2,0x0,0x0, 0x1e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x5,0x0,0x0,0x11,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0x4d,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x65,0x5,0x0,0x0,0x5a,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7d,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xc3,0x5,0x0,0x0,0x5a,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x10,0x5,0x0,0x0, 0x32,0x3,0x0,0x0,0x41,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7e,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x5,0x0, 0x0,0x19,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xa8,0x3, 0x0,0x0,0xb5,0x0,0x0,0x0,0xe,0x5,0x0,0x0,0xbe,0x3,0x0,0x0,0xa7,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x5e,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x85,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2e,0x0,0x0,0x0,0x4a,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x87,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x3, 0x0,0x0,0x37,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x1,0x0,0x0,0x3f, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0,0x0,0xb6,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x68,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x35,0x3,0x0,0x0,0xfb,0x4,0x0,0x0,0xd9,0x2,0x0,0x0,0x88,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0xc1,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x28,0x3,0x0,0x0,0xbc,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x93,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x29,0x2,0x0,0x0,0x43,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x98,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x1, 0x0,0x0,0xe,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x33, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0xaa,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0x29,0x5,0x0,0x0,0x14,0x2,0x0, 0x0,0xf1,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x19,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x4,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc,0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa7,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2,0x0, 0x0,0x0,0x32,0x5,0x0,0x0,0x9b,0x1,0x0,0x0,0x8b,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x62,0x5,0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x27,0x1,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xaa,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x2,0x0, 0x0,0x7a,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x5,0x0,0x0,0x60,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x5,0x0,0x0,0x6f,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0x53,0x0,0x0,0x0,0xc7,0x1,0x0,0x0, 0x4d,0x1,0x0,0x0,0xb1,0x2,0x0,0x0,0x27,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x1a,0x3,0x0,0x0,0x22,0x1,0x0,0x0,0x43,0x0,0x0,0x0,0x37,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x4c,0x1,0x0,0x0,0x2b,0x5, 0x0,0x0,0xc0,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x9e, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0x2e,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x7a,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x81,0x1,0x0,0x0,0x5b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb8,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73, 0x2,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x1,0x0,0x0, 0x84,0x0,0x0,0x0,0x76,0x5,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe,0x3,0x0,0x0,0x5f,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbf,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6d,0x5, 0x0,0x0,0x4d,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0xa8, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x31,0x3,0x0,0x0,0xd8,0x4,0x0,0x0, 0x4c,0x2,0x0,0x0,0x16,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc2,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0, 0x0,0x23,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x8a,0x5,0x0,0x0,0x14,0x1,0x0,0x0,0xd7,0x4,0x0,0x0,0x57,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0xd9,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0xd7,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xce,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xad,0x3,0x0,0x0,0x7a,0x2,0x0,0x0,0x17,0x2,0x0,0x0,0xdf,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x38,0x5,0x0,0x0,0x99,0x5,0x0,0x0,0x72,0x5,0x0, 0x0,0x7,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x5f,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x1b,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0x78,0x0,0x0,0x0,0x19,0x5,0x0,0x0, 0x29,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x9d,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0xe2,0x0,0x0,0x0,0x97,0x3, 0x0,0x0,0x64,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfd,0x4,0x0,0x0,0x8, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0xd,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0x1e,0x0,0x0,0x0,0x4,0x3,0x0, 0x0,0x99,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x3b,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x9c,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x6b,0x5,0x0,0x0,0x68,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf2,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x90,0x5,0x0,0x0,0x10,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf4,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x1, 0x0,0x0,0x50,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87,0x5,0x0,0x0,0xd, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0x24,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6a,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfc,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f, 0x0,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfd,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x2,0x0,0x0, 0x1e,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x13,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x31,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x51,0x0,0x0,0x0,0x43,0x3,0x0,0x0,0x4a,0x1,0x0,0x0,0x34,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0x28,0x3,0x0,0x0,0xac,0x3,0x0, 0x0,0xf5,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x5,0x0,0x0,0x94,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0x25,0x1,0x0,0x0,0xdb,0x2,0x0,0x0, 0x16,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x54,0x1,0x0, 0x0,0x56,0x1,0x0,0x0,0x1d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x12,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x99,0x5, 0x0,0x0,0xf9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x1,0x0,0x0,0x51, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf0,0x4,0x0,0x0,0x72,0x3,0x0,0x0, 0x40,0x1,0x0,0x0,0x53,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1d,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x50,0x0,0x0, 0x0,0xbe,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x1e,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x63, 0x1,0x0,0x0,0xe4,0x0,0x0,0x0,0x90,0x1,0x0,0x0,0xa4,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x26,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xea,0x2,0x0,0x0,0x74,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x27,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x2, 0x0,0x0,0xfa,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x2,0x0,0x0,0xa, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x71,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x22,0x5,0x0,0x0,0xd3,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x30,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x77, 0x3,0x0,0x0,0x42,0x3,0x0,0x0,0x27,0x0,0x0,0x0,0xc,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x30,0x1,0x0,0x0,0x33,0x5,0x0,0x0, 0x3,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0x7e,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd,0x3,0x0,0x0,0x1d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3d,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x90,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x43,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc7,0x1,0x0, 0x0,0x77,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7,0x2,0x0,0x0,0x3e,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e,0x2,0x0,0x0,0xc7,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x38,0x2,0x0,0x0,0x92,0x1,0x0,0x0, 0x98,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0xa,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xe9,0x1,0x0,0x0,0xa0,0x1,0x0,0x0,0x10,0x0, 0x0,0x0,0xfa,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x5,0x0,0x0,0xae, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x3,0x0,0x0,0x43,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb5,0x3,0x0,0x0,0xb,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x65,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x89, 0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x30,0x5,0x0,0x0,0x4e,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1c,0x3,0x0,0x0,0x61,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6d,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbc,0x3,0x0,0x0,0x3f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6e,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0xc7, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0xbf,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0xa7,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xfd,0x2,0x0,0x0,0x52,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd, 0x4,0x0,0x0,0xf,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7a,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfd,0x1,0x0,0x0, 0x97,0x3,0x0,0x0,0xd9,0x2,0x0,0x0,0xc9,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7b,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x55,0x1,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7c,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x0, 0x0,0x0,0x5f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x72,0x3,0x0,0x0,0x30, 0x1,0x0,0x0,0x2e,0x2,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x6b,0x5,0x0,0x0,0x19,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x80,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x2,0x0, 0x0,0xc2,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x22,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x5,0x0,0x0,0x78,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd9,0x4,0x0,0x0,0xc2,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x89,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x98,0x1,0x0,0x0,0x18,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x13,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0xea,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0xeb,0x4,0x0,0x0,0x91,0x0,0x0,0x0,0xa6, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x1,0x0,0x0,0x55,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xa7,0x5,0x0, 0x0,0x6d,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x2,0x0,0x0,0x4e,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5f,0x3,0x0,0x0,0x4d,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0xe2,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x99,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x13,0x5,0x0,0x0,0x8c,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9a,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x4, 0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x49, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0xa,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x96,0x3,0x0,0x0,0x8f,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x50, 0x3,0x0,0x0,0x9,0x5,0x0,0x0,0x62,0x1,0x0,0x0,0x76,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x9,0x3,0x0,0x0,0xbe,0x3,0x0,0x0, 0xdf,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9,0x5,0x0,0x0,0xd,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x6,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0x27,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xaf,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x48,0x3,0x0,0x0,0xd8,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb0,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x0,0x0, 0x0,0x77,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0,0x0,0xba,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x3,0x0,0x0,0xe6,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa3,0x3,0x0,0x0,0x8f,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1a,0x3,0x0,0x0,0x3f,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb6,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x2, 0x0,0x0,0xdb,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x2a, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x50,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x99,0x3,0x0,0x0,0xe0,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x8c,0x2,0x0,0x0,0x48,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c, 0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x5,0x0,0x0, 0x7d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0x89,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0x8f,0x2, 0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x73,0x2,0x0,0x0,0x8a, 0x5,0x0,0x0,0xf1,0x1,0x0,0x0,0x24,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xcc,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x7a,0x5,0x0,0x0,0xd8,0x1,0x0,0x0,0x3e,0x5,0x0,0x0,0xd4,0x4,0x0,0x0, 0xf,0x3,0x0,0x0,0x2f,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xcd,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x3,0x0, 0x0,0x58,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x5,0x1, 0x0,0x0,0xe1,0x4,0x0,0x0,0xfe,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd0,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf7, 0x4,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd1,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb3,0x0,0x0,0x0, 0xa1,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3,0x0,0x0,0x1,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0xbf,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x78,0x5,0x0,0x0,0xe9,0x1,0x0,0x0,0xa,0x0,0x0,0x0,0xe2, 0x1,0x0,0x0,0xc5,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd7,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xf9,0x4,0x0,0x0,0x1c,0x5,0x0,0x0,0x49,0x3,0x0,0x0,0x29,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0x5a,0x1,0x0,0x0,0x84,0x0,0x0, 0x0,0x47,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x6,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x10,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe2,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x5e,0x2,0x0,0x0,0x1a,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5, 0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0xba, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x5,0x0,0x0,0x9c,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x10,0x3,0x0,0x0,0x20,0x1,0x0,0x0,0x84,0x5,0x0, 0x0,0xb6,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x26,0x5,0x0,0x0,0x5c,0x3, 0x0,0x0,0x78,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9, 0x2,0x0,0x0,0x90,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xee,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x5,0x0,0x0, 0x61,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x56,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0xb7,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0xbe,0x3,0x0,0x0,0xb6, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0x62,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x70,0x2,0x0,0x0,0x5b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa3, 0x0,0x0,0x0,0x3c,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfc,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x0,0x0,0x0, 0x3a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0xd6,0x1,0x0, 0x0,0x5e,0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x5, 0x0,0x0,0x95,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf1,0x2,0x0,0x0,0xc2, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x94,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe9,0x4,0x0,0x0,0xf2,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x15,0x2,0x0,0x0,0x7a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x12, 0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0x4a,0x1,0x0,0x0,0x3e,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x28,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xda,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x0, 0x0,0x0,0x40,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0x1e, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x3,0x0,0x0,0x24,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2e,0x2,0x0,0x0,0x3f,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe1,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x29,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0x52,0x1,0x0,0x0,0xf3, 0x4,0x0,0x0,0x9e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0, 0xe0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38,0x3,0x0,0x0,0x95,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0x19,0x0,0x0,0x0,0xc5,0x1, 0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x55, 0x3,0x0,0x0,0x1e,0x2,0x0,0x0,0x94,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x19, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x1c,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x6d,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xbd,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e, 0x3,0x0,0x0,0x6a,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5,0x3,0x0,0x0, 0xac,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0x3d,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x81,0x5,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf8,0x4,0x0,0x0,0x72,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3b,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x22,0x2,0x0,0x0,0x93,0x5,0x0,0x0,0x9b,0x0,0x0,0x0,0xdc,0x4,0x0,0x0, 0xc4,0x2,0x0,0x0,0x3e,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8f,0x5,0x0, 0x0,0x20,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0x35,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0xd8,0x4,0x0,0x0,0x88, 0x5,0x0,0x0,0xc,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x41,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x2,0x0,0x0, 0x72,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x26,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x6d,0x2,0x0,0x0,0x98,0x2,0x0,0x0,0x76,0x0,0x0,0x0,0x6a, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x23,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x90,0x2,0x0,0x0,0x36,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf, 0x2,0x0,0x0,0x7a,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x0,0x0,0x0, 0x1b,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x1,0x0,0x0,0x8f,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x67,0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0x1d, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x1,0x0,0x0,0x56,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x34,0x1,0x0,0x0,0x50,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x3a,0x5,0x0,0x0,0xaa,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x64,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b, 0x3,0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x67,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x5,0x0,0x0, 0x32,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0xa8,0x3,0x0, 0x0,0x3c,0x3,0x0,0x0,0x66,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6b,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x3, 0x0,0x0,0xfe,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x8c,0x2,0x0,0x0,0xc0,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xe9,0x1,0x0,0x0,0xa1,0x5,0x0,0x0,0xa,0x2,0x0,0x0,0x4a,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0xd3,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x90,0x1,0x0,0x0,0x90,0x5,0x0,0x0,0x59,0x5,0x0,0x0,0xc,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0x72,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0x15,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7a,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x28,0x0,0x0,0x0,0xba,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x86,0x1, 0x0,0x0,0x92,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x21, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x1,0x0,0x0,0x31,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0xd,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x70,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0x22,0x0,0x0,0x0,0x4d,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0xd2,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x2b,0x3,0x0,0x0,0xaf,0x0,0x0,0x0, 0xf7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x3,0x0,0x0,0x4c,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x2,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0xf7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x97,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xd2,0x2,0x0,0x0,0x14,0x1,0x0,0x0,0x5c,0x3,0x0,0x0,0x5c,0x0,0x0,0x0, 0x56,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9a,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0, 0x0,0x33,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x85,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6d,0x5,0x0,0x0,0x18,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x60,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa2,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x52,0x3,0x0,0x0,0x9e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa6,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x50,0x0, 0x0,0x0,0xe0,0x1,0x0,0x0,0x73,0x2,0x0,0x0,0xa1,0x1,0x0,0x0,0x7d,0x1, 0x0,0x0,0x33,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x84,0x5,0x0,0x0,0xd3, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x2,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xec,0x4,0x0,0x0,0x2c,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x77,0x3,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x19, 0x1,0x0,0x0,0x1b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb0,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x0,0x0,0x0, 0x47,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0x99,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x86,0x5,0x0,0x0,0x52,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x17,0x5,0x0,0x0,0x5f,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb9,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x62,0x1,0x0,0x0,0x2a,0x3,0x0,0x0,0x46,0x3,0x0,0x0,0xc3,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x11,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x32,0x3,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbe,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17, 0x5,0x0,0x0,0x62,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x1,0x0,0x0, 0x9a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x1b,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0xc0,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xca,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x45,0x1,0x0,0x0,0x40,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x68,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x10,0x1,0x0,0x0,0xe0,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd2,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe2, 0x2,0x0,0x0,0xdb,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd3,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x5,0x0,0x0, 0xed,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x34,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x98,0x5,0x0,0x0,0xeb,0x4, 0x0,0x0,0x6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0xf6, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x98,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0x79,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x80,0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x8c,0x0, 0x0,0x0,0x76,0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a, 0x0,0x0,0x0,0x73,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe4,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfe,0x1,0x0,0x0, 0xa0,0x1,0x0,0x0,0x35,0x2,0x0,0x0,0x4d,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe6,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xb9,0x5,0x0,0x0,0xa,0x2,0x0,0x0,0x4e,0x0,0x0,0x0,0x14,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0xe3,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6a,0x2,0x0,0x0,0x68,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xeb,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x90,0x1,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xed,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x2,0x0, 0x0,0xfc,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xf0,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x5,0x0,0x0,0xeb,0x4,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf5,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2b,0x2,0x0,0x0,0x32,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf6,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf1,0x0, 0x0,0x0,0xb9,0x5,0x0,0x0,0x13,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x7d,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf9,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x24,0x1,0x0,0x0,0xa9,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfb,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x0,0x0, 0x0,0x33,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x56,0x2,0x0,0x0,0x67,0x2, 0x0,0x0,0x77,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfe,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0xf8,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x4,0x0,0x0, 0x15,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x7e,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x3,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc8,0x3,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x4,0x0, 0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0xf9,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe6,0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0xee,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xda,0x2,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2, 0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x97, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x16,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbb,0x4,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd5,0x3,0x0,0x0,0x44,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2, 0x1,0x0,0x0,0xb5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x1,0x0,0x0, 0x33,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0x65,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x1,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0x32,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x2d,0x2,0x0,0x0,0xf7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x87,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x3,0x0, 0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0xcd,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0xec,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x7d,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x68,0x4,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3, 0x0,0x0,0xfa,0x0,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xa8, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xb3,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x57,0x4,0x0,0x0,0xef,0x3,0x0,0x0,0xe6,0x1,0x0, 0x0,0x76,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0x8,0x4, 0x0,0x0,0x9c,0x4,0x0,0x0,0x83,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e, 0x2,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1c,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0, 0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0xa2,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x4,0x0,0x0,0xb,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x57,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x2,0x0, 0x0,0xda,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2,0x0,0x0,0xed,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x8d,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xdd,0x1,0x0,0x0,0x8d,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4, 0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xef,0x1,0x0,0x0,0x94, 0x1,0x0,0x0,0x2,0x4,0x0,0x0,0x13,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xbb,0x4,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x3,0x0, 0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x1,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x3,0x0,0x0,0xa9,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x87,0x1,0x0,0x0,0x7b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xee,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfc,0x2,0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x74,0x2, 0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xe9, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0xcd,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0xb5,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x43,0x4,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76, 0x4,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0, 0xab,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0xce,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x87,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x84,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0xe9, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x75,0x2,0x0,0x0,0x13,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa8,0x1,0x0,0x0,0xac,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x76,0x4,0x0,0x0,0x86,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4, 0x1,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7a,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd5,0x3,0x0,0x0, 0x75,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x58,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0x58,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xef,0x1,0x0,0x0,0xa5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x91,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcb,0x1,0x0,0x0,0xe2,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x93,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x3,0x0, 0x0,0x44,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0xa0,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xd,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xbb,0x4,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4,0x4,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2, 0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0xb5, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x31,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x41,0x4,0x0,0x0,0x13,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf6,0x3,0x0,0x0,0xc7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82, 0x3,0x0,0x0,0x12,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xda,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0, 0xce,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x3,0x0,0x0,0xd,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,0xa6,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x33,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xf,0x4,0x0,0x0,0x8,0x4,0x0,0x0,0xfe,0x3,0x0,0x0,0xd0,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x80,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6f,0x2,0x0,0x0,0x75,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda, 0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x31,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0, 0xa5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0x82,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x43,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc8,0x1,0x0,0x0,0x50,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x44,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x85,0x3,0x0, 0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xa9,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x74,0x2,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xcb,0x1,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x79,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x4, 0x0,0x0,0x71,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x3,0x0,0x0,0xfa, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x6d,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x41,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xea,0x1,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c, 0x4,0x0,0x0,0x3e,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xaa,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0, 0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb2,0x3,0x0,0x0,0x7,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x4,0x0,0x0,0x40,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x93,0x3,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcb,0x1,0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xcc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x1,0x0, 0x0,0xd4,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x82,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfe,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8d,0x1, 0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0x86, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x9d,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xea,0x1,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c, 0x4,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x40,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0, 0xa,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0x71,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x7f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x59,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xda,0x2,0x0,0x0,0x64,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x60,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x85,0x3,0x0, 0x0,0xb5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x8,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xda,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xa7,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x86,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf8,0x3,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x92,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1, 0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xcd, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x1,0x0,0x0,0xd4,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xea,0x1,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb8,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde, 0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb9,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0, 0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xc7,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xe1,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x33,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe0,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf2,0x1,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe3,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x4,0x0, 0x0,0xca,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x5,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0,0x0,0x11,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7,0x4,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x19,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1, 0x0,0x0,0xf7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xc2, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0xbd,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0x82,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe5,0x3,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2, 0x4,0x0,0x0,0xca,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5b,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x1,0x0,0x0, 0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x86,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0x9,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7d,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc,0x2,0x0,0x0,0x63,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x91,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7,0x2,0x0, 0x0,0xbe,0x4,0x0,0x0,0xc2,0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x87,0x3,0x0,0x0,0xa2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa1,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43, 0x4,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0, 0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0xd0,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xed,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9f,0x2,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf1,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0, 0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0xa0,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x2,0x0,0x0,0xf3,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x85,0x3,0x0,0x0,0x84,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x12,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf9,0x3,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x20,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1, 0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0x64, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x4a,0x4,0x0,0x0, 0xd9,0x3,0x0,0x0,0x86,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x36,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0, 0x0,0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x7c,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0x76,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x45,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc,0x4,0x0,0x0,0xf7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4b,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x1, 0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x99, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0xf9,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x75,0x2,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7f,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x64,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83, 0x2,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x69,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0, 0x62,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x4,0x0,0x0,0xa0,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x85,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf2,0x1,0x0,0x0,0x86,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x87,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0, 0x0,0x96,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0xe5,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0x86,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa2,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf,0x4,0x0,0x0,0xce,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa9,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4, 0x0,0x0,0xed,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xfa, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xb8,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xa7,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x75,0x2,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd2,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54, 0x2,0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x2,0x0,0x0, 0x65,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x4,0x0,0x0,0xbd,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x7a,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xee,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xea,0x1,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xef,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0, 0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x82,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x11,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0xf0,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6f,0x2,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x4, 0x0,0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x3,0x0,0x0,0x75, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x4,0x0,0x0,0x1c,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x80,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd7,0x1,0x0,0x0,0xc7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x40,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87, 0x3,0x0,0x0,0x11,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x41,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0, 0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xcd,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x2,0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x61,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x2d,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x66,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x1,0x0, 0x0,0x7c,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x88,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xe5,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0xca,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x89,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd5,0x3,0x0,0x0,0x5,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x90,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x85,0x3, 0x0,0x0,0x6,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x94, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xa0,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xf7,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb7,0x2,0x0,0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1, 0x1,0x0,0x0,0xd3,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa6,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x2,0x0,0x0, 0x76,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xf0,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x4,0x0,0x0,0xa9,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x76,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd2,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0, 0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x1c,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x74,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xfa,0x3,0x0,0x0,0xbd,0x3,0x0,0x0,0xec,0x1,0x0,0x0, 0xed,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xca,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x83,0x1,0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7f,0x3,0x0,0x0,0xce,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3d,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87,0x3,0x0, 0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x9f,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x2,0x0,0x0,0xa5,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xcc,0x4,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5b,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x87,0x3,0x0,0x0,0x79,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x63,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4, 0x0,0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65, 0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0,0x8, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0xec,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd3,0x2,0x0,0x0,0xe9,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe3,0x1,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x72,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b, 0x3,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x77,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0, 0x80,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x3,0x0,0x0,0x60,0x3,0x0, 0x0,0xd,0x2,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7d,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4, 0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b, 0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0x88, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x1,0x0,0x0,0x80,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xda,0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb, 0x3,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb5,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0, 0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xe1,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0xa9,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd0,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x76,0x4,0x0,0x0,0xe1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd3,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x3,0x0, 0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0xec,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xe4,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xea,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4b,0x3,0x0,0x0,0xd6,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xef,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1, 0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd, 0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xee, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x9,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x7e,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x9,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xaf,0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0xfb,0x3,0x0,0x0,0xf0,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xb9,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x53,0x3,0x0,0x0,0x9,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2b,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe0,0x3,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3d,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x3, 0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c, 0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x74,0x2,0x0,0x0,0xac, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x9,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xc1,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x9,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0x80,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6f,0x2,0x0,0x0,0xb5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30, 0x4,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7f,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0, 0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x7f,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x40,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa5,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc2,0x1,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xaf,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6e,0x2,0x0, 0x0,0x12,0x4,0x0,0x0,0xff,0x3,0x0,0x0,0xdb,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x17,0x4,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1, 0x1,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbf,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd0,0x2,0x0,0x0, 0xa5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xd,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd5,0x3,0x0,0x0,0xda,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfa,0x3,0x0,0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf8,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xdd,0x1,0x0,0x0,0xe8,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0, 0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0xa, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0xf9,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xa,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xac,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x19,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa8,0x2,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1c,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd5,0x3, 0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x3,0x0,0x0,0x4a, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x4,0x0,0x0,0xf0,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x9f,0x2,0x0,0x0,0xa6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x50,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4, 0x1,0x0,0x0,0x6,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x51,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe6,0x1,0x0,0x0, 0x80,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0xf7,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xa,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x7b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5a,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x93,0x3,0x0,0x0,0xa8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5f,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0, 0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xa, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0xef,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xa,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0xb3,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x73,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x18,0x4,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x75,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x1, 0x0,0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xec, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0x75,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0x7b,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4c,0x3,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda, 0x2,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xba,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf,0x4,0x0,0x0, 0xa0,0x3,0x0,0x0,0xb2,0x3,0x0,0x0,0xda,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbe,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf,0x4,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc0,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1, 0x0,0x0,0x80,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0x64, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0xc0,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd2,0x3,0x0,0x0,0xc7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8, 0x3,0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe6,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0, 0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xa9,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xa,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfe,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe6,0x1,0x0,0x0,0xa6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0, 0x0,0xa9,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0x7e,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0x71,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7e,0x1,0x0,0x0,0x64,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x23,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbb,0x4,0x0,0x0,0x9b,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x27,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1, 0x0,0x0,0xe9,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33, 0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x6d, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xb,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x97,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xb,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe6,0x1,0x0,0x0,0xec,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb8,0x1,0x0,0x0,0xb5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x68,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f, 0x2,0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x85,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0, 0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0xb,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0xd0,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xb,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x4d,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa4,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf,0x4,0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xaf,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x4,0x0, 0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87,0x3,0x0,0x0,0x75,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x6d,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc7,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc8,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcf,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7,0x2, 0x0,0x0,0xe9,0x3,0x0,0x0,0xe5,0x3,0x0,0x0,0x6,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x84,0x2,0x0,0x0,0xe1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe2,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfe,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe3,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0, 0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xf5,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xfa,0x0,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa5,0x3,0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x3, 0x0,0x0,0x0,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x2,0x0,0x0,0xf3, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0xc3,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x57,0x4,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xda,0x2,0x0,0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x18,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f, 0x3,0x0,0x0,0xf0,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2e,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x2,0x0,0x0, 0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0xf9,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x3,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0x76,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xde,0x1,0x0,0x0,0xa5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x49,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0, 0x0,0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xc, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0xca,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xa7,0x1,0x0,0x0,0xbb, 0x4,0x0,0x0,0xa,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x62,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0, 0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x6d,0x4,0x0, 0x0,0xff,0x3,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6d,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4, 0x0,0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0xb1, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0xd,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x74,0x2,0x0,0x0,0x8d,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd9,0x3,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x90,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2, 0x3,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x94,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0, 0xab,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x12,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0x11,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb1,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa4,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb6,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x4,0x0, 0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xc, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x84,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x4,0x0,0x0,0xfd,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xc,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xea,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc8,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xec,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x3, 0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xd6, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xd,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xfa,0x0,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7e,0x1,0x0,0x0,0xa,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e, 0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x37,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0, 0xa7,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0xd,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x3,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0x76,0x2,0x0,0x0,0xfb,0x3,0x0,0x0,0x86, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xd,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x94,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0x6b,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe5,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x61,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95, 0x2,0x0,0x0,0x11,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0, 0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0xa8,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8f,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcb,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x91,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0, 0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x3,0x0,0x0,0x8,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0xa6,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2d,0x2,0x0,0x0,0x61,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa0,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbe,0x1,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa1,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1, 0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x80,0x3,0x0,0x0,0x80, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xd,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0x7a,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x75,0x3,0x0,0x0,0xf2,0x1,0x0, 0x0,0xcb,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0xe5,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x1,0x0,0x0,0xd0,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe2,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6e,0x2,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe3,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x1, 0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2,0x0,0x0,0x9f, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xd,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8d,0x1,0x0,0x0,0x99,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x8d,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x53,0x3,0x0,0x0,0x86,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30, 0x4,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd9,0x3,0x0,0x0, 0x1c,0x2,0x0,0x0,0xf8,0x3,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x19,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd8,0x3,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1e,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x1, 0x0,0x0,0x63,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xa8, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x1c,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x86,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb4,0x1,0x0,0x0,0xb3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x38,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93, 0x3,0x0,0x0,0x9,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3c,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0, 0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xe5,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x59,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x43,0x4,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5c,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0, 0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0x7c,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x92,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x53,0x3,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9c,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x3, 0x0,0x0,0x2f,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0x7, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xb6,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc8,0x1,0x0,0x0,0x64,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5, 0x3,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbe,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x74,0x2,0x0,0x0, 0xcb,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x16,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd9,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x43,0x4,0x0,0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe5,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4,0x0, 0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0xd,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0xf2,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x34,0x3,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb7,0x2,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x84,0x2, 0x0,0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xbe, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x3,0x0,0x0,0x31,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xf,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0,0x0,0x8f,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb2,0x3,0x0,0x0,0xf5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97, 0x2,0x0,0x0,0xf5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x48,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0, 0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xff,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x82,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5d,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xaf,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x64,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0, 0x0,0xd6,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0xb9,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x3,0x0,0x0,0x40,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x64,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb6,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x30,0x4,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc3,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2, 0x0,0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0x12, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x4,0x0,0x0,0x82,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xf,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x8d,0x3,0x0,0x0,0x3,0x4,0x0, 0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x9d,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0x75,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0xc7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfb,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4f,0x2,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3, 0x0,0x0,0xa5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x71, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0xf7,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x46,0x2,0x0,0x0,0x60,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x32,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30, 0x4,0x0,0x0,0x71,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x35,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0,0x0, 0xe9,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0xdf,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc,0x4,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x54,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x30,0x4,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x58,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x1,0x0, 0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x10, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x6b,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0xb1,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x10,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0x12,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8f,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x85,0x3,0x0,0x0,0xee,0x1,0x0,0x0,0x57,0x4,0x0,0x0,0x3e,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x4d,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa8,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xfc,0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0xcb,0x1,0x0,0x0,0x1,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd8,0x3,0x0,0x0,0xcd,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18, 0x4,0x0,0x0,0x7c,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf0,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0, 0xf9,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xce,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcb,0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x23,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa7,0x4,0x0, 0x0,0xf0,0x3,0x0,0x0,0xda,0x2,0x0,0x0,0xa2,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf8,0x3,0x0,0x0,0xa7,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xda, 0x3,0x0,0x0,0x16,0x4,0x0,0x0,0xff,0x3,0x0,0x0,0x9f,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x11,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd5,0x3,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x49,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf,0x4,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4b,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2, 0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x8d, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x6d,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x84,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5a,0x3,0x0,0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c, 0x4,0x0,0x0,0x76,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8e,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0, 0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xd4,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x11,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x8d,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x9e,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7,0x4,0x0,0x0,0x50,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa2,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x4,0x0, 0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x11, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0xb3,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0x1,0x2,0x0,0x0,0xb4, 0x1,0x0,0x0,0xd1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc3,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0,0x0, 0xa2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xfa,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x11,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe9,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x4c,0x3,0x0,0x0,0x7d,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xef,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0, 0x0,0x11,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x11, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0x82,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0xd,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x11,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0x58,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xcf,0x1,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x1, 0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, 0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x82, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x12,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x82,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x12,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa8,0x1,0x0,0x0,0x71,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x32,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57, 0x4,0x0,0x0,0x13,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x34,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x3,0x0,0x0, 0x84,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x3,0x0,0x0,0xfa,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xef,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x62,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe1,0x3,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6e,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x2,0x0, 0x0,0x86,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xcd,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2,0x0,0x0,0xfa,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9f,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc,0x2,0x0,0x0,0xd6,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xac,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1, 0x0,0x0,0xfa,0x0,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda, 0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0xe5, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x12,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xd,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x12,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x34,0x3,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xda,0x2,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf6,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2, 0x2,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x1,0x0,0x0, 0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x62,0x3,0x0,0x0,0x99,0x1,0x0, 0x0,0xe7,0x3,0x0,0x0,0x5e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1, 0x0,0x0,0x9d,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0x82, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x6,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7f,0x2,0x0,0x0,0x75,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2, 0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x56,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0, 0x8f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0xce,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x13,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x3,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x46,0x2,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6b,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x51,0x3,0x0,0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7f,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0, 0x0,0x50,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x7a,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x4,0x0,0x0,0xa6,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x13,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x8,0x4,0x0,0x0,0x81,0x3,0x0,0x0, 0x12,0x4,0x0,0x0,0x5a,0x3,0x0,0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x93,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xda,0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb0,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2, 0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0x44, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0xf7,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb4,0x1,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc4,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2, 0x1,0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc6,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0, 0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xe1,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x13,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0x7c,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfa,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9e,0x2,0x0,0x0,0x66,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfb,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd0,0x2,0x0, 0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x9a,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0x7d,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe3,0x2,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x2, 0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b, 0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0xd6, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0xe9,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x31,0x2,0x0,0x0,0xfe,0x3,0x0, 0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x97,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x3,0x0,0x0,0x66,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0x6,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x48,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x89,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4d,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc,0x4, 0x0,0x0,0x75,0x4,0x0,0x0,0x8e,0x3,0x0,0x0,0xe8,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x60,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7,0x4,0x0,0x0,0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x62,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x4,0x0, 0x0,0x40,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x8,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xe1,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0xe4,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9b,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6e,0x2,0x0,0x0,0x63,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa8,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3, 0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf, 0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xcd, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xd6,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x8e,0x3,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xce,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d, 0x2,0x0,0x0,0xdf,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd6,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0, 0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x14,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x4,0x0,0x0,0xe,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x14,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x9d,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe9,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xfb,0x3,0x0,0x0,0xfd,0x3,0x0,0x0,0x30,0x4,0x0,0x0,0xe4,0x2,0x0,0x0, 0xd2,0x3,0x0,0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf7,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0, 0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x15, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xa7,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xe7,0x3,0x0,0x0,0x1,0x2,0x0,0x0,0xde,0x1,0x0,0x0, 0x88,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x15,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8d,0x1,0x0,0x0,0xc3,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x15,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe7,0x3,0x0,0x0,0xd7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x46,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0, 0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x15, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xf7,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0xc0,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xce,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x79,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xd3,0x1,0x0,0x0,0x9f,0x3,0x0,0x0,0x4c,0x3,0x0,0x0,0xce,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x15,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x80,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x43,0x4,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x9c,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd3,0x1,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa2,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0, 0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x15, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0xc9,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x16,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x18,0x4,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xcf,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x68,0x4,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd6,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x3, 0x0,0x0,0x11,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x75,0x2,0x0,0x0,0xa0, 0x3,0x0,0x0,0xc8,0x3,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe4,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x82,0x3,0x0,0x0,0xe1,0x2,0x0,0x0,0x80,0x3,0x0,0x0,0xed,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4b,0x3,0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xde,0x1,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda, 0x2,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfd,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0, 0x96,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0xf3,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x87,0x1,0x0,0x0,0xa5,0x1,0x0,0x0,0xf2,0x1,0x0,0x0,0xcb, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x9d,0x3,0x0,0x0, 0x30,0x4,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1d,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfa,0x3,0x0, 0x0,0x40,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x3,0x0,0x0,0xf0,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x16,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd3,0x2,0x0,0x0,0xd7,0x3,0x0,0x0,0xb2, 0x3,0x0,0x0,0x75,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2d,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0, 0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0xa5,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x71,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x9b,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5a,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xd,0x2,0x0,0x0,0xcd,0x4,0x0,0x0,0xde,0x1,0x0,0x0,0x5,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe3,0x1,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x78,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e, 0x3,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7c,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0,0x0, 0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x80,0x3,0x0,0x0,0xe5,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x60,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8d,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xb4,0x1,0x0,0x0,0x80,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x96,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x1,0x0, 0x0,0x8f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xe9,0x3, 0x0,0x0,0x7f,0x3,0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa0,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c, 0x4,0x0,0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa4,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x4,0x0,0x0, 0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xd,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x1,0x0,0x0,0xf2,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb5,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x2,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0xfe,0x3,0x0,0x0,0x82,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xda,0x2,0x0,0x0,0x75,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3, 0x1,0x0,0x0,0x63,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcd,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2,0x0,0x0, 0xa5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x7c,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0xb7,0x2, 0x0,0x0,0xf9,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde, 0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x80,0x3,0x0,0x0,0xed, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xf0,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd3,0x2,0x0,0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7f,0x3,0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x1,0x0,0x0, 0x76,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x17,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x4,0x0,0x0,0xe8,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x36,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7f,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x37,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0, 0x0,0xec,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x4,0x0,0x0,0xa9,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0x80,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0xcb,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x59,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf8,0x3,0x0,0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5e,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1, 0x0,0x0,0xef,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x4,0x0,0x0,0x1, 0x2,0x0,0x0,0xff,0x3,0x0,0x0,0x11,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x85,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x90,0x3,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8b,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0, 0x0,0x4d,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0xb5,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x91,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaa,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xff,0x3,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xab,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1, 0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0x3d, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x17,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xfa,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x17,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0,0x12,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe1,0x1,0x0,0x0,0x83,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc, 0x2,0x0,0x0,0x44,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd0,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0, 0xd4,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x17,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xf9,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xfd,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf7,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9e,0x2,0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfd,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0, 0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xf7,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0x65,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x18,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xff,0x3,0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3b,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x30,0x4,0x0,0x0,0xd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3f,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x84,0x2, 0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e, 0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0xd6, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x63,0x3,0x0,0x0, 0x43,0x4,0x0,0x0,0xe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5f,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x1,0x0, 0x0,0xe4,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0x86,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0xa2,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x18,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xec,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x72,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf,0x4,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x76,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x3, 0x0,0x0,0x5,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79, 0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x99, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x1,0x0,0x0,0xcd,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x75,0x2,0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb4,0x1,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde, 0x1,0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8c,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x1,0x0,0x0, 0x12,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x7c,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x82,0x4,0x0,0x0,0x54,0x2, 0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98, 0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xe5, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0xad,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xaf,0x1,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf2,0x2,0x0,0x0,0x95,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8, 0x1,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe8,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0, 0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x16,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0xef,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x9d,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf8,0x3,0x0,0x0,0x40,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0, 0x0,0xdb,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x19, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x94,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x86,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x57,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2e,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4f,0x3,0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4c,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1, 0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0xb5, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x4,0x0,0x0,0x84,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xef,0x1,0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5a,0x3,0x0,0x0,0x33,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x69,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6a,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0,0x0, 0xb9,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x19,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xb5,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x19,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x2,0x0,0x0,0xa8,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x80,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe5,0x3,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x82,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0, 0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x19, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x3,0x0,0x0,0x71,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0xca,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7e,0x1,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x94,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xdd,0x1,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9b,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2, 0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0xfd, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x40,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x89,0x3,0x0,0x0,0xf9,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb4,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1, 0x1,0x0,0x0,0xee,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb5,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x11,0x2,0x0,0x0, 0xf7,0x2,0x0,0x0,0xcb,0x1,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb7,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa4,0x1,0x0,0x0,0xd4,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbd,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xec,0x1, 0x0,0x0,0xdf,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xe1, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x8,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2d,0x2,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xeb,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3, 0x1,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf3,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x1,0x0,0x0, 0xdb,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x19,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x4,0x0,0x0,0x6d,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x19,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x60,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xae,0x4,0x0,0x0,0xfd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9c,0x4,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7f,0x3,0x0, 0x0,0xa7,0x1,0x0,0x0,0xcf,0x4,0x0,0x0,0xcb,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xae,0x4,0x0,0x0,0xfd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a, 0x3,0x0,0x0,0xa2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1a,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0, 0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x1a,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0xc7,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1a,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x87,0x2,0x0,0x0,0xf7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x38,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x89,0x3,0x0,0x0,0xfb,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3b,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0, 0x0,0x64,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x1a, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0x33,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x1a,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x31,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1a,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xe9,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x68,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x68,0x4,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x70,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3, 0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72, 0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0x5, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x1a,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xe5,0x2,0x0,0x0, 0xd6,0x3,0x0,0x0,0xe1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x79,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfb,0x3,0x0, 0x0,0x8,0x4,0x0,0x0,0xda,0x2,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc8,0x3,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa0,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2, 0x1,0x0,0x0,0x9d,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xaa,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0, 0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x1a,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x2,0x0,0x0,0xa6,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x1a,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0xa5,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0xda,0x2,0x0,0x0,0xf7, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1a,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0xdb,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x1a,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xae,0x4,0x0,0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xbb,0x4,0x0,0x0,0x12,0x4,0x0,0x0,0xe5,0x3,0x0,0x0,0xfa,0x0, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x1a,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x1a,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xff,0x3,0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfc,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x54,0x2,0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xef,0x1, 0x0,0x0,0xa5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xd, 0x4,0x0,0x0,0xf,0x4,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x54,0x2,0x0,0x0,0x9f,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x21,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x2,0x0, 0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x1b, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0xa5,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x3,0x0,0x0,0x86,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x1b,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe6,0x1,0x0,0x0,0x12,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x52,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb7,0x2,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x54,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1, 0x0,0x0,0x7b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xf7, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0x32,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xd,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc8,0x3,0x0,0x0,0x3e,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x78,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9, 0x3,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x79,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0, 0x66,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x1,0x0,0x0,0xe8,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0x99,0x1,0x0,0x0,0xd0,0x2, 0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xce, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0xc7,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0x86,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe3,0x1,0x0,0x0,0xa2,0x2,0x0,0x0,0x94,0x2,0x0,0x0,0xfd,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x15,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1b,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0xd7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa9,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa4,0x1,0x0,0x0,0xef,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xaa,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x4, 0x0,0x0,0x3e,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0xf0, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x16,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x71,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb, 0x4,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe4,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7,0x2,0x0,0x0, 0xf9,0x2,0x0,0x0,0x4c,0x3,0x0,0x0,0xca,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xef,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x9e,0x2,0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf0,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x3, 0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x75, 0x3,0x0,0x0,0xb0,0x1,0x0,0x0,0xfa,0x0,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfc,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xde,0x1,0x0,0x0,0xb9,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x15,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0, 0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x50,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0xf2,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x31,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7f,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x47,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2, 0x0,0x0,0x12,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53, 0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x12, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x1c,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x8d,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x1c,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd,0x2,0x0,0x0,0xd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x80, 0x3,0x0,0x0,0xed,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x74,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0,0x0, 0xa2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0,0xf9,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x8c,0x1,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x53,0x4,0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x98,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0, 0x0,0xe8,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xed,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0x64,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x12,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xda,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc8,0x3,0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf0,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x4, 0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8, 0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xe5, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x16,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0xb5,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xbe,0x1,0x0,0x0,0x33,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1e,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0, 0x1,0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1f,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x3,0x0,0x0, 0x44,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0xc0,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x3,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xe1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfe,0x3,0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3f,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0, 0x0,0x8e,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa4,0x1,0x0,0x0,0xf9,0x1, 0x0,0x0,0x6e,0x2,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8, 0x1,0x0,0x0,0xe2,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x62,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x2,0x0,0x0, 0xa5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0xc9,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0xc7,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x82,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf8,0x3,0x0,0x0,0xac,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x87,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0, 0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x16,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x7,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x46,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb8,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfc,0x2,0x0,0x0,0xec,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xba,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x4, 0x0,0x0,0x86,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe, 0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0xc1, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0x91,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc2,0x1,0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xca,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3, 0x2,0x0,0x0,0xa2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xce,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x3,0x0,0x0, 0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0xa9,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0xe4,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xea,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcf,0x4,0x0,0x0,0x9a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf0,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0, 0x0,0xd4,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x3,0x0,0x0,0x9f,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0x31,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x10,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x43,0x4,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x16,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa2,0x1, 0x0,0x0,0x91,0x2,0x0,0x0,0xa5,0x3,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x26,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x43,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x30,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0, 0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0xe4,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x6,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0xc0,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4d,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd8,0x3,0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6b,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2, 0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x1a, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x1e,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x80,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x1e,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x6,0x4,0x0,0x0,0xe1,0x1,0x0, 0x0,0x66,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x7a,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0x4d,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x97,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfc,0x3,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9b,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x4, 0x0,0x0,0x86,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x1,0x0,0x0,0x82, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x1e,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0xcd,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x1e,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x86,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb4,0x4,0x0,0x0,0xa9,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76, 0x4,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbf,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0, 0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x1e,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xdb,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x1e,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x33,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdd,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xde,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x1,0x0, 0x0,0x44,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x2,0x0,0x0,0xfa,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0xb,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe3,0x1,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1, 0x0,0x0,0x60,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0xad, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xd6,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0xf9,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc,0x2,0x0,0x0,0xca,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4, 0x1,0x0,0x0,0x7b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5f,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0, 0x80,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1f,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x7e,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x1f,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0xfb,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x88,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x71,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc2,0x1,0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x88,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0, 0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x1f, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x4a,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x1f,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0xcd,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x84,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa7,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x51,0x3,0x0,0x0,0x12,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xab,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1, 0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x16, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0x60,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x12,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4c,0x4,0x0,0x0,0x40,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xde,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae, 0x4,0x0,0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xef,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0,0x0, 0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x1f,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x1,0x0,0x0,0xc1,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x1f,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x81,0x3,0x0,0x0,0xd,0x4,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x7e,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0xdb, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0x70,0x2,0x0,0x0, 0x64,0x5,0x0,0x0,0x45,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x11,0x5,0x0, 0x0,0x65,0x1,0x0,0x0,0xea,0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x30,0x5,0x0,0x0,0x89,0x5,0x0,0x0,0x70,0x5,0x0,0x0,0x1d,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x1,0x0,0x0,0xe4,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x65,0x0,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf8,0x4,0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x11,0x5, 0x0,0x0,0x81,0x2,0x0,0x0,0x1d,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xb5,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xb5,0x5,0x0,0x0,0xa1,0x1,0x0,0x0,0x24,0x5,0x0,0x0,0x4f,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x64,0x1,0x0,0x0,0x5a,0x0,0x0, 0x0,0x3e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x3,0x0,0x0,0x25,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xaa,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x11,0x3,0x0,0x0, 0x10,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x5,0x0,0x0,0x6b,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x36,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7,0x5,0x0,0x0,0x5a,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x20,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x73,0x5,0x0, 0x0,0xf5,0x1,0x0,0x0,0x58,0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7a,0x1,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x24,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb, 0x5,0x0,0x0,0xfa,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x25,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x2,0x0,0x0, 0xf4,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7,0x3,0x0,0x0,0x52,0x1,0x0, 0x0,0x57,0x2,0x0,0x0,0x6e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x64,0x5, 0x0,0x0,0x51,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xf8, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x90,0x5,0x0,0x0, 0x9e,0x5,0x0,0x0,0xbf,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x32,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x1,0x0, 0x0,0x2a,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xf8,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x45,0x1,0x0,0x0,0x30, 0x5,0x0,0x0,0x48,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x37,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0,0x0, 0xe4,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0x2a,0x2,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x3,0x0,0x0,0x7f,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x46,0x1,0x0,0x0,0xa,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x14,0x0,0x0,0x0,0x97,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x40,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0, 0x0,0x6b,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x3,0x0,0x0,0x17,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xaa,0x5,0x0,0x0,0x4,0x5,0x0,0x0,0x55, 0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x43,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x2,0x0,0x0, 0x68,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x90,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x2,0x0,0x0,0x70,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xc0,0x3,0x0,0x0,0xeb,0x1,0x0,0x0,0xba,0x0,0x0,0x0,0xdc, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x6f,0x5,0x0,0x0, 0x47,0x2,0x0,0x0,0x65,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x3,0x0, 0x0,0x49,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0xf5,0x1, 0x0,0x0,0x38,0x1,0x0,0x0,0x47,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe, 0x5,0x0,0x0,0x1c,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0, 0x3,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x3,0x0,0x0, 0x0,0xfd,0x4,0x0,0x0,0xa6,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x51,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x60,0x2, 0x0,0x0,0xc8,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe0,0x2,0x0,0x0,0x86, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb2,0x2,0x0,0x0,0xb9,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x21,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa8,0x5,0x0,0x0,0x20,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6, 0x5,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x1,0x0,0x0, 0xd8,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0xb2,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0x8e,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x17,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3c,0x5,0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x66,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3c,0x3,0x0, 0x0,0x1d,0x2,0x0,0x0,0x2c,0x0,0x0,0x0,0x56,0x2,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x9d,0x2,0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7, 0x5,0x0,0x0,0xe7,0x0,0x0,0x0,0x2c,0x2,0x0,0x0,0x36,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x1c,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc,0x5,0x0,0x0,0x59,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x72,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe,0x1, 0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x18, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0x1e,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x15,0x3,0x0,0x0,0x4a,0x3,0x0,0x0,0x2e,0x2,0x0, 0x0,0x37,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x30,0x0, 0x0,0x0,0xb0,0x5,0x0,0x0,0xe0,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0xe6,0x4, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x83,0x0,0x0,0x0,0x79, 0x5,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x81,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6c,0x2,0x0,0x0, 0xed,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0x6f,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xde,0x0,0x0,0x0,0xd7,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x86,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x0, 0x0,0x0,0x18,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0x8d, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x61,0x5,0x0,0x0,0x36,0x5,0x0,0x0, 0xb0,0x5,0x0,0x0,0x55,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x89,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x0,0x0, 0x0,0xb,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x5,0x0,0x0,0x8f,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x51,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x9e,0x5,0x0,0x0,0xf1,0x0,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x8b,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x93,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x5, 0x0,0x0,0xe0,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0x98, 0x1,0x0,0x0,0xfd,0x2,0x0,0x0,0x4e,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x97,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe9,0x2,0x0,0x0,0x33,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x98,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xb0,0x5,0x0, 0x0,0x20,0x2,0x0,0x0,0x7b,0x2,0x0,0x0,0xe9,0x0,0x0,0x0,0xc9,0x3,0x0, 0x0,0xeb,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xed,0x4,0x0,0x0,0xe8,0x4, 0x0,0x0,0xae,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0, 0x2,0x0,0x0,0x9,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x9b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9,0x3,0x0,0x0, 0x4b,0x2,0x0,0x0,0x5,0x1,0x0,0x0,0xd7,0x4,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa2,0x5,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x4, 0x0,0x0,0x13,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0xaf, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0xa1,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0xb,0x3,0x0,0x0,0xf0,0x4,0x0, 0x0,0xd7,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x0,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x21,0x5,0x0,0x0,0x3c, 0x5,0x0,0x0,0xa3,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xce,0x1,0x0,0x0, 0x2b,0x3,0x0,0x0,0x10,0x4,0x0,0x0,0xd6,0x4,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xad,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x69,0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xae,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5, 0x0,0x0,0x80,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0xf7, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x6c,0x2,0x0,0x0, 0xd5,0x2,0x0,0x0,0x9e,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x0,0x0, 0x0,0x24,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x43,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x21,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x28,0x3,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x70,0x0,0x0,0x0,0x34,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbe,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb4,0x0, 0x0,0x0,0xa5,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x88,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x3f,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x61,0x5,0x0,0x0,0x37,0x5,0x0,0x0,0x9e,0x5,0x0,0x0,0xf3,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0x8f,0x5,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe0,0x1,0x0,0x0,0x21,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x7d,0x1, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x1,0x0,0x0,0xd2,0x1,0x0,0x0,0x24, 0x5,0x0,0x0,0x60,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xca,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x1,0x0,0x0, 0xaf,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x40,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x47,0x2,0x0,0x0,0x67,0x2,0x0,0x0,0x12,0x0, 0x0,0x0,0x23,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x53, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0x40,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x69,0x5,0x0,0x0,0xf2,0x4,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x68, 0x5,0x0,0x0,0x27,0x5,0x0,0x0,0x23,0x3,0x0,0x0,0x7b,0x1,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x42,0x5,0x0,0x0,0x1b,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x48,0x1,0x0,0x0,0xc2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xda,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x0, 0x0,0x0,0x2f,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x1c, 0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x3,0x0,0x0,0x1,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xfe,0x1,0x0,0x0,0x15,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xea,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbd, 0x5,0x0,0x0,0xce,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0x9b,0x1,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x15,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb7,0x5,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xef,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x2, 0x0,0x0,0xbe,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xc, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0xfa,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x93,0x5,0x0,0x0,0xa8,0x5,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2e,0x1,0x0,0x0,0x29,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9, 0x0,0x0,0x0,0x14,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0, 0x5f,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x44,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x89,0x0,0x0,0x0,0x4,0x1,0x0,0x0,0x13, 0x5,0x0,0x0,0x15,0x2,0x0,0x0,0xbb,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xb1,0x2,0x0,0x0,0x20,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x2,0x0, 0x0,0x41,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0x24,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xef,0x4,0x0,0x0,0xe4,0x4,0x0,0x0,0x2b, 0x2,0x0,0x0,0x6f,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x0,0x0,0x0, 0x6d,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x1,0x0,0x0,0xb2,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x4b,0x5,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5,0x1,0x0,0x0,0xfb,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x53,0x2,0x0,0x0,0x4d,0x1,0x0,0x0,0x1a,0x0,0x0,0x0,0xbe,0x0,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0xb7,0x0,0x0,0x0,0x67,0x5,0x0, 0x0,0xf7,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0x5c,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xdf,0x4,0x0,0x0,0xa4, 0x3,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1d,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x84,0x1,0x0,0x0, 0xf3,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x4d,0x5,0x0, 0x0,0x95,0x5,0x0,0x0,0x19,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x22,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1, 0x0,0x0,0x12,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x4b,0x5,0x0,0x0,0xe2, 0x4,0x0,0x0,0x24,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0xa1,0x3,0x0,0x0,0x5e, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x51,0x0,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5e,0x5,0x0,0x0,0x3b,0x5,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x90,0x2,0x0,0x0,0x16,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f, 0x3,0x0,0x0,0x95,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x3,0x0,0x0, 0x12,0x0,0x0,0x0,0xc6,0x2,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xa9,0x2,0x0,0x0,0x4c,0x2,0x0,0x0,0x87,0x5,0x0,0x0,0x70,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0x68,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xae,0x5,0x0,0x0,0xaa,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x96,0x2,0x0,0x0,0xb7,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x3,0x0, 0x0,0x6b,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xaf,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x5,0x0,0x0,0x6a,0x3,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x33,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3a,0x2,0x0,0x0,0x41,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x46,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x8c,0x0, 0x0,0x0,0x18,0x1,0x0,0x0,0xd2,0x4,0x0,0x0,0xe5,0x4,0x0,0x0,0x97,0x3, 0x0,0x0,0x7d,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x0, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0x97,0x3,0x0,0x0, 0x2b,0x2,0x0,0x0,0x64,0x2,0x0,0x0,0xf4,0x4,0x0,0x0,0xd4,0x4,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x94,0x0,0x0,0x0,0xe7,0x4,0x0, 0x0,0x57,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x4,0x0,0x0,0x35,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x3b,0x0,0x0,0x0,0xe3, 0x0,0x0,0x0,0x81,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xce,0x1,0x0,0x0, 0x21,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x9d,0x0,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x10,0x1,0x0,0x0,0x3c,0x0,0x0,0x0,0xf6,0x4,0x0,0x0,0x6a,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0x62,0x0,0x0, 0x0,0x65,0x2,0x0,0x0,0xa7,0x3,0x0,0x0,0x3d,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x8a,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xfb,0x4, 0x0,0x0,0x2b,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x66,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xc0, 0x5,0x0,0x0,0x20,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x2f,0x1,0x0,0x0,0x5b, 0x1,0x0,0x0,0x28,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc4,0x1,0x0,0x0, 0x29,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0x66,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0x6a,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x79,0x5,0x0,0x0,0x98,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x6c,0x2,0x0,0x0,0x6d,0x2,0x0,0x0,0x7d,0x1,0x0,0x0,0x2b,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x69,0x2,0x0,0x0,0x96,0x3,0x0, 0x0,0x7f,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x2,0x0,0x0,0xc5,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x19,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0xb9,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x28,0x2,0x0,0x0,0x35,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x0, 0x0,0x0,0x36,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xf1, 0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7,0x1,0x0,0x0,0x9e,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x83,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x5,0x0, 0x0,0xa0,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x7c,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe0,0x2,0x0,0x0,0x8e,0x2,0x0,0x0,0x64, 0x5,0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0, 0x8e,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x10,0x0,0x0, 0x0,0xb6,0x1,0x0,0x0,0x9,0x1,0x0,0x0,0x17,0x2,0x0,0x0,0x4c,0x2,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xef,0x4,0x0,0x0,0x66,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x19, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x45,0x0,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0xed,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x79, 0x0,0x0,0x0,0x2,0x1,0x0,0x0,0x11,0x5,0x0,0x0,0x60,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0xdb,0x0,0x0,0x0,0xd9,0x0,0x0,0x0, 0x77,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0xbc,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0xfd,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x64,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa6,0x5,0x0,0x0,0xa0,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa2,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x2,0x0, 0x0,0x5b,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x6c,0x0, 0x0,0x0,0xcc,0x2,0x0,0x0,0xc4,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b, 0x0,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa9,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x16,0x3,0x0,0x0, 0x97,0x3,0x0,0x0,0x9f,0x5,0x0,0x0,0x92,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x33,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xac,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x5, 0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0x18, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x44,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1e,0x5,0x0,0x0,0x54,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb2,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x81, 0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x3,0x0,0x0, 0xbb,0x0,0x0,0x0,0x7a,0x5,0x0,0x0,0xbd,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xde,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xba,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x1, 0x0,0x0,0x28,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x81, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0xb0,0x0,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x45,0x0,0x0,0x0,0x26,0x1,0x0, 0x0,0x9f,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x46,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x3b,0x1,0x0,0x0,0x34, 0x5,0x0,0x0,0x51,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x98,0x3,0x0,0x0, 0x2a,0x3,0x0,0x0,0xe4,0x1,0x0,0x0,0x97,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x9e,0x5,0x0,0x0,0xea,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x85,0x1, 0x0,0x0,0xb6,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd1,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd1,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x2,0x0, 0x0,0x6b,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x1e,0x0, 0x0,0x0,0x61,0x2,0x0,0x0,0xf7,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe4, 0x1,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x3,0x0,0x0, 0x9c,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0xfd,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0x59,0x5,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x81,0x2,0x0,0x0,0x42,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x26,0x5,0x0,0x0,0x33,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x26,0x5,0x0, 0x0,0x4e,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x53,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x3,0x0,0x0,0x24,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0x62,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xdf,0x4,0x0,0x0,0x61,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xec,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x58,0x0, 0x0,0x0,0x95,0x1,0x0,0x0,0x1a,0x1,0x0,0x0,0x4a,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0xa5,0x5,0x0,0x0,0xcc, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0x7a,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0x89,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x46,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed, 0x4,0x0,0x0,0x6a,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc5,0x2,0x0,0x0, 0x90,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0xe0,0x0,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa4,0x3,0x0,0x0,0x5e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfa,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe3,0x4, 0x0,0x0,0x32,0x5,0x0,0x0,0x7b,0x5,0x0,0x0,0x6b,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x72,0x5,0x0,0x0,0xa1,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xb0,0x5,0x0,0x0,0x24,0x2,0x0,0x0,0x96,0x3,0x0,0x0,0xf,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0x3d,0x5,0x0, 0x0,0xe4,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0x39,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0xb6,0x2,0x0,0x0,0x2c, 0x3,0x0,0x0,0x3f,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x0,0x0,0x0, 0xaa,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x5,0x0,0x0,0x2d,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xea,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0, 0x0,0x43,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x5,0x0,0x0,0x6,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x5d,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x14,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x5c,0x2,0x0,0x0,0x34,0x0,0x0,0x0,0xb,0x5,0x0,0x0,0x6b,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x73,0x0,0x0,0x0,0x2c,0x2, 0x0,0x0,0x7f,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf7,0x1,0x0,0x0,0x9d, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x4,0x0,0x0,0xe2,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x76,0x5,0x0,0x0,0x98,0x5,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xca,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x67,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x3,0x0,0x0,0xc5,0x3,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x95,0x3,0x0,0x0,0x39,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa7,0x5,0x0,0x0,0x72,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x29,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x1, 0x0,0x0,0x45,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0x4c, 0x0,0x0,0x0,0xd5,0x2,0x0,0x0,0xad,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe4,0x1,0x0,0x0,0x66,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x33,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x10,0x4,0x0, 0x0,0xfb,0x4,0x0,0x0,0x8e,0x5,0x0,0x0,0x16,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x19,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x36,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xdf, 0x1,0x0,0x0,0x2a,0x2,0x0,0x0,0xf4,0x4,0x0,0x0,0xd4,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3c,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x57,0x2,0x0,0x0,0x4d,0x1,0x0,0x0,0x5c,0x3,0x0,0x0,0x7b,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0xab,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x40,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc8,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x43,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0, 0x0,0x4a,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7,0x4,0x0,0x0,0x87,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x5,0x0,0x0,0xed,0x4,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xb,0x5,0x0,0x0,0x35,0x5,0x0,0x0,0xfe,0x1,0x0,0x0,0x1b,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0xc4,0x3,0x0,0x0,0x27,0x0, 0x0,0x0,0x14,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0xad, 0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0xdb,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x50,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x78,0x3,0x0,0x0,0x2e,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x53,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x45,0x1,0x0, 0x0,0x3d,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0xb6,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x92,0x3,0x0,0x0,0x2d,0x3,0x0,0x0,0x4a, 0x5,0x0,0x0,0xce,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xb5,0x3,0x0,0x0,0xc6,0x3,0x0,0x0,0x53,0x5,0x0,0x0, 0xc,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x1,0x0,0x0,0x5,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x79,0x5,0x0,0x0,0xf5,0x0,0x0,0x0,0x24,0x5, 0x0,0x0,0xdf,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0xea, 0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x2f,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0xc1,0x2,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xed,0x4,0x0,0x0,0x20,0x5,0x0,0x0,0x61,0x0,0x0,0x0,0x3c,0x1, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x4,0x0,0x0,0x2e,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x98,0x5,0x0,0x0,0x55,0x0,0x0,0x0, 0xd2,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x3,0x0,0x0,0xa3,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x48,0x5,0x0,0x0,0xd9,0x1,0x0,0x0,0x2e,0x1, 0x0,0x0,0x77,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf5,0x4,0x0,0x0,0x50, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xe0,0x2,0x0,0x0,0xf3,0x0,0x0,0x0, 0x31,0x5,0x0,0x0,0x5c,0x5,0x0,0x0,0x6,0x3,0x0,0x0,0xe8,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xed,0x4,0x0,0x0,0x56,0x2,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x86,0x5,0x0,0x0,0x71,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8, 0x4,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x75,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x53,0x5,0x0,0x0, 0xec,0x4,0x0,0x0,0x98,0x5,0x0,0x0,0xea,0x0,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x76,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4a,0x5,0x0,0x0,0x25,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x77,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x3, 0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x80,0x5,0x0,0x0,0x78, 0x5,0x0,0x0,0xbc,0x3,0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7d,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xed,0x2,0x0,0x0,0xf1,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x5,0x0, 0x0,0x97,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0xf,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xbc,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x18,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x92,0x2,0x0,0x0,0xd2,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x89,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x3, 0x0,0x0,0xdc,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0xf2, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0xf5,0x1,0x0,0x0, 0x76,0x1,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x90,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x3,0x0, 0x0,0x3d,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0x99,0x3, 0x0,0x0,0xf6,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x94,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8, 0x4,0x0,0x0,0x5d,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x95,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe4,0x1,0x0,0x0, 0x8,0x2,0x0,0x0,0xf6,0x4,0x0,0x0,0x4a,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x97,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xee,0x4,0x0,0x0,0xe5,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38,0x5, 0x0,0x0,0xff,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0,0x0,0x2f, 0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x41,0x0,0x0,0x0, 0xde,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9d,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x35,0x3,0x0, 0x0,0x7f,0x0,0x0,0x0,0x9f,0x5,0x0,0x0,0xfb,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x35,0x1,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x52, 0x3,0x0,0x0,0xe2,0x4,0x0,0x0,0x9c,0x1,0x0,0x0,0x2d,0x3,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0xb4,0x2,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3f,0x5,0x0,0x0,0x6a,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x1, 0x0,0x0,0xa3,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x30, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0xc6,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0xfe,0x4,0x0,0x0,0xfe,0x2,0x0, 0x0,0xe2,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0xdb,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0x29,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x10,0x3,0x0,0x0, 0xb2,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x5f,0x2,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x93,0x1,0x0,0x0,0x97,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x68,0x1,0x0,0x0,0xda,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x0,0x0, 0x0,0x54,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x25,0x1, 0x0,0x0,0x38,0x5,0x0,0x0,0x45,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xef, 0x2,0x0,0x0,0xf1,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbd,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x3,0x0,0x0, 0x17,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x5,0x0,0x0,0x0,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x2,0x3,0x0,0x0,0x6a,0x0, 0x0,0x0,0xe,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x5b, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x42,0x0,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xf8,0x4,0x0,0x0,0x62,0x2,0x0,0x0,0x96,0x2,0x0, 0x0,0x21,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xfe,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf5,0x4,0x0,0x0,0x21,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0x48,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbf,0x3,0x0,0x0,0x2e,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd0,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x97,0x0, 0x0,0x0,0x2e,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0xe6,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x66,0x1,0x0,0x0,0xb8,0x3,0x0,0x0,0x57,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x3d,0x1,0x0,0x0,0x3c,0x3,0x0, 0x0,0xa6,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xa5,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x5,0x0,0x0,0x1c,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdc,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xae,0x2,0x0,0x0,0x6b,0x2,0x0,0x0,0x4a,0x5,0x0,0x0,0x2e,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x86,0x1,0x0,0x0,0xf,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xeb,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe5,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe0,0x2,0x0,0x0,0x8e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe7,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x0,0x0, 0x0,0x8c,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0x24,0x1, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdd,0x4,0x0,0x0,0x58,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xec,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x48,0x2,0x0,0x0,0x7e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xed,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7b,0x5, 0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x37, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xf6,0x2,0x0,0x0, 0x23,0x3,0x0,0x0,0x8,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf5,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x60,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0x28,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x99, 0x5,0x0,0x0,0x8,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0, 0x15,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0x5c,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x3,0x0,0x0,0x1a,0x3,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x6,0x2,0x0,0x0,0x5c,0x5,0x0,0x0,0x10, 0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x12,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5a,0x5,0x0,0x0,0x9c,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63, 0x2,0x0,0x0,0x64,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5f,0x1,0x0,0x0, 0xb2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x61,0x0,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x2d,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x85,0x2,0x0,0x0,0xdb,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8a,0x5,0x0,0x0,0x9,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x5,0x0, 0x0,0x30,0x5,0x0,0x0,0x89,0x5,0x0,0x0,0x55,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x73,0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0x53,0x5,0x0,0x0,0x16,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x5,0x0,0x0,0x20,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x79,0x3,0x0,0x0,0x34,0x2,0x0,0x0, 0x34,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x3,0x0,0x0,0x20,0x3,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x9,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x5d,0x2,0x0,0x0,0x9a,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x1,0x0, 0x0,0x48,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x9,0x0, 0x0,0x0,0x55,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89, 0x5,0x0,0x0,0x13,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0, 0xe0,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x3,0x0,0x0,0x37,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x3,0x0,0x0,0x6c,0x3,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x48,0x3,0x0,0x0,0x42,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x28,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xa9,0x2,0x0, 0x0,0xfd,0x2,0x0,0x0,0x80,0x5,0x0,0x0,0xee,0x0,0x0,0x0,0x43,0x3,0x0, 0x0,0xfd,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc4,0x1,0x0,0x0,0xba,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xd8,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x84,0x1,0x0,0x0,0xd8,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x3, 0x0,0x0,0x13,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0xde, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf6,0x4,0x0,0x0,0xef,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x36,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a, 0x2,0x0,0x0,0x3b,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x37,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6d,0x2,0x0,0x0, 0xcf,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x58,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x2a,0x3,0x0,0x0,0xbf,0x3, 0x0,0x0,0x97,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x41, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0x6c,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xbb,0x3,0x0,0x0,0x9,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x44,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e, 0x1,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x46,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x2,0x0,0x0, 0xb,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x63,0x2,0x0,0x0,0x64,0x2,0x0, 0x0,0x20,0x4,0x0,0x0,0xb3,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x87,0x0, 0x0,0x0,0xfb,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x41,0x3,0x0,0x0,0x1f,0x5, 0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0xd5, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x3,0x0,0x0,0x38,0x3,0x0,0x0, 0x1b,0x0,0x0,0x0,0x72,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x50,0x1,0x0, 0x0,0xf,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0x5a,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0x85,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb6,0x5,0x0,0x0,0x9,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x58,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2a,0x1, 0x0,0x0,0x3e,0x1,0x0,0x0,0x11,0x1,0x0,0x0,0xe3,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x8b,0x5,0x0,0x0,0x70,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x70,0x3,0x0,0x0,0xf,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x5,0x0, 0x0,0x5a,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0xa,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x66,0x5,0x0,0x0,0x1b,0x5,0x0,0x0,0x57, 0x2,0x0,0x0,0x9f,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x63,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb4,0x0,0x0,0x0, 0x3b,0x3,0x0,0x0,0xbb,0x5,0x0,0x0,0xe,0x2,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x64,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3c,0x2,0x0,0x0,0x26,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x66,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x86,0x0, 0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0x41, 0x2,0x0,0x0,0x14,0x5,0x0,0x0,0x5d,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x10,0x1,0x0,0x0,0x20,0x4,0x0,0x0,0x15,0x3,0x0,0x0,0x27,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5a,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88, 0x2,0x0,0x0,0xb2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x75,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x0,0x0,0x0, 0x4f,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x42,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0xe8,0x1,0x0,0x0,0xd5,0x4, 0x0,0x0,0xe,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x2f, 0x1,0x0,0x0,0xc0,0x5,0x0,0x0,0xeb,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x22,0x2,0x0,0x0,0x54,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x80,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb9,0x0,0x0, 0x0,0x7a,0x0,0x0,0x0,0xa3,0x3,0x0,0x0,0xfc,0x4,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xce,0x1,0x0,0x0,0x21,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x84,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x64, 0x5,0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x85,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x2e,0x1,0x0,0x0, 0xd4,0x2,0x0,0x0,0x9d,0x1,0x0,0x0,0x89,0x1,0x0,0x0,0x72,0x3,0x0,0x0, 0xcd,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x5,0x0,0x0,0x96,0x5,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0xd3,0x4,0x0,0x0,0x12, 0x5,0x0,0x0,0x22,0x2,0x0,0x0,0x95,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5d,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0xb9,0x3,0x0,0x0,0xad,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0x25,0x5,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2c,0x2,0x0,0x0,0x66,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x90,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7, 0x1,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x92,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0xd4,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x3,0x0,0x0,0xe8,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x39,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x98,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3a,0x3,0x0,0x0,0x3f,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xee,0x4,0x0, 0x0,0xdc,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0xa6,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x5,0x0,0x0,0x36,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x10,0x2,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf8,0x4,0x0,0x0,0xb4,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x0, 0x0,0x0,0x8,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0xcf, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0,0x65,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x86,0x5,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x46, 0x1,0x0,0x0,0x72,0x0,0x0,0x0,0xc2,0x3,0x0,0x0,0x41,0x3,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x90,0x2,0x0,0x0,0x1c,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xaa,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0xde,0x0,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x5,0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x9b,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb7,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xbb,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x1,0x0, 0x0,0x89,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0xc0,0x0, 0x0,0x0,0x7c,0x5,0x0,0x0,0x50,0x3,0x0,0x0,0xe,0x3,0x0,0x0,0x83,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0x6b,0x2,0x0,0x0,0x82, 0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0x39,0x3,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0xfc,0x1,0x0,0x0, 0x85,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x29,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x58,0x3,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0xf3,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xaf,0x5,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x5,0x0, 0x0,0xe7,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x24,0x1, 0x0,0x0,0xe3,0x4,0x0,0x0,0x62,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb, 0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xca,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0, 0xc3,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x4c,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x2,0x0,0x0,0x3d,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0x35,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd0,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x12,0x1,0x0,0x0,0x21,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x69,0x5,0x0,0x0, 0xbb,0x3,0x0,0x0,0xf2,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7d,0x1,0x0, 0x0,0x1a,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0x18,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x5,0x0,0x0,0xea,0x4,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0x48,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x47,0x3,0x0,0x0,0xc7,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x4, 0x0,0x0,0xde,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x9c, 0x3,0x0,0x0,0xe9,0x2,0x0,0x0,0x2d,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe7,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xca,0x0,0x0,0x0,0xdf,0x1,0x0,0x0,0xa5,0x0,0x0,0x0,0x3e,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x73,0x0,0x0,0x0,0x7,0x3,0x0, 0x0,0x54,0x3,0x0,0x0,0xe9,0x4,0x0,0x0,0x85,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x59,0x4,0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7, 0x5,0x0,0x0,0x66,0x1,0x0,0x0,0x81,0x2,0x0,0x0,0xdb,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x84,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf0,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf1,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x3, 0x0,0x0,0x9b,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa8,0x5,0x0,0x0,0xd6, 0x1,0x0,0x0,0x90,0x2,0x0,0x0,0x9c,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x2c,0x1,0x0,0x0,0x73,0x0,0x0,0x0,0x89,0x5,0x0,0x0,0x97,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x1b,0x1,0x0,0x0,0x36,0x1,0x0,0x0,0x39,0x5,0x0,0x0,0x43,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0x19,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x4f,0x1,0x0,0x0,0x8c,0x5,0x0,0x0, 0x23,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x5,0x0,0x0,0x6e,0x5,0x0, 0x0,0xf8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x1,0x3e, 0xf,0x4,0x0,0xc4,0x5,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb8,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x21,0x60,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa4,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0xb6,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x6a,0x84,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x77,0xf3,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5d,0xa2,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0x32,0x60,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x1a,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa8,0x52,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7,0x54,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x95,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe2,0x27,0x75,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0xe4,0x74,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe6,0xac,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x91,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0x48,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0xe4,0x74,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xb6, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7a,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x50,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x6a,0x84,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xc4,0x1f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6d,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x59,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x73,0x4c,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf1,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x15,0x30,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63, 0xf0,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdf,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x36,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x49,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xf7, 0x67,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xe0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x97,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x8c,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x49,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x3c,0x3f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7b,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe6,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0x49,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x8b,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x84,0x59,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x56,0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa2,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9e,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb5,0xb3, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xce,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf7,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x6b,0x4d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x49,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x30,0x36, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x53,0xc6,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x99,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80, 0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe2,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0xc7,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x8b,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b, 0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xce,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x93,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e, 0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9a,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xde,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x57,0x3f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa,0x4b,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0x5e, 0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf5,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0, 0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x74,0x70,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0x8b,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf1,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80, 0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xee,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe9,0x26,0x84,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xc8,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0, 0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa1,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4f,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xee,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xb3,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0x4a,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x8c, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x27,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3e,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xc4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9f,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xe6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x91,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc3,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x49,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0xc8,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9d,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xb3,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xe4,0x74,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x81,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9f,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0xf5,0x37,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x88,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xaf,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbc,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x5a,0x41,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x86,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94, 0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xcf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb0,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa7,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0x9d,0x50,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x9d, 0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xba,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1, 0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x86,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x64,0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4d,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80, 0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xc6,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0xc7,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x86,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5, 0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x1d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xde,0xb5,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe1,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc2,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0x86, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb8,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8, 0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xc4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0x5a,0x41, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x26,0x5b,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa9,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80, 0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xda,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x86,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x16,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e, 0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3c,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc7,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x95,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x7e,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5c,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x17, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3b,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x96,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1, 0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xcc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa0,0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbd,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x8,0x78,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc8, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x16,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd9,0xf7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xde,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x57,0x54, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x50,0x45,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc6,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb4,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xd5,0x2b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6, 0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x52,0xef,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x53,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x57,0x3f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0xc7, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x40,0xce,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb1,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8, 0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xff,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x8d,0x33, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xfe,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe8,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80, 0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xde,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xc7,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x8b,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a, 0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x7d,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e, 0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x11,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa6,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x68,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x49,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x85,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xde,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0xc0,0x4d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xad,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x78,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6f,0x57,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x67,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x72,0xa,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x92,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0xc7,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xd5,0x2b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe5,0x74,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe5,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xc7,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xb, 0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x20,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfa,0x28,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x99,0x6d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x94,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x6,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0x59,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x68,0x36,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x31,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x7b,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf1,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xc8,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7, 0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xd5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x98,0x62,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x86,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xea,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x6,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x8a, 0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x60,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8, 0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xf4,0x68,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xb7,0x8a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0x78,0x26, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfb,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80, 0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x96,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x6,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xef,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e, 0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xff,0x47,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x8b,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0x27, 0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xdf,0xb2,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x62,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xc4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xb6,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9b,0x90,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa0,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa3,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x6b,0x75,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26, 0x3,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x97,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x65,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd5,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xa4,0x58,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x8a,0x6d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x76, 0x4a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x19,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd9,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e, 0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xaa,0xf,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x23,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf3,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0xad,0x84,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2, 0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5b,0x62,0x49,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xb6,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x4d,0x6a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0x6, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xd4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe5,0x5,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x78,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xbd,0x42, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb6,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x49,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd6,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x99,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1b,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9e,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x68, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2, 0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2e,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x31,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd0,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x68,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2, 0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e, 0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb1,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcf,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x73, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4c,0xbb,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x37,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde, 0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x60,0x87,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xd3,0x37,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xb6,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb0,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc5,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0x41,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xed,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x20,0x3a,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf9,0x28,0x66,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e, 0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9d,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0xff,0x51,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xa4, 0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x72,0x6b,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf8,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0xc8,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xa4,0x58, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x15,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x42,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x89,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x34,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x85,0xc0,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xf1,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x39,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0x68,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0xe9, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa6,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x35,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x69,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x80,0x1a,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdd,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x7e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6, 0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xd6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7b,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x65,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa1,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x70,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x10,0xf4,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf1,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xc7,0x6e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xc9,0x6e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17, 0xcc,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x18,0x8d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa1,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xad,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xcf,0x6e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0xd1, 0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x22,0x3a,0x77,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1e,0xad,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0xd8,0x6e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xdb,0x6e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x14,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfb,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80, 0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x59,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x98,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x70,0xbd,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x5c,0x50,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1e,0xdc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a, 0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe8,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc8,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0xa4,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xba,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x86,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xa9,0x22,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbe,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xac,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xf0,0x51, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6b,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfc,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0xaf,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xb4,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0xc0,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d, 0xa8,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xec,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e, 0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9b,0x52,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x27,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x5, 0x32,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbb,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3f,0x4b,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xd,0x32, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0xce,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x18,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x49,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80, 0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbf,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xd5,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0x85,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde, 0x93,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x70,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9e,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9d,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x96,0x1d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x96,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x4a,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x56, 0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xaf,0x59,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa2,0x31,0x3d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x5e,0xe,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa6,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xa3,0x1d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0xe6,0x4f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x53,0x8a,0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xae,0x63,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89, 0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xfc,0xb2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x97,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x66,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53, 0x69,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe3,0x6f,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a, 0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4f,0x72,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbe,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x8b,0x8,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x74,0xe,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x77, 0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x97,0xbc,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x61,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x75,0x7b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xc2,0x1d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0x82,0xe, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xad,0x84,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x8e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x64,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x92,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x32,0x60,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd9,0xe,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4c,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6b,0x8a,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xde,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0x28,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x2a,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2a,0xf8,0x67,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x22,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x2d,0x16,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x78,0x87, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x62,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2f,0x30,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89, 0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdb,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x8d,0x17,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1, 0x10,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x93,0x32,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x24,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb8,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xb4,0x54,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x13,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x7a, 0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6e,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x54,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xdb,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x92,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0xbc,0x3,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x8d,0x33, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x84,0x16,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x19,0xc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x56,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x32,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x94,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x3a,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3,0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbf,0xde,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x96,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x18,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa4,0xc,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x18, 0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x94,0x3c,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae, 0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0x59,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1d,0xe1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x18,0x8f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd3,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80, 0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9a,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x1b,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xe3,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2, 0x3f,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x18,0x8b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x71,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e, 0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd5,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x11,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9e,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0x23, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xaa,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc5,0xe6,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x9b,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x42,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x68,0x26,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0xc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0xf0,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f, 0xeb,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb2,0x14,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa2,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x8b,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xf0, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xba,0x47,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x18, 0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x69,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xff,0x3f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x29,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x96,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xe6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xed,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x28,0x19,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x7c,0x86,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e, 0xd9,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5c,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbe,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x45,0x7c,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x4d,0x6a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x8b, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2, 0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf3,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xd5,0x2b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x6,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1a,0x4a,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb7,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xae,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x92,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xb5,0x58,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xb5,0x5b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa0,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x50,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x81,0xd1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2f,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x51,0x62,0x49,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xea,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbd,0x42,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0xad,0x84, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd0,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x66,0x99,0x59,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xca,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x2b,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x89,0xa4,0x58,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b, 0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1b,0x60,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5,0xf1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x6,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc2,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0x7b,0x33,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x9b, 0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x88,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xbf,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xa4,0x58,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0x79,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xcd,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x66,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80, 0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x1c,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x4c,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf, 0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xcc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4a,0xb2,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf4,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdb,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xdb,0x68,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xbd,0x42,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xa4, 0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x71,0x2e,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19, 0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xae,0x8,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x34,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xc8,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe8,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xff,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd9,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x73,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69, 0xf3,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5d,0x1f,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbd,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x34,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xff,0x51,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x4f, 0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd7,0xdd,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1, 0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x27,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3, 0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0xb4,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xc8,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xdd,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf9,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb0,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xbd,0x42,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x73,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a, 0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xba,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa3,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb7,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0xa4,0x58,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x79,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x34, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x20,0x7b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe1,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x79,0x33,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x78,0x26, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x68,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x1c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x77,0x27,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xde,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x7a,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60, 0x4d,0xf,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x19,0xf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xce,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0x2b,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd2,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x68,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x94, 0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4,0xb7,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa8,0x39,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe, 0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xfb,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x53,0xf, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x36,0x3,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x99,0x67,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xce,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xba,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x57,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d, 0x3c,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfc,0x13,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a, 0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x14,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc2,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xfd,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x2a,0x6,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xc1, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3b,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f, 0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x5,0x52,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xdd,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xed,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x68,0x85,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa2,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xb2,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe, 0x50,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x19,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcd,0xdd,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd2,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x68,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc4, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbf,0x41,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x19, 0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x9e,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa2,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0xc8,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0x3,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x8f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8e,0x72,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89, 0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd6,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x5b,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff, 0x8,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x19,0x9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4f,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e, 0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc8,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0xe3,0x40,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x4a, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x10,0x1c,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x52,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96, 0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xe,0x45,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe9,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x64,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x32,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xc9,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xb7,0x8a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48, 0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x24,0x24,0x44,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xab,0x7f,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc8,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x6a,0x5f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x77,0xd6,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x4d,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe1,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x4c,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x7e,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3b,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x1c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x22,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0x78,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe1,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xe,0x16,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xe8,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d, 0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa6,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0xae,0x6e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0x68, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x69,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3b,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xa3,0x25,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xca,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd8,0xcf,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbe,0x4f,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xdd,0x43,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x7e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x50,0x2d,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfc,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xea,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xc8,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0x92,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x41,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6,0x7e,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xee,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x7e,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x68,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x78,0x1d,0x8c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcb,0xa,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc3,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d, 0xd6,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe5,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xde,0xe0,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe1,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xab,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0x11, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x80,0xd5,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92, 0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xea,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x81,0x15,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xc8,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7b,0xdb,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x1c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf8,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x78,0x5f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x81,0x97,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a, 0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x19,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc4,0x5e,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa5,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc2,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x59,0x17,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x97,0x33,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0x78, 0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x12,0x1a,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xf6,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9a,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe3,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe4,0x1e,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89, 0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x3b,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x96,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x7e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18, 0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x14,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x62,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcc,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xf0,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0xf0, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4d,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2, 0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x68,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x35,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9e,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xe2,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3d,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x37,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe4,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xf7,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x28,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x43,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2, 0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xe2,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xe2,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1b,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x13, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2c,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x30,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdd,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0xe2,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x11,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x32,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x96,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xe1,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xe8, 0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb1,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xe8,0x34,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xaf,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa3,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xda,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4, 0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x11,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd4,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbc,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x63,0x5e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x9e, 0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x10,0x2b,0x44,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x96,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xe8,0x34,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcc,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb8,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x92,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14, 0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xaa,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x3b,0x9,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xff,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x3b,0x9,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x3b,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x35,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xda,0xc8,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89, 0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf0,0xdf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xca,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0xb9,0x31,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0, 0xe1,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0xf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4e,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbf,0xe8,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xce,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0x3b,0x9,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x47,0x6,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfa,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x97,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x3b,0x9,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x3b,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1a,0xbc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19,0xe, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4c,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xa1,0xb4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x91,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xe4,0x3f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xeb,0x6,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51, 0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc9,0xc1,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x79,0xe7,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb2,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xed,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xc4,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xe9, 0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfa,0x99,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x18, 0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x80,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x29,0x2e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xac,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x86,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89, 0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xef,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xc7,0x31,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c, 0x5b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x18,0x89,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe8,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e, 0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x14,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa2,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x81,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x81,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x40,0xf3,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x19,0xca,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0x80,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x81,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x97,0x5d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x18,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9b,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89, 0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x60,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9e,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xcc,0x31,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7a, 0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x18,0x8a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x81,0xd3,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6b,0x63,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa2,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xd5,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x67, 0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbc,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18, 0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x67,0x6b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa, 0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd8,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd6,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x11,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x6d,0x17, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x18,0x89,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf7,0xe6,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x19,0x8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xaf,0xdb,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89, 0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0xe9,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x70,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a, 0xde,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x81,0x39,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a, 0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa0,0xec,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc2,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x81,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x72,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x81, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x24,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x81,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x81,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x1b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3c,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3, 0x3b,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x19,0xb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5,0xef,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a, 0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x72,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe2,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xba,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0xef,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xef, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc3,0x80,0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc,0xfa,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x3c,0x59, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x93,0x41,0x45,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb2,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xee,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xee,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f, 0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x18,0x8a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xff,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x71,0xfc,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9a,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0x41,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xf9,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xee, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x50,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2, 0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf2,0x43,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd1,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xef,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xef,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x35,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80, 0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xfe,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xee,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7, 0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x42,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe0,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd7,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x37,0x83,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xef, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfd,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2, 0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x38,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2, 0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x7e,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x11,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf9,0x4d,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x6,0x80,0x8e,0x17,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xaf,0xc6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80, 0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x60,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x92,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0xfc,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x1,0x15,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f, 0xc7,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0x17,0x48,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x51,0xc8,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e, 0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6e,0x4c,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa6,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0x80,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xff, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x19,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd6,0x4e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x22,0x9,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x83,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xca,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x11,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x1,0xd, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x8f,0xb,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6e,0x51,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x88,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xce,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x2,0x2a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b, 0x4,0xd,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x18,0xe,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a, 0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7d,0x54,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb2,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x5,0x2a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0x61,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x53, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0x17,0x49,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5a,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18, 0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x37,0x5d,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae, 0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x8b,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x9e,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x70,0x14,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x54,0x19,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80, 0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xe6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9a,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x1e,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0x1b,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7, 0xc0,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x74,0x10,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a, 0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa3,0x1d,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xea,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0x7,0x2a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0x20,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x13, 0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0x17,0x49,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc1,0x5a,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17, 0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb,0xa2,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96, 0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x56,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb6,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x11,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x8e,0x17, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x89,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf7,0xc3,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x19,0x8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x60,0xa,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89, 0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xa4,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9a,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x12,0x15,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x11,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6, 0x5f,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x19,0xb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x17,0x91,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a, 0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x12,0xe9,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe1,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc6,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0xd,0x2a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x1c, 0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x19,0xd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4f,0x62,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd9,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf, 0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x93,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xde,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xa9,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xcd,0xab,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x67,0x1f,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x64,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc2,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xae,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0xcb,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5, 0xae,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x81,0xa5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6,0x68,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc6,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0xb0,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaa,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0xd2,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x4c, 0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0x17,0x44,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2,0xb1,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x19, 0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7,0x22,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x6a,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xca,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xb4,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xd5,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf1,0x59,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x64,0x5c,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80, 0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x12,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe1,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x16,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xf8,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x21,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0, 0x12,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfa,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3b,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1f,0x81,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x97,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xb3,0x29,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xcc,0x47,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x7b, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0x17,0x74,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2e,0x8,0x57,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x78,0x8b,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x81,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc7,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xd0,0x47,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0xc7,0x47, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4f,0x80,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc,0x26,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x7e,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe3,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x87,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0xc5,0x47,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42, 0x73,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x19,0xb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa9,0xb6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a, 0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x62,0xcb,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7b,0xbe,0x47,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xc6,0x47,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xbf, 0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0x17,0x74,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbb,0xc1,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0x17, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x58,0x86,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x7d,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x80,0x47,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xc3,0x56, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xde,0x83,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x44,0x7b,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x3d,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xda,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x7c,0x47,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xfd,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xd8,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5, 0xb7,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x35,0xba,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e, 0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb4,0xb6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa2,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x7e,0x47,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0x28,0x15,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x75, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb4,0xbc,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17, 0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb5,0x74,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x6, 0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x7d,0x47,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1b,0x0,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x84,0x20,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xbb,0x56, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0xb9,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x8c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf3,0x40,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfa,0x80, 0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0xda,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb2,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x82,0x20,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xbb,0x56,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25, 0x77,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x35,0x8f,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x93,0x81,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x45,0x11,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1b,0x1,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xbe,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x41, 0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x50,0x87,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x95,0xb8,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa, 0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x30,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xce,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xb5,0x56,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa3,0x82,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfa,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb7,0x46,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80, 0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x73,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf7,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x44,0x11,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xff,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0x7f,0x20,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57, 0x49,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0x17,0x6b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x57,0x8e,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x64,0x43,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x94,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x78,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x4b,0x11,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1b,0x3,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x8a, 0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x83,0x3e,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x76,0xbe,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba, 0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x8c,0x20,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb9,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xc0,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xd,0x40, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0x17,0x64,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xff,0xf,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0x17,0x64, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x51,0xe,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80, 0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x4e,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xdd,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xf7,0x39,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb, 0x11,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x5,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x31,0x15,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x8d,0x8,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x48,0x4f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xb,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1b,0x2,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xf, 0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfc,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6a,0x7b,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc2,0x33,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x9,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xf8,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x14,0x40,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xff,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x4d,0x4f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x64,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xed,0x6,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0x17,0x64, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xde,0xc0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbd,0x46,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x11,0x40,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x8c,0x5e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc, 0x12,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf5,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8d,0x47,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x98,0x2,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xca,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xc3,0x29,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xae,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x6,0x25,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xff, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7f,0xf8,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17, 0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5a,0x36,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0x3,0x25,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xce,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xf5,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xfd,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0x17,0x66,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0x8,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0x17,0x66, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6a,0xf4,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80, 0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xfa,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xfc,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x1,0x25,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd, 0xf6,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x66,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x52,0x5,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e, 0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf5,0x6,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xda,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x0,0x25,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc2,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xfc,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xf7, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x47,0xc3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x96,0xf9,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa, 0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc5,0x29,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb2,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xf6,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x5a,0x15, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x8a,0x64,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0x17,0x65, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc2,0x99,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80, 0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x7e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xde,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x97,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x59,0x15,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31, 0xa1,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4c,0x90,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf2,0x98,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc7,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0xd4,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xd3,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xcf, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x64,0xd1,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb3,0xdd,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe, 0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56,0x39,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xda,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xc6,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xcc,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc5,0xd5,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x65, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdd,0xd6,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xd8,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xba,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xdc,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xc8,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6, 0xca,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x27,0xda,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb9,0x3b,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xde,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x89,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x7c,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0xd1, 0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x19,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf3,0x85,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17, 0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x22,0x88,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x79,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x8c,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x2a,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0x17,0x68,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x96,0x78,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0x17,0x68, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfd,0xc8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x6c,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbd,0x2e,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1b,0x6,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0xce,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c, 0x28,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0x17,0x68,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd0,0xd3,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89,0x8a, 0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa5,0x34,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x2d,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x91,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x71,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x31, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0x17,0x68,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7c,0x2b,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0x17, 0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x46,0x38,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x3, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2d,0x70,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x99,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x33,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0xd0,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x26,0xd6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x51,0xd3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xd9,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xd6,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xdb,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa, 0xd8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x18,0x8c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x15,0xb3,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e, 0x17,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x8,0xd3,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xda,0x80,0x8e,0x17,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x54,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x12,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x54, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc,0x45,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9, 0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa0,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6d,0x53,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc7,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79, 0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xe4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x33,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x86,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb8,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x80,0x6a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xbc,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x1a, 0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x60,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1, 0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa8,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xbc,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcf,0x99,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xf0,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0xa,0x68,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0xbc,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f, 0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xda,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x44,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x18,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbf,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xe0,0x1b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xe5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7d,0xe9,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1, 0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc8,0x22,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x99,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xb0,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0x75,0x1f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x19,0xa7,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa3,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80, 0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x57,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc, 0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xed,0xf2,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb7,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xde,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xe5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbe,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2,0xfc,0x4b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd9,0x43,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xbd,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe5,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8c,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80, 0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x57,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43, 0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4f,0xc8,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9a,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xe9,0x51,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe5,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x57, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa5,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1a,0xf6,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb4,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x35,0xa7,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x68,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd8,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xe5,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6d,0xe9,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e, 0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4b,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xe0,0x1b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x57, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe0,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1, 0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9,0x86,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa1,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf1,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xf8,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe6,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x1a,0x6b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a, 0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb9,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3e,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x57,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xbc, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x91,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x58,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x27,0x2e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x22,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x93,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x42,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x1a,0x6b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7, 0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x21,0xc8,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x89,0xfa,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xea,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xd8,0x5b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xbd,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x57, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9b,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3a,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0xbd,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x48,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1f,0x3e,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xee,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xbc,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0xe0,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37, 0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x11,0xa2,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x45,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd0,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xbc,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xfc,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xa, 0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xcb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x13,0x96,0x4c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xbc,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xe8,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x53,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9b,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd6,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xce,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xce,0x13,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69, 0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e, 0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6b,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe0,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xce,0x13,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x33,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1, 0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x73,0x5,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92, 0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x10,0x23, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x68,0x5,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x39,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe,0xc3,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xce,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0x80,0x41,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e, 0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x40,0xa1,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x11,0xf0,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xfe,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x67,0x5,0x55,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0xe,0x80,0x8e,0xa1, 0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xbe,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4, 0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xde,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xb6,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x32,0x60, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xae,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa7,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x8c,0x43,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xfa,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x39,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf, 0x48,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x76,0xe3,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x82,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0xe7,0x4f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x23,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9f,0x1e,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1, 0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5b,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xb5,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x6,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x65,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xe3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xba,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80, 0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc3,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x17,0x62,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x48,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8, 0xe5,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x79,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x59,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xee,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xb,0x5b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xbc,0x3,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x1c, 0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xde,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x64,0xe3,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x59,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0xf0,0x50, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc2,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4d,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xd7,0x52,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf5,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xe3,0x74,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x48,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x7d,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x31,0xf0,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa0,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x4d,0x6a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x5a,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x14, 0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xde,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x14,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb6,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xee,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x59,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x6,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb2,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdc,0xa4,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x12,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0x6a,0x84,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xb6,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e, 0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc8,0xad,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x98,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xd4, 0x52,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xde,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc6,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x48,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x89,0x54,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1b,0x13,0x80,0x8e,0xa1,0xe5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xd5,0x2b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9d,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xe6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa2,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xef,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8, 0x88,0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfd,0x80,0x8e,0xa1,0xe5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd5,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x47,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xba,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x74,0x70,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0xef,0x6b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc4,0x5,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x6d,0x65,0x2c,0x0, 0x34,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0x6d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x1e,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0,0xec,0x65,0x2c,0x0,0xc2,0x40,0x2d, 0x0,0xe9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x8b,0x65, 0x2c,0x0,0x2e,0x66,0x2c,0x0,0xa3,0x41,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0xc0,0x65,0x2c,0x0,0xc1,0x65,0x2c,0x0,0x94, 0x83,0x2d,0x0,0xc0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0, 0x40,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x40,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x71,0x65,0x2c,0x0,0xbd,0x65,0x2c,0x0,0xbe,0x65,0x2c, 0x0,0x86,0x7b,0x2d,0x0,0xbb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x64, 0x2c,0x0,0x81,0x65,0x2c,0x0,0x82,0x65,0x2c,0x0,0x75,0x83,0x2d,0x0,0x81,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x33, 0x66,0x2c,0x0,0x51,0x49,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x30,0x64,0x2c,0x0,0x86,0x65,0x2c,0x0,0x87,0x65,0x2c,0x0,0x87,0x83,0x2d,0x0, 0x86,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x9a,0x65,0x2c, 0x0,0x2e,0x66,0x2c,0x0,0x9c,0x55,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2d,0x66,0x2c,0x0,0x93,0x66,0x2c,0x0,0xb0,0x66,0x2c,0x0,0x6c,0x83, 0x2d,0x0,0xaf,0x66,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x7a, 0x65,0x2c,0x0,0x98,0x65,0x2c,0x0,0x52,0x3c,0x2d,0x0,0x7e,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x23,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0, 0xa4,0xea,0x2c,0x0,0x22,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c, 0x0,0xb4,0x65,0x2c,0x0,0xb5,0x65,0x2c,0x0,0xe1,0x7b,0x2d,0x0,0xb4,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0xc8,0x65, 0x2c,0x0,0xb7,0xce,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31, 0x64,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x35,0x66,0x2c,0x0,0x7e,0x4e,0x2d,0x0,0x4f, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x12,0x64,0x2c,0x0,0x1e,0x65,0x2c,0x0, 0x1f,0x65,0x2c,0x0,0x2c,0xe0,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x34,0x64,0x2c,0x0,0x31,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0xe,0x47,0x2d, 0x0,0x31,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3d,0x64,0x2c,0x0,0xa9,0x65, 0x2c,0x0,0x2c,0x66,0x2c,0x0,0x91,0x83,0x2d,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1e,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0x72, 0x83,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0, 0xdb,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0x7d,0x3c,0x2d,0x0,0xdb,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2c,0x66,0x2c, 0x0,0xf0,0x82,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64, 0x2c,0x0,0xe0,0x65,0x2c,0x0,0x24,0x66,0x2c,0x0,0x90,0x73,0x2c,0x0,0xe0,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xa4,0x65,0x2c,0x0,0xa5, 0x65,0x2c,0x0,0x1f,0x49,0x2d,0x0,0xa3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xfd,0x63,0x2c,0x0,0x60,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0x15,0x76,0x2d,0x0, 0x60,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfa,0x63,0x2c,0x0,0xb1,0x64,0x2c, 0x0,0x31,0x66,0x2c,0x0,0x74,0x7b,0x2d,0x0,0xb1,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2f,0x64,0x2c,0x0,0x86,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x9f,0x50, 0x2d,0x0,0x86,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x13,0x65,0x2c,0x0,0xac, 0x65,0x2c,0x0,0x31,0x66,0x2c,0x0,0x63,0x7b,0x2d,0x0,0xac,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x15,0x64,0x2c,0x0,0xfb,0x6d,0x2c,0x0,0xfc,0x6d,0x2c,0x0, 0x2d,0xc,0x2d,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c, 0x0,0x4f,0x65,0x2c,0x0,0x31,0x66,0x2c,0x0,0xea,0xc1,0x2c,0x0,0x4f,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x1d,0x64,0x2c,0x0,0x82,0x65,0x2c,0x0,0x34,0x66, 0x2c,0x0,0xa5,0x3e,0x2d,0x0,0x82,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33, 0x64,0x2c,0x0,0x5,0x65,0x2c,0x0,0x6,0x65,0x2c,0x0,0x79,0x47,0x2d,0x0,0x4, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x43,0x64,0x2c,0x0,0x7c,0x65,0x2c,0x0, 0x38,0x66,0x2c,0x0,0xb1,0x75,0x2d,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x30,0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0x48,0x45,0x2d, 0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xae,0x65, 0x2c,0x0,0x2a,0x66,0x2c,0x0,0x45,0x56,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1b,0x64,0x2c,0x0,0x0,0x66,0x2c,0x0,0x26,0x66,0x2c,0x0,0xba, 0xcf,0x2c,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0, 0x83,0x65,0x2c,0x0,0x84,0x65,0x2c,0x0,0x55,0x3d,0x2d,0x0,0x82,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x33,0x66,0x2c, 0x0,0x1c,0x7b,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64, 0x2c,0x0,0x3f,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x66,0xe2,0x2c,0x0,0x3f,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x2e, 0x66,0x2c,0x0,0x9e,0x44,0x2d,0x0,0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2c,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0xaf,0x44,0x2d,0x0, 0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0xa5,0x65,0x2c, 0x0,0xa6,0x65,0x2c,0x0,0x30,0xe0,0x2c,0x0,0xa4,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x47,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0,0xd2,0x65,0x2c,0x0,0xd4,0x43, 0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x16,0x64,0x2c,0x0,0xe1, 0x64,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x8f,0x46,0x2d,0x0,0xe1,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x20,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0, 0x52,0x3c,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c, 0x0,0x18,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0x50,0x3c,0x2d,0x0,0x18,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x33,0x66, 0x2c,0x0,0x25,0xdc,0x2c,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27, 0x64,0x2c,0x0,0xa0,0x64,0x2c,0x0,0xa2,0x64,0x2c,0x0,0x5d,0x76,0x2d,0x0,0xa0, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xd3,0x65,0x2c,0x0, 0xd4,0x65,0x2c,0x0,0xf4,0x48,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x38,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0xfa,0x65,0x2c,0x0,0x14,0x45,0x2d, 0x0,0xf7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x18,0x64,0x2c,0x0,0xaa,0x65, 0x2c,0x0,0x2c,0x66,0x2c,0x0,0xcc,0xc,0x2d,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0x36,0x65,0x2c,0x0,0x34,0x66,0x2c,0x0,0xcc, 0xd0,0x2c,0x0,0x36,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x64,0x2c,0x0, 0x91,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x95,0x83,0x2d,0x0,0x91,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x21,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x33,0x66,0x2c, 0x0,0x0,0x75,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x49,0x64, 0x2c,0x0,0xe2,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x95,0x1c,0x2d,0x0,0xe0,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xf7,0x65,0x2c,0x0,0xf8, 0x65,0x2c,0x0,0x5e,0x76,0x2d,0x0,0xf4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2d,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x80,0x57,0x2d,0x0, 0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0xf7,0x65,0x2c, 0x0,0xf8,0x65,0x2c,0x0,0xff,0x3c,0x2d,0x0,0xf4,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2f,0x64,0x2c,0x0,0x86,0x65,0x2c,0x0,0x87,0x65,0x2c,0x0,0x55,0xed, 0x2c,0x0,0x86,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0x9f, 0x65,0x2c,0x0,0x31,0x66,0x2c,0x0,0x91,0x47,0x2d,0x0,0x9f,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x1b,0x64,0x2c,0x0,0xef,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0, 0xe2,0x48,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a, 0x0,0x64,0x5e,0x2c,0x0,0x49,0x6d,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x64,0x5e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x36,0x65,0x2c,0x0,0x37,0x66, 0x2c,0x0,0x75,0x40,0x2d,0x0,0x36,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1e, 0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0x9b,0xc1,0x2c,0x0,0xb8, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3,0x64,0x2c,0x0,0xe3,0x64,0x2c,0x0, 0x32,0x66,0x2c,0x0,0x65,0xec,0x2c,0x0,0xe3,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x37,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x6c,0xd,0x2d, 0x0,0xf7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x66,0x2c,0x0,0x86,0x83, 0x2d,0x0,0x87,0x83,0x2d,0x0,0x87,0x83,0x2d,0x0,0x86,0x83,0x2d,0x0,0x0,0x0, 0x0,0x0,0x1,0x41,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x49, 0x49,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0, 0x90,0x65,0x2c,0x0,0x92,0x65,0x2c,0x0,0x86,0xdd,0x2c,0x0,0x90,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xfb,0x63,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x2e,0x66,0x2c, 0x0,0xcb,0x48,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22, 0x2a,0x0,0xa6,0x64,0x2c,0x0,0x2a,0x6d,0x2c,0x0,0xfe,0x82,0x2d,0x0,0xa6,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x2a, 0x66,0x2c,0x0,0x0,0x40,0x2d,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x25,0x64,0x2c,0x0,0xcd,0x65,0x2c,0x0,0xce,0x65,0x2c,0x0,0x72,0x83,0x2d,0x0, 0xcd,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x31,0x65,0x2c, 0x0,0x38,0x66,0x2c,0x0,0x31,0x76,0x2d,0x0,0x31,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x3b,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xe4,0xcf, 0x2c,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0xef, 0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x29,0x48,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0, 0x7,0x48,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c, 0x0,0xc0,0x7e,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xc,0x48,0x2d,0x0,0xbd,0x7e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x22,0x2a,0x0,0xc4,0x5d,0x2c,0x0,0x47,0x6d, 0x2c,0x0,0x1f,0x45,0x2d,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3f, 0x64,0x2c,0x0,0xf4,0x65,0x2c,0x0,0xf5,0x65,0x2c,0x0,0x7a,0xe,0x2d,0x0,0xf4, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0, 0x37,0x66,0x2c,0x0,0xd6,0x75,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2f,0x64,0x2c,0x0,0xf0,0x64,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x81,0x3d,0x2d, 0x0,0xf0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0x9d,0x65, 0x2c,0x0,0x32,0x66,0x2c,0x0,0xb4,0x7b,0x2d,0x0,0x9d,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x48,0x64,0x2c,0x0,0x45,0x65,0x2c,0x0,0x40,0x66,0x2c,0x0,0xa6, 0x4e,0x2d,0x0,0x45,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0, 0x90,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x6a,0x3f,0x2d,0x0,0x90,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xa,0x5e,0x2c,0x0,0x46,0x6d,0x2c, 0x0,0xde,0x44,0x2d,0x0,0x8,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64, 0x2c,0x0,0xe7,0x64,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x87,0x40,0x2d,0x0,0xe7,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x66,0x2c,0x0,0xd8,0x69,0x2c,0x0,0xf2, 0x69,0x2c,0x0,0x94,0xe2,0x2c,0x0,0xf1,0x69,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x38,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x9a,0x56,0x2d,0x0, 0xf9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x18,0x64,0x2c,0x0,0x21,0x65,0x2c, 0x0,0x39,0x66,0x2c,0x0,0x7d,0x3c,0x2d,0x0,0x20,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2f,0x64,0x2c,0x0,0x48,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x7a,0x4e, 0x2d,0x0,0x48,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xef, 0x65,0x2c,0x0,0xf0,0x65,0x2c,0x0,0xaa,0x7b,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3f,0x64,0x2c,0x0,0x9c,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0, 0xf4,0x48,0x2d,0x0,0x9c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c, 0x0,0xe6,0x64,0x2c,0x0,0x3b,0x66,0x2c,0x0,0xc5,0xea,0x2c,0x0,0xe6,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0x52,0x5e,0x2c,0x0,0x4b,0x6d, 0x2c,0x0,0x7c,0x56,0x2d,0x0,0x52,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a, 0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0x94, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0xff,0x64,0x2c,0x0, 0x41,0x66,0x2c,0x0,0xa9,0x56,0x2d,0x0,0xff,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x1c,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0x87,0x83,0x2d, 0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x64,0x2c,0x0,0x18,0x65, 0x2c,0x0,0x3e,0x66,0x2c,0x0,0x73,0x3c,0x2d,0x0,0x18,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1d,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0x34, 0x44,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0, 0x81,0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0xca,0x56,0x2d,0x0,0x81,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xff,0x63,0x2c,0x0,0xae,0x65,0x2c,0x0,0x30,0x66,0x2c, 0x0,0x5c,0x48,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1b,0x64, 0x2c,0x0,0xeb,0x64,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x17,0x40,0x2d,0x0,0xeb,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfa,0x63,0x2c,0x0,0xfd,0x64,0x2c,0x0,0x30, 0x66,0x2c,0x0,0xca,0x44,0x2d,0x0,0xfd,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x34,0x66,0x2c,0x0,0x4c,0x70,0x2c,0x0,0x4d,0x70,0x2c,0x0,0xb3,0x3f,0x2d,0x0, 0x4a,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0x9a,0x65,0x2c, 0x0,0x31,0x66,0x2c,0x0,0x9e,0x46,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x1e,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x34,0x66,0x2c,0x0,0x7a,0x3c, 0x2d,0x0,0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1d,0x64,0x2c,0x0,0x31, 0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0x3d,0x4e,0x2d,0x0,0x31,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x20,0x64,0x2c,0x0,0x31,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0, 0x62,0x42,0x2d,0x0,0x31,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c, 0x0,0x9c,0x65,0x2c,0x0,0x9d,0x65,0x2c,0x0,0x1f,0xe,0x2d,0x0,0x9c,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x5f,0x64,0x2c,0x0,0xb4,0x65,0x2c,0x0,0x31,0x66, 0x2c,0x0,0xd4,0x52,0x2d,0x0,0xb3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x21, 0x64,0x2c,0x0,0x36,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0xf8,0x3f,0x2d,0x0,0x36, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1d,0x64,0x2c,0x0,0xe1,0x64,0x2c,0x0, 0x40,0x66,0x2c,0x0,0xa8,0x3e,0x2d,0x0,0xe1,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x20,0x64,0x2c,0x0,0x4,0x65,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x7c,0xc,0x2d, 0x0,0x4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0xd8,0x64, 0x2c,0x0,0x45,0x66,0x2c,0x0,0x74,0x40,0x2d,0x0,0xd8,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x91,0x65,0x2c,0x0,0x76, 0x76,0x2d,0x0,0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0, 0x73,0x65,0x2c,0x0,0x75,0x65,0x2c,0x0,0xa,0x57,0x2d,0x0,0x72,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x59,0x65,0x2c,0x0,0x36,0x66,0x2c, 0x0,0xd,0x46,0x2d,0x0,0x59,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x64, 0x2c,0x0,0x86,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0x86,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xd2,0x65,0x2c,0x0,0x31, 0x66,0x2c,0x0,0xb,0x47,0x2d,0x0,0xd2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2f,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x0,0xeb,0x2c,0x0, 0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0x7c,0x65,0x2c, 0x0,0x35,0x66,0x2c,0x0,0x7d,0x45,0x2d,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x36,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0xc8,0x65,0x2c,0x0,0xfc,0x3e, 0x2d,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xa9, 0x65,0x2c,0x0,0xaa,0x65,0x2c,0x0,0x3,0x49,0x2d,0x0,0xa9,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x96,0x65,0x2c,0x0, 0xa7,0x46,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a, 0x0,0x89,0x5e,0x2c,0x0,0x46,0x6d,0x2c,0x0,0x89,0x7b,0x2d,0x0,0x89,0x5e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x1e,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x36,0x66, 0x2c,0x0,0xc7,0x75,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8, 0x22,0x2a,0x0,0x95,0x5e,0x2c,0x0,0x39,0x6d,0x2c,0x0,0xa0,0xd,0x2d,0x0,0x93, 0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x48,0x64,0x2c,0x0,0x8c,0x65,0x2c,0x0, 0x8d,0x65,0x2c,0x0,0x6d,0xd5,0x2c,0x0,0x8c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2c,0x64,0x2c,0x0,0x78,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0xbd,0x56,0x2d, 0x0,0x78,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x68,0x65, 0x2c,0x0,0x2f,0x66,0x2c,0x0,0xf6,0x55,0x2d,0x0,0x68,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0x1a,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x29, 0xc,0x2d,0x0,0x1a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0, 0x9a,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x87,0xd1,0x2c,0x0,0x9a,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0xfa,0x64,0x2c,0x0,0x3f,0x66,0x2c, 0x0,0x2a,0x7c,0x2d,0x0,0xfa,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x64, 0x2c,0x0,0x59,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xef,0x82,0x2d,0x0,0x59,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x20,0x64,0x2c,0x0,0x78,0x65,0x2c,0x0,0x34, 0x66,0x2c,0x0,0x91,0x83,0x2d,0x0,0x78,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x35,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x2a,0x54,0x2d,0x0, 0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c,0x0,0x62,0x65,0x2c, 0x0,0x64,0x65,0x2c,0x0,0x95,0x83,0x2d,0x0,0x62,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x25,0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0xbe,0x65,0x2c,0x0,0x5d,0xeb, 0x2c,0x0,0xbd,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xf0, 0x64,0x2c,0x0,0x43,0x66,0x2c,0x0,0x92,0x4e,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0xfa,0x64,0x2c,0x0,0x41,0x66,0x2c,0x0, 0x0,0x83,0x2d,0x0,0xfa,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x64,0x2c, 0x0,0x72,0x65,0x2c,0x0,0x35,0x66,0x2c,0x0,0xc,0x55,0x2d,0x0,0x72,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xd3,0x5d,0x2c,0x0,0x1c,0x68, 0x2c,0x0,0xcc,0x43,0x2d,0x0,0xd3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x46, 0x65,0x2c,0x0,0xe4,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0xab,0x7b,0x2d,0x0,0xe4, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0, 0xfb,0x67,0x2c,0x0,0x87,0x83,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xde,0x64,0x2c,0x0,0x79,0x65,0x2c,0x0,0x3b,0x67,0x2c,0x0,0xb0,0xe2,0x2c, 0x0,0x79,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xb7,0x5d, 0x2c,0x0,0x7a,0x66,0x2c,0x0,0x94,0x51,0x2d,0x0,0xb7,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2e,0x65,0x2c,0x0,0xc5,0x65,0x2c,0x0,0x56,0x66,0x2c,0x0,0x6b, 0xec,0x2c,0x0,0xc4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0, 0x8b,0x5d,0x2c,0x0,0x22,0x69,0x2c,0x0,0x4c,0x48,0x2d,0x0,0x8b,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0xa3,0x5d,0x2c,0x0,0x1f,0x68,0x2c, 0x0,0xe1,0xe,0x2d,0x0,0xa3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64, 0x2c,0x0,0x9f,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0x73,0x3c,0x2d,0x0,0x9f,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x50,0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0x30, 0x66,0x2c,0x0,0xc2,0x57,0x2d,0x0,0xbd,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x42,0x65,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x8b,0x83,0x2d,0x0, 0xdf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a,0x0,0x5c,0x5d,0x2c, 0x0,0x3c,0x6d,0x2c,0x0,0x4b,0x3c,0x2d,0x0,0x5c,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xb3,0x22,0x2a,0x0,0xb4,0x5d,0x2c,0x0,0x9,0x68,0x2c,0x0,0x7b,0xdd, 0x2c,0x0,0xb2,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x12, 0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0x6d,0x7b,0x2d,0x0,0x12,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0x4a,0x5e,0x2c,0x0,0x75,0x66,0x2c,0x0, 0xf,0x3f,0x2d,0x0,0x4a,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c, 0x0,0x95,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x6,0x55,0x2d,0x0,0x95,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0,0xee,0x65,0x2c,0x0,0x28,0x66, 0x2c,0x0,0x37,0xc4,0x2c,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37, 0x64,0x2c,0x0,0xdc,0x65,0x2c,0x0,0xdd,0x65,0x2c,0x0,0xe0,0x3e,0x2d,0x0,0xdb, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0xfa,0x64,0x2c,0x0, 0xfb,0x64,0x2c,0x0,0x14,0x57,0x2d,0x0,0xfa,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe8,0x64,0x2c,0x0,0x87,0x65,0x2c,0x0,0x38,0x67,0x2c,0x0,0x88,0x76,0x2d, 0x0,0x87,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xf0,0x65, 0x2c,0x0,0xf1,0x65,0x2c,0x0,0x61,0xec,0x2c,0x0,0xef,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0xfb,0x65,0x2c,0x0,0x20, 0x7b,0x2d,0x0,0xf9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x65,0x2c,0x0, 0xf4,0x65,0x2c,0x0,0x49,0x66,0x2c,0x0,0xc3,0x3e,0x2d,0x0,0xf4,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0x4,0x70,0x2c,0x0,0x9,0x70,0x2c, 0x0,0xf5,0x44,0x2d,0x0,0x5,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x49,0x64, 0x2c,0x0,0x31,0x65,0x2c,0x0,0x42,0x66,0x2c,0x0,0xe4,0x7b,0x2d,0x0,0x31,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3d,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x31, 0x66,0x2c,0x0,0x31,0x53,0x2d,0x0,0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xaf,0x22,0x2a,0x0,0xbf,0x5d,0x2c,0x0,0x21,0x69,0x2c,0x0,0xb2,0xd4,0x2c,0x0, 0xbf,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x22,0x2a,0x0,0x87,0x5e,0x2c, 0x0,0x88,0x5e,0x2c,0x0,0xc3,0xe8,0x27,0x0,0x85,0x5e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x30,0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x91,0x65,0x2c,0x0,0x93,0x1c, 0x2d,0x0,0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x4e,0x64,0x2c,0x0,0x4f, 0x65,0x2c,0x0,0x40,0x66,0x2c,0x0,0xe3,0xea,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0xae,0x65,0x2c,0x0,0xaf,0x65,0x2c,0x0, 0xf0,0x82,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a, 0x0,0xec,0x5d,0x2c,0x0,0x1d,0x68,0x2c,0x0,0x2a,0x49,0x2d,0x0,0xec,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x2e,0x66, 0x2c,0x0,0x22,0x49,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x40, 0x64,0x2c,0x0,0x9f,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x69,0x45,0x2d,0x0,0x9f, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x40,0x64,0x2c,0x0,0x94,0x65,0x2c,0x0, 0x95,0x65,0x2c,0x0,0xd1,0xc,0x2d,0x0,0x94,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x55,0x65,0x2c,0x0,0xf2,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x94,0x49,0x2d, 0x0,0xf2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x66,0x2c,0x0,0x91,0x83, 0x2d,0x0,0x92,0x83,0x2d,0x0,0x92,0x83,0x2d,0x0,0x91,0x83,0x2d,0x0,0x0,0x0, 0x0,0x0,0x1,0xb2,0x22,0x2a,0x0,0xce,0x5d,0x2c,0x0,0xfc,0x67,0x2c,0x0,0x21, 0xc1,0x2c,0x0,0xce,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0, 0x7d,0x5e,0x2c,0x0,0x3e,0x6d,0x2c,0x0,0x49,0x47,0x2d,0x0,0x7c,0x5e,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2c,0x66,0x2c,0x0,0x3c,0x70,0x2c,0x0,0x3d,0x70,0x2c, 0x0,0x29,0x54,0x2d,0x0,0x3c,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64, 0x2c,0x0,0x95,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0xb6,0x41,0x2d,0x0,0x95,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xa7,0x5d,0x2c,0x0,0x7f, 0x66,0x2c,0x0,0x1b,0xec,0x2c,0x0,0xa7,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2a,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x8d,0x65,0x2c,0x0,0x12,0xe,0x2d,0x0, 0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x8b,0x65,0x2c, 0x0,0x34,0x66,0x2c,0x0,0x93,0x49,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x4c,0x64,0x2c,0x0,0xc2,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0xd7,0x75, 0x2d,0x0,0xc2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xaf, 0x5d,0x2c,0x0,0x3d,0x6d,0x2c,0x0,0x7d,0x3c,0x2d,0x0,0xaf,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x2a,0x66,0x2c,0x0, 0x8a,0xd2,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9,0x22,0x2a, 0x0,0xdd,0x5d,0x2c,0x0,0x3f,0x6d,0x2c,0x0,0xe5,0x46,0x2d,0x0,0xdd,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xf6,0x63,0x2c,0x0,0xaa,0x64,0x2c,0x0,0x2d,0x66, 0x2c,0x0,0x7d,0x3c,0x2d,0x0,0xaa,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32, 0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0,0xd7,0x65,0x2c,0x0,0xcd,0x43,0x2d,0x0,0xd6, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xef,0x65,0x2c,0x0, 0xf0,0x65,0x2c,0x0,0xcf,0x40,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x34,0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0,0xd7,0x65,0x2c,0x0,0x1c,0x7b,0x2d, 0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x64,0x2c,0x0,0xbd,0x65, 0x2c,0x0,0x36,0x67,0x2c,0x0,0x0,0x47,0x2d,0x0,0xbd,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x50,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x76, 0xd6,0x2c,0x0,0x50,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0, 0xaa,0x5d,0x2c,0x0,0x29,0x69,0x2c,0x0,0x2d,0x49,0x2d,0x0,0xaa,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2d,0x65,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x4b,0x66,0x2c, 0x0,0x5e,0x47,0x2d,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22, 0x2a,0x0,0xad,0x5d,0x2c,0x0,0x2a,0x68,0x2c,0x0,0x41,0xd,0x2d,0x0,0xad,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x66,0x2c,0x0,0xbe,0x7e,0x2c,0x0,0xbf, 0x7e,0x2c,0x0,0x8a,0x76,0x2d,0x0,0xbd,0x7e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb1,0x22,0x2a,0x0,0xad,0x5d,0x2c,0x0,0x7c,0x66,0x2c,0x0,0x38,0x76,0x2d,0x0, 0xad,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0xb6,0x5d,0x2c, 0x0,0xfe,0x67,0x2c,0x0,0x10,0x44,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x3b,0x66,0x2c,0x0,0x8d,0x83,0x2d,0x0,0x94,0x83,0x2d,0x0,0x94,0x83, 0x2d,0x0,0x8b,0x83,0x2d,0x0,0x0,0x0,0x0,0x0,0x1,0x41,0x64,0x2c,0x0,0xcc, 0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0x3,0x46,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x8e,0x37,0x28,0x0,0xa0,0x37,0x28,0x0,0xa2,0x37,0x28,0x0, 0xd0,0x9d,0x26,0x0,0x1,0x3d,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a, 0x0,0xad,0x5e,0x2c,0x0,0x48,0x6d,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0xab,0x5e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x3c,0x65,0x2c,0x0,0x36,0x66, 0x2c,0x0,0x9b,0x54,0x2d,0x0,0x3b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37, 0x64,0x2c,0x0,0x77,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xe3,0x7b,0x2d,0x0,0x77, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0, 0x8c,0x65,0x2c,0x0,0x46,0x46,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x48,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x3c,0x66,0x2c,0x0,0xd7,0x45,0x2d, 0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xe1,0x65, 0x2c,0x0,0x29,0x66,0x2c,0x0,0xec,0x48,0x2d,0x0,0xe0,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0x77,0x5e,0x2c,0x0,0x4f,0x6d,0x2c,0x0,0xd3, 0x7b,0x2d,0x0,0x75,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0, 0x54,0x65,0x2c,0x0,0x55,0x65,0x2c,0x0,0xa2,0x55,0x2d,0x0,0x54,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x29,0x66,0x2c, 0x0,0x14,0x83,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfb,0x21, 0x2a,0x0,0x4,0x65,0x2c,0x0,0x5,0x65,0x2c,0x0,0xf5,0xef,0x1e,0x0,0x2,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0,0xec, 0x65,0x2c,0x0,0x94,0x83,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x3b,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0xf3,0x3d,0x2d,0x0, 0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x7e,0x65,0x2c, 0x0,0x30,0x66,0x2c,0x0,0x73,0x56,0x2d,0x0,0x7e,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2b,0x64,0x2c,0x0,0xb4,0x65,0x2c,0x0,0xb5,0x65,0x2c,0x0,0x92,0x83, 0x2d,0x0,0xb2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0x8e, 0x5d,0x2c,0x0,0x20,0x69,0x2c,0x0,0xa1,0x47,0x2d,0x0,0x8e,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2b,0x66,0x2c,0x0,0x8f,0x70,0x2c,0x0,0x95,0x70,0x2c,0x0, 0x87,0x83,0x2d,0x0,0x8e,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe1,0x22,0x2a, 0x0,0xad,0x5d,0x2c,0x0,0x4a,0x6d,0x2c,0x0,0x9d,0x7b,0x2d,0x0,0xad,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x65,0x2c,0x0,0xcb,0x65,0x2c,0x0,0x4a,0x66, 0x2c,0x0,0x10,0x18,0x2d,0x0,0xcb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f, 0x64,0x2c,0x0,0xa4,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x52,0x45,0x2d,0x0,0xa4, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x60,0x65,0x2c,0x0, 0x61,0x65,0x2c,0x0,0xbe,0xd6,0x2c,0x0,0x60,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2e,0x64,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x86,0x83,0x2d, 0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xf5,0x5d, 0x2c,0x0,0x10,0x68,0x2c,0x0,0x2d,0x57,0x2d,0x0,0xf5,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x79, 0x46,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0, 0xbb,0x65,0x2c,0x0,0xbc,0x65,0x2c,0x0,0xf3,0x82,0x2d,0x0,0xbb,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0x32,0x5e,0x2c,0x0,0x45,0x6d,0x2c, 0x0,0x30,0x77,0x2d,0x0,0x32,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64, 0x2c,0x0,0x9a,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0xa3,0x57,0x2d,0x0,0x9a,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x97, 0x65,0x2c,0x0,0xb4,0x7b,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x49,0x65,0x2c,0x0,0xef,0x65,0x2c,0x0,0xf0,0x65,0x2c,0x0,0xc9,0xe2,0x2c,0x0, 0xef,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0x9a,0x5d,0x2c, 0x0,0x7d,0x66,0x2c,0x0,0xa7,0x55,0x2d,0x0,0x9a,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x24,0x64,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x94,0x83, 0x2d,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x54, 0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0x91,0xd4,0x2c,0x0,0x54,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0xd7,0x65,0x2c,0x0,0xd8,0x65,0x2c,0x0, 0x94,0x83,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a, 0x0,0xd3,0x5d,0x2c,0x0,0xfc,0x67,0x2c,0x0,0x5,0xed,0x2c,0x0,0xd3,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0xf0,0x64,0x2c,0x0,0x3d,0x66, 0x2c,0x0,0x30,0x56,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36, 0x64,0x2c,0x0,0xb3,0x65,0x2c,0x0,0x2a,0x66,0x2c,0x0,0xaf,0x76,0x2d,0x0,0xb2, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a,0x0,0x52,0x5e,0x2c,0x0, 0x4f,0x6d,0x2c,0x0,0x4,0x47,0x2d,0x0,0x52,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x30,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0xbf,0xd0,0x2c, 0x0,0xcb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0x69,0x5d, 0x2c,0x0,0x4a,0x6d,0x2c,0x0,0x86,0x83,0x2d,0x0,0x69,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x2b,0x66,0x2c,0x0,0x7, 0xdf,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0, 0xe1,0x64,0x2c,0x0,0xe2,0x64,0x2c,0x0,0x8,0xe0,0x2c,0x0,0xe1,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x36,0x66,0x2c,0x0,0xd,0x6d,0x2c,0x0,0x31,0x6d,0x2c, 0x0,0x59,0xd,0x2d,0x0,0x30,0x6d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64, 0x2c,0x0,0xf5,0x64,0x2c,0x0,0x39,0x66,0x2c,0x0,0x10,0xec,0x2c,0x0,0xf3,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf5,0x63,0x2c,0x0,0xcd,0x64,0x2c,0x0,0x2c, 0x66,0x2c,0x0,0xcf,0x47,0x2d,0x0,0xcd,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2f,0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x75,0xc6,0x2c,0x0, 0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0xcc,0x65,0x2c, 0x0,0x24,0x66,0x2c,0x0,0x4d,0x56,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe4,0x56,0x2a,0x0,0xe3,0x5e,0x2c,0x0,0xe4,0x5e,0x2c,0x0,0xb4,0xee, 0x2c,0x0,0xe0,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xe0, 0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0xe0,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xef,0x64,0x2c,0x0,0xae,0x65,0x2c,0x0,0x34,0x67,0x2c,0x0, 0x91,0x83,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c, 0x0,0x9f,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0xa1,0x48,0x2d,0x0,0x9f,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0x4,0x65,0x2c,0x0,0x5,0x65, 0x2c,0x0,0x1d,0xeb,0x2c,0x0,0x4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d, 0x65,0x2c,0x0,0xdc,0x65,0x2c,0x0,0x3,0x66,0x2c,0x0,0x7f,0x52,0x2d,0x0,0xdb, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0x1d,0x65,0x2c,0x0, 0x3e,0x66,0x2c,0x0,0x4e,0x45,0x2d,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x32,0x64,0x2c,0x0,0xd7,0x65,0x2c,0x0,0x25,0x66,0x2c,0x0,0x10,0x46,0x2d, 0x0,0xd7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0xcc,0x65, 0x2c,0x0,0xcd,0x65,0x2c,0x0,0x98,0x40,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xb3,0x65,0x2c,0x0,0xb4,0x65,0x2c,0x0,0x11, 0x3e,0x2d,0x0,0xb2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x66,0x2c,0x0, 0xbe,0x7e,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0xce,0xc,0x2d,0x0,0xbd,0x7e,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0xb9,0x65,0x2c,0x0,0x36,0x66,0x2c, 0x0,0xa6,0x46,0x2d,0x0,0xb9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64, 0x2c,0x0,0x81,0x65,0x2c,0x0,0x82,0x65,0x2c,0x0,0x6a,0x56,0x2d,0x0,0x81,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0xbe, 0x65,0x2c,0x0,0x78,0x3c,0x2d,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb7,0xc9,0x26,0x0,0xad,0x23,0x27,0x0,0xaf,0x23,0x27,0x0,0x7,0xec,0x28,0x0, 0xf,0xec,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xa4,0x65,0x2c, 0x0,0x2b,0x66,0x2c,0x0,0x12,0x40,0x2d,0x0,0xa4,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xaf,0x22,0x2a,0x0,0xec,0x5d,0x2c,0x0,0x21,0x69,0x2c,0x0,0x79,0x41, 0x2d,0x0,0xec,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0x9f, 0x65,0x2c,0x0,0xa0,0x65,0x2c,0x0,0x7d,0xec,0x2c,0x0,0x9f,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3d,0x64,0x2c,0x0,0x78,0x65,0x2c,0x0,0x3c,0x66,0x2c,0x0, 0x6,0xd4,0x2c,0x0,0x78,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3d,0x64,0x2c, 0x0,0x9a,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0x9a,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x91,0x65,0x2c,0x0,0x92,0x65, 0x2c,0x0,0x86,0x83,0x2d,0x0,0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34, 0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0x78,0x3c,0x2d,0x0,0x8f, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0x96,0x65,0x2c,0x0, 0x97,0x65,0x2c,0x0,0x43,0xe0,0x2c,0x0,0x96,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x21,0x64,0x2c,0x0,0x34,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0xbf,0x48,0x2d, 0x0,0x34,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x94,0x65, 0x2c,0x0,0x28,0x66,0x2c,0x0,0xe9,0x3e,0x2d,0x0,0x92,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x56,0x65,0x2c,0x0,0x5, 0x83,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x64,0x2c,0x0, 0xaa,0x65,0x2c,0x0,0x2a,0x66,0x2c,0x0,0x86,0x83,0x2d,0x0,0xaa,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a,0x0,0xd2,0x5e,0x2c,0x0,0x3e,0x6d,0x2c, 0x0,0xd1,0xc,0x2d,0x0,0xd1,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64, 0x2c,0x0,0x9f,0x65,0x2c,0x0,0xa0,0x65,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x9f,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0,0xd2, 0x65,0x2c,0x0,0xe8,0xdf,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x32,0x64,0x2c,0x0,0x81,0x65,0x2c,0x0,0x3a,0x66,0x2c,0x0,0xa1,0xe0,0x2c,0x0, 0x81,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0,0xea,0x65,0x2c, 0x0,0xec,0x65,0x2c,0x0,0xff,0x55,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2c,0x64,0x2c,0x0,0x18,0x65,0x2c,0x0,0x43,0x66,0x2c,0x0,0x7c,0x45, 0x2d,0x0,0x18,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x43,0x65,0x2c,0x0,0xe0, 0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x7d,0xe0,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xd3,0x5d,0x2c,0x0,0x13,0x68,0x2c,0x0, 0x94,0x83,0x2d,0x0,0xd3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a, 0x0,0xb2,0x5d,0x2c,0x0,0xfb,0x67,0x2c,0x0,0xa2,0x47,0x2d,0x0,0xb2,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xa8,0x5d,0x2c,0x0,0x8a,0x66, 0x2c,0x0,0xbd,0x40,0x2d,0x0,0xa8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9, 0x64,0x2c,0x0,0x83,0x65,0x2c,0x0,0x3a,0x67,0x2c,0x0,0x67,0xc9,0x2c,0x0,0x83, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x65,0x2c,0x0,0xd2,0x65,0x2c,0x0, 0x4a,0x66,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0xcf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xaf,0x22,0x2a,0x0,0xa2,0x5d,0x2c,0x0,0x1f,0x69,0x2c,0x0,0xdb,0x3e,0x2d, 0x0,0xa1,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xd0,0x5d, 0x2c,0x0,0x10,0x68,0x2c,0x0,0xc5,0x3d,0x2d,0x0,0xce,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x16,0x65,0x2c,0x0,0xaf,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0xe8, 0x44,0x2d,0x0,0xaf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x64,0x2c,0x0, 0x7b,0x65,0x2c,0x0,0x44,0x67,0x2c,0x0,0x15,0x47,0x2d,0x0,0x7b,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0x7e,0x5e,0x2c,0x0,0xfb,0x67,0x2c, 0x0,0xc6,0x47,0x2d,0x0,0x7c,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22, 0x2a,0x0,0x26,0x5e,0x2c,0x0,0x79,0x66,0x2c,0x0,0x11,0x18,0x2d,0x0,0x25,0x5e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x65,0x2c,0x0,0xcc,0x65,0x2c,0x0,0x4a, 0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb0,0x22,0x2a,0x0,0xad,0x5d,0x2c,0x0,0x2d,0x69,0x2c,0x0,0xe1,0x43,0x2d,0x0, 0xad,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xa8,0x5d,0x2c, 0x0,0xdb,0x67,0x2c,0x0,0x77,0x76,0x2d,0x0,0xa8,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xf7,0x64,0x2c,0x0,0xc2,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0xea,0x48, 0x2d,0x0,0xc2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0x46, 0x5e,0x2c,0x0,0x0,0x68,0x2c,0x0,0x61,0x83,0x2d,0x0,0x45,0x5e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3d,0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0, 0x92,0x56,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xea,0x64,0x2c, 0x0,0xbf,0x65,0x2c,0x0,0x37,0x67,0x2c,0x0,0xcd,0xc6,0x2c,0x0,0xbf,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0x83,0x5d,0x2c,0x0,0x7b,0x66, 0x2c,0x0,0x7,0x83,0x2d,0x0,0x83,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34, 0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x52,0x3c,0x2d,0x0,0xbd, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x86,0x65,0x2c,0x0, 0x3c,0x66,0x2c,0x0,0xef,0x82,0x2d,0x0,0x86,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x31,0x64,0x2c,0x0,0x9f,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0x1a,0x83,0x2d, 0x0,0x9f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0x4f,0x65, 0x2c,0x0,0x3e,0x66,0x2c,0x0,0xb3,0xc7,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x36,0x65,0x2c,0x0,0xd7,0x65,0x2c,0x0,0x51,0x66,0x2c,0x0,0xad, 0x7b,0x2d,0x0,0xd7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0, 0x54,0x65,0x2c,0x0,0x40,0x66,0x2c,0x0,0x85,0x7b,0x2d,0x0,0x54,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x3e,0x66,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xc2,0x7e,0x2c, 0x0,0x8b,0x83,0x2d,0x0,0xbd,0x7e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22, 0x2a,0x0,0xc8,0x64,0x2c,0x0,0xf3,0x68,0x2c,0x0,0x2,0x3f,0x2d,0x0,0xc8,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xfe,0x65,0x2c,0x0,0xff, 0x65,0x2c,0x0,0x91,0x83,0x2d,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x69,0x22,0x2a,0x0,0x89,0x5e,0x2c,0x0,0xb6,0x16,0x2d,0x0,0xa8,0x3f,0x2d,0x0, 0xe,0x6,0x2d,0x0,0x0,0x0,0x0,0x0,0x1,0xd,0x5d,0x26,0x0,0xe7,0xe9,0x27, 0x0,0x38,0xea,0x27,0x0,0xfa,0xea,0x28,0x0,0xfe,0xea,0x28,0x0,0x0,0x0,0x0, 0x0,0x1,0x3d,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0xf0,0x44, 0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x45, 0x65,0x2c,0x0,0x41,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0x45,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0xfb,0x6d,0x2c,0x0,0xfc,0x6d,0x2c,0x0, 0x91,0x83,0x2d,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c, 0x0,0xb1,0x65,0x2c,0x0,0xb2,0x65,0x2c,0x0,0x1,0x77,0x2d,0x0,0xb1,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0x18,0x5f,0x2c,0x0,0x12,0x68, 0x2c,0x0,0x5f,0xe,0x2d,0x0,0x17,0x5f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x47, 0x65,0x2c,0x0,0xe5,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0x27,0x44,0x2d,0x0,0xe4, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0, 0xc8,0x65,0x2c,0x0,0x85,0x46,0x2d,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xfd,0x63,0x2c,0x0,0xcd,0x64,0x2c,0x0,0x36,0x66,0x2c,0x0,0x2c,0x54,0x2d, 0x0,0xcd,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0xd,0x5e, 0x2c,0x0,0xfe,0x67,0x2c,0x0,0x71,0x83,0x2d,0x0,0xd,0x5e,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0,0xec,0x65,0x2c,0x0,0xf1, 0x82,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0, 0x68,0x65,0x2c,0x0,0x69,0x65,0x2c,0x0,0x79,0x56,0x2d,0x0,0x68,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0xdc,0x65,0x2c, 0x0,0xf0,0x82,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64, 0x2c,0x0,0xe5,0x65,0x2c,0x0,0xe6,0x65,0x2c,0x0,0x91,0x83,0x2d,0x0,0xe5,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0,0x7e, 0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x3b,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0, 0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0xb3,0x65,0x2c, 0x0,0xb4,0x65,0x2c,0x0,0xd6,0x3f,0x2d,0x0,0xb2,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x33,0x64,0x2c,0x0,0x91,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0xc7,0x47, 0x2d,0x0,0x91,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xed,0x64,0x2c,0x0,0xb5, 0x65,0x2c,0x0,0x35,0x67,0x2c,0x0,0x1c,0x3e,0x2d,0x0,0xb5,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x35,0x65,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x63,0x66,0x2c,0x0, 0x5,0xc4,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c, 0x0,0x3c,0x65,0x2c,0x0,0x40,0x66,0x2c,0x0,0xdc,0x56,0x2d,0x0,0x3b,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xdd,0x5d,0x2c,0x0,0x1e,0x69, 0x2c,0x0,0xcf,0x45,0x2d,0x0,0xdd,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a, 0x64,0x2c,0x0,0xe7,0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0xda,0xdf,0x2c,0x0,0xe5, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0xec,0x5d,0x2c,0x0, 0xe,0x68,0x2c,0x0,0xf8,0xc5,0x2c,0x0,0xec,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x27,0x66,0x2c,0x0,0x4a,0x70,0x2c,0x0,0x4b,0x70,0x2c,0x0,0x8e,0xea,0x2c, 0x0,0x4a,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfc,0x63,0x2c,0x0,0x4f,0x65, 0x2c,0x0,0x29,0x66,0x2c,0x0,0xc5,0x56,0x2d,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xdb,0x64,0x2c,0x0,0x75,0x65,0x2c,0x0,0x39,0x67,0x2c,0x0,0xca, 0x3d,0x2d,0x0,0x74,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3c,0x66,0x2c,0x0, 0xe,0x6a,0x2c,0x0,0x1c,0x6a,0x2c,0x0,0x46,0x41,0x2d,0x0,0x1b,0x6a,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x2f,0x66,0x2c, 0x0,0x6b,0x46,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22, 0x2a,0x0,0xa8,0x5e,0x2c,0x0,0x72,0x66,0x2c,0x0,0x88,0xd6,0x2c,0x0,0xa8,0x5e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xe4,0x64,0x2c,0x0,0x3d, 0x66,0x2c,0x0,0x35,0xd5,0x2c,0x0,0xe4,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb4,0x22,0x2a,0x0,0xa8,0x5d,0x2c,0x0,0x1,0x68,0x2c,0x0,0x48,0x44,0x2d,0x0, 0xa8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a,0x0,0x95,0x5d,0x2c, 0x0,0x22,0x69,0x2c,0x0,0x67,0x83,0x2d,0x0,0x95,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2a,0x64,0x2c,0x0,0xdc,0x64,0x2c,0x0,0x3e,0x66,0x2c,0x0,0x2c,0x46, 0x2d,0x0,0xdc,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x48,0x66,0x2c,0x0,0x60, 0x6c,0x2c,0x0,0x74,0x6c,0x2c,0x0,0x7d,0xea,0x2c,0x0,0x73,0x6c,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0, 0x2d,0xdc,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a, 0x0,0xc1,0x5e,0x2c,0x0,0x1,0x68,0x2c,0x0,0x5a,0xea,0x2c,0x0,0xc1,0x5e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x5a,0x65,0x2c,0x0,0xf4,0x65,0x2c,0x0,0x28,0x66, 0x2c,0x0,0xb8,0x56,0x2d,0x0,0xf2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31, 0x64,0x2c,0x0,0x86,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0x81,0x83,0x2d,0x0,0x86, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xd7,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0, 0x45,0x67,0x2c,0x0,0x77,0x83,0x2d,0x0,0x71,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe3,0x22,0x2a,0x0,0xb1,0x5e,0x2c,0x0,0x48,0x6d,0x2c,0x0,0x76,0xc7,0x2c, 0x0,0xaf,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xda,0x5d, 0x2c,0x0,0x89,0x66,0x2c,0x0,0xd0,0x44,0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xb5,0x22,0x2a,0x0,0xd1,0x5d,0x2c,0x0,0xb,0x68,0x2c,0x0,0x55, 0xdf,0x2c,0x0,0xce,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0, 0xd3,0x5d,0x2c,0x0,0x1d,0x69,0x2c,0x0,0xbe,0x47,0x2d,0x0,0xd3,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe2,0x63,0x2c,0x0,0x8c,0x64,0x2c,0x0,0x23,0x66,0x2c, 0x0,0x66,0x83,0x2d,0x0,0x8c,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64, 0x2c,0x0,0x85,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x24,0x1c,0x2d,0x0,0x85,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0xaf,0x64,0x2c,0x0,0x1f, 0x66,0x2c,0x0,0x56,0xed,0x2c,0x0,0xaf,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe3,0x63,0x2c,0x0,0x64,0x65,0x2c,0x0,0x14,0x66,0x2c,0x0,0x7b,0x45,0x2d,0x0, 0x64,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0xa0,0x64,0x2c, 0x0,0x20,0x66,0x2c,0x0,0xe1,0x46,0x2d,0x0,0xa0,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xef,0x64,0x2c,0x0,0xdd,0x65,0x2c,0x0,0x50,0x66,0x2c,0x0,0x39,0xcf, 0x2c,0x0,0xdd,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xdb, 0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x1a,0xe0,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xb,0x68,0x2c,0x0,0xd0,0xc,0x2d,0x0,0xd1,0xc,0x2d,0x0, 0x52,0x3c,0x2d,0x0,0xce,0xc,0x2d,0x0,0x0,0x0,0x0,0x0,0x1,0x42,0x29,0x2a, 0x0,0xa0,0x5e,0x2c,0x0,0xa1,0x5e,0x2c,0x0,0xa1,0x5e,0x2c,0x0,0xbf,0x5e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x4a,0x29,0x2a,0x0,0xe2,0x5e,0x2c,0x0,0xe3,0x5e, 0x2c,0x0,0xe3,0x5e,0x2c,0x0,0xff,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x53, 0x29,0x2a,0x0,0xdc,0x5e,0x2c,0x0,0xdd,0x5e,0x2c,0x0,0xde,0x5e,0x2c,0x0,0xe6, 0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0, 0x35,0x66,0x2c,0x0,0x86,0x48,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x34,0x64,0x2c,0x0,0x81,0x65,0x2c,0x0,0x82,0x65,0x2c,0x0,0xea,0x46,0x2d, 0x0,0x81,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5a,0x29,0x2a,0x0,0x10,0x5f, 0x2c,0x0,0x11,0x5f,0x2c,0x0,0x11,0x5f,0x2c,0x0,0x1d,0x5f,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x68,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0xf9, 0x46,0x2d,0x0,0x68,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5e,0x29,0x2a,0x0, 0x8,0x60,0x2c,0x0,0x9,0x60,0x2c,0x0,0xd0,0xed,0x2c,0x0,0x8,0x60,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0xce,0x65,0x2c, 0x0,0xf,0xdf,0x2c,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64, 0x2c,0x0,0xc1,0x65,0x2c,0x0,0xc2,0x65,0x2c,0x0,0x6c,0x83,0x2d,0x0,0xc0,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x32, 0x66,0x2c,0x0,0x8a,0x4e,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x6d,0x29,0x2a,0x0,0x3a,0x5f,0x2c,0x0,0x3b,0x5f,0x2c,0x0,0x3b,0x5f,0x2c,0x0, 0x43,0x5f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7e,0x29,0x2a,0x0,0x27,0x5f,0x2c, 0x0,0x28,0x5f,0x2c,0x0,0x28,0x5f,0x2c,0x0,0x3d,0x5f,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x27,0x64,0x2c,0x0,0xe1,0x64,0x2c,0x0,0x3e,0x66,0x2c,0x0,0x64,0x3e, 0x2d,0x0,0xe1,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a,0x0,0xda, 0x64,0x2c,0x0,0x29,0x6d,0x2c,0x0,0x5e,0x3e,0x2d,0x0,0xda,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x88,0x29,0x2a,0x0,0x13,0x5f,0x2c,0x0,0x14,0x5f,0x2c,0x0, 0x9,0xee,0x2c,0x0,0x13,0x5f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x22,0x2a, 0x0,0xfb,0x6d,0x2c,0x0,0xfc,0x6d,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0xfb,0x6d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x8e,0x29,0x2a,0x0,0x49,0x5f,0x2c,0x0,0x4a,0x5f, 0x2c,0x0,0x3,0xf0,0x2c,0x0,0x48,0x5f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34, 0x64,0x2c,0x0,0x36,0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0x86,0x83,0x2d,0x0,0x36, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x93,0x29,0x2a,0x0,0x13,0x5f,0x2c,0x0, 0x14,0x5f,0x2c,0x0,0x61,0xef,0x2c,0x0,0x13,0x5f,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x38,0x64,0x2c,0x0,0x5e,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x78,0x56,0x2d, 0x0,0x5e,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x7b,0x65, 0x2c,0x0,0x31,0x66,0x2c,0x0,0xd9,0xe9,0x2c,0x0,0x7b,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x67,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x9e,0x29,0x2a,0x0,0xb2, 0xef,0x2c,0x0,0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0, 0xa4,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xa4,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x22,0x65,0x2c,0x0,0x40,0x66,0x2c, 0x0,0x4d,0x46,0x2d,0x0,0x22,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64, 0x2c,0x0,0xd1,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x51,0xe0,0x2c,0x0,0xd1,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xa5, 0x29,0x2a,0x0,0x8a,0xef,0x2c,0x0,0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x66,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xab,0x29,0x2a,0x0,0x2c,0xf0,0x2c,0x0, 0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0x98,0x65,0x2c, 0x0,0x99,0x65,0x2c,0x0,0x7a,0x3c,0x2d,0x0,0x97,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x27,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x68,0x41, 0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0x62, 0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0xf9,0x47,0x2d,0x0,0x62,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xb3,0x29,0x2a,0x0, 0xf5,0xef,0x2c,0x0,0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a, 0x0,0x42,0x1f,0x2a,0x0,0xb7,0x29,0x2a,0x0,0x1,0xed,0x2c,0x0,0xa,0x29,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0x68,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xc0,0x29, 0x2a,0x0,0xe5,0xef,0x2c,0x0,0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x34, 0x64,0x2c,0x0,0xe8,0x6f,0x2c,0x0,0xf5,0x6f,0x2c,0x0,0xf7,0x6f,0x2c,0x0,0xe9, 0x6f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x22,0x2a,0x0,0x9e,0x64,0x2c,0x0, 0x30,0x6d,0x2c,0x0,0x94,0x83,0x2d,0x0,0x9e,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2a,0x66,0x2c,0x0,0x2a,0x70,0x2c,0x0,0x30,0x70,0x2c,0x0,0xd,0x48,0x2d, 0x0,0x2b,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x66,0x2c,0x0,0x38,0x67, 0x2c,0x0,0x58,0x67,0x2c,0x0,0x16,0x51,0x2d,0x0,0x57,0x67,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xf5,0x22,0x2a,0x0,0xaa,0x64,0x2c,0x0,0xaa,0x66,0x2c,0x0,0x8, 0x3d,0x2d,0x0,0xaa,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xc6,0x29,0x2a,0x0, 0xd9,0x63,0x2c,0x0,0xda,0x63,0x2c,0x0,0xb7,0xee,0x2c,0x0,0xd7,0x63,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x64,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x2e,0x66,0x2c, 0x0,0xd1,0xdd,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xcc,0x29, 0x2a,0x0,0x63,0x5e,0x2c,0x0,0x64,0x5e,0x2c,0x0,0xc2,0xef,0x2c,0x0,0x60,0x5e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xa9,0x65,0x2c,0x0,0x29, 0x66,0x2c,0x0,0xb3,0x75,0x2d,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x36,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x43,0x66,0x2c,0x0,0x33,0xdf,0x2c,0x0, 0x12,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xd3,0x29,0x2a,0x0,0x58,0x5e,0x2c, 0x0,0x59,0x5e,0x2c,0x0,0xd,0xee,0x2c,0x0,0x56,0x5e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xd7,0x29,0x2a,0x0,0x42,0xee, 0x2c,0x0,0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xec,0x22,0x2a,0x0,0x9a, 0x65,0x2c,0x0,0xa8,0x66,0x2c,0x0,0x32,0xd5,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0xa0,0x64,0x2c,0x0,0x24,0x66,0x2c,0x0, 0xf7,0xd2,0x2c,0x0,0xa0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c, 0x0,0xd6,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x68,0x7b,0x2d,0x0,0xd6,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x7a,0x65,0x2c,0x0,0xa0,0x65, 0x2c,0x0,0xed,0x48,0x2d,0x0,0x7e,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xeb, 0x56,0x2a,0x0,0x1c,0x5e,0x2c,0x0,0x1d,0x5e,0x2c,0x0,0x23,0xe8,0x2c,0x0,0x1b, 0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0, 0x29,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x31,0x64,0x2c,0x0,0xae,0x65,0x2c,0x0,0xaf,0x65,0x2c,0x0,0xb2,0xd4,0x2c, 0x0,0xab,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf3,0x56,0x2a,0x0,0x1c,0x5e, 0x2c,0x0,0x1d,0x5e,0x2c,0x0,0xca,0xeb,0x2c,0x0,0x1b,0x5e,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x4b,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0x7c, 0x3c,0x2d,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x19,0x2a,0x0, 0x42,0x1f,0x2a,0x0,0x21,0x57,0x2a,0x0,0xe1,0xef,0x2c,0x0,0xb4,0x56,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x21,0x57,0x2a, 0x0,0xff,0xed,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64, 0x2c,0x0,0xa9,0x65,0x2c,0x0,0xaa,0x65,0x2c,0x0,0x17,0x51,0x2d,0x0,0xa9,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x21, 0x57,0x2a,0x0,0xfb,0xee,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x21,0x57,0x2a,0x0,0xd2,0xe1,0x2a,0x0,0xd4,0xe1,0x2a,0x0,0x16,0xee,0x2c,0x0, 0xd2,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xfc,0x6d,0x2c, 0x0,0xfd,0x6d,0x2c,0x0,0x48,0xd,0x2d,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x38,0x64,0x2c,0x0,0xf2,0x65,0x2c,0x0,0xf3,0x65,0x2c,0x0,0x1c,0x45, 0x2d,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42, 0x1f,0x2a,0x0,0x21,0x57,0x2a,0x0,0xee,0xd3,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0, 0x0,0x0,0x0,0x1,0xf5,0x22,0x2a,0x0,0xfe,0x6d,0x2c,0x0,0xff,0x6d,0x2c,0x0, 0x87,0x83,0x2d,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a, 0x0,0x42,0x1f,0x2a,0x0,0x21,0x57,0x2a,0x0,0xcb,0xee,0x2c,0x0,0xb4,0x56,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0xf8,0x63,0x2c,0x0,0xd2,0x64,0x2c,0x0,0x2d,0x66, 0x2c,0x0,0x1e,0xd1,0x2c,0x0,0xd2,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61, 0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x21,0x57,0x2a,0x0,0x58,0xef,0x2c,0x0,0xb4, 0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0, 0x2f,0x57,0x2a,0x0,0x77,0xef,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0, 0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x36,0x57,0x2a,0x0,0xbc,0xef,0x2c, 0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x27,0x65, 0x2c,0x0,0x39,0x66,0x2c,0x0,0x7d,0xc,0x2d,0x0,0x27,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x3e,0x57,0x2a,0x0,0x17, 0xed,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0, 0x42,0x1f,0x2a,0x0,0x45,0x57,0x2a,0x0,0x83,0xef,0x2c,0x0,0xb4,0x56,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x48,0x57,0x2a,0x0,0xf3,0x5d,0x2c,0x0,0xf6,0x5d,0x2c, 0x0,0x46,0xee,0x2c,0x0,0xf0,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64, 0x2c,0x0,0x22,0x65,0x2c,0x0,0x23,0x65,0x2c,0x0,0xa2,0x41,0x2d,0x0,0x22,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5a,0x65,0x2c,0x0,0x1,0x66,0x2c,0x0,0xe, 0x66,0x2c,0x0,0xf5,0x3d,0x2d,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x59,0x57,0x2a,0x0,0x3c,0x5e,0x2c,0x0,0x3d,0x5e,0x2c,0x0,0xf3,0xef,0x2c,0x0, 0x3b,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a, 0x0,0x68,0x57,0x2a,0x0,0x82,0xee,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x7b,0x57,0x2a,0x0,0x8,0xf0, 0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x71, 0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0x71,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xb0,0x65,0x2c,0x0,0xb1,0x65,0x2c,0x0, 0x72,0x19,0x2d,0x0,0xaf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c, 0x0,0x81,0x65,0x2c,0x0,0x82,0x65,0x2c,0x0,0xab,0x46,0x2d,0x0,0x81,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x84,0x57,0x2a,0x0,0xaf,0x58,0x2a,0x0,0xb4,0x58, 0x2a,0x0,0xe9,0xef,0x2c,0x0,0xb0,0x58,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xfd, 0x63,0x2c,0x0,0xbe,0x64,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0xbe, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0, 0x35,0x66,0x2c,0x0,0xcf,0xd0,0x2c,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x88,0x57,0x2a,0x0,0x9c,0xef,0x2c, 0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f, 0x2a,0x0,0xc0,0x6c,0x2a,0x0,0xc,0xf0,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0, 0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xc8,0x6c,0x2a,0x0,0x3e, 0xed,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0, 0x64,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0x64,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x42,0x64,0x2c,0x0,0xb4,0x64,0x2c,0x0,0xb5,0x64,0x2c, 0x0,0x67,0xe2,0x2c,0x0,0xb3,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64, 0x2c,0x0,0x95,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0xdc,0x44,0x2d,0x0,0x95,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf4,0x22,0x2a,0x0,0x63,0x64,0x2c,0x0,0xaf, 0x66,0x2c,0x0,0x21,0x3d,0x2d,0x0,0x63,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xd1,0x6c,0x2a,0x0,0xe7,0xef,0x2c,0x0, 0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0xb5,0x65,0x2c, 0x0,0xb6,0x65,0x2c,0x0,0x96,0x45,0x2d,0x0,0xb5,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x30,0x64,0x2c,0x0,0x64,0x65,0x2c,0x0,0x31,0x66,0x2c,0x0,0x76,0x7b, 0x2d,0x0,0x64,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42, 0x1f,0x2a,0x0,0xda,0x6c,0x2a,0x0,0x41,0xef,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0, 0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0,0xb4,0x65,0x2c,0x0,0x2a,0x66,0x2c,0x0, 0xc,0xea,0x2c,0x0,0xb4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0x21,0x2a, 0x0,0x8a,0x5c,0x2b,0x0,0xff,0x67,0x2b,0x0,0x2b,0x5f,0x2b,0x0,0x30,0x68,0x2b, 0x0,0x0,0x0,0x0,0x0,0x1,0xf1,0x22,0x2a,0x0,0x2b,0x65,0x2c,0x0,0xa3,0x66, 0x2c,0x0,0xd4,0x40,0x2d,0x0,0x2a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x94, 0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x6a,0xf6,0x2b,0x0,0xcd,0xee,0x2c,0x0,0x4b, 0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0, 0xe8,0x6c,0x2a,0x0,0xbd,0xe8,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0, 0x1,0x27,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0x26,0x1c,0x2d, 0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xaa,0x65, 0x2c,0x0,0xac,0x65,0x2c,0x0,0xc4,0x52,0x2d,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xcc,0xe1,0x2a,0x0,0x6f,0xf6,0x2b,0x0,0xbb, 0xef,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x6d,0x2a,0x0, 0xd3,0xe1,0x2a,0x0,0xd4,0xe1,0x2a,0x0,0x16,0xcf,0x2c,0x0,0xd2,0xe1,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0,0xc3,0x65,0x2c,0x0,0xc4,0x65,0x2c, 0x0,0x1c,0x56,0x2d,0x0,0xc0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64, 0x2c,0x0,0x92,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0x92,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xd9,0xb0,0x2a,0x0,0xfe,0xe1,0x2a,0x0,0xe9, 0xf9,0x2a,0x0,0xed,0xee,0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x36,0x64,0x2c,0x0,0x81,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0xba,0x7b,0x2d,0x0, 0x81,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0,0xbb,0x65,0x2c, 0x0,0x2e,0x66,0x2c,0x0,0x91,0x4e,0x2d,0x0,0xbb,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x78,0x1f,0x2a,0x0,0xc8,0xe1,0x2a,0x0,0x78,0xf6,0x2b,0x0,0xa4,0xee, 0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xe, 0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x3b,0x40,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xa1,0x66,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0xc0,0x7e,0x2c,0x0, 0x63,0x1c,0x2d,0x0,0xbd,0x7e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a, 0x0,0x1e,0xa7,0x2a,0x0,0x92,0xe1,0x2a,0x0,0x1e,0xee,0x2c,0x0,0x70,0xe1,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x8,0x6d, 0x2a,0x0,0x85,0xef,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2f, 0x64,0x2c,0x0,0xaa,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x93,0x47,0x2d,0x0,0xa9, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x42,0x64,0x2c,0x0,0xa4,0x65,0x2c,0x0, 0x33,0x66,0x2c,0x0,0x7a,0xc2,0x2c,0x0,0xa4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x60,0x1f,0x2a,0x0,0xb6,0xe1,0x2a,0x0,0xf1,0xf9,0x2a,0x0,0x42,0xee,0x2c, 0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0x86,0x65, 0x2c,0x0,0x2f,0x66,0x2c,0x0,0x7a,0x3c,0x2d,0x0,0x86,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x7b,0x1f,0x2a,0x0,0xea,0x94,0x2a,0x0,0x81,0xf6,0x2b,0x0,0xf2, 0xee,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0, 0x9c,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0xdb,0xc1,0x2c,0x0,0x9c,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0x19,0xa7,0x2a,0x0,0xa0,0xe1,0x2a, 0x0,0xb9,0xef,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19, 0x2a,0x0,0x42,0x1f,0x2a,0x0,0x11,0x6d,0x2a,0x0,0x4b,0xef,0x2c,0x0,0x96,0x6c, 0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x36, 0x66,0x2c,0x0,0x20,0xe,0x2d,0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x72,0x62,0x2c,0x0,0xf2,0x64,0x2c,0x0,0xa8,0x66,0x2c,0x0,0x73,0x3c,0x2d,0x0, 0xf2,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x44,0x65,0x2c, 0x0,0x32,0x66,0x2c,0x0,0xfa,0x51,0x2d,0x0,0x44,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0xfb,0xf9,0x2a,0x0,0x50,0xeb, 0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xcc, 0x65,0x2c,0x0,0x2a,0x66,0x2c,0x0,0x8b,0x56,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xc,0xa7,0x2a,0x0,0xaf,0xe1,0x2a,0x0, 0x24,0xef,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a, 0x0,0xc2,0xe1,0x2a,0x0,0x84,0xf6,0x2b,0x0,0xd7,0xef,0x2c,0x0,0x4b,0xf6,0x2b, 0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x4,0xfa, 0x2a,0x0,0x26,0xee,0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x62, 0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x16,0x6d,0x2a,0x0,0x3e,0xef,0x2c,0x0,0x96, 0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xb5,0x65,0x2c,0x0, 0x2b,0x66,0x2c,0x0,0xd1,0xc,0x2d,0x0,0xb4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2f,0x64,0x2c,0x0,0x9f,0x65,0x2c,0x0,0xa0,0x65,0x2c,0x0,0x7c,0x3c,0x2d, 0x0,0x9f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0x77,0xb2, 0x2a,0x0,0xc1,0xe1,0x2a,0x0,0x1,0xee,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0, 0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0x9,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x42, 0x56,0x2d,0x0,0x9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0, 0xd3,0xe1,0x2a,0x0,0x94,0xf6,0x2b,0x0,0x14,0xe2,0x2c,0x0,0x4b,0xf6,0x2b,0x0, 0x0,0x0,0x0,0x0,0x1,0xd,0x64,0x2c,0x0,0x1a,0x65,0x2c,0x0,0x3d,0x66,0x2c, 0x0,0xd3,0x1b,0x2d,0x0,0x1a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x60,0x1f, 0x2a,0x0,0x98,0xb0,0x2a,0x0,0x7,0xfa,0x2a,0x0,0x9b,0xee,0x2c,0x0,0xc1,0xf9, 0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xfb,0x64,0x2c,0x0,0x45, 0x66,0x2c,0x0,0xfd,0x56,0x2d,0x0,0xfb,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x27,0x66,0x2c,0x0,0xba,0x6f,0x2c,0x0,0xbe,0x6f,0x2c,0x0,0x5,0x49,0x2d,0x0, 0xbb,0x6f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x19,0x2a,0x0,0x42,0x1f,0x2a, 0x0,0x19,0x6d,0x2a,0x0,0x78,0xed,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0x95,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x9c,0xf6,0x2b,0x0,0xb9,0xee, 0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x72, 0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0xde,0x7b,0x2d,0x0,0x72,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x3d,0x65,0x2c,0x0,0x3e,0x65,0x2c,0x0, 0x20,0x47,0x2d,0x0,0x3b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xed,0x22,0x2a, 0x0,0xaa,0x64,0x2c,0x0,0xac,0x66,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0xaa,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xf0,0x22,0x2a,0x0,0x5,0x65,0x2c,0x0,0xaa,0x66, 0x2c,0x0,0x73,0x3c,0x2d,0x0,0x5,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x81, 0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x14,0xfa,0x2a,0x0,0xa7,0xee,0x2c,0x0,0xc1, 0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0, 0x28,0x66,0x2c,0x0,0x81,0x57,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x61,0x1f,0x2a,0x0,0xc,0xa7,0x2a,0x0,0xd1,0xe1,0x2a,0x0,0xe0,0xef,0x2c, 0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x72,0x65, 0x2c,0x0,0x2e,0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x72,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x4b, 0x3f,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x73,0x62,0x2c,0x0, 0xe1,0x64,0x2c,0x0,0xa6,0x66,0x2c,0x0,0x58,0xeb,0x2c,0x0,0xe1,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x29,0x6d,0x2a, 0x0,0x2f,0xef,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x64, 0x2c,0x0,0x86,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x4e,0x57,0x2d,0x0,0x86,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x94,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x6a, 0x26,0x2c,0x0,0x86,0xef,0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x34,0x64,0x2c,0x0,0x59,0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0x8e,0xd5,0x2c,0x0, 0x59,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x79,0x1f,0x2a,0x0,0x8,0xe2,0x2a, 0x0,0xa4,0xf6,0x2b,0x0,0x52,0xe1,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0, 0x0,0x1,0x30,0x64,0x2c,0x0,0x40,0x65,0x2c,0x0,0x3e,0x66,0x2c,0x0,0x7a,0x3c, 0x2d,0x0,0x40,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0x63, 0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x9f,0xc,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x82,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x1a,0xfa,0x2a,0x0, 0xfe,0xef,0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a, 0x0,0xd,0xa7,0x2a,0x0,0xf9,0xe1,0x2a,0x0,0x4e,0xee,0x2c,0x0,0x70,0xe1,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0x45,0x64,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x1e,0x65, 0x2c,0x0,0xaa,0x1c,0x2d,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x43, 0x64,0x2c,0x0,0xc7,0x6f,0x2c,0x0,0xd0,0x6f,0x2c,0x0,0x78,0x46,0x2d,0x0,0xc8, 0x6f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xe,0x65,0x2c,0x0, 0x3a,0x66,0x2c,0x0,0x86,0x83,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x79,0x1f,0x2a,0x0,0x9,0xe2,0x2a,0x0,0x6e,0x26,0x2c,0x0,0xc0,0xee,0x2c, 0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xac,0x65, 0x2c,0x0,0xad,0x65,0x2c,0x0,0xc1,0x3d,0x2d,0x0,0xab,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0x4d, 0x57,0x2d,0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0, 0x22,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x11,0x44,0x2d,0x0,0x22,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xee,0x22,0x2a,0x0,0xc2,0x65,0x2c,0x0,0xa7,0x66,0x2c, 0x0,0xac,0x3e,0x2d,0x0,0xc2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64, 0x2c,0x0,0x4f,0x65,0x2c,0x0,0x31,0x66,0x2c,0x0,0xce,0xc5,0x2c,0x0,0x4f,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0x2e, 0x66,0x2c,0x0,0x73,0x7b,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x35,0x64,0x2c,0x0,0xaa,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x42,0x40,0x2d,0x0, 0xa9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x4a,0x65,0x2c, 0x0,0x33,0x66,0x2c,0x0,0x50,0x3c,0x2d,0x0,0x4a,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x31,0x6d,0x2a,0x0,0x33,0xee, 0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x31, 0x65,0x2c,0x0,0x40,0x66,0x2c,0x0,0x7d,0x3c,0x2d,0x0,0x31,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0xc5,0xe1,0x2a,0x0,0x5f,0x39,0x2c,0x0, 0x9e,0xed,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x44,0x64,0x2c, 0x0,0x87,0x64,0x2c,0x0,0x88,0x64,0x2c,0x0,0x45,0x47,0x2d,0x0,0x87,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x4a,0x70,0x2c,0x0,0x4b,0x70, 0x2c,0x0,0x1f,0x52,0x2d,0x0,0x4a,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33, 0x64,0x2c,0x0,0xc2,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x96,0x83,0x2d,0x0,0xc2, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0, 0x2d,0x66,0x2c,0x0,0x4f,0xd2,0x2c,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2b,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0xa7,0x44,0x2d, 0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xef,0x22,0x2a,0x0,0xfb,0x6d, 0x2c,0x0,0xfc,0x6d,0x2c,0x0,0x8d,0xc6,0x2c,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xe,0x65,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x87, 0x83,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0, 0x12,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x11,0x44,0x2d,0x0,0x11,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0,0x31,0x66,0x2c, 0x0,0x91,0x83,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3d,0x64, 0x2c,0x0,0xfb,0x6d,0x2c,0x0,0xfc,0x6d,0x2c,0x0,0x6c,0x83,0x2d,0x0,0xfb,0x6d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xab,0x65,0x2c,0x0,0x34, 0x66,0x2c,0x0,0x6,0x48,0x2d,0x0,0xab,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x38,0x64,0x2c,0x0,0xb9,0x65,0x2c,0x0,0xba,0x65,0x2c,0x0,0x58,0x49,0x2d,0x0, 0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0xe2,0x65,0x2c, 0x0,0xe3,0x65,0x2c,0x0,0x51,0xdc,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2f,0x64,0x2c,0x0,0x7,0x65,0x2c,0x0,0x48,0x66,0x2c,0x0,0xa2,0x48, 0x2d,0x0,0x7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x95, 0x65,0x2c,0x0,0x96,0x65,0x2c,0x0,0xaf,0xd,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xfc,0x63,0x2c,0x0,0xd7,0x64,0x2c,0x0,0x36,0x66,0x2c,0x0, 0x7d,0x3c,0x2d,0x0,0xd7,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x93,0x19,0x2a, 0x0,0x73,0x1f,0x2a,0x0,0xad,0xf6,0x2b,0x0,0x1,0xf0,0x2c,0x0,0x4b,0xf6,0x2b, 0x0,0x0,0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0xdc,0x65, 0x2c,0x0,0x8f,0xd6,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32, 0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x20,0x49,0x2d,0x0,0xe0, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0, 0xd2,0x65,0x2c,0x0,0x9f,0x45,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x82,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x21,0xfa,0x2a,0x0,0xb5,0xef,0x2c, 0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0x12,0xe2, 0x2a,0x0,0x72,0x26,0x2c,0x0,0x8d,0xef,0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0xd3,0x65,0x2c,0x0,0xd4,0x65,0x2c,0x0,0xf4, 0xeb,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0, 0xe4,0x64,0x2c,0x0,0xe5,0x64,0x2c,0x0,0xbf,0x47,0x2d,0x0,0xe4,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0,0xd7,0x65,0x2c, 0x0,0x39,0x49,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x40,0x64, 0x2c,0x0,0xe2,0x64,0x2c,0x0,0xe3,0x64,0x2c,0x0,0x92,0x83,0x2d,0x0,0xe1,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x68,0x65,0x2c,0x0,0x3e, 0x66,0x2c,0x0,0x47,0x45,0x2d,0x0,0x68,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x3a,0x64,0x2c,0x0,0xfe,0x65,0x2c,0x0,0xff,0x65,0x2c,0x0,0x65,0x40,0x2d,0x0, 0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xb8,0x65,0x2c, 0x0,0x36,0x66,0x2c,0x0,0xa7,0xdc,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x3d,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x1,0xd4, 0x2c,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xcc, 0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0xd8,0xd0,0x2c,0x0,0xcb,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x12,0x65,0x2c,0x0,0x3e,0x66,0x2c,0x0, 0x59,0x75,0x2c,0x0,0x12,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a, 0x0,0xc,0xa7,0x2a,0x0,0xb,0xe2,0x2a,0x0,0xe,0xef,0x2c,0x0,0x70,0xe1,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x3b,0x6d, 0x2a,0x0,0x4a,0xd1,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x3d, 0x64,0x2c,0x0,0xcb,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xd4,0x7b,0x2d,0x0,0xcb, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xba,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0, 0x65,0x39,0x2c,0x0,0x83,0xee,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x9,0x64,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x34,0x66,0x2c,0x0,0x4a,0xd5,0x2c, 0x0,0xe6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0x8f,0x70, 0x2c,0x0,0x90,0x70,0x2c,0x0,0x89,0x76,0x2d,0x0,0x8d,0x70,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0x97,0x65,0x2c,0x0,0x98,0x65,0x2c,0x0,0x86, 0x83,0x2d,0x0,0x97,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0, 0x9d,0x65,0x2c,0x0,0x9e,0x65,0x2c,0x0,0xed,0xc8,0x2c,0x0,0x9c,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x79,0x1f,0x2a,0x0,0xc0,0xe1,0x2a,0x0,0xb3,0xf6,0x2b, 0x0,0x6d,0xeb,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x94,0x19, 0x2a,0x0,0x73,0x1f,0x2a,0x0,0x77,0x26,0x2c,0x0,0x49,0xec,0x2c,0x0,0xde,0x25, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xb3,0x65,0x2c,0x0,0x35, 0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0xb3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x3a,0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0xf9,0x51,0x2d,0x0, 0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xae,0x65,0x2c, 0x0,0x36,0x66,0x2c,0x0,0x59,0x49,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x44,0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0x35,0x66,0x2c,0x0,0x87,0x83, 0x2d,0x0,0xbb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0xcc, 0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x71,0x3c,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xea,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0, 0x72,0x83,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c, 0x0,0x9a,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0xd,0x49,0x2d,0x0,0x9a,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xb3,0x65,0x2c,0x0,0x37,0x66, 0x2c,0x0,0x73,0xd6,0x2c,0x0,0xb3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5f, 0x1f,0x2a,0x0,0x92,0xb0,0x2a,0x0,0x28,0xfa,0x2a,0x0,0x6b,0xef,0x2c,0x0,0x9c, 0xb0,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x1f,0x2a,0x0,0xc,0xa7,0x2a,0x0, 0x1c,0xe2,0x2a,0x0,0x60,0xeb,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0, 0x1,0x30,0x64,0x2c,0x0,0x27,0x65,0x2c,0x0,0x41,0x66,0x2c,0x0,0xb7,0x53,0x2d, 0x0,0x27,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0x9,0x65, 0x2c,0x0,0x45,0x66,0x2c,0x0,0xe9,0xc,0x2d,0x0,0x9,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xd4,0x65,0x2c,0x0,0xd5,0x65,0x2c,0x0,0x16, 0x46,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0, 0x42,0x1f,0x2a,0x0,0x43,0x6d,0x2a,0x0,0xd2,0xb2,0x2c,0x0,0x96,0x6c,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x65,0x65,0x2c, 0x0,0xb0,0x77,0x2c,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64, 0x2c,0x0,0x98,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0xc6,0x44,0x2d,0x0,0x98,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7,0x64,0x2c,0x0,0x10,0x65,0x2c,0x0,0x33, 0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0x10,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xbb,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x6c,0x39,0x2c,0x0,0x16,0xed,0x2c,0x0, 0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0x6d,0x65,0x2c, 0x0,0x3e,0x66,0x2c,0x0,0x2a,0x41,0x2d,0x0,0x6d,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x35,0x64,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x3d,0x66,0x2c,0x0,0xe9,0x54, 0x2d,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5,0x64,0x2c,0x0,0x9, 0x65,0x2c,0x0,0x34,0x66,0x2c,0x0,0x40,0x3d,0x2d,0x0,0x9,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0x3b,0x65,0x2c,0x0,0x45,0x66,0x2c,0x0, 0xf0,0x82,0x2d,0x0,0x3b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c, 0x0,0xf3,0x65,0x2c,0x0,0xf4,0x65,0x2c,0x0,0x92,0x83,0x2d,0x0,0xef,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x46,0x66, 0x2c,0x0,0x92,0xc9,0x2c,0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b, 0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0x15,0xdd,0x2c,0x0,0xe0, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x68,0x65,0x2c,0x0, 0x3f,0x66,0x2c,0x0,0x2d,0x46,0x2d,0x0,0x67,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x36,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x3e,0x66,0x2c,0x0,0x50,0x3c,0x2d, 0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x77,0x65, 0x2c,0x0,0x78,0x65,0x2c,0x0,0xc9,0xea,0x2c,0x0,0x77,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x41,0x64,0x2c,0x0,0xdd,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0xd1, 0x51,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0, 0x40,0x65,0x2c,0x0,0x42,0x66,0x2c,0x0,0x71,0x3c,0x2d,0x0,0x40,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0x18,0x65,0x2c,0x0,0x19,0x65,0x2c, 0x0,0xac,0x47,0x2d,0x0,0x18,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64, 0x2c,0x0,0x98,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0xd8,0x45,0x2d,0x0,0x95,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xf5,0x65,0x2c,0x0,0xf6, 0x65,0x2c,0x0,0xd4,0x45,0x2d,0x0,0xf4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xc3,0xf6,0x2b,0x0,0x1c,0x65,0x2c,0x0,0x1e,0x65,0x2c,0x0,0xf4,0xe7,0x2c,0x0, 0x1a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0xc4,0x5d,0x2c, 0x0,0x7e,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe8,0x64,0x2c,0x0,0x7d,0x65,0x2c,0x0,0x41,0x67,0x2c,0x0,0x9a,0x7b, 0x2d,0x0,0x7d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0xb6, 0x5d,0x2c,0x0,0xf,0xbb,0x2c,0x0,0xc,0x7b,0x2d,0x0,0xe9,0xa7,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x32,0x65,0x2c,0x0,0xf7,0x65,0x2c,0x0,0x46,0x66,0x2c,0x0, 0xf5,0x47,0x2d,0x0,0xf7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a, 0x0,0xc9,0x5d,0x2c,0x0,0x1c,0x69,0x2c,0x0,0xa0,0x48,0x2d,0x0,0xc9,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0xfa,0x2a,0x0,0x4,0x65,0x2c,0x0,0x5,0x65, 0x2c,0x0,0xef,0xee,0x2c,0x0,0x1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7b, 0x26,0x2c,0x0,0x92,0x5d,0x2c,0x0,0x93,0x5d,0x2c,0x0,0x28,0xe2,0x2c,0x0,0x90, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0, 0x1b,0x68,0x2c,0x0,0x4d,0xdd,0x2c,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2f,0xe2,0x2a,0x0,0xb0,0x65,0x2c,0x0,0xb1,0x65,0x2c,0x0,0xe9,0xed,0x2c, 0x0,0xaf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a,0x0,0xf1,0x5d, 0x2c,0x0,0x78,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xf0,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xf3,0x64,0x2c,0x0,0xb4,0x65,0x2c,0x0,0x36,0x67,0x2c,0x0,0x92, 0x83,0x2d,0x0,0xb4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x4a,0x6d,0x2a,0x0, 0x3,0x5d,0x2c,0x0,0x5,0x5d,0x2c,0x0,0xa3,0xef,0x2c,0x0,0x2,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0x3e,0x3d,0x2a,0x0,0x71,0x39,0x2c, 0x0,0x70,0xef,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f, 0x2a,0x0,0x6,0xe2,0x2a,0x0,0xcc,0xf6,0x2b,0x0,0x82,0xef,0x2c,0x0,0x4b,0xf6, 0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0xf5,0x5d,0x2c,0x0,0x1, 0x68,0x2c,0x0,0xa8,0x55,0x2d,0x0,0xf5,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x3a,0xfa,0x2a,0x0,0xbe,0xef,0x2c,0x0, 0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x88,0x26,0x2c,0x0,0xfc,0x5d,0x2c, 0x0,0xfd,0x5d,0x2c,0x0,0x84,0xef,0x2c,0x0,0xfa,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x76,0x62,0x2c,0x0,0x4a,0x65,0x2c,0x0,0x9a,0x66,0x2c,0x0,0xfe,0x3d, 0x2d,0x0,0x4a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3e,0x65,0x2c,0x0,0xdc, 0x65,0x2c,0x0,0xf0,0x65,0x2c,0x0,0x8c,0xd5,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3e,0xe2,0x2a,0x0,0x30,0x64,0x2c,0x0,0x31,0x64,0x2c,0x0, 0x5f,0xec,0x2c,0x0,0x2e,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a, 0x0,0xb,0xe2,0x2a,0x0,0x80,0x39,0x2c,0x0,0xf3,0xed,0x2c,0x0,0x3e,0x39,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x58,0x6d, 0x2a,0x0,0x91,0xef,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x93, 0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0xd5,0xf6,0x2b,0x0,0xf5,0xdd,0x2c,0x0,0x4b, 0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x79,0x1f,0x2a,0x0,0xb6,0xe1,0x2a,0x0, 0x8d,0x26,0x2c,0x0,0x63,0xef,0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xb0,0x22,0x2a,0x0,0xf0,0x5d,0x2c,0x0,0x1d,0x69,0x2c,0x0,0x91,0x83,0x2d, 0x0,0xf0,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x1f,0x2a,0x0,0xd0,0xb0, 0x2a,0x0,0x41,0xfa,0x2a,0x0,0xf5,0xed,0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0, 0x0,0x0,0x1,0x63,0x1f,0x2a,0x0,0xd,0xa7,0x2a,0x0,0x50,0xe2,0x2a,0x0,0xa9, 0xef,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0, 0xb5,0xe1,0x2a,0x0,0x8c,0x39,0x2c,0x0,0x23,0xef,0x2c,0x0,0x3e,0x39,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0xdd,0x5d,0x2c,0x0,0x22,0x68,0x2c, 0x0,0xf0,0x82,0x2d,0x0,0xdd,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x14,0x65, 0x2c,0x0,0xab,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0xd3,0x76,0x2c,0x0,0xab,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xdd,0xf6,0x2b,0x0,0x7c,0x65,0x2c,0x0,0x7d, 0x65,0x2c,0x0,0x36,0xec,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb3,0x22,0x2a,0x0,0xfa,0x5d,0x2c,0x0,0xfa,0x67,0x2c,0x0,0x1c,0xd4,0x2c,0x0, 0xfa,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x92,0x26,0x2c,0x0,0xbf,0x5d,0x2c, 0x0,0xc0,0x5d,0x2c,0x0,0xf8,0xed,0x2c,0x0,0xbf,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xb0,0x22,0x2a,0x0,0xc5,0x5d,0x2c,0x0,0x4c,0x66,0x2c,0x0,0x9b,0xd, 0x2d,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x49,0xfa,0x2a,0x0,0xa3, 0x5d,0x2c,0x0,0xa5,0x5d,0x2c,0x0,0x27,0xef,0x2c,0x0,0xa3,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xf6,0x64,0x2c,0x0,0x88,0x65,0x2c,0x0,0x3a,0x67,0x2c,0x0, 0xf3,0x45,0x2d,0x0,0x88,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x58,0xe2,0x2a, 0x0,0x63,0x65,0x2c,0x0,0x64,0x65,0x2c,0x0,0x9,0xef,0x2c,0x0,0x60,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x64,0x2c,0x0,0x98,0x65,0x2c,0x0,0x51,0x66, 0x2c,0x0,0x51,0x76,0x2d,0x0,0x98,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1, 0x22,0x2a,0x0,0xa7,0x5d,0x2c,0x0,0xfc,0x68,0x2c,0x0,0x14,0x49,0x2d,0x0,0xa7, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0, 0x14,0x68,0x2c,0x0,0x8c,0x48,0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x60,0x6d,0x2a,0x0,0xbf,0x5d,0x2c,0x0,0xc1,0x5d,0x2c,0x0,0x54,0xe1,0x2c, 0x0,0xbf,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xec,0x64,0x2c,0x0,0x81,0x65, 0x2c,0x0,0x3a,0x67,0x2c,0x0,0x87,0x45,0x2d,0x0,0x80,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x14,0x65,0x2c,0x0,0xaa,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x73, 0x3c,0x2d,0x0,0xaa,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0, 0x9,0x3d,0x2a,0x0,0x92,0x39,0x2c,0x0,0x5f,0xea,0x2c,0x0,0x3e,0x39,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x94,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0xe6,0xf6,0x2b, 0x0,0x9,0xed,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22, 0x2a,0x0,0x46,0x5e,0x2c,0x0,0x77,0x66,0x2c,0x0,0x19,0x49,0x2d,0x0,0x45,0x5e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x99,0x26,0x2c,0x0,0x69,0x65,0x2c,0x0,0x6a, 0x65,0x2c,0x0,0x72,0xee,0x2c,0x0,0x69,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb2,0x22,0x2a,0x0,0xfa,0x5d,0x2c,0x0,0x5,0x68,0x2c,0x0,0x94,0x83,0x2d,0x0, 0xfa,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x65,0x2c,0x0,0xca,0x65,0x2c, 0x0,0x53,0x66,0x2c,0x0,0xd7,0x44,0x2d,0x0,0xca,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x60,0x1f,0x2a,0x0,0xd3,0xe1,0x2a,0x0,0x4d,0xfa,0x2a,0x0,0xcc,0xef, 0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x5f,0xe2,0x2a,0x0,0xf6, 0x5d,0x2c,0x0,0xf7,0x5d,0x2c,0x0,0xeb,0xea,0x2c,0x0,0xf6,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xc5,0x5d,0x2c,0x0,0x22,0x69,0x2c,0x0, 0xd2,0xe0,0x2c,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a, 0x0,0xdd,0x5d,0x2c,0x0,0xa,0x68,0x2c,0x0,0x94,0x83,0x2d,0x0,0xdd,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x67,0x6d, 0x2a,0x0,0xd2,0xef,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x98, 0x39,0x2c,0x0,0xa,0x65,0x2c,0x0,0xb,0x65,0x2c,0x0,0x62,0xef,0x2c,0x0,0x9, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x48,0x65,0x2c,0x0,0xe3,0x65,0x2c,0x0, 0x27,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0xe3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xef,0x64,0x2c,0x0,0x8d,0x65,0x2c,0x0,0x3b,0x67,0x2c,0x0,0x86,0x83,0x2d, 0x0,0x8d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x56,0xdd,0x2b,0x0,0xc5,0x5d, 0x2c,0x0,0xc6,0x5d,0x2c,0x0,0x7f,0xef,0x2c,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xce,0x5d,0x2c,0x0,0x75,0x66,0x2c,0x0,0xd3, 0x3d,0x2d,0x0,0xce,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0, 0xbc,0xe1,0x2a,0x0,0xfb,0xf6,0x2b,0x0,0xa3,0xee,0x2c,0x0,0x4b,0xf6,0x2b,0x0, 0x0,0x0,0x0,0x0,0x1,0x95,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x9b,0x26,0x2c, 0x0,0x73,0xee,0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22, 0x2a,0x0,0xbf,0x5d,0x2c,0x0,0xfe,0x67,0x2c,0x0,0xe9,0x46,0x2d,0x0,0xbf,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x65,0x2c,0x0,0xd8,0x65,0x2c,0x0,0x47, 0x66,0x2c,0x0,0x52,0x3c,0x2d,0x0,0xd8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x50,0xfa,0x2a,0x0,0x1e,0x65,0x2c,0x0,0x20,0x65,0x2c,0x0,0xbb,0xb8,0x2c,0x0, 0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0x37,0x5e,0x2c, 0x0,0x1c,0x69,0x2c,0x0,0x58,0x1b,0x2d,0x0,0x37,0x5e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xaf,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0,0xda,0x67,0x2c,0x0,0x1b,0x51, 0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9,0x64,0x2c,0x0,0x85, 0x65,0x2c,0x0,0x38,0x67,0x2c,0x0,0x83,0x7b,0x2d,0x0,0x85,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xc,0xa7,0x2a,0x0,0x65,0xe2,0x2a,0x0, 0x32,0xee,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19,0x2a, 0x0,0xa6,0x1f,0x2a,0x0,0x9e,0x39,0x2c,0x0,0xe4,0xee,0x2c,0x0,0x3e,0x39,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x4e,0x65,0x2c,0x0,0xfe,0x65,0x2c,0x0,0xff,0x65, 0x2c,0x0,0x3d,0x40,0x2d,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb4, 0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0,0xff,0x67,0x2c,0x0,0x72,0x83,0x2d,0x0,0xb6, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x70,0x6d,0x2a,0x0,0xb9,0x65,0x2c,0x0, 0xba,0x65,0x2c,0x0,0xd8,0xc3,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x25,0x66,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x5f,0x66,0x2c,0x0,0x95,0x83,0x2d, 0x0,0x5e,0x66,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x65,0x2c,0x0,0xce,0x65, 0x2c,0x0,0x64,0x66,0x2c,0x0,0xdd,0x55,0x2d,0x0,0xce,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x60,0xdd,0x2b,0x0,0x4c,0x65,0x2c,0x0,0x4d,0x65,0x2c,0x0,0x3, 0xea,0x2c,0x0,0x4a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0, 0x90,0x5d,0x2c,0x0,0x29,0x69,0x2c,0x0,0xe5,0xcf,0x2c,0x0,0x90,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x8,0x26,0x2c,0x0,0x5d,0x5e,0x2c,0x0,0x5e,0x5e,0x2c, 0x0,0xf6,0xe7,0x2c,0x0,0x5b,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22, 0x2a,0x0,0xa8,0x5d,0x2c,0x0,0x15,0x68,0x2c,0x0,0x82,0xe8,0x2c,0x0,0xa8,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5d,0xfa,0x2a,0x0,0x1c,0x5e,0x2c,0x0,0x1d, 0x5e,0x2c,0x0,0xe9,0xec,0x2c,0x0,0x1b,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x94,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x0,0xf7,0x2b,0x0,0x78,0xef,0x2c,0x0, 0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x57,0x65,0x2c,0x0,0xef,0x65,0x2c, 0x0,0x28,0x66,0x2c,0x0,0x2c,0x3c,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xfc,0x64,0x2c,0x0,0x94,0x65,0x2c,0x0,0x37,0x67,0x2c,0x0,0x81,0xd, 0x2d,0x0,0x94,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0x95, 0x5d,0x2c,0x0,0x7b,0x66,0x2c,0x0,0x4e,0xdd,0x2c,0x0,0x95,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x74,0xe2,0x2a,0x0,0xf6,0x5d,0x2c,0x0,0xf7,0x5d,0x2c,0x0, 0x48,0xee,0x2c,0x0,0xf6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xa3,0x39,0x2c, 0x0,0xde,0x5d,0x2c,0x0,0xe0,0x5d,0x2c,0x0,0xc6,0xde,0x2c,0x0,0xdd,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0,0x6,0x68, 0x2c,0x0,0xa,0x83,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x44, 0x65,0x2c,0x0,0xe5,0x65,0x2c,0x0,0x48,0x66,0x2c,0x0,0xbd,0x7e,0x2c,0x0,0xe3, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xfb,0x5d,0x2c,0x0, 0x22,0x69,0x2c,0x0,0xdb,0xc,0x2d,0x0,0xfa,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xb1,0x22,0x2a,0x0,0xbb,0x5d,0x2c,0x0,0x16,0x68,0x2c,0x0,0x6c,0x3d,0x2d, 0x0,0xbb,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x67,0xdd,0x2b,0x0,0x82,0x65, 0x2c,0x0,0x83,0x65,0x2c,0x0,0x92,0xef,0x2c,0x0,0x81,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x4b,0x65,0x2c,0x0,0xe8,0x65,0x2c,0x0,0x27,0x66,0x2c,0x0,0xa4, 0x3d,0x2d,0x0,0xe8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xdf,0x64,0x2c,0x0, 0x7b,0x65,0x2c,0x0,0x39,0x67,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0x7b,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x42,0x65,0x2c,0x0,0xda,0x65,0x2c,0x0,0x52,0x66,0x2c, 0x0,0x62,0x57,0x2d,0x0,0xda,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22, 0x2a,0x0,0xce,0x5d,0x2c,0x0,0x7a,0x66,0x2c,0x0,0x4,0x49,0x2d,0x0,0xce,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x6d,0x2a,0x0,0x64,0x5d,0x2c,0x0,0x66, 0x5d,0x2c,0x0,0x5,0xef,0x2c,0x0,0x63,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb5,0x22,0x2a,0x0,0xe2,0x5d,0x2c,0x0,0x2,0x68,0x2c,0x0,0x99,0x45,0x2d,0x0, 0xe2,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xbb,0x5d,0x2c, 0x0,0x25,0x69,0x2c,0x0,0x9b,0x7b,0x2d,0x0,0xbb,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x7a,0x1f,0x2a,0x0,0xff,0xe1,0x2a,0x0,0xf,0x26,0x2c,0x0,0x7a,0xee, 0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x95,0x19,0x2a,0x0,0x73, 0x1f,0x2a,0x0,0x8,0xf7,0x2b,0x0,0x49,0xee,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0, 0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xbb,0x5d,0x2c,0x0,0x14,0x68,0x2c,0x0, 0x11,0x73,0x2c,0x0,0xbb,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x39,0x2c, 0x0,0x4f,0x65,0x2c,0x0,0x50,0x65,0x2c,0x0,0x5f,0xef,0x2c,0x0,0x4f,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x1a,0x65,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x2f,0x66, 0x2c,0x0,0x92,0x83,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4, 0x64,0x2c,0x0,0x78,0x65,0x2c,0x0,0x48,0x67,0x2c,0x0,0x2a,0x3f,0x2d,0x0,0x78, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x70,0xdd,0x2b,0x0,0x18,0x65,0x2c,0x0, 0x19,0x65,0x2c,0x0,0x64,0xee,0x2c,0x0,0x17,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xb0,0x22,0x2a,0x0,0xdd,0x5d,0x2c,0x0,0x7e,0x66,0x2c,0x0,0x10,0x49,0x2d, 0x0,0xdd,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xdf,0x64,0x2c,0x0,0x71,0x65, 0x2c,0x0,0x51,0x66,0x2c,0x0,0x9c,0xdc,0x2c,0x0,0x71,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x67,0xfa,0x2a,0x0,0xb3,0x5d,0x2c,0x0,0xb4,0x5d,0x2c,0x0,0xe3, 0xee,0x2c,0x0,0xb3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0, 0xa7,0x5d,0x2c,0x0,0xb8,0x67,0x2c,0x0,0x91,0x83,0x2d,0x0,0xa7,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0,0x1e,0x69,0x2c, 0x0,0x69,0x56,0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x80,0xe2, 0x2a,0x0,0x22,0x5e,0x2c,0x0,0x23,0x5e,0x2c,0x0,0x7e,0xef,0x2c,0x0,0x20,0x5e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a,0x0,0xc0,0x5d,0x2c,0x0,0x24, 0x68,0x2c,0x0,0xa5,0xd0,0x2c,0x0,0xc0,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xfc,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x6a,0x76,0x2d,0x0, 0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x64,0x2c,0x0,0x83,0x65,0x2c, 0x0,0x3a,0x67,0x2c,0x0,0xfa,0xc,0x2d,0x0,0x81,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x16,0x26,0x2c,0x0,0x68,0x65,0x2c,0x0,0x69,0x65,0x2c,0x0,0xc0,0xef, 0x2c,0x0,0x67,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x4f,0x66,0x2c,0x0,0xc1, 0x7e,0x2c,0x0,0xc2,0x7e,0x2c,0x0,0x8b,0x83,0x2d,0x0,0xbe,0x7e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0xb7,0x5d,0x2c,0x0,0x80,0x66,0x2c,0x0, 0xfd,0xdb,0x2c,0x0,0xb7,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a, 0x0,0xc5,0x5d,0x2c,0x0,0xfa,0x67,0x2c,0x0,0x92,0x83,0x2d,0x0,0xc4,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xdd,0x5d,0x2c,0x0,0x23,0x69, 0x2c,0x0,0x3a,0x3c,0x2d,0x0,0xdd,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x10, 0xf7,0x2b,0x0,0xfa,0x5d,0x2c,0x0,0xfb,0x5d,0x2c,0x0,0x2b,0xef,0x2c,0x0,0xfa, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0, 0xf,0x68,0x2c,0x0,0x94,0x83,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xb1,0x39,0x2c,0x0,0xc7,0x5d,0x2c,0x0,0xc8,0x5d,0x2c,0x0,0xcc,0xee,0x2c, 0x0,0xc5,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x4a,0x65,0x2c,0x0,0xe4,0x65, 0x2c,0x0,0x28,0x66,0x2c,0x0,0x5,0xdc,0x2c,0x0,0xe4,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0x76,0xdd,0x2b,0x0,0xdb, 0xe9,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x1f,0x2a,0x0, 0xcc,0xb0,0x2a,0x0,0x6c,0xfa,0x2a,0x0,0x4d,0xeb,0x2c,0x0,0xc1,0xf9,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0x8e,0xb2,0x2a,0x0,0x1c,0x26,0x2c, 0x0,0x9a,0xed,0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22, 0x2a,0x0,0x90,0x5d,0x2c,0x0,0xf3,0x68,0x2c,0x0,0x68,0x40,0x2d,0x0,0x90,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0xeb,0x64,0x2c,0x0,0xbd, 0x67,0x2c,0x0,0x23,0x49,0x2d,0x0,0xeb,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x85,0xe2,0x2a,0x0,0xff,0x64,0x2c,0x0,0x0,0x65,0x2c,0x0,0x7,0xef,0x2c,0x0, 0xff,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x65,0x2c,0x0,0xd6,0x65,0x2c, 0x0,0x52,0x66,0x2c,0x0,0x4e,0xed,0x2c,0x0,0xd5,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe2,0x64,0x2c,0x0,0xfd,0x6d,0x2c,0x0,0xfe,0x6d,0x2c,0x0,0x92,0x83, 0x2d,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xf0, 0x5d,0x2c,0x0,0x74,0x66,0x2c,0x0,0x9a,0x55,0x2d,0x0,0xf0,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x82,0xdd,0x2b,0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0, 0x4a,0xef,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a, 0x0,0xed,0x5d,0x2c,0x0,0x5,0x68,0x2c,0x0,0xff,0x1b,0x2d,0x0,0xec,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0xbe,0x7e,0x2c,0x0,0xbf,0x7e, 0x2c,0x0,0x79,0x83,0x2d,0x0,0xbd,0x7e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0, 0x22,0x2a,0x0,0x96,0x5d,0x2c,0x0,0x27,0x69,0x2c,0x0,0x47,0x53,0x2d,0x0,0x96, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb6,0x39,0x2c,0x0,0xb2,0x5d,0x2c,0x0, 0xb3,0x5d,0x2c,0x0,0xba,0xef,0x2c,0x0,0xb2,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x34,0x65,0x2c,0x0,0xcb,0x65,0x2c,0x0,0x4a,0x66,0x2c,0x0,0x7d,0x3c,0x2d, 0x0,0xcb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x75,0xfa,0x2a,0x0,0x84,0x5e, 0x2c,0x0,0x85,0x5e,0x2c,0x0,0xef,0xe9,0x2c,0x0,0x83,0x5e,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x15,0xf7,0x2b,0x0,0xc3,0x5e,0x2c,0x0,0xc4,0x5e,0x2c,0x0,0xd3, 0xef,0x2c,0x0,0xc1,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a,0x0, 0xd8,0x5d,0x2c,0x0,0x50,0x66,0x2c,0x0,0x4d,0x70,0x2c,0x0,0xd8,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x20,0x26,0x2c,0x0,0x50,0x5d,0x2c,0x0,0x51,0x5d,0x2c, 0x0,0xc9,0xed,0x2c,0x0,0x50,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x64, 0x2c,0x0,0x7c,0x65,0x2c,0x0,0x3b,0x67,0x2c,0x0,0x8b,0x83,0x2d,0x0,0x7c,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x8a,0xdd,0x2b,0x0,0xf,0x5e,0x2c,0x0,0x10, 0x5e,0x2c,0x0,0xb3,0xef,0x2c,0x0,0xd,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb4,0x22,0x2a,0x0,0xbb,0x5d,0x2c,0x0,0xfa,0x67,0x2c,0x0,0x87,0x83,0x2d,0x0, 0xbb,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x89,0xe2,0x2a,0x0,0xb9,0x5d,0x2c, 0x0,0xba,0x5d,0x2c,0x0,0x16,0xef,0x2c,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xb0,0x22,0x2a,0x0,0xa3,0x5d,0x2c,0x0,0x19,0x68,0x2c,0x0,0x9e,0xd, 0x2d,0x0,0xa3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x39,0x2c,0x0,0x52, 0x5e,0x2c,0x0,0x53,0x5e,0x2c,0x0,0xea,0xef,0x2c,0x0,0x4f,0x5e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x94,0xdd,0x2b,0x0,0x75,0x65,0x2c,0x0,0x76,0x65,0x2c,0x0, 0x89,0xde,0x2c,0x0,0x74,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x46,0x65,0x2c, 0x0,0xe5,0x65,0x2c,0x0,0x27,0x66,0x2c,0x0,0x84,0xd6,0x2c,0x0,0xe5,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x65,0x2c,0x0,0xef,0x65,0x2c,0x0,0x48,0x66, 0x2c,0x0,0x27,0x1c,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0, 0x22,0x2a,0x0,0xe3,0x5d,0x2c,0x0,0x78,0x66,0x2c,0x0,0xc4,0x74,0x2c,0x0,0xe3, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x77,0x62,0x2c,0x0,0xa8,0x64,0x2c,0x0, 0x9c,0x66,0x2c,0x0,0x1c,0x46,0x2d,0x0,0xa8,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x77,0x62,0x2c,0x0,0x9f,0x64,0x2c,0x0,0x9f,0x66,0x2c,0x0,0x86,0x83,0x2d, 0x0,0x9f,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0xd2,0x64, 0x2c,0x0,0x9d,0x66,0x2c,0x0,0x61,0xd5,0x2c,0x0,0xd2,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0xca,0x64,0x2c,0x0,0xa2,0x66,0x2c,0x0,0xcf, 0x18,0x2d,0x0,0xca,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0, 0x82,0x64,0x2c,0x0,0xa7,0x66,0x2c,0x0,0x91,0x83,0x2d,0x0,0x82,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x72,0x62,0x2c,0x0,0xa8,0x64,0x2c,0x0,0xb0,0x66,0x2c, 0x0,0x27,0xc6,0x2c,0x0,0xa8,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x22, 0x2a,0x0,0x7d,0x64,0x2c,0x0,0xac,0x66,0x2c,0x0,0x7e,0x83,0x2d,0x0,0x7d,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x22,0x2a,0x0,0xc5,0x64,0x2c,0x0,0xb4, 0x66,0x2c,0x0,0x15,0xe1,0x2c,0x0,0xc5,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe5,0x22,0x2a,0x0,0xd6,0x64,0x2c,0x0,0xac,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0, 0xd6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x22,0x2a,0x0,0xb9,0x64,0x2c, 0x0,0xad,0x66,0x2c,0x0,0xf,0x3d,0x2d,0x0,0xb9,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe5,0x22,0x2a,0x0,0xa9,0x64,0x2c,0x0,0xab,0x66,0x2c,0x0,0x60,0xde, 0x2c,0x0,0xa9,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xdf,0x22,0x2a,0x0,0x5d, 0x64,0x2c,0x0,0x19,0x6d,0x2c,0x0,0x5e,0xd6,0x2c,0x0,0x5d,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xe0,0x22,0x2a,0x0,0xe7,0x5d,0x2c,0x0,0x2e,0x6d,0x2c,0x0, 0x7b,0x83,0x2d,0x0,0xe7,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe1,0x22,0x2a, 0x0,0x8c,0x64,0x2c,0x0,0x17,0x6d,0x2c,0x0,0x8f,0x50,0x2d,0x0,0x8a,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe0,0x22,0x2a,0x0,0xc5,0x64,0x2c,0x0,0x16,0x6d, 0x2c,0x0,0x8c,0x1c,0x2d,0x0,0xc5,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe0, 0x22,0x2a,0x0,0xd8,0x64,0x2c,0x0,0x18,0x6d,0x2c,0x0,0x71,0x3c,0x2d,0x0,0xd8, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe0,0x22,0x2a,0x0,0xf5,0x5d,0x2c,0x0, 0x2d,0x6d,0x2c,0x0,0xd,0x7b,0x2d,0x0,0xf5,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe6,0x22,0x2a,0x0,0x13,0x65,0x2c,0x0,0x13,0x6d,0x2c,0x0,0xda,0x44,0x2d, 0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0xed,0x6e, 0x2c,0x0,0xae,0x7f,0x2c,0x0,0x6c,0xef,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xd3,0x5d,0x2c,0x0,0x2f,0x6d,0x2c,0x0,0xe, 0x3d,0x2d,0x0,0xd3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a,0x0, 0x8b,0x64,0x2c,0x0,0x18,0x6d,0x2c,0x0,0xa6,0xd5,0x2c,0x0,0x8b,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0,0x32,0x6d,0x2c, 0x0,0xfa,0x46,0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22, 0x2a,0x0,0x89,0x64,0x2c,0x0,0x17,0x6d,0x2c,0x0,0x3b,0x47,0x2d,0x0,0x89,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a,0x0,0xe6,0x64,0x2c,0x0,0x1c, 0x6d,0x2c,0x0,0xf8,0xd0,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe2,0x22,0x2a,0x0,0xfa,0x5d,0x2c,0x0,0x32,0x6d,0x2c,0x0,0x73,0x3c,0x2d,0x0, 0xfa,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a,0x0,0xb2,0x64,0x2c, 0x0,0x1b,0x6d,0x2c,0x0,0x9,0xec,0x2c,0x0,0xb2,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe4,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0,0x36,0x6d,0x2c,0x0,0xd3,0x1b, 0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe1,0x22,0x2a,0x0,0xdd, 0x5d,0x2c,0x0,0x30,0x6d,0x2c,0x0,0x71,0x3c,0x2d,0x0,0xdd,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xdf,0x22,0x2a,0x0,0xd2,0x64,0x2c,0x0,0x19,0x6d,0x2c,0x0, 0x11,0xec,0x2c,0x0,0xd2,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a, 0x0,0xbb,0x64,0x2c,0x0,0x1d,0x6d,0x2c,0x0,0x86,0x83,0x2d,0x0,0xbb,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0xc4,0x5d,0x2c,0x0,0x3a,0x6d, 0x2c,0x0,0x2a,0x48,0x2d,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4, 0x22,0x2a,0x0,0x3,0x65,0x2c,0x0,0x19,0x6d,0x2c,0x0,0xbf,0x3d,0x2d,0x0,0x3, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0x9b,0x64,0x2c,0x0, 0x1d,0x6d,0x2c,0x0,0xba,0x56,0x2d,0x0,0x9b,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe7,0x22,0x2a,0x0,0xb3,0x64,0x2c,0x0,0x1a,0x6d,0x2c,0x0,0x92,0x83,0x2d, 0x0,0xb3,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0xc5,0x5d, 0x2c,0x0,0x36,0x6d,0x2c,0x0,0x3d,0x47,0x2d,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0x78,0x64,0x2c,0x0,0x1d,0x6d,0x2c,0x0,0x6a, 0x48,0x2d,0x0,0x78,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfb,0x64,0x2c,0x0, 0x91,0x65,0x2c,0x0,0x6a,0x66,0x2c,0x0,0xc9,0x40,0x2d,0x0,0x91,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x65,0x2c,0x0,0x97,0x65,0x2c,0x0,0x6a,0x66,0x2c, 0x0,0x9a,0xc7,0x2c,0x0,0x97,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x64, 0x2c,0x0,0x9a,0x65,0x2c,0x0,0x72,0x66,0x2c,0x0,0x73,0x3c,0x2d,0x0,0x9a,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x65,0x2c,0x0,0x9c,0x65,0x2c,0x0,0x6b, 0x66,0x2c,0x0,0x8e,0xd3,0x2c,0x0,0x9c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2,0x65,0x2c,0x0,0x91,0x65,0x2c,0x0,0x6a,0x66,0x2c,0x0,0x28,0x1b,0x2d,0x0, 0x91,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x64,0x2c,0x0,0x93,0x65,0x2c, 0x0,0x6a,0x66,0x2c,0x0,0xc6,0xd1,0x2c,0x0,0x93,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xfc,0x64,0x2c,0x0,0x92,0x65,0x2c,0x0,0x71,0x66,0x2c,0x0,0x2,0x55, 0x2d,0x0,0x92,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x64,0x2c,0x0,0xa0, 0x65,0x2c,0x0,0x71,0x66,0x2c,0x0,0x8e,0xcf,0x2c,0x0,0xa0,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xfd,0x64,0x2c,0x0,0x93,0x65,0x2c,0x0,0x71,0x66,0x2c,0x0, 0x7c,0x3c,0x2d,0x0,0x93,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x64,0x2c, 0x0,0x8f,0x65,0x2c,0x0,0x6a,0x66,0x2c,0x0,0xc9,0x45,0x2d,0x0,0x8f,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xf8,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x75,0x66, 0x2c,0x0,0xec,0x3e,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd, 0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x6a,0x66,0x2c,0x0,0x88,0xc,0x2d,0x0,0x9a, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x66,0x2c,0x0,0x7b,0x3c,0x2d,0x0, 0x7d,0x3c,0x2d,0x0,0x7d,0x3c,0x2d,0x0,0x7a,0x3c,0x2d,0x0,0x0,0x0,0x0,0x0, 0x1,0xfd,0x64,0x2c,0x0,0x98,0x65,0x2c,0x0,0x74,0x66,0x2c,0x0,0x52,0x3c,0x2d, 0x0,0x98,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0x64,0x2c,0x0,0x99,0x65, 0x2c,0x0,0x6f,0x66,0x2c,0x0,0xab,0x45,0x2d,0x0,0x99,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2d,0x26,0x2c,0x0,0x1f,0x65,0x2c,0x0,0x20,0x65,0x2c,0x0,0xc6, 0xee,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x79,0xfa,0x2a,0x0, 0x2a,0x5e,0x2c,0x0,0x2c,0x5e,0x2c,0x0,0x5e,0xef,0x2c,0x0,0x2a,0x5e,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xfd,0x64,0x2c,0x0,0x93,0x65,0x2c,0x0,0x72,0x66,0x2c, 0x0,0x4b,0x49,0x2d,0x0,0x93,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x6b,0x66, 0x2c,0x0,0xc0,0x7e,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xbd,0x7e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfe,0x64,0x2c,0x0,0x9b,0x65,0x2c,0x0,0x6a, 0x66,0x2c,0x0,0x7f,0x78,0x2c,0x0,0x9b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x65,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x69,0x66,0x2c,0x0,0x4d,0xd2,0x2c,0x0, 0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5,0x65,0x2c,0x0,0x96,0x65,0x2c, 0x0,0x6b,0x66,0x2c,0x0,0xeb,0xe,0x2d,0x0,0x96,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xb,0x65,0x2c,0x0,0xa3,0x65,0x2c,0x0,0x6c,0x66,0x2c,0x0,0x2d,0x47, 0x2d,0x0,0xa3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x9,0x65,0x2c,0x0,0xa0, 0x65,0x2c,0x0,0x6a,0x66,0x2c,0x0,0xb,0x17,0x2d,0x0,0xa0,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x5,0x65,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x69,0x66,0x2c,0x0, 0x51,0xc5,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x6,0x65,0x2c, 0x0,0x9c,0x65,0x2c,0x0,0x6b,0x66,0x2c,0x0,0x89,0x70,0x2c,0x0,0x9c,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x6,0x65,0x2c,0x0,0xcf,0x65,0x2c,0x0,0x6b,0x66, 0x2c,0x0,0xe9,0xdf,0x2c,0x0,0xcf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe0, 0x22,0x2a,0x0,0xb9,0x64,0x2c,0x0,0xe8,0x66,0x2c,0x0,0xda,0x48,0x2d,0x0,0xb9, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe1,0x22,0x2a,0x0,0xab,0x64,0x2c,0x0, 0xeb,0x66,0x2c,0x0,0x90,0x1c,0x2d,0x0,0xab,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe1,0x22,0x2a,0x0,0xce,0x5d,0x2c,0x0,0x1,0x67,0x2c,0x0,0x8a,0xce,0x2c, 0x0,0xce,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe0,0x22,0x2a,0x0,0x95,0x64, 0x2c,0x0,0xec,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0x95,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe0,0x22,0x2a,0x0,0x93,0x64,0x2c,0x0,0xeb,0x66,0x2c,0x0,0xe2, 0x46,0x2d,0x0,0x93,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe0,0x22,0x2a,0x0, 0xc4,0x5d,0x2c,0x0,0x3,0x67,0x2c,0x0,0x60,0x4e,0x2d,0x0,0xc4,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xea,0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0,0x6,0x67,0x2c, 0x0,0x1c,0xc,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22, 0x2a,0x0,0xa8,0x64,0x2c,0x0,0xf5,0x66,0x2c,0x0,0x19,0x7a,0x2c,0x0,0xa8,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xea,0x22,0x2a,0x0,0xa8,0x5d,0x2c,0x0,0x3, 0x67,0x2c,0x0,0x20,0xd1,0x2c,0x0,0xa8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe8,0x22,0x2a,0x0,0xec,0x64,0x2c,0x0,0xef,0x66,0x2c,0x0,0x8b,0x4e,0x2d,0x0, 0xec,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9,0x22,0x2a,0x0,0x22,0x5e,0x2c, 0x0,0xc,0x67,0x2c,0x0,0x4e,0xc4,0x2c,0x0,0x20,0x5e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xea,0x22,0x2a,0x0,0xdd,0x5d,0x2c,0x0,0x6,0x67,0x2c,0x0,0xcd,0x56, 0x2d,0x0,0xdd,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x8e,0xe2,0x2a,0x0,0x37, 0x65,0x2c,0x0,0x38,0x65,0x2c,0x0,0xc6,0xed,0x2c,0x0,0x34,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xbc,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0xc0,0x39,0x2c,0x0, 0xa6,0x97,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7b,0x1f,0x2a, 0x0,0xb3,0x53,0x2b,0x0,0x9f,0xdd,0x2b,0x0,0xce,0xef,0x2c,0x0,0x30,0xdd,0x2b, 0x0,0x0,0x0,0x0,0x0,0x1,0xef,0x22,0x2a,0x0,0xe7,0x5d,0x2c,0x0,0xd,0x67, 0x2c,0x0,0x94,0x83,0x2d,0x0,0xe7,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a, 0x1f,0x2a,0x0,0xef,0xe1,0x2a,0x0,0x34,0x26,0x2c,0x0,0x8e,0xe9,0x2c,0x0,0xdd, 0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xed,0x22,0x2a,0x0,0xff,0x5d,0x2c,0x0, 0x1,0x67,0x2c,0x0,0xb9,0x55,0x2d,0x0,0xff,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xbd,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0xd1,0x39,0x2c,0x0,0xa2,0xe8,0x2c, 0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xed,0x22,0x2a,0x0,0xff,0x5d, 0x2c,0x0,0xe,0x67,0x2c,0x0,0x1e,0x3d,0x2d,0x0,0xff,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xd,0xa7,0x2a,0x0,0x92,0xe2,0x2a,0x0,0xd3, 0xb8,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xec,0x22,0x2a,0x0, 0xc2,0x65,0x2c,0x0,0xe9,0x66,0x2c,0x0,0xf7,0x46,0x2d,0x0,0xc2,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xee,0x22,0x2a,0x0,0xff,0x5d,0x2c,0x0,0x1,0x67,0x2c, 0x0,0xc2,0x45,0x2d,0x0,0xff,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xee,0x22, 0x2a,0x0,0xce,0x5d,0x2c,0x0,0x7,0x67,0x2c,0x0,0x28,0x79,0x2c,0x0,0xce,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xeb,0x22,0x2a,0x0,0x90,0x64,0x2c,0x0,0xf2, 0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0x90,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe9,0x22,0x2a,0x0,0xf5,0x5d,0x2c,0x0,0x8,0x67,0x2c,0x0,0x7d,0x3c,0x2d,0x0, 0xf5,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xeb,0x22,0x2a,0x0,0x97,0x64,0x2c, 0x0,0xf1,0x66,0x2c,0x0,0xf7,0x54,0x2d,0x0,0x97,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x79,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0xa3,0xdd,0x2b,0x0,0xab,0xef, 0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0xea,0x22,0x2a,0x0,0xe2, 0x5d,0x2c,0x0,0x6,0x67,0x2c,0x0,0x7b,0x4e,0x2d,0x0,0xe2,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xeb,0x22,0x2a,0x0,0xfa,0x65,0x2c,0x0,0xfb,0x65,0x2c,0x0, 0xec,0x47,0x2d,0x0,0xf9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x94,0x19,0x2a, 0x0,0x73,0x1f,0x2a,0x0,0x40,0x26,0x2c,0x0,0x50,0xef,0x2c,0x0,0xdd,0x25,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xe0,0xe1,0x2a,0x0,0xd6,0x39, 0x2c,0x0,0x4c,0x99,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9, 0x22,0x2a,0x0,0xb,0x64,0x2c,0x0,0xf7,0x66,0x2c,0x0,0xcb,0x56,0x2d,0x0,0xb, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xa8,0x53,0x2b,0x0, 0xc2,0xdd,0x2b,0x0,0xf0,0xea,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0, 0x1,0x95,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x46,0x26,0x2c,0x0,0xc8,0xef,0x2c, 0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f, 0x2a,0x0,0xdd,0x39,0x2c,0x0,0x28,0xf0,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0xcb,0xdd,0x2b,0x0,0xe4, 0xef,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0, 0xdd,0xe1,0x2a,0x0,0x4a,0x26,0x2c,0x0,0x46,0xef,0x2c,0x0,0xdd,0x25,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xb1,0xf4,0x2a,0x0,0x18,0x5e,0x2c,0x0,0x19,0x5e,0x2c, 0x0,0xd2,0xef,0x2c,0x0,0x16,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22, 0x2a,0x0,0xbf,0x5d,0x2c,0x0,0x1b,0x67,0x2c,0x0,0x17,0x47,0x2d,0x0,0xbf,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xeb,0x22,0x2a,0x0,0x85,0x64,0x2c,0x0,0xfe, 0x66,0x2c,0x0,0x21,0xd7,0x2c,0x0,0x85,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe8,0x22,0x2a,0x0,0xa5,0x64,0x2c,0x0,0x3,0x67,0x2c,0x0,0xe6,0x46,0x2d,0x0, 0xa5,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfb,0x66,0x2c,0x0,0x16,0x70,0x2c, 0x0,0x1c,0x70,0x2c,0x0,0x92,0x83,0x2d,0x0,0x17,0x70,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe2,0x63,0x2c,0x0,0x96,0x64,0x2c,0x0,0x23,0x66,0x2c,0x0,0x2b,0x78, 0x2c,0x0,0x96,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x17,0x6b,0x2a,0x0,0x5b, 0x97,0x2c,0x0,0x87,0x97,0x2c,0x0,0x86,0xef,0x2c,0x0,0x61,0x97,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0xbf,0x5d,0x2c,0x0,0xe,0x67,0x2c,0x0, 0x63,0x44,0x2d,0x0,0xbf,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xc4,0x19,0x2a, 0x0,0xa6,0x1f,0x2a,0x0,0xe3,0x39,0x2c,0x0,0xa6,0xee,0x2c,0x0,0x3e,0x39,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0xd1,0xdd, 0x2b,0x0,0x84,0xde,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x19, 0x3e,0x2a,0x0,0xc7,0xe1,0x2a,0x0,0xb8,0xf4,0x2a,0x0,0x7b,0xe1,0x2c,0x0,0x93, 0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xea,0x22,0x2a,0x0,0xad,0x5d,0x2c,0x0, 0xd,0x67,0x2c,0x0,0x7d,0x3c,0x2d,0x0,0xad,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xf2,0x22,0x2a,0x0,0x69,0x64,0x2c,0x0,0x3,0x67,0x2c,0x0,0x61,0xe8,0x2c, 0x0,0x69,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf2,0x22,0x2a,0x0,0xaf,0x64, 0x2c,0x0,0x1,0x67,0x2c,0x0,0xe0,0xc,0x2d,0x0,0xaf,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xf1,0x22,0x2a,0x0,0x22,0x5e,0x2c,0x0,0x18,0x67,0x2c,0x0,0x86, 0x45,0x2d,0x0,0x20,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1e,0x6b,0x2a,0x0, 0x5b,0x97,0x2c,0x0,0x87,0x97,0x2c,0x0,0x50,0xe1,0x2c,0x0,0x61,0x97,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0x17,0xe2,0x2a,0x0,0xe6,0x39,0x2c, 0x0,0x40,0xef,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f, 0x2a,0x0,0xb3,0x53,0x2b,0x0,0xd5,0xdd,0x2b,0x0,0xc7,0xed,0x2c,0x0,0x30,0xdd, 0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0xf1,0x22,0x2a,0x0,0x6d,0x65,0x2c,0x0,0xfc, 0x66,0x2c,0x0,0x91,0x83,0x2d,0x0,0x6d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xf0,0x22,0x2a,0x0,0xc,0x65,0x2c,0x0,0x0,0x67,0x2c,0x0,0x92,0x3d,0x2d,0x0, 0xc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf3,0x22,0x2a,0x0,0xb8,0x65,0x2c, 0x0,0xfa,0x66,0x2c,0x0,0x5a,0xcf,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2b,0x3e,0x2a,0x0,0xde,0xe1,0x2a,0x0,0xbf,0xf4,0x2a,0x0,0x0,0xee, 0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x6b,0x2a,0x0,0x5b, 0x97,0x2c,0x0,0x89,0x97,0x2c,0x0,0x56,0xef,0x2c,0x0,0x61,0x97,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x61,0x1f,0x2a,0x0,0x73,0x3c,0x2a,0x0,0xc7,0xf4,0x2a,0x0, 0x2,0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x6b,0x2a, 0x0,0x5b,0x97,0x2c,0x0,0x88,0x97,0x2c,0x0,0x54,0xed,0x2c,0x0,0x61,0x97,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x7c,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0xdb,0xdd, 0x2b,0x0,0x6e,0xef,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x2d, 0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x88,0x97,0x2c,0x0,0x4f,0xe1,0x2c,0x0,0x61, 0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x77,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0, 0xe9,0xdd,0x2b,0x0,0xdf,0xec,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0, 0x1,0x1a,0x3e,0x2a,0x0,0xde,0xe1,0x2a,0x0,0xcb,0xf4,0x2a,0x0,0xfc,0xe0,0x2c, 0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x6b,0x2a,0x0,0x5b,0x97, 0x2c,0x0,0x85,0x97,0x2c,0x0,0x3f,0xe9,0x2c,0x0,0x60,0x97,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x79,0x1f,0x2a,0x0,0x81,0x53,0x2b,0x0,0xf0,0xdd,0x2b,0x0,0xde, 0xee,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x1f,0x2a,0x0, 0xf5,0x3d,0x2a,0x0,0xd5,0xf4,0x2a,0x0,0x15,0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x40,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x82,0x97,0x2c, 0x0,0x9,0xe8,0x2c,0x0,0x61,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f, 0x2a,0x0,0xf5,0x3d,0x2a,0x0,0xdd,0xf4,0x2a,0x0,0x4a,0xec,0x2c,0x0,0x93,0xf4, 0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0xf6, 0xdd,0x2b,0x0,0x1a,0xee,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1, 0x48,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x81,0x97,0x2c,0x0,0x3d,0xe9,0x2c,0x0, 0x61,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x1f,0x2a,0x0,0xf5,0x3d,0x2a, 0x0,0xe4,0xf4,0x2a,0x0,0xd5,0xef,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0xab,0x1f,0x2a,0x0,0xbc,0xb1,0x2a,0x0,0x4d,0x4c,0x2c,0x0,0xbb,0xd3, 0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x77,0x1f,0x2a,0x0,0xb3, 0x53,0x2b,0x0,0xfd,0xdd,0x2b,0x0,0x59,0xef,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0, 0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x51,0x4c,0x2c,0x0, 0x4,0xee,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x50,0x6b,0x2a, 0x0,0x5b,0x97,0x2c,0x0,0x82,0x97,0x2c,0x0,0x1a,0xe9,0x2c,0x0,0x61,0x97,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x1f,0x2a,0x0,0xdd,0x3d,0x2a,0x0,0xec,0xf4, 0x2a,0x0,0xe6,0xec,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x7a, 0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0x3,0xde,0x2b,0x0,0xbc,0xef,0x2c,0x0,0x30, 0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0xdc,0xe1,0x2a,0x0, 0x3e,0xc,0x2c,0x0,0x7a,0xee,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xad,0x1f,0x2a,0x0,0xcf,0x3d,0x2a,0x0,0x66,0x4c,0x2c,0x0,0x77,0xea,0x2c, 0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9,0x22,0x2a,0x0,0xe7,0x5d, 0x2c,0x0,0x2b,0x67,0x2c,0x0,0x47,0x46,0x2d,0x0,0xe7,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0xf0,0xf4,0x2a,0x0,0x4f, 0xd4,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0, 0xbb,0x5d,0x2c,0x0,0x23,0x67,0x2c,0x0,0xdd,0x18,0x2d,0x0,0xbb,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0x71,0x64,0x2c,0x0,0xa,0x67,0x2c, 0x0,0x58,0x56,0x2d,0x0,0x71,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22, 0x2a,0x0,0xbf,0x5d,0x2c,0x0,0x23,0x67,0x2c,0x0,0x25,0x49,0x2d,0x0,0xbf,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0x8f,0x64,0x2c,0x0,0xd, 0x67,0x2c,0x0,0x52,0x3c,0x2d,0x0,0x8f,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe9,0x22,0x2a,0x0,0xf1,0x5d,0x2c,0x0,0x22,0x67,0x2c,0x0,0xfa,0x45,0x2d,0x0, 0xf0,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0x9,0x65,0x2c, 0x0,0x7,0x67,0x2c,0x0,0x7e,0xe0,0x2c,0x0,0x9,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xea,0x22,0x2a,0x0,0xc2,0x64,0x2c,0x0,0x0,0x67,0x2c,0x0,0x6b,0x1c, 0x2d,0x0,0xc2,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9,0x22,0x2a,0x0,0xfa, 0x5d,0x2c,0x0,0x18,0x67,0x2c,0x0,0xe9,0xeb,0x2c,0x0,0xfa,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xdc,0x5d,0x2c,0x0,0x15,0x67,0x2c,0x0, 0x7b,0x47,0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x56,0x6b,0x2a, 0x0,0xf,0x95,0x2c,0x0,0x8b,0x97,0x2c,0x0,0x19,0xde,0x2c,0x0,0x11,0x95,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0xc4,0x63,0x2c,0x0,0x4,0x67, 0x2c,0x0,0x93,0x4e,0x2d,0x0,0xc1,0x63,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a, 0x1f,0x2a,0x0,0x21,0x3d,0x2a,0x0,0x43,0xc,0x2c,0x0,0x9f,0xee,0x2c,0x0,0x15, 0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0xf7,0xe1,0x2a,0x0, 0x75,0x4c,0x2c,0x0,0xff,0xee,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe8,0x22,0x2a,0x0,0xa5,0x5d,0x2c,0x0,0x19,0x67,0x2c,0x0,0x1f,0xed,0x2c, 0x0,0xa5,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfa,0xf4,0x2a,0x0,0x3f,0x64, 0x2c,0x0,0x40,0x64,0x2c,0x0,0xf3,0xce,0x2c,0x0,0x3c,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xf9,0x64,0x2c,0x0,0x2,0x6d,0x2c,0x0,0xad, 0xed,0x2c,0x0,0xf9,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x22,0x2a,0x0, 0x59,0x64,0x2c,0x0,0x0,0x6d,0x2c,0x0,0x64,0x56,0x2d,0x0,0x59,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x49,0xc,0x2c,0x0,0xf,0x5e,0x2c,0x0,0x10,0x5e,0x2c, 0x0,0x69,0xeb,0x2c,0x0,0xd,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xae,0x1f, 0x2a,0x0,0x13,0x5e,0x2c,0x0,0xb5,0x7f,0x2c,0x0,0x9d,0xef,0x2c,0x0,0x8f,0x7f, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x66,0x62,0x2c,0x0,0xa6,0x64,0x2c,0x0,0x0, 0x6d,0x2c,0x0,0x86,0x83,0x2d,0x0,0xa6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x65,0x62,0x2c,0x0,0x5b,0x64,0x2c,0x0,0x4,0x6d,0x2c,0x0,0x98,0xed,0x2c,0x0, 0x5b,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x4c,0x2c,0x0,0xac,0x5e,0x2c, 0x0,0xad,0x5e,0x2c,0x0,0x19,0xef,0x2c,0x0,0xab,0x5e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x6e,0x62,0x2c,0x0,0x89,0x64,0x2c,0x0,0x3,0x6d,0x2c,0x0,0x94,0x83, 0x2d,0x0,0x89,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3,0xf5,0x2a,0x0,0x95, 0x5e,0x2c,0x0,0x96,0x5e,0x2c,0x0,0x9e,0xdc,0x2c,0x0,0x93,0x5e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x6a,0x62,0x2c,0x0,0x4b,0x64,0x2c,0x0,0xff,0x6c,0x2c,0x0, 0x75,0x45,0x2d,0x0,0x4b,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5f,0x62,0x2c, 0x0,0xa2,0x64,0x2c,0x0,0x8,0x6d,0x2c,0x0,0xa9,0xce,0x2c,0x0,0xa2,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x22,0x2a,0x0,0x82,0x64,0x2c,0x0,0xd,0x6d, 0x2c,0x0,0x56,0x4e,0x2d,0x0,0x82,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5f, 0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x83,0x97,0x2c,0x0,0x8f,0xef,0x2c,0x0,0x60, 0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x65,0x62,0x2c,0x0,0xa7,0x64,0x2c,0x0, 0x7,0x6d,0x2c,0x0,0xd1,0xc,0x2d,0x0,0xa7,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xad,0x1f,0x2a,0x0,0xe0,0xe1,0x2a,0x0,0xbd,0x7f,0x2c,0x0,0x92,0x97,0x2c, 0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x19,0x2a,0x0,0x73,0x1f, 0x2a,0x0,0x4f,0xc,0x2c,0x0,0xd0,0xb6,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xf4,0xe1,0x2a,0x0,0x87,0x4c,0x2c,0x0,0xa0, 0xea,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xdf,0x22,0x2a,0x0, 0xe,0x64,0x2c,0x0,0x7,0x6d,0x2c,0x0,0x15,0x57,0x2d,0x0,0xd,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x64,0x62,0x2c,0x0,0xb2,0x64,0x2c,0x0,0x8,0x6d,0x2c, 0x0,0x2a,0xee,0x2c,0x0,0xb2,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x79,0x1f, 0x2a,0x0,0xf1,0xe1,0x2a,0x0,0x52,0xc,0x2c,0x0,0xeb,0xef,0x2c,0x0,0x15,0xc, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe1,0x22,0x2a,0x0,0x81,0x64,0x2c,0x0,0x9, 0x6d,0x2c,0x0,0xe4,0xea,0x2c,0x0,0x81,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x67,0x62,0x2c,0x0,0xb6,0x64,0x2c,0x0,0x6,0x6d,0x2c,0x0,0x92,0x83,0x2d,0x0, 0xb6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5e,0x62,0x2c,0x0,0xab,0x64,0x2c, 0x0,0xd,0x6d,0x2c,0x0,0xf0,0x82,0x2d,0x0,0xab,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe7,0x22,0x2a,0x0,0xa4,0x64,0x2c,0x0,0xd,0x6d,0x2c,0x0,0xf2,0x7b, 0x2d,0x0,0xa4,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0x55, 0x64,0x2c,0x0,0x9,0x6d,0x2c,0x0,0xf0,0x3e,0x2d,0x0,0x55,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xe1,0x63,0x2c,0x0,0xf0,0x64,0x2c,0x0,0x1a,0x66,0x2c,0x0, 0x28,0x44,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a, 0x0,0xa6,0x1f,0x2a,0x0,0xc4,0x7f,0x2c,0x0,0xf6,0xef,0x2c,0x0,0x8e,0x7f,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xb4,0x64,0x2c,0x0,0x5,0x6d, 0x2c,0x0,0x19,0x57,0x2d,0x0,0xb4,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x66, 0x62,0x2c,0x0,0x9d,0x64,0x2c,0x0,0xc,0x6d,0x2c,0x0,0x3c,0x45,0x2d,0x0,0x9d, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x66,0x62,0x2c,0x0,0x7b,0x64,0x2c,0x0, 0xfb,0x6c,0x2c,0x0,0x4d,0xee,0x2c,0x0,0x7b,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x68,0x6b,0x2a,0x0,0x8f,0x96,0x2c,0x0,0x84,0x97,0x2c,0x0,0x70,0xe2,0x2c, 0x0,0x8d,0x96,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a,0x0,0xd7,0x65, 0x2c,0x0,0xec,0x65,0x2c,0x0,0xe4,0x75,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x5d,0x62,0x2c,0x0,0x9e,0x64,0x2c,0x0,0xff,0x6c,0x2c,0x0,0xe6, 0xe2,0x2c,0x0,0x9e,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x66,0x62,0x2c,0x0, 0x97,0x64,0x2c,0x0,0xfc,0x6c,0x2c,0x0,0x2f,0xdd,0x2c,0x0,0x97,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a,0x0,0xb1,0x64,0x2c,0x0,0xfd,0x6c,0x2c, 0x0,0x7c,0x3c,0x2d,0x0,0xb1,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5f,0x62, 0x2c,0x0,0x13,0x65,0x2c,0x0,0xfe,0x6c,0x2c,0x0,0xcf,0x43,0x2d,0x0,0x13,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0xa, 0xf5,0x2a,0x0,0xe,0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x6f,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x85,0x97,0x2c,0x0,0x99,0xdf,0x2c,0x0, 0x61,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf8,0x63,0x2c,0x0,0xb5,0x64,0x2c, 0x0,0x25,0x66,0x2c,0x0,0x1f,0x76,0x2d,0x0,0xb5,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xcd,0x89,0x5,0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x86,0xfa, 0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x44, 0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x7b,0xbd,0x7,0x0,0x79,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x98,0x89,0x5,0x0,0xf9,0xb9,0x7,0x0,0xa2,0xbd,0x7,0x0, 0x9f,0xf5,0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xae,0x1f,0x2a, 0x0,0xb2,0xe1,0x2a,0x0,0x8a,0x4c,0x2c,0x0,0xbd,0xd3,0x2c,0x0,0xe2,0x4b,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xf4,0xe1,0x2a,0x0,0xc7,0x7f, 0x2c,0x0,0xf2,0xed,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x98, 0x89,0x5,0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0xfd,0xfe,0x7,0x0,0x79, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x44,0x8e,0x5,0x0, 0x46,0x8e,0x5,0x0,0x77,0x1,0x8,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x79,0x1f,0x2a,0x0,0xdf,0xe1,0x2a,0x0,0x5d,0xc,0x2c,0x0,0x58,0xed,0x2c, 0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x6b,0x2a,0x0,0x43,0x95, 0x2c,0x0,0x8c,0x97,0x2c,0x0,0xb9,0xdd,0x2c,0x0,0x41,0x95,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0x13,0xf5,0x2a,0x0,0x44, 0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0, 0xcc,0x3d,0x2a,0x0,0x8f,0x4c,0x2c,0x0,0x49,0xe2,0x2c,0x0,0xe2,0x4b,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0xef,0xe1,0x2a,0x0,0x64,0xc,0x2c, 0x0,0xd6,0xb7,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19, 0x2a,0x0,0xa6,0x1f,0x2a,0x0,0xd2,0x7f,0x2c,0x0,0xcc,0x98,0x2c,0x0,0x8e,0x7f, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0x17, 0xf5,0x2a,0x0,0x4a,0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x7b,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x82,0x97,0x2c,0x0,0xad,0xef,0x2c,0x0, 0x61,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f,0x2a, 0x0,0x93,0x4c,0x2c,0x0,0x88,0x97,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xac,0x1f,0x2a,0x0,0x1e,0x6f,0x2c,0x0,0xd8,0x7f,0x2c,0x0,0xc5,0x98, 0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0x41, 0xb1,0x2a,0x0,0x6c,0xc,0x2c,0x0,0xe2,0xef,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x61,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0x24,0xf5,0x2a,0x0, 0xd0,0xef,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x8b,0x6b,0x2a, 0x0,0xc2,0x96,0x2c,0x0,0x89,0x97,0x2c,0x0,0xdf,0xb8,0x2c,0x0,0xc0,0x96,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xc3,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0xd0,0xa8, 0x2c,0x0,0xd1,0xee,0x2c,0x0,0xf9,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xc5, 0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x96,0x4c,0x2c,0x0,0x71,0xee,0x2c,0x0,0xe2, 0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0x13,0x6f,0x2c,0x0, 0xde,0x7f,0x2c,0x0,0x88,0x97,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x77,0x1f,0x2a,0x0,0x1a,0xe2,0x2a,0x0,0x72,0xc,0x2c,0x0,0x1,0xe9,0x2c, 0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xae,0x1f,0x2a,0x0,0x1b,0xe2, 0x2a,0x0,0xd5,0xa8,0x2c,0x0,0xd4,0xcf,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x97,0x89,0x5,0x0,0xa5,0xa6,0x5,0x0,0xa7,0xa6,0x5,0x0,0x5c, 0x4,0x8,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0, 0xa3,0xa6,0x5,0x0,0xa5,0xa6,0x5,0x0,0xcc,0xff,0x7,0x0,0x79,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x91,0x6b,0x2a,0x0,0xb,0x95,0x2c,0x0,0x92,0x97,0x2c, 0x0,0xde,0xd5,0x2c,0x0,0xa,0x95,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89, 0x5,0x0,0xa5,0xa6,0x5,0x0,0xa7,0xa6,0x5,0x0,0xb7,0xeb,0x7,0x0,0x79,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x3e,0x2a,0x0,0xef,0xe1,0x2a,0x0,0x2a, 0xf5,0x2a,0x0,0x2b,0xed,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x95,0x89,0x5,0x0,0x33,0x8e,0x5,0x0,0x34,0x8e,0x5,0x0,0x5a,0xf6,0x7,0x0, 0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a, 0x0,0xf,0xcb,0x2a,0x0,0xe8,0xec,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0x95,0x89,0x5,0x0,0x34,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0x57,0xce, 0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x44, 0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0xba,0xff,0x7,0x0,0x79,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x42,0xba,0x7,0x0,0xdc,0xbd,0x7,0x0, 0xbd,0xff,0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x98,0x89,0x5, 0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0xca,0xb,0x8,0x0,0x79,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x37,0x8e,0x5,0x0,0x38,0x8e, 0x5,0x0,0x82,0xb,0x8,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xac, 0x1f,0x2a,0x0,0xdc,0xe1,0x2a,0x0,0x2,0x4c,0x2c,0x0,0x6,0xf0,0x2c,0x0,0xe2, 0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0, 0xe3,0x7f,0x2c,0x0,0xf4,0xef,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x96,0x89,0x5,0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0x49,0xba,0x7, 0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f, 0x2a,0x0,0xdc,0xa8,0x2c,0x0,0x2d,0xf0,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x33,0x8e,0x5,0x0,0x35,0x8e,0x5,0x0,0x79, 0xbd,0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x96,0x89,0x5,0x0, 0x33,0x8e,0x5,0x0,0x34,0x8e,0x5,0x0,0xe8,0x3,0x8,0x0,0x79,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x96,0x89,0x5,0x0,0xa3,0xa6,0x5,0x0,0xa5,0xa6,0x5, 0x0,0x80,0xb,0x8,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x82,0x19, 0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x17,0xcb,0x2a,0x0,0xa4,0xb4,0x2c,0x0,0xd5,0xca, 0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x77,0x1f,0x2a,0x0,0x19,0xb1,0x2a,0x0,0x79, 0xc,0x2c,0x0,0xe6,0xef,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x98,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x88,0x97,0x2c,0x0,0x61,0xeb,0x2c,0x0, 0x61,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xf5,0x3d,0x2a, 0x0,0x3c,0xf5,0x2a,0x0,0xcd,0xe0,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0xaf,0x1f,0x2a,0x0,0xc7,0xe1,0x2a,0x0,0x8,0x4c,0x2c,0x0,0x1b,0x98, 0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbf,0x19,0x2a,0x0,0xa6, 0x1f,0x2a,0x0,0xe2,0xa8,0x2c,0x0,0x5e,0xba,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x85,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x26,0xcb,0x2a,0x0, 0x20,0xb9,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a, 0x0,0xc7,0xe1,0x2a,0x0,0xe7,0x7f,0x2c,0x0,0x73,0xef,0x2c,0x0,0x8e,0x7f,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xa2,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x89,0x97, 0x2c,0x0,0x10,0xe8,0x2c,0x0,0x60,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x98, 0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x84,0xc,0x2c,0x0,0xeb,0xed,0x2c,0x0,0x15, 0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0, 0x49,0xf5,0x2a,0x0,0xa3,0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0, 0x1,0x33,0xcb,0x2a,0x0,0xd3,0xe1,0x2a,0x0,0xd4,0xe1,0x2a,0x0,0x1a,0xe1,0x2c, 0x0,0xd2,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x1f,0x2a,0x0,0xd8,0xe1, 0x2a,0x0,0xf,0x4c,0x2c,0x0,0x89,0x97,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xad,0x96,0x2c,0x0,0xe6,0xa8,0x2c,0x0,0x56, 0xba,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0, 0x8,0xe2,0x2a,0x0,0xf1,0x7f,0x2c,0x0,0x9b,0x99,0x2c,0x0,0x8e,0x7f,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0x28,0xe2,0x2a,0x0,0x89,0xc,0x2c, 0x0,0x57,0xef,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xa7,0x6b, 0x2a,0x0,0x91,0x95,0x2c,0x0,0x8c,0x97,0x2c,0x0,0xf8,0xe7,0x2c,0x0,0x91,0x95, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0x4e, 0xf5,0x2a,0x0,0x96,0xb7,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0xac,0x1f,0x2a,0x0,0xfb,0xe1,0x2a,0x0,0x16,0x4c,0x2c,0x0,0xb9,0xef,0x2c,0x0, 0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x83,0x19,0x2a,0x0,0x5b,0x1f,0x2a, 0x0,0x3b,0xcb,0x2a,0x0,0xf1,0xef,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0xad,0x1f,0x2a,0x0,0x9b,0x95,0x2c,0x0,0x17,0xa8,0x2c,0x0,0xdc,0xce, 0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19,0x2a,0x0,0xa6, 0x1f,0x2a,0x0,0xf5,0x7f,0x2c,0x0,0xe8,0xef,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0x41,0x3d,0x2a,0x0,0x8f,0xc,0x2c,0x0, 0x65,0xe0,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x83,0x19,0x2a, 0x0,0x5b,0x1f,0x2a,0x0,0x4b,0xcb,0x2a,0x0,0x67,0xee,0x2c,0x0,0xd5,0xca,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xe9,0xb1,0x2a,0x0,0x19,0x4c, 0x2c,0x0,0xb0,0xef,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xab, 0x1f,0x2a,0x0,0xff,0xe1,0x2a,0x0,0x1d,0xa8,0x2c,0x0,0xe6,0xba,0x2c,0x0,0xf8, 0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x66,0x2c,0x0,0xd,0x70,0x2c,0x0, 0x12,0x70,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xe,0x70,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x96,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x96,0xc,0x2c,0x0,0x20,0xf0,0x2c, 0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f, 0x2a,0x0,0x54,0xcb,0x2a,0x0,0xc4,0xef,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0, 0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0xc9,0x3d,0x2a,0x0,0x25,0x4c,0x2c,0x0,0xec, 0xed,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0, 0x39,0x8e,0x5,0x0,0x3b,0x8e,0x5,0x0,0xaf,0x9,0x8,0x0,0x79,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0x9d,0x96,0x2c,0x0,0x22,0xa8,0x2c, 0x0,0x3c,0xee,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19, 0x2a,0x0,0xa6,0x1f,0x2a,0x0,0xfb,0x7f,0x2c,0x0,0x43,0xee,0x2c,0x0,0x8e,0x7f, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x96,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x98, 0xc,0x2c,0x0,0xb4,0xb8,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x85,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x63,0xcb,0x2a,0x0,0x3b,0xef,0x2c,0x0, 0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0x20,0xe2,0x2a, 0x0,0x2d,0x4c,0x2c,0x0,0x55,0xef,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x96,0x89,0x5,0x0,0xa3,0xa6,0x5,0x0,0xa4,0xa6,0x5,0x0,0xa7,0xbd, 0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0xb0, 0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x64,0x2,0x8,0x0,0x79,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x95,0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0, 0x60,0x4,0x8,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x95,0x89,0x5, 0x0,0x41,0x8e,0x5,0x0,0x42,0x8e,0x5,0x0,0x5d,0xf7,0x7,0x0,0x79,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0x98,0x89,0x5,0x0,0x38,0x8e,0x5,0x0,0x39,0x8e, 0x5,0x0,0xbf,0xf2,0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x96, 0x89,0x5,0x0,0x41,0x8e,0x5,0x0,0x42,0x8e,0x5,0x0,0xb8,0xb,0x8,0x0,0x79, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0, 0x64,0x65,0x2c,0x0,0xcb,0x75,0x2c,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xca,0x89,0x5,0x0,0x32,0x8e,0x5,0x0,0x34,0x8e,0x5,0x0,0x2a,0xe1,0x7, 0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0xdf,0xe1, 0x2a,0x0,0x26,0xa8,0x2c,0x0,0xda,0xee,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xce,0x89,0x5,0x0,0xa1,0xa6,0x5,0x0,0xa3,0xa6,0x5,0x0,0xd3, 0x6,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xc8,0x89,0x5,0x0, 0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0xab,0xbd,0x7,0x0,0x7a,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0x97,0xbb,0x7,0x0,0x9a,0xbb,0x7, 0x0,0xca,0xfc,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcd,0x89, 0x5,0x0,0x35,0x8e,0x5,0x0,0x36,0x8e,0x5,0x0,0x3b,0xf7,0x7,0x0,0x7a,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0x36,0x8e,0x5,0x0,0x37, 0x8e,0x5,0x0,0x5d,0xf2,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0xce,0x89,0x5,0x0,0xa4,0xa6,0x5,0x0,0xa5,0xa6,0x5,0x0,0xb1,0x2,0x8,0x0, 0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0xa1,0xa6,0x5, 0x0,0xa2,0xa6,0x5,0x0,0x41,0xb,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0xcb,0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0xf8,0xf3, 0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6, 0x1f,0x2a,0x0,0x2,0x80,0x2c,0x0,0x4c,0xc5,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xc9,0x89,0x5,0x0,0x39,0x8e,0x5,0x0,0x3a,0x8e,0x5,0x0, 0x68,0xf5,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5, 0x0,0x34,0x8e,0x5,0x0,0x35,0x8e,0x5,0x0,0x9d,0xbd,0x7,0x0,0x7a,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0xa7,0xa6,0x5,0x0,0xa9,0xa6, 0x5,0x0,0x10,0xfa,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x96, 0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0xa8,0xc,0x2c,0x0,0x37,0xef,0x2c,0x0,0x15, 0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0, 0x6b,0xcb,0x2a,0x0,0xc2,0xb1,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0, 0x1,0xcc,0x89,0x5,0x0,0xc0,0xe5,0x6,0x0,0xc1,0xe5,0x6,0x0,0x55,0x0,0x8, 0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xc9,0x89,0x5,0x0,0xa1,0xa6, 0x5,0x0,0xa4,0xa6,0x5,0x0,0xdc,0xfb,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0xad,0xa6,0x5,0x0,0xaf,0xa6,0x5,0x0,0xb3, 0x2,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xc8,0x89,0x5,0x0, 0xb7,0xa6,0x5,0x0,0xb8,0xa6,0x5,0x0,0x2d,0xb,0x8,0x0,0x7a,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0,0xa5,0xa6,0x5,0x0,0xa6,0xa6,0x5, 0x0,0x8d,0x2,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89, 0x5,0x0,0x40,0x8e,0x5,0x0,0x42,0x8e,0x5,0x0,0x83,0xff,0x7,0x0,0x7a,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37, 0x8e,0x5,0x0,0x68,0xe5,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0xcc,0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0x96,0xfd,0x7,0x0, 0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcd,0x89,0x5,0x0,0xa5,0xa6,0x5, 0x0,0xa7,0xa6,0x5,0x0,0x86,0xe5,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0xcd,0x89,0x5,0x0,0x37,0x8e,0x5,0x0,0x38,0x8e,0x5,0x0,0x73,0xee, 0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0x37, 0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0x20,0xa9,0x7,0x0,0x7a,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0xc1,0x3e,0x5,0x0,0xa6,0x89,0x5,0x0,0xcd,0x89,0x5,0x0, 0x2e,0x3,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcd,0x89,0x5, 0x0,0x3a,0x8e,0x5,0x0,0x3b,0x8e,0x5,0x0,0xd2,0x1,0x8,0x0,0x7a,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xd6,0xb1,0x2a,0x0,0x22,0xe2,0x2a,0x0,0x35,0x4c, 0x2c,0x0,0x24,0xe8,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xc9, 0x89,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x84,0x7,0x8,0x0,0x7a, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0,0xb7,0xa6,0x5,0x0, 0xb9,0xa6,0x5,0x0,0xff,0xa,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0xad,0x1f,0x2a,0x0,0xc5,0x6e,0x2c,0x0,0x29,0xa8,0x2c,0x0,0x8e,0xb8,0x2c, 0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0,0x35,0x8e, 0x5,0x0,0x37,0x8e,0x5,0x0,0x72,0x9,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0xfa,0xe1,0x2a,0x0,0x5,0x80,0x2c,0x0,0x58, 0x98,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0, 0xb6,0xe1,0x2a,0x0,0xb0,0xc,0x2c,0x0,0x9d,0xee,0x2c,0x0,0x15,0xc,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0x5d,0xcc,0x6,0x0,0x5e,0xcc,0x6, 0x0,0x5d,0xe2,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xc9,0x89, 0x5,0x0,0x43,0x8e,0x5,0x0,0x44,0x8e,0x5,0x0,0xdd,0xdf,0x7,0x0,0x7a,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0x41,0x8e,0x5,0x0,0x42, 0x8e,0x5,0x0,0x6a,0xbd,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0xcd,0x89,0x5,0x0,0xa3,0xa6,0x5,0x0,0xa5,0xa6,0x5,0x0,0xdf,0x7,0x8,0x0, 0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0xaf,0xa6,0x5, 0x0,0xb1,0xa6,0x5,0x0,0x13,0xcf,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x82,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x78,0xcb,0x2a,0x0,0x8b,0xee, 0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0x3f, 0x8e,0x5,0x0,0x40,0x8e,0x5,0x0,0x60,0x6,0x8,0x0,0x7a,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xc9,0x3d,0x2a,0x0,0x3c,0x4c,0x2c,0x0, 0xce,0x98,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5, 0x0,0xb1,0xa6,0x5,0x0,0xb2,0xa6,0x5,0x0,0x6d,0xb,0x8,0x0,0x7a,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0xaf,0xa6,0x5,0x0,0xb1,0xa6, 0x5,0x0,0xe8,0xbd,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xca, 0x89,0x5,0x0,0x33,0x8e,0x5,0x0,0x34,0x8e,0x5,0x0,0xcd,0xfc,0x7,0x0,0x7a, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xce,0x89,0x5,0x0,0xa3,0xa6,0x5,0x0, 0xa5,0xa6,0x5,0x0,0xe,0xf3,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0xca,0x89,0x5,0x0,0xa3,0xa6,0x5,0x0,0xa5,0xa6,0x5,0x0,0x8c,0x4,0x8, 0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0x44,0x8e, 0x5,0x0,0x45,0x8e,0x5,0x0,0x1e,0xb,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0x2b,0xe2,0x2a,0x0,0x35,0xa8,0x2c,0x0,0xd5, 0xb9,0x2c,0x0,0xf9,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0, 0x35,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0xb5,0xbc,0x7,0x0,0x7a,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0,0xa4,0xa6,0x5,0x0,0xa6,0xa6,0x5, 0x0,0x4d,0xde,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89, 0x5,0x0,0xb5,0xa6,0x5,0x0,0xb6,0xa6,0x5,0x0,0xfd,0xf5,0x7,0x0,0x7a,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xdc,0xe1,0x2a,0x0,0x11, 0x80,0x2c,0x0,0x58,0x99,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xca,0x89,0x5,0x0,0xaf,0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x85,0x6,0x8,0x0, 0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0x9b,0x64,0x2c, 0x0,0x23,0x66,0x2c,0x0,0x4d,0xe,0x2d,0x0,0x9b,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xcd,0x89,0x5,0x0,0x39,0x8e,0x5,0x0,0x3a,0x8e,0x5,0x0,0xf,0x1, 0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0x34, 0x8e,0x5,0x0,0x35,0x8e,0x5,0x0,0x50,0xcd,0x7,0x0,0x7a,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0xc8,0x89,0x5,0x0,0x38,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0, 0x88,0xfe,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5, 0x0,0x41,0x8e,0x5,0x0,0x44,0x8e,0x5,0x0,0xcd,0xfa,0x7,0x0,0x7a,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0xa4,0xa6,0x5,0x0,0xa6,0xa6, 0x5,0x0,0x1b,0x4,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcc, 0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0x45,0xbb,0x7,0x0,0x7a, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xce,0x89,0x5,0x0,0xa4,0xa6,0x5,0x0, 0xa5,0xa6,0x5,0x0,0xa5,0xf2,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0xca,0x89,0x5,0x0,0x33,0x8e,0x5,0x0,0x34,0x8e,0x5,0x0,0xc,0x6,0x8, 0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x96,0x19,0x2a,0x0,0x73,0x1f, 0x2a,0x0,0xb8,0xc,0x2c,0x0,0x3f,0xba,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xcd,0x89,0x5,0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x87, 0xd4,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcd,0x89,0x5,0x0, 0xb0,0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0xba,0xf3,0x7,0x0,0x7a,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0xc8,0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37,0x8e,0x5, 0x0,0xd5,0xba,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x83,0x19, 0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x83,0xcb,0x2a,0x0,0xf6,0xed,0x2c,0x0,0xd5,0xca, 0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xce,0x89,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb2, 0xa6,0x5,0x0,0xdd,0x7,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0xac,0x1f,0x2a,0x0,0xd,0xe2,0x2a,0x0,0x3c,0xa8,0x2c,0x0,0x9f,0xef,0x2c,0x0, 0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0,0x35,0x8e,0x5, 0x0,0x37,0x8e,0x5,0x0,0xaa,0x2,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x27,0x8a,0x5,0x0,0x38,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0xa9,0xe3, 0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x8a,0x5,0x0,0x35, 0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0xe1,0x7,0x8,0x0,0x7b,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x23,0x8a,0x5,0x0,0xa7,0xa6,0x5,0x0,0xa8,0xa6,0x5,0x0, 0x79,0xfc,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a, 0x0,0x1,0xe2,0x2a,0x0,0x40,0x4c,0x2c,0x0,0xc5,0xee,0x2c,0x0,0xe2,0x4b,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0,0x18,0xba,0x7,0x0,0xe3,0xbd, 0x7,0x0,0x97,0x3,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x2b, 0x8a,0x5,0x0,0x45,0x8e,0x5,0x0,0x46,0x8e,0x5,0x0,0x9a,0xfa,0x7,0x0,0x7b, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x8a,0x5,0x0,0x44,0x8e,0x5,0x0, 0x45,0x8e,0x5,0x0,0x62,0x0,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x1e,0x8a,0x5,0x0,0x43,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x7d,0x3,0x8, 0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x8a,0x5,0x0,0xaf,0xa6, 0x5,0x0,0xb1,0xa6,0x5,0x0,0x84,0xff,0x7,0x0,0xf0,0xd,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0x1f,0x8a,0x5,0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0xd, 0xf5,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x8a,0x5,0x0, 0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x68,0x0,0x8,0x0,0x7b,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x96,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0xbe,0xc,0x2c, 0x0,0x8b,0xef,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f, 0x2a,0x0,0xfd,0x6e,0x2c,0x0,0x18,0x80,0x2c,0x0,0xc3,0x98,0x2c,0x0,0x8e,0x7f, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x8a,0x5,0x0,0x41,0x8e,0x5,0x0,0x42, 0x8e,0x5,0x0,0x5,0x9,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0x2c,0x8a,0x5,0x0,0x44,0x8e,0x5,0x0,0x46,0x8e,0x5,0x0,0x82,0xff,0x7,0x0, 0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x8a,0x5,0x0,0xc6,0xce,0x6, 0x0,0xc7,0xce,0x6,0x0,0x7d,0xe8,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x25,0x8a,0x5,0x0,0x36,0x8e,0x5,0x0,0x38,0x8e,0x5,0x0,0x8d,0xff, 0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x82,0x19,0x2a,0x0,0x5b, 0x1f,0x2a,0x0,0x8a,0xcb,0x2a,0x0,0x85,0xb8,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0, 0x0,0x0,0x0,0x1,0x1f,0x8a,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb2,0xa6,0x5,0x0, 0x38,0xfd,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x8a,0x5, 0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0x91,0xa,0x8,0x0,0x7b,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x8a,0x5,0x0,0x42,0xed,0x6,0x0,0x43,0xed, 0x6,0x0,0x74,0xf9,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x25, 0x8a,0x5,0x0,0x40,0x8e,0x5,0x0,0x42,0x8e,0x5,0x0,0x76,0xfa,0x7,0x0,0x7b, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x8a,0x5,0x0,0xa5,0xa6,0x5,0x0, 0xa7,0xa6,0x5,0x0,0x0,0xf8,0x7,0x0,0xef,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x2d,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x91,0x1f,0x8,0x0,0x3b,0xb,0x8, 0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0xfe,0xe1, 0x2a,0x0,0x41,0xa8,0x2c,0x0,0xb,0xef,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2a,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x90,0x1f,0x8,0x0,0x87, 0xee,0x7,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x8a,0x5,0x0, 0x7a,0xd,0x8,0x0,0x86,0x1f,0x8,0x0,0x82,0xb,0x8,0x0,0x9b,0x1f,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x85,0x1f,0x8, 0x0,0xe2,0x2,0x8,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19, 0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x24,0x80,0x2c,0x0,0xee,0xef,0x2c,0x0,0x8e,0x7f, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8d, 0x1f,0x8,0x0,0x9f,0xf5,0x7,0x0,0x9f,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0x2d,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8c,0x1f,0x8,0x0,0xfe,0xff,0x7,0x0, 0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x8a,0x5,0x0,0x7a,0xd,0x8, 0x0,0x89,0x1f,0x8,0x0,0x31,0x9,0x8,0x0,0x9e,0x1f,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x26,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x87,0x1f,0x8,0x0,0x30,0x9, 0x8,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x8a,0x5,0x0,0x7a, 0xd,0x8,0x0,0x78,0x1f,0x8,0x0,0x3a,0xf3,0x7,0x0,0xa1,0x1f,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x29,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8b,0x1f,0x8,0x0, 0xc9,0x0,0x8,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x8a,0x5, 0x0,0x7a,0xd,0x8,0x0,0x87,0x1f,0x8,0x0,0x8,0xf0,0x7,0x0,0xa1,0x1f,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xf4,0xbd,0x7,0x0,0x7a,0xd,0x8,0x0,0x7a,0x1f, 0x8,0x0,0x73,0xa,0x8,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x1f, 0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x84,0x1f,0x8,0x0,0x97,0xbd,0x7,0x0,0xa1, 0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0, 0x89,0x1f,0x8,0x0,0x88,0xe2,0x7,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x2b,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8f,0x1f,0x8,0x0,0x88,0xdd,0x7, 0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x8a,0x5,0x0,0x7a,0xd, 0x8,0x0,0x83,0x1f,0x8,0x0,0x84,0xfa,0x7,0x0,0x9c,0x1f,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0x27,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8c,0x1f,0x8,0x0,0xbe, 0xd7,0x7,0x0,0x9d,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0, 0x7a,0xd,0x8,0x0,0x8e,0x1f,0x8,0x0,0x8b,0xdf,0x7,0x0,0xa1,0x1f,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x82,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x96,0xcb,0x2a, 0x0,0xf6,0xee,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x8a, 0x5,0x0,0x7a,0xd,0x8,0x0,0x8a,0x1f,0x8,0x0,0x21,0xbb,0x7,0x0,0xa1,0x1f, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0x49,0x6e,0x2c,0x0,0x45, 0xa8,0x2c,0x0,0x1f,0xee,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x21,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x7d,0x1f,0x8,0x0,0xe7,0x3,0x8,0x0, 0xa0,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x20,0x8a,0x5,0x0,0x33,0x8e,0x5, 0x0,0x34,0x8e,0x5,0x0,0xc8,0xe1,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x25,0x8a,0x5,0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0x34,0x9, 0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x1c,0x8a,0x5,0x0,0xb0, 0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x55,0xfb,0x7,0x0,0x7b,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0xed,0xe1,0x2a,0x0,0xc3,0xc,0x2c,0x0, 0x94,0xef,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x8a,0x5, 0x0,0xa2,0xa6,0x5,0x0,0xa4,0xa6,0x5,0x0,0x2f,0xfc,0x7,0x0,0x7b,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x8a,0x5,0x0,0x35,0x8e,0x5,0x0,0x36,0x8e, 0x5,0x0,0x7a,0x7,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x20, 0x8a,0x5,0x0,0xa6,0xa6,0x5,0x0,0xa7,0xa6,0x5,0x0,0xf2,0x9,0x8,0x0,0x7b, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x8a,0x5,0x0,0x3b,0xba,0x7,0x0, 0xd8,0xbd,0x7,0x0,0x7b,0xf9,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x1b,0x8a,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x2f,0xe6,0x7, 0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x1e,0x8a,0x5,0x0,0x7a,0xd, 0x8,0x0,0x84,0x1f,0x8,0x0,0x70,0x4,0x8,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0x2b,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x82,0x1f,0x8,0x0,0x87, 0x5,0x8,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x1e,0x8a,0x5,0x0, 0x7a,0xd,0x8,0x0,0x82,0x1f,0x8,0x0,0xea,0x3,0x8,0x0,0xa3,0x1f,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x20,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x82,0x1f,0x8, 0x0,0x28,0xf4,0x7,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x8a, 0x5,0x0,0x7a,0xd,0x8,0x0,0x86,0x1f,0x8,0x0,0x8f,0xc8,0x7,0x0,0xa3,0x1f, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x31, 0x80,0x2c,0x0,0x88,0x97,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x9f,0xcb,0x2a,0x0,0x36,0xed,0x2c,0x0, 0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x1d,0x8a,0x5,0x0,0x7a,0xd,0x8, 0x0,0x76,0x1f,0x8,0x0,0x87,0x5,0x8,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x1f,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x82,0x1f,0x8,0x0,0x6b,0xe1, 0x7,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0,0x7a, 0xd,0x8,0x0,0x81,0x1f,0x8,0x0,0x59,0xf1,0x7,0x0,0xa3,0x1f,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x24,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x83,0x1f,0x8,0x0, 0x2,0xe8,0x7,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x8a,0x5, 0x0,0x7a,0xd,0x8,0x0,0x7a,0x1f,0x8,0x0,0x31,0xe9,0x7,0x0,0xa3,0x1f,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0x9,0xe2,0x2a,0x0,0x49,0xa8, 0x2c,0x0,0xd9,0xb9,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1b, 0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x80,0x1f,0x8,0x0,0x2f,0xe9,0x7,0x0,0xa3, 0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0, 0x82,0x1f,0x8,0x0,0x3c,0xf5,0x7,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0xae,0x1f,0x2a,0x0,0x1,0xe2,0x2a,0x0,0x37,0x80,0x2c,0x0,0x9b,0x97,0x2c, 0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0,0x7a,0xd, 0x8,0x0,0x8e,0x1f,0x8,0x0,0x65,0x7,0x8,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0x1e,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x88,0x1f,0x8,0x0,0x32, 0x3,0x8,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19,0x2a,0x0, 0xa6,0x1f,0x2a,0x0,0x54,0xa8,0x2c,0x0,0xe7,0xee,0x2c,0x0,0xf8,0xa7,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x20,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8b,0x1f,0x8, 0x0,0x72,0xf7,0x7,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a, 0x5,0x0,0x7a,0xd,0x8,0x0,0x78,0x1f,0x8,0x0,0xa3,0xf4,0x7,0x0,0xa3,0x1f, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x8a,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb1, 0xa6,0x5,0x0,0x5,0xd7,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0x21,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x85,0x1f,0x8,0x0,0xc8,0xdd,0x7,0x0, 0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x8a,0x5,0x0,0x34,0x8e,0x5, 0x0,0x3a,0x8e,0x5,0x0,0x9b,0xbd,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x2a,0x8a,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x98,0xbd, 0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x82,0x19,0x2a,0x0,0x5b, 0x1f,0x2a,0x0,0xac,0xcb,0x2a,0x0,0xca,0xef,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0, 0x0,0x0,0x0,0x1,0x21,0x8a,0x5,0x0,0xa2,0xa6,0x5,0x0,0xa4,0xa6,0x5,0x0, 0x35,0xfa,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x8a,0x5, 0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x20,0xcf,0x7,0x0,0x7b,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0x82,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0xbf,0xcb, 0x2a,0x0,0x64,0xed,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x26, 0x8a,0x5,0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0x41,0xf3,0x7,0x0,0x7b, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0x28,0xe2,0x2a,0x0, 0x59,0xa8,0x2c,0x0,0x5c,0xef,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x21,0x8a,0x5,0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0xe1,0xe7,0x7, 0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x8a,0x5,0x0,0x33,0x8e, 0x5,0x0,0x34,0x8e,0x5,0x0,0xef,0x0,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0x22,0x8a,0x5,0x0,0xa4,0xa6,0x5,0x0,0xa6,0xa6,0x5,0x0,0x8c, 0xf6,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x8a,0x5,0x0, 0x36,0x8e,0x5,0x0,0x38,0x8e,0x5,0x0,0x68,0xf5,0x7,0x0,0x7b,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x21,0x8a,0x5,0x0,0x33,0x8e,0x5,0x0,0x34,0x8e,0x5, 0x0,0x1b,0x5,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x8a, 0x5,0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x33,0xc,0x8,0x0,0x7b,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x20,0x8a,0x5,0x0,0xa1,0xa6,0x5,0x0,0xa3, 0xa6,0x5,0x0,0x9a,0xfe,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0x28,0x8a,0x5,0x0,0x34,0x8e,0x5,0x0,0x35,0x8e,0x5,0x0,0xc5,0xee,0x7,0x0, 0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a, 0x0,0xc4,0xcb,0x2a,0x0,0xee,0xed,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x5e,0xa8,0x2c,0x0,0x4,0xf0, 0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b, 0x1f,0x2a,0x0,0xc9,0xcb,0x2a,0x0,0xd8,0xee,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0, 0x0,0x0,0x0,0x1,0xae,0x1f,0x2a,0x0,0xac,0x96,0x2c,0x0,0x62,0xa8,0x2c,0x0, 0x8f,0xb9,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a, 0x0,0x5b,0x1f,0x2a,0x0,0xcd,0xcb,0x2a,0x0,0x7a,0xed,0x2c,0x0,0xd5,0xca,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0x9f,0x96,0x2c,0x0,0x66,0xa8, 0x2c,0x0,0x35,0xef,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x82, 0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0xd0,0xcb,0x2a,0x0,0x96,0xb2,0x2c,0x0,0xd5, 0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x6a,0x89,0x5,0x0,0x33,0x8e,0x5,0x0, 0x34,0x8e,0x5,0x0,0xa6,0x84,0x7,0x0,0xde,0x85,0x7,0x0,0x0,0x0,0x0,0x0, 0x1,0x53,0x89,0x5,0x0,0xa5,0xa6,0x5,0x0,0xa6,0xa6,0x5,0x0,0x2f,0x74,0x7, 0x0,0xdc,0x85,0x7,0x0,0x0,0x0,0x0,0x0,0x1,0x1a,0x66,0x2c,0x0,0x7b,0x3c, 0x2d,0x0,0x7c,0x3c,0x2d,0x0,0x7c,0x3c,0x2d,0x0,0x78,0x3c,0x2d,0x0,0x0,0x0, 0x0,0x0,0x1,0xd,0x20,0x2a,0x0,0x5e,0x65,0x2c,0x0,0x16,0x66,0x2c,0x0,0x92, 0x83,0x2d,0x0,0x5c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x66,0x2c,0x0, 0x51,0x3c,0x2d,0x0,0x52,0x3c,0x2d,0x0,0x52,0x3c,0x2d,0x0,0x50,0x3c,0x2d,0x0, 0x0,0x0,0x0,0x0,0x1,0xe2,0x63,0x2c,0x0,0x18,0x65,0x2c,0x0,0x1b,0x66,0x2c, 0x0,0xce,0x7b,0x2d,0x0,0x18,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63, 0x2c,0x0,0xa0,0x64,0x2c,0x0,0xa2,0x64,0x2c,0x0,0xb6,0xc,0x2d,0x0,0xa0,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x66,0x2c,0x0,0x72,0x3c,0x2d,0x0,0x73, 0x3c,0x2d,0x0,0x73,0x3c,0x2d,0x0,0x71,0x3c,0x2d,0x0,0x0,0x0,0x0,0x0,0x1, 0xe3,0x63,0x2c,0x0,0x96,0x64,0x2c,0x0,0x23,0x66,0x2c,0x0,0x2b,0x48,0x2d,0x0, 0x96,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x63,0x2c,0x0,0xa0,0x64,0x2c, 0x0,0x21,0x66,0x2c,0x0,0x4,0xe9,0x2c,0x0,0x9f,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe3,0x63,0x2c,0x0,0xc8,0x64,0x2c,0x0,0x1e,0x66,0x2c,0x0,0x98,0x1c, 0x2d,0x0,0xc8,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0x9a, 0x64,0x2c,0x0,0x8c,0x50,0x2d,0x0,0x4e,0x74,0x2c,0x0,0x80,0x50,0x2d,0x0,0x0, 0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0xa0,0x64,0x2c,0x0,0x22,0x66,0x2c,0x0, 0xf3,0x82,0x2d,0x0,0xa0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x63,0x2c, 0x0,0x96,0x64,0x2c,0x0,0x22,0x66,0x2c,0x0,0x77,0xd3,0x2c,0x0,0x96,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0xc8,0x64,0x2c,0x0,0x1e,0x66, 0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xc8,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3, 0x63,0x2c,0x0,0xbe,0x64,0x2c,0x0,0x1f,0x66,0x2c,0x0,0x25,0xc,0x2d,0x0,0xbe, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x91,0x65,0x2c,0x0, 0x1a,0x66,0x2c,0x0,0x86,0x83,0x2d,0x0,0x91,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xf0,0x63,0x2c,0x0,0x71,0x65,0x2c,0x0,0x16,0x66,0x2c,0x0,0xf9,0x3d,0x2d, 0x0,0x71,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x90,0x65, 0x2c,0x0,0x91,0x65,0x2c,0x0,0x34,0xec,0x2c,0x0,0x8f,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0xe0, 0x46,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c,0x0, 0x81,0x65,0x2c,0x0,0x82,0x65,0x2c,0x0,0x11,0x46,0x2d,0x0,0x81,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x27,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x12,0x66,0x2c, 0x0,0xe7,0x56,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64, 0x2c,0x0,0x63,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x4,0xc8,0x2c,0x0,0x63,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x15, 0x66,0x2c,0x0,0xc9,0x75,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x34,0x64,0x2c,0x0,0x9,0x65,0x2c,0x0,0x3a,0x66,0x2c,0x0,0x94,0x44,0x2d,0x0, 0x9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfb,0x63,0x2c,0x0,0xb4,0x64,0x2c, 0x0,0x1a,0x66,0x2c,0x0,0xa3,0x55,0x2d,0x0,0xb4,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x27,0x64,0x2c,0x0,0xe1,0x64,0x2c,0x0,0x23,0x66,0x2c,0x0,0x32,0xd1, 0x2c,0x0,0xe1,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x66,0x2c,0x0,0xc0, 0x7e,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0x5a,0x47,0x2d,0x0,0xbe,0x7e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xcf,0x19,0x2a,0x0,0x8,0x20,0x2a,0x0,0xe9,0x3c,0x2d,0x0, 0x87,0x48,0x2d,0x0,0x1e,0x36,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c, 0x0,0xc6,0x65,0x2c,0x0,0xc8,0x65,0x2c,0x0,0x8f,0xc2,0x2c,0x0,0xc6,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x20,0x66, 0x2c,0x0,0x7a,0xc9,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a, 0x64,0x2c,0x0,0x5d,0x65,0x2c,0x0,0x1a,0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x5d, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x96,0x65,0x2c,0x0, 0x1b,0x66,0x2c,0x0,0x4,0x48,0x2d,0x0,0x96,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2e,0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0x0,0xdd,0x2c, 0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0xe,0x65, 0x2c,0x0,0x32,0x66,0x2c,0x0,0x98,0x83,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x45,0x65,0x2c,0x0,0x1f,0x66,0x2c,0x0,0x4c, 0xc4,0x2c,0x0,0x44,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0, 0xdc,0x64,0x2c,0x0,0x25,0x66,0x2c,0x0,0xb0,0x73,0x2c,0x0,0xdc,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x91,0x70,0x2c,0x0,0x92,0x70,0x2c, 0x0,0x49,0x48,0x2d,0x0,0x8d,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x19,0x66, 0x2c,0x0,0xbe,0x7e,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0x9f,0xd0,0x2c,0x0,0xbd,0x7e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x66,0x2c,0x0,0x4b,0x70,0x2c,0x0,0x4d, 0x70,0x2c,0x0,0xf7,0x55,0x2d,0x0,0x4a,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2a,0x64,0x2c,0x0,0xdc,0x65,0x2c,0x0,0x15,0x66,0x2c,0x0,0xbf,0x7e,0x2c,0x0, 0xd8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xa3,0x6f,0x2c, 0x0,0xad,0x6f,0x2c,0x0,0x77,0x45,0x2d,0x0,0xa4,0x6f,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x22,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0xdc,0x65,0x2c,0x0,0xf6,0xc3, 0x2c,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0,0x54, 0x65,0x2c,0x0,0x1b,0x66,0x2c,0x0,0xab,0x1a,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0, 0xab,0xd,0x2d,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c, 0x0,0xcc,0x65,0x2c,0x0,0x21,0x66,0x2c,0x0,0xaa,0x3d,0x2d,0x0,0xcc,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x19,0x66, 0x2c,0x0,0xff,0xc4,0x2c,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31, 0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x27,0x66,0x2c,0x0,0xd9,0xd1,0x2c,0x0,0x8b, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe,0x20,0x2a,0x0,0x85,0x2e,0x2b,0x0, 0xee,0x3c,0x2d,0x0,0x87,0x83,0x2d,0x0,0x1d,0x36,0x2b,0x0,0x0,0x0,0x0,0x0, 0x1,0x24,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0xac,0xd4,0x2c, 0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x5,0x65, 0x2c,0x0,0x32,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0x5,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1d,0x64,0x2c,0x0,0xc3,0x64,0x2c,0x0,0x2a,0x66,0x2c,0x0,0xfc, 0x82,0x2d,0x0,0xc3,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0, 0xbf,0x65,0x2c,0x0,0x14,0x66,0x2c,0x0,0x56,0x47,0x2d,0x0,0xbd,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xa0,0x65,0x2c,0x0,0x15,0x66,0x2c, 0x0,0xe6,0xc,0x2d,0x0,0x9f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64, 0x2c,0x0,0x9a,0x65,0x2c,0x0,0x9b,0x65,0x2c,0x0,0x40,0x46,0x2d,0x0,0x9a,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x9d,0x65,0x2c,0x0,0x9f, 0x65,0x2c,0x0,0x69,0xcf,0x2c,0x0,0x9d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x30,0x64,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x7e,0x3d,0x2d,0x0, 0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xff,0x64,0x2c, 0x0,0x1f,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xff,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x29,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x27,0x66,0x2c,0x0,0x10,0xeb, 0x2c,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfb,0x63,0x2c,0x0,0xb4, 0x64,0x2c,0x0,0x1a,0x66,0x2c,0x0,0x8b,0x76,0x2d,0x0,0xb4,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0, 0x8e,0x3d,0x2d,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c, 0x0,0xea,0x65,0x2c,0x0,0x20,0x66,0x2c,0x0,0x4c,0x45,0x2d,0x0,0xea,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x64,0x2c,0x0,0x45,0x65,0x2c,0x0,0x1a,0x66, 0x2c,0x0,0xe5,0xc8,0x2c,0x0,0x45,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35, 0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0xba,0x65,0x2c,0x0,0xbd,0xdd,0x2c,0x0,0xb8, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xff,0x64,0x2c,0x0, 0x31,0x66,0x2c,0x0,0x7a,0xe2,0x2c,0x0,0xff,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x30,0x64,0x2c,0x0,0x77,0x65,0x2c,0x0,0x78,0x65,0x2c,0x0,0xba,0x47,0x2d, 0x0,0x77,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0x97,0x65, 0x2c,0x0,0x98,0x65,0x2c,0x0,0x6b,0x83,0x2d,0x0,0x97,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xe,0x65,0x2c,0x0,0x20,0x66,0x2c,0x0,0x46, 0x3c,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0, 0x36,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0x5a,0x44,0x2d,0x0,0x35,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x1b,0x66,0x2c, 0x0,0xb0,0xd3,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xce,0x19, 0x2a,0x0,0x8,0x20,0x2a,0x0,0xf2,0x3c,0x2d,0x0,0x10,0x44,0x2d,0x0,0x19,0x36, 0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c,0x0,0x12,0x65,0x2c,0x0,0x36, 0x66,0x2c,0x0,0x95,0x83,0x2d,0x0,0x11,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x27,0x64,0x2c,0x0,0x81,0x65,0x2c,0x0,0x17,0x66,0x2c,0x0,0x6c,0x76,0x2d,0x0, 0x81,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x18,0x65,0x2c, 0x0,0x30,0x66,0x2c,0x0,0xbb,0xd,0x2d,0x0,0x18,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x29,0x64,0x2c,0x0,0x60,0x65,0x2c,0x0,0x1a,0x66,0x2c,0x0,0x87,0x83, 0x2d,0x0,0x5e,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0xd9, 0x64,0x2c,0x0,0xda,0x64,0x2c,0x0,0x83,0x44,0x2d,0x0,0xd7,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x21,0x64,0x2c,0x0,0x9f,0x65,0x2c,0x0,0x17,0x66,0x2c,0x0, 0x87,0x83,0x2d,0x0,0x9f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c, 0x0,0x18,0x65,0x2c,0x0,0x1d,0x66,0x2c,0x0,0xbd,0x1c,0x2d,0x0,0x18,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x96,0x65,0x2c,0x0,0x25,0x66, 0x2c,0x0,0x87,0x83,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf9, 0x63,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x18,0x66,0x2c,0x0,0xef,0x82,0x2d,0x0,0x1d, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xf2,0x65,0x2c,0x0, 0xf3,0x65,0x2c,0x0,0xd7,0x3d,0x2d,0x0,0xf2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x31,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x73,0x65,0x2c,0x0,0xe7,0xc4,0x2c, 0x0,0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0x3b,0x65, 0x2c,0x0,0x1b,0x66,0x2c,0x0,0x76,0xc,0x2d,0x0,0x3b,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0xf0,0x64,0x2c,0x0,0x28,0x66,0x2c,0x0,0x92, 0x83,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0, 0xcf,0x64,0x2c,0x0,0x38,0x66,0x2c,0x0,0x24,0xc5,0x2c,0x0,0xcf,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xae,0x65,0x2c,0x0,0x24,0x66,0x2c, 0x0,0xc8,0x46,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64, 0x2c,0x0,0x6d,0x65,0x2c,0x0,0x6e,0x65,0x2c,0x0,0x1a,0x75,0x2c,0x0,0x6d,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x20,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x1a, 0x66,0x2c,0x0,0x86,0x83,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x1e,0x64,0x2c,0x0,0xd2,0x65,0x2c,0x0,0x12,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0, 0xd2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xcc,0x65,0x2c, 0x0,0x21,0x66,0x2c,0x0,0x8,0x48,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x22,0x64,0x2c,0x0,0x27,0x65,0x2c,0x0,0x1f,0x66,0x2c,0x0,0xc1,0x7e, 0x2c,0x0,0x27,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x64,0x2c,0x0,0x6d, 0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0x6d,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xcd,0x19,0x2a,0x0,0x8,0x20,0x2a,0x0,0xf7,0x3c,0x2d,0x0, 0x49,0x44,0x2d,0x0,0x20,0x36,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c, 0x0,0x54,0x65,0x2c,0x0,0x55,0x65,0x2c,0x0,0xbd,0x48,0x2d,0x0,0x54,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x23,0x66, 0x2c,0x0,0xb2,0x44,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31, 0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0x9,0x70,0x2c,0x0,0xbd, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0xe6,0x64,0x2c,0x0, 0x25,0x66,0x2c,0x0,0x56,0xc4,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2d,0x64,0x2c,0x0,0xa6,0x65,0x2c,0x0,0xa8,0x65,0x2c,0x0,0xdd,0xc,0x2d, 0x0,0xa4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xe,0x65, 0x2c,0x0,0x1f,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x2b,0x66,0x2c,0x0,0x4d, 0xd2,0x2c,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0, 0xf0,0x64,0x2c,0x0,0x3a,0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0xf0,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xf9,0x63,0x2c,0x0,0xb9,0x64,0x2c,0x0,0x19,0x66,0x2c, 0x0,0x65,0xd1,0x2c,0x0,0xb9,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64, 0x2c,0x0,0x8b,0x65,0x2c,0x0,0x1b,0x66,0x2c,0x0,0xd1,0x7b,0x2d,0x0,0x8b,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x14,0x66,0x2c,0x0,0x44,0x70,0x2c,0x0,0x45, 0x70,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x43,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x29,0x64,0x2c,0x0,0x5e,0x65,0x2c,0x0,0x19,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0, 0x5d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x8b,0x65,0x2c, 0x0,0x8c,0x65,0x2c,0x0,0x58,0xc9,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2f,0x64,0x2c,0x0,0x59,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0xf8,0x79, 0x2c,0x0,0x59,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x4f, 0x65,0x2c,0x0,0x22,0x66,0x2c,0x0,0xb6,0x77,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x4a,0x65,0x2c,0x0,0x1d,0x66,0x2c,0x0, 0x8d,0x3c,0x2d,0x0,0x4a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c, 0x0,0x31,0x65,0x2c,0x0,0x32,0x65,0x2c,0x0,0xdf,0xc2,0x2c,0x0,0x31,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x28,0x66, 0x2c,0x0,0x4c,0x46,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31, 0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x24,0x45,0x2d,0x0,0x9a, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x90,0x70,0x2c,0x0, 0x91,0x70,0x2c,0x0,0xd8,0xc,0x2d,0x0,0x8d,0x70,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xcd,0x19,0x2a,0x0,0x8,0x20,0x2a,0x0,0xfc,0x3c,0x2d,0x0,0xee,0x48,0x2d, 0x0,0x1d,0x36,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0xfe,0x65, 0x2c,0x0,0xff,0x65,0x2c,0x0,0xa3,0xd5,0x2c,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xa9,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0xbf, 0x7e,0x2c,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0, 0x13,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0xf6,0x48,0x2d,0x0,0x13,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x27,0x65,0x2c,0x0,0x22,0x66,0x2c, 0x0,0x92,0x83,0x2d,0x0,0x27,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64, 0x2c,0x0,0xfa,0x64,0x2c,0x0,0xfb,0x64,0x2c,0x0,0xde,0x48,0x2d,0x0,0xfa,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0xe7,0x64,0x2c,0x0,0x21, 0x66,0x2c,0x0,0x7a,0x75,0x2c,0x0,0xe7,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x25,0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x20,0x66,0x2c,0x0,0x8b,0x83,0x2d,0x0, 0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf4,0x63,0x2c,0x0,0xa5,0x64,0x2c, 0x0,0x1a,0x66,0x2c,0x0,0x8b,0x83,0x2d,0x0,0xa5,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x28,0x64,0x2c,0x0,0x36,0x65,0x2c,0x0,0x22,0x66,0x2c,0x0,0xe8,0x72, 0x2c,0x0,0x35,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xab, 0x65,0x2c,0x0,0xac,0x65,0x2c,0x0,0x65,0x83,0x2d,0x0,0xab,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0xa9,0x65,0x2c,0x0,0x14,0x66,0x2c,0x0, 0x1d,0xd2,0x2c,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c, 0x0,0xb2,0x65,0x2c,0x0,0x22,0x66,0x2c,0x0,0x7f,0x45,0x2d,0x0,0xb2,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x1a,0x66, 0x2c,0x0,0xdd,0x56,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c, 0x64,0x2c,0x0,0x45,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0xcd,0x75,0x2d,0x0,0x45, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x92,0x1f,0x8,0x0,0x6b,0x2a,0x8,0x0, 0x6f,0x2a,0x8,0x0,0x8e,0x5,0x8,0x0,0x0,0x38,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x1c,0x64,0x2c,0x0,0xdc,0x64,0x2c,0x0,0x22,0x66,0x2c,0x0,0x9a,0x6f,0x2c, 0x0,0xdc,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0x40,0x65, 0x2c,0x0,0x2f,0x66,0x2c,0x0,0xbd,0x7e,0x2c,0x0,0x40,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xce,0x19,0x2a,0x0,0x8,0x20,0x2a,0x0,0x1,0x3d,0x2d,0x0,0x26, 0x49,0x2d,0x0,0x1c,0x36,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0, 0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0xd9,0x75,0x2d,0x0,0xe0,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x20,0x66,0x2c, 0x0,0x8a,0x7b,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64, 0x2c,0x0,0x9a,0x65,0x2c,0x0,0x9b,0x65,0x2c,0x0,0x52,0xc6,0x2c,0x0,0x9a,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x13, 0x66,0x2c,0x0,0xe1,0x1b,0x2d,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xfb,0x63,0x2c,0x0,0xcd,0x64,0x2c,0x0,0x27,0x66,0x2c,0x0,0x65,0x73,0x2c,0x0, 0xcd,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1b,0x66,0x2c,0x0,0x2f,0x66,0x2c, 0x0,0x4c,0x66,0x2c,0x0,0x9d,0x18,0x2d,0x0,0x4b,0x66,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x31,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0x12,0x66,0x2c,0x0,0xd9,0x55, 0x2d,0x0,0xf9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x95, 0x65,0x2c,0x0,0x24,0x66,0x2c,0x0,0xcf,0x75,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x25,0x66,0x2c,0x0, 0x8,0xc4,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c, 0x0,0xef,0x65,0x2c,0x0,0x11,0x66,0x2c,0x0,0xc0,0x7e,0x2c,0x0,0xef,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x65,0x65,0x2c,0x0,0x1a,0x66, 0x2c,0x0,0x7e,0x70,0x2c,0x0,0x65,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a, 0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x12,0x66,0x2c,0x0,0xf6,0xd0,0x2c,0x0,0xd1, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0, 0x14,0x66,0x2c,0x0,0x18,0xc8,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x29,0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x14,0x66,0x2c,0x0,0xb0,0xd,0x2d, 0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf5,0x63,0x2c,0x0,0xaf,0x64, 0x2c,0x0,0x18,0x66,0x2c,0x0,0xcc,0x79,0x2c,0x0,0xaf,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0,0x10,0x66,0x2c,0x0,0xab, 0x57,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0, 0xa1,0x65,0x2c,0x0,0x15,0x66,0x2c,0x0,0x5a,0xd,0x2d,0x0,0x9f,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x1e,0x64,0x2c,0x0,0x5c,0x65,0x2c,0x0,0x19,0x66,0x2c, 0x0,0x7,0x55,0x2d,0x0,0x5c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x64, 0x2c,0x0,0xae,0x65,0x2c,0x0,0xaf,0x65,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xae,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0,0x2e,0x65,0x2c,0x0,0x1f, 0x66,0x2c,0x0,0x9f,0x7b,0x2d,0x0,0x2e,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x20,0x64,0x2c,0x0,0x12,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0x52,0x49,0x2d,0x0, 0x12,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x11,0x66,0x2c,0x0,0xc0,0x7e,0x2c, 0x0,0xc2,0x7e,0x2c,0x0,0xe,0x46,0x2d,0x0,0xbe,0x7e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x25,0x64,0x2c,0x0,0xe4,0x65,0x2c,0x0,0xe5,0x65,0x2c,0x0,0x95,0x83, 0x2d,0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0xf0, 0x64,0x2c,0x0,0x26,0x66,0x2c,0x0,0xfc,0x76,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xc5,0x65,0x2c,0x0,0xc6,0x65,0x2c,0x0, 0xf0,0x82,0x2d,0x0,0xc4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x64,0x2c, 0x0,0x54,0x65,0x2c,0x0,0x1b,0x66,0x2c,0x0,0x23,0xeb,0x2c,0x0,0x54,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x64,0x2c,0x0,0xa7,0x64,0x2c,0x0,0xa8,0x64, 0x2c,0x0,0xce,0xc,0x2d,0x0,0xa7,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f, 0x64,0x2c,0x0,0x18,0x65,0x2c,0x0,0x20,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0x18, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0, 0x9c,0x65,0x2c,0x0,0x75,0x3e,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x33,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x9b,0x65,0x2c,0x0,0x28,0xdf,0x2c, 0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x36,0x65, 0x2c,0x0,0x3c,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0x36,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x3e,0x66,0x2c,0x0,0x4d,0x70,0x2c,0x0,0x4f,0x70,0x2c,0x0,0x24, 0xd1,0x2c,0x0,0x4a,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0, 0x4,0x65,0x2c,0x0,0x3c,0x66,0x2c,0x0,0x8,0x4f,0x2d,0x0,0x4,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x7b,0x5c,0x8,0x0,0xc9,0xe5,0x8,0x0,0xca,0xe5,0x8, 0x0,0x50,0x36,0x9,0x0,0x64,0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x64, 0x2c,0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0x1,0x79,0x2c,0x0,0xe0,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfe,0x63,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2a, 0x66,0x2c,0x0,0xbd,0x7e,0x2c,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2c,0x64,0x2c,0x0,0x9,0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0xec,0x56,0x2d,0x0, 0x9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xef,0x65,0x2c, 0x0,0xf0,0x65,0x2c,0x0,0x9f,0xd3,0x2c,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x3a,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x94,0x83, 0x2d,0x0,0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x9a, 0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x9f,0xd4,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xb3,0x65,0x2c,0x0,0xb4,0x65,0x2c,0x0, 0xce,0x1c,0x2d,0x0,0xb3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x86,0x2a,0x8, 0x0,0xc8,0xe5,0x8,0x0,0xca,0xe5,0x8,0x0,0xd8,0x5a,0x9,0x0,0x5f,0x67,0x9, 0x0,0x0,0x0,0x0,0x0,0x1,0xfe,0x63,0x2c,0x0,0xe,0x65,0x2c,0x0,0x2a,0x66, 0x2c,0x0,0x7d,0x3c,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e, 0x64,0x2c,0x0,0xaa,0x65,0x2c,0x0,0xab,0x65,0x2c,0x0,0x94,0x83,0x2d,0x0,0xaa, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0xaf,0x65,0x2c,0x0, 0xb0,0x65,0x2c,0x0,0x9c,0x70,0x2c,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2a,0x64,0x2c,0x0,0xe3,0x65,0x2c,0x0,0x24,0x66,0x2c,0x0,0x29,0x76,0x2d, 0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xbf,0x65, 0x2c,0x0,0xc0,0x65,0x2c,0x0,0x87,0x83,0x2d,0x0,0xbd,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0x93,0x66,0x2c,0x0,0xb5,0x66,0x2c,0x0,0x48, 0x53,0x2d,0x0,0xb4,0x66,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0, 0x86,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0x86,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x8b,0x2a,0x8,0x0,0x73,0x62,0x9,0x0,0x74,0x62,0x9, 0x0,0x74,0x62,0x9,0x0,0x66,0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64, 0x2c,0x0,0x90,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x90,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0xb9, 0x65,0x2c,0x0,0x1d,0x7b,0x2d,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x27,0x64,0x2c,0x0,0x22,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0x5,0x56,0x2d,0x0, 0x22,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x8f,0x65,0x2c, 0x0,0x2c,0x66,0x2c,0x0,0x91,0x83,0x2d,0x0,0x8f,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x31,0x64,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x3c,0x66,0x2c,0x0,0x8d,0x83, 0x2d,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xda, 0x65,0x2c,0x0,0x27,0x66,0x2c,0x0,0x62,0x6f,0x2c,0x0,0xd8,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0, 0xc7,0x76,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x89,0x2a,0x8, 0x0,0x84,0x62,0x9,0x0,0x85,0x62,0x9,0x0,0x91,0x47,0x9,0x0,0x6a,0x67,0x9, 0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x33,0x66, 0x2c,0x0,0xaa,0x56,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30, 0x64,0x2c,0x0,0xef,0x65,0x2c,0x0,0xf0,0x65,0x2c,0x0,0xb3,0xed,0x2c,0x0,0xef, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xe6,0x64,0x2c,0x0, 0x3e,0x66,0x2c,0x0,0xa2,0x70,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x33,0x64,0x2c,0x0,0x9,0x65,0x2c,0x0,0x3c,0x66,0x2c,0x0,0xc4,0xe2,0x2c, 0x0,0x9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x8b,0x65, 0x2c,0x0,0x8c,0x65,0x2c,0x0,0x8e,0x48,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0xe1, 0x43,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x88,0x2a,0x8,0x0, 0x87,0x62,0x9,0x0,0x88,0x62,0x9,0x0,0x8f,0x47,0x9,0x0,0x63,0x67,0x9,0x0, 0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xc1,0x65,0x2c,0x0,0xc2,0x65,0x2c, 0x0,0x94,0x83,0x2d,0x0,0xc0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x63, 0x2c,0x0,0x9c,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x6,0x49,0x2d,0x0,0x9c,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x32, 0x66,0x2c,0x0,0x5b,0x7c,0x2d,0x0,0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2c,0x64,0x2c,0x0,0x81,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x78,0x3c,0x2d,0x0, 0x81,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x81,0x65,0x2c, 0x0,0x82,0x65,0x2c,0x0,0x17,0x48,0x2d,0x0,0x81,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x3d,0x64,0x2c,0x0,0xa4,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0xc2,0x7e, 0x2c,0x0,0xa4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x95, 0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0xb,0x41,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x89,0x2a,0x8,0x0,0xc8,0xe5,0x8,0x0,0xca,0xe5,0x8,0x0, 0xb7,0x5c,0x9,0x0,0x6a,0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c, 0x0,0x91,0x65,0x2c,0x0,0x92,0x65,0x2c,0x0,0xc7,0xe9,0x2c,0x0,0x90,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x79,0x65,0x2c,0x0,0x30,0x66, 0x2c,0x0,0xb2,0x75,0x2d,0x0,0x79,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33, 0x64,0x2c,0x0,0x4a,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xcb,0x45,0x2d,0x0,0x4a, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0, 0x25,0x66,0x2c,0x0,0x4f,0x76,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2c,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0xc8,0x65,0x2c,0x0,0x36,0x3d,0x2d, 0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x82,0x65, 0x2c,0x0,0x83,0x65,0x2c,0x0,0xe,0x57,0x2d,0x0,0x82,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x61,0x42,0x6,0x0,0x6d,0x42,0x6,0x0,0x80,0x42,0x6,0x0,0x0, 0x0,0x0,0x0,0xa7,0x42,0x6,0x0,0x0,0x0,0x0,0x0,0x1,0x87,0x2a,0x8,0x0, 0x76,0x62,0x9,0x0,0x77,0x62,0x9,0x0,0xd0,0x51,0x9,0x0,0x6a,0x67,0x9,0x0, 0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xf0,0x64,0x2c,0x0,0x3c,0x66,0x2c, 0x0,0x42,0x3c,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64, 0x2c,0x0,0xef,0x65,0x2c,0x0,0x24,0x66,0x2c,0x0,0x95,0x83,0x2d,0x0,0xef,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x68,0x65,0x2c,0x0,0x31, 0x66,0x2c,0x0,0xb5,0x47,0x2d,0x0,0x68,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x29,0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x8f,0x4e,0x2d,0x0, 0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x9,0x65,0x2c, 0x0,0x39,0x66,0x2c,0x0,0x67,0xd3,0x2c,0x0,0x9,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2e,0x64,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xc1,0x3f, 0x2d,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0xd1, 0x65,0x2c,0x0,0xd2,0x65,0x2c,0x0,0x38,0x48,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x88,0x2a,0x8,0x0,0x71,0x62,0x9,0x0,0x72,0x62,0x9,0x0, 0xfb,0x4a,0x9,0x0,0x6a,0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x4c,0x64,0x2c, 0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0xf8,0xc7,0x2c,0x0,0xe0,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c,0x0,0xfe,0x65,0x2c,0x0,0x1f,0x66, 0x2c,0x0,0x61,0xe,0x2d,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfa, 0x63,0x2c,0x0,0xb9,0x64,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x66,0xdd,0x2c,0x0,0xb9, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xab,0x65,0x2c,0x0, 0x27,0x66,0x2c,0x0,0xf1,0x3d,0x2d,0x0,0xab,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2d,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0xc8,0x65,0x2c,0x0,0xf0,0x82,0x2d, 0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x90,0x65, 0x2c,0x0,0x2f,0x66,0x2c,0x0,0x61,0x73,0x2c,0x0,0x8f,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xfe,0x63,0x2c,0x0,0x54,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x7f, 0x17,0x2d,0x0,0x52,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x89,0x2a,0x8,0x0, 0x72,0x62,0x9,0x0,0x73,0x62,0x9,0x0,0x4c,0x36,0x9,0x0,0x6a,0x67,0x9,0x0, 0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xd7,0x65,0x2c,0x0,0xd8,0x65,0x2c, 0x0,0xfb,0x55,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64, 0x2c,0x0,0x90,0x65,0x2c,0x0,0x91,0x65,0x2c,0x0,0xb2,0x7b,0x2d,0x0,0x90,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x3b, 0x66,0x2c,0x0,0x66,0x76,0x2d,0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x94,0x2a,0x8,0x0,0xca,0xe5,0x8,0x0,0xcb,0xe5,0x8,0x0,0x1,0x37,0x9,0x0, 0x67,0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xe,0x65,0x2c, 0x0,0x37,0x66,0x2c,0x0,0x70,0x70,0x2c,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x33,0x64,0x2c,0x0,0xc2,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0xb3,0xd4, 0x2c,0x0,0xc0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x5d, 0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0x73,0x3c,0x2d,0x0,0x5d,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xea,0x63,0x2c,0x0,0x9b,0x64,0x2c,0x0,0x49,0x66,0x2c,0x0, 0xef,0x82,0x2d,0x0,0x9b,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c, 0x0,0xcd,0x64,0x2c,0x0,0xce,0x64,0x2c,0x0,0xb9,0xec,0x2c,0x0,0xcd,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x8,0x64,0x2c,0x0,0x4c,0x65,0x2c,0x0,0x33,0x66, 0x2c,0x0,0x7a,0x3c,0x2d,0x0,0x4c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x95, 0x2a,0x8,0x0,0xc8,0xe5,0x8,0x0,0xc9,0xe5,0x8,0x0,0xee,0x52,0x9,0x0,0x6a, 0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xe,0x65,0x2c,0x0, 0x3d,0x66,0x2c,0x0,0x50,0x3c,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x26,0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x7d,0x3c,0x2d, 0x0,0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xcc,0x65, 0x2c,0x0,0xcd,0x65,0x2c,0x0,0x4d,0x70,0x2c,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0xfa,0x65,0x2c,0x0,0xbf, 0x7e,0x2c,0x0,0xf4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4, 0x5,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x1a, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x21,0x60,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x26,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1, 0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x6a,0x84,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0xf3,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5d,0xa2,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0x32,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x1a,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x52,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7, 0x54,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x48,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e, 0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe2,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0xe4,0x74,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xbc,0x3,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xac, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xdf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x91,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x86,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde, 0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0xe4,0x74,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x94,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xb6,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7a,0x6,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x50,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x24,0x6a,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xd5,0x2b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x90,0x73,0x4c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x48,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb2,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xb3,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0xf0,0x51,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0x4a, 0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xe0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x36,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xf7,0x67,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xc4,0x1f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6,0x8c,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80, 0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x3c,0x3f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7b,0x7c,0x86,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9, 0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e, 0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2c,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x8b,0x8,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x84,0x59,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56,0xad, 0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa2,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb5,0xb3,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb1,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf7,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x34,0x6b,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcf,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x30,0x36,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xc6,0x68,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99, 0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xad,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e, 0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe4,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb0,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x8b,0x8,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0xb3,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xb3, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xce,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9a,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x62,0x57,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa,0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0x5e,0x56,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf5,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x75,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x74,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x97,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf1,0x4a,0x3a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3f,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe9,0x26,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xca,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xc8,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xef,0x6b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x8d, 0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xe6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4f,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa9,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x8c,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0xc8,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x27,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3c,0x3e,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcf,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xb3,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x8d,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91, 0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdb,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x39,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0xc8,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0xbc, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9d,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x99,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xe4,0x74,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x81,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9f,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80, 0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0xf5,0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf0,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x88,0xb3,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc, 0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xcf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa5,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x83,0x5a,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0x86, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa7,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9f,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6, 0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0x9d,0x50,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x9d,0x50,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x86,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xba,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xac,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x86,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xad,0x5c,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d, 0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x48,0xc6,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e, 0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf3,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0xc7,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xb5, 0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xe0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe1,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x32,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xae,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0x86,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x86,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb8,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbe,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe7,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0x5a,0x41,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0x5b,0x41,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9, 0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xaa,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x98,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdc,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3c,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2e,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x95,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xed,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xc7,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xe8,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b, 0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3d,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e, 0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf5,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa3,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xa4,0x58,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xef, 0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x59,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc8,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd9,0xf7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x34,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa5,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x57,0x54,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x45,0x7c,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xca,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcd,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x4b,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xdf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x53,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2, 0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x69,0x57,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0xc7,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xce,0x17, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb1,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x39,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xff,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x8d,0x33,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x4a,0x3a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8, 0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x1d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x42,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e, 0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfd,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xab,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x8b,0x8,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xad,0x5c,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x8, 0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x11,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x60,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0xc8,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xde,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8d,0xc0,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x57,0x3f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67, 0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4f,0x72,0xa,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcf,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe1,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xc4,0x1f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x74, 0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xe6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe5,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2f,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xb,0x5b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0xb6,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xfa,0x28,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xe3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb,0x99,0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0x59,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x36,0x78,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31, 0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x19,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x80,0x7b,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd7,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xc8,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x62, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x86,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x8a,0x6d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4c,0xf4,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xb7,0x8a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x91,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0x78,0x26,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xbc,0x3,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb, 0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3e,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x54,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x6,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0xc7, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xff,0x47,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xea,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1, 0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0x27,0x75,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0xb2,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x62,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x45,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xb6,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x90,0x1d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0, 0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x99,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe1,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x6b,0x75,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0x3,0x61,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x1a, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x65,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7e,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x8a,0x6d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x76,0x4a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x79,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd9,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x62,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80, 0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xaa,0xf,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x48,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3, 0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd6,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaf,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb6,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0xad,0x84,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x34,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x62, 0x49,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3f,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9, 0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x4d,0x6a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0x6,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe5,0x5,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc2,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xbd,0x42,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x34,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xeb,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x58,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd5,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x68,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xc8, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x16,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1b,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe7,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x83,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe5,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x7e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31, 0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xed,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb3,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x79, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb1,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1, 0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc, 0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x73,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbb,0x47, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x37,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2f,0x60,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xd3,0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xb6,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0xad,0x84,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5, 0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb3,0x41,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e, 0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x15,0x20,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x28, 0x66,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9d,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1, 0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x35,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0xff,0x51,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xa4,0x58,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x6b,0x75, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf8,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x33,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd6,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xa4,0x58,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x79,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x89,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x51,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xc8,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0xb1, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x18,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x85,0xc0,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa2, 0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x69,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf, 0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0xe9,0x3,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x1a,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x35,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1b,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80, 0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x6,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80, 0x1a,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x53,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc1,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x99,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x48,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x68, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2a,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7b,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x65,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x98,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80, 0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa1,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x10,0xf4,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x59,0xc7,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd5,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xc9,0x6e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xcc,0x6e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x1a, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x48,0xcf,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91, 0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0xd1,0x6e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x3a,0x77, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1e,0xad,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5b,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x30,0xd8,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x90,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xdb,0x6e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb, 0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x1d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5d,0x59,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a, 0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaf,0x70,0xbd,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xec,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x5c,0x50,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xdc, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe8,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x52,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0xa4,0x22,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb9,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0xc4,0x1f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x86,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xe3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x53,0xa9,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89, 0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xac,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xf0,0x51,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x59,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc, 0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc3,0xaf,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a, 0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x18,0xb4,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc9,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0xc0,0x22,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xa8,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xc7, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9b,0x52,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x38,0x27,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x5,0x32,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0x8b,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3f,0x4b,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6d,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80, 0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xd,0x32,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xce,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49, 0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x10,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x92,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x66,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe8,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0x85,0x33,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0x93,0x1d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x39, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9e,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3e,0x96,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95, 0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x56,0xe,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9d,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x59,0xe, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa2,0x31,0x3d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x47,0x5e,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x89, 0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xa3,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe0,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0xe6,0x4f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x8a,0x6d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae, 0x63,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdc,0xfc,0xb2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5,0x66,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x69,0xe,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x6f, 0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4f,0x72,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe4,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x74,0xe,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc1,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x77,0xe,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xbc,0x1d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x61,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa8,0x75,0x7b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xc2,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0x82,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0x84,0xe,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc4,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x53,0x32,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd9,0xe,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbc, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6b,0x8a,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x29,0x28,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91, 0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x2a,0x16,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xc4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xf8,0x67, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5e,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80, 0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x2d,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x78,0x87,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x59,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f, 0x30,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x89,0x8a,0x18,0x8b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbc,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb,0x8d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0xf0,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x10,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0x32, 0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x24,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1, 0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd2,0xb4,0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a, 0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x13,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x7a,0x25,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x8,0x78, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x54,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6f,0xdb,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x67,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb2,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x8d,0x33,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x16,0x24,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb2,0x32,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x40,0xa,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x3a,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa9,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xc4,0x1f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x4b, 0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbf,0xde,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18, 0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x36,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x18,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9d,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0xc,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x94,0x3c,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x35,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80, 0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaf,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0x59,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0xe1,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3, 0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xd3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5,0xf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xba,0x1b,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xe3,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x3f,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xd5, 0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd5,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0x11,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d, 0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0x23,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x1a,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc5,0xe6,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x9b,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x42,0x16,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x26,0x24,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x98,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x70,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xf0,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xeb,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x39, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb2,0x14,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18, 0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x47,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x69,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x13,0xff,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89, 0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc7,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x29,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x8d,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb2,0xed,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a, 0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x28,0x19,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa5,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x7c,0x86,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xd9,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc9,0x2,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4c,0x45,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x4d,0x6a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x99,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7a,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf3,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xae,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80, 0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x4a,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf8,0xae,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xec,0xb5,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdb,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xb5,0x5b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xbc,0x3,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x50,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1, 0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2f,0x81,0xd1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x59,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x79,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x51,0x62,0x49,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x90,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0xad,0x84,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x73,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66, 0x99,0x59,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x96,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e, 0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa7,0x2b,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x89,0xa4,0x58,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x79,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x60, 0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5,0xf1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x18, 0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4f,0x6,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0x7b,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x9b,0x1b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x88,0xad,0x84, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbf,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80, 0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa3,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0x79,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0x34,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66, 0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfd,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbc,0x1c,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa9,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x4c,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc1,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0x73,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xb2, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf4,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc0,0xdb,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xa4,0x58,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x2e,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xae,0x8,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x13,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x73,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff, 0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd3,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcb,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe9,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x73,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xf3,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x1f, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x18,0x88,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa4,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xff,0x51,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xae,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x4f,0x16,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xdd,0x2a, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x27,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x96,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0xb4,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0x73,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9, 0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xcb,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x37,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9a,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x73,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0xad,0x84,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x34, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa3,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5f,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x34,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x7b,0x33, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe1,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xae,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x79,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdd,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x78,0x26,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x68,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77, 0x27,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9b,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x33,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x7a,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x4d,0xf,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xb1, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x18,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1,0x2b,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x18, 0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x13,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x94,0x25,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xb7,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa8,0x39,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x19,0xc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xfb,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x53,0xf,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36, 0x3,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x99,0x67,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x51,0xba,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x57,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x3c,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x13, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x19,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x14,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9c,0xfd,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x2a,0x6,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb9,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xc1,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3b,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb2,0x5,0x52,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbc,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xdd,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x77,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68, 0x85,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6f,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x66,0xb2,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc2,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xc8,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x50,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xb1, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x18,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xcd,0xdd,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x18, 0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x62,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc4,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x41,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2e,0x9e,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89, 0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0xc8,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x3,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e, 0x72,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a,0x18,0x88,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x35,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xad,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc9,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x5b,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x8,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x7e, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1f,0xe3,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d, 0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x4a,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0x1c,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x52,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x17, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8f,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xe,0x45,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe9,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfc,0x32,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x21,0xc9,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xb7,0x8a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x24, 0x44,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xab,0x7f,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2, 0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa9,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe, 0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x6a,0x5f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe0,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0xd6,0x7c, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8d,0x4d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x4c,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd1,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x7e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x68,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22, 0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x14,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd3,0x78,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1e,0xe,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc1,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf2,0xae,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xc8,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3b,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x87,0xa3,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89, 0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc5,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xcf,0x3f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe, 0x4f,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xcc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x8f,0xdd,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xad,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0x68,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x2d, 0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x19,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfc,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2, 0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x97,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7, 0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0x92,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd1,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6,0x7e,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x88, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe1,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80, 0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x68,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x1d,0x8c,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb, 0xa,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfe,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x50,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb0,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x51,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0xd6,0x42,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xb1, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x18,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xde,0xe0,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x55,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8, 0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xab,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa1,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0x11,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0xd5,0x3f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x13,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x81,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb5,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xc8,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7b,0xdb,0x7c,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8, 0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x14,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x20,0x78,0x5f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbf,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xaf,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x81,0x97,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x51,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x5e, 0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa5,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x84,0x59,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x97,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc5,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0x78,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x12,0x1a,0x4f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x1c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1b,0xf6,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89, 0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4, 0x1e,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x19,0x9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4c,0x3b,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x51,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdc,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xc8,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xf0, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2, 0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x74,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xab,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x68,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80, 0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xf0,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3b,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb9,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x37,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa3,0xf7,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x91,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xe2,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x28,0xe2,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x43,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x13, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1e,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb2,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xe2,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x30,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x17,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xed,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x32,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x19,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce, 0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xe1,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xe8,0x34,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb1,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb1,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3, 0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x11,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc9,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x99,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xe8,0x34,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x54, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbc,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xce,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x63,0x5e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa5,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x9e,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x10,0x2b,0x44,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xab,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcc,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8, 0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x11,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e, 0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa9,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc9,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x31,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x3b,0x9,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x3b,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xff,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x25,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd2,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x3b,0x9,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda, 0xc8,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x18,0x88,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf0,0xdf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa4,0xb9,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3b,0x9,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xe1,0x3f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbf,0xe8,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x10,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x47,0x6,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x3b,0x9,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x3a,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe8,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x3b,0x9,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xbc,0x31,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c, 0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x74,0xa1,0xb4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x27,0xe4,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xad,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xeb,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd1,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xc1, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x79,0xe7,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x96,0xed,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xc4,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbd,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xe9,0x3f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x99,0x26, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x18,0x89,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x1b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x74,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe5,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x29,0x2e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86, 0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x18,0x8a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x31,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e, 0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf5,0xef,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd9,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xc7,0x31,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc1,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0x5b,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x80, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x14,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x20,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0x11,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xf3,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x19,0xca,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19,0xe, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x58,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xce,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbd,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x81,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x5d,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b, 0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x18,0x8a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9,0x60,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x89,0x8a, 0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x8d,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xcc,0x31,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc9,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7a,0x11,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x81,0xd3, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6b,0x63,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18, 0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa3,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xd5,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd1,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x67,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x67,0x6b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x18,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd3,0xd8,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89, 0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xad,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x6d,0x17,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0xe6,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf, 0xdb,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5d,0xe9,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a, 0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x68,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb7,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x70,0x17,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xde,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x81,0x39, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x19,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa0,0xec,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x19, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x64,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x72,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb5,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x81,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x81,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x1b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x70,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xca,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x81,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c, 0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x1b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfb,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e, 0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x80,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x81,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x3b,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xef, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x72,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xab,0xba,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd, 0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xed,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xef,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x80,0x37, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x19,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0xfa,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8f,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80, 0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xca,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x3c,0x59,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xef,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93, 0x41,0x45,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x18,0x89,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf2,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf8,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xee,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x11,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xee, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x71,0xfc,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x19, 0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x8b,0x41,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xf9,0xc,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcd,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xee,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0xef,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf2,0x43,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x19,0xb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd1,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80, 0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xef,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xef,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6, 0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe8,0xfe,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9d,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xee,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xef, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe0,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x18, 0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x78,0x37,0x83,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91, 0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xef,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xee,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x38,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x46,0x7e,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x97,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x57,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x4d,0x11,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x5,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf, 0xc6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0x17,0x48,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xcb,0x60,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e, 0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x29,0xfc,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x1,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0xc7,0x2f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xc8, 0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0x17,0x48,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6e,0x4c,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xab,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0x80,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc5,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xff,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0x4e,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x9,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x34,0x83,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x1,0xd,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xb,0x15,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e, 0x51,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x19,0xb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd0,0x88,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a, 0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe8,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x2,0x2a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x4,0xd,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xe, 0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x19,0xd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7d,0x54,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5e,0x5,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0x61,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa8,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x53,0x31,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x37,0x5d,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3d,0x8b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x9e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x14,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54, 0x19,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3b,0xe6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa0,0x1e,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xec,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0x1b,0x22,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe6,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xc0,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x10, 0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x19,0xd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa3,0x1d,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0x17, 0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf4,0x7,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0x20,0x22,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb3,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x13,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0x5a,0x31, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0x17,0x49,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb,0xa2,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x8c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe4,0x56,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9a,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x8e,0x17,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0xc3,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60, 0xa,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x69,0xa4,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a, 0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd7,0x12,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xca,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0x5f,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0x91, 0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x12,0xe9,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5e,0xc6,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0xd,0x2a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x1c,0x15,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x62,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x19,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd9,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x8a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x84,0x93,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xa9,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xab,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67, 0x1f,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x19,0xd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf2,0x64,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a, 0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa0,0xae,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa5,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0xcb,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xae,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x81,0xa5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6,0x68,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfb,0xb0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9, 0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0xd2,0xc,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa5,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x4c,0x30,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0x17,0x44,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0xb1,0x29, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x19,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7,0x22,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6e,0x6a,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xb4,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xad,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xd5,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf1,0x59,0x31,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0x5c,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x0,0x12,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe1,0x16,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x21,0x22,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xef,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x12,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xb, 0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1f,0x81,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0x17, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6d,0xb3,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xcc,0x47,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x91,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x7b,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x8,0x57, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x78,0x8b,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf5,0x81,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80, 0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xd0,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xac,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0xc7,0x47,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x80,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x26,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19,0xd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xab,0x7e,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e, 0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2b,0x87,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb3,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0xc5,0x47,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc6,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x73,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xb6, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x18,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x62,0xcb,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7b,0xbe,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xc6,0x47,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xbf,0x47,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0xc1,0x47, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x58,0x86,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdb,0x7d,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x80,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe2,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xc3,0x56,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0x83,0x47,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44, 0x7b,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0x17,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6f,0x3d,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e, 0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe7,0x7c,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xfc,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xd8,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xad,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0xb7,0x56,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xba, 0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0x17,0x6f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb4,0xb6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x19, 0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa9,0x7e,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f, 0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0x28,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc9,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x75,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xbc,0x56, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb5,0x74,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x5,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc3,0x7d,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xff,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x84,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x98,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xbb,0x56,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xb9,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3, 0x40,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf9,0x80,0x8e,0x17,0x6b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa2,0xda,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a, 0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x63,0x82,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xbb,0x56,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa5,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x77,0x47,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x8f, 0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x93,0x81,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe0,0x45,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0, 0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xbe,0x29,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa5,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x41,0x11,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x87,0x20, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x95,0xb8,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcf,0x30,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xb5,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9a,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x82,0x47,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf9,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7, 0x46,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17,0x6b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe5,0x73,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf6,0x80,0x8e, 0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x37,0x44,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc6,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0x7f,0x20,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x49,0x11,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x8e, 0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x64,0x43,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfc,0x78,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x4b,0x11,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xca,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x8a,0x20,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x3e,0x11, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x76,0xbe,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x18,0x8c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x82,0x8c,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80, 0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xc0,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xd,0x40,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xf,0x40,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51, 0xe,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe3,0x4e,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6,0xdd,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xf7,0x39,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x11,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x15, 0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8d,0x8,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0x17, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5d,0x48,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xb,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1b,0x1,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xf,0x40,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xfb,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x7b,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x19,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc2,0x33,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5d,0x9,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf7,0x80, 0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x14,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xfe,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x4d,0x4f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x6,0x40,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde, 0xc0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x18,0x8c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbd,0x46,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf2,0x11,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe4,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x8c,0x5e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x12,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xf4,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x47, 0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x98,0x2,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0x17, 0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3e,0xc3,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x6,0x25,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd5,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xff,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0xf8,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0x17,0x66,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5a,0x36,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf6,0x3,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xf5,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x95,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xfd,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x8,0x25,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a, 0xf4,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0x17,0x66,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xae,0xfa,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e, 0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xde,0xfc,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x1,0x25,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc5,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xf6,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x5, 0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf5,0x6,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0x17, 0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6a,0x0,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1, 0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xfc,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb1,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xf7,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xc3,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x96,0xf9,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x66, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9f,0xc5,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89, 0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xf6,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x5a,0x15,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0x64,0x15,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2, 0x99,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe,0x7e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a, 0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x52,0x97,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa5,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x59,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0xa1,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x90, 0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0x17,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf2,0x98,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xaa,0xd4,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1, 0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xd3,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xad,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xcf,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xd1,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb3,0xdd,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0x17,0x65, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x56,0x39,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xc6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc5,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xcc,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0xd5,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd, 0xd6,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x91,0xd8,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x54,0xdc,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xc8,0x29,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb5,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xca,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xda, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb9,0x3b,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x19, 0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3a,0x89,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x7c,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0xd1,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0x85,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0x17,0x68,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x88,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0x17,0x68, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa1,0x79,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80, 0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x8c,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x91,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x2a,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x78,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd, 0xc8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a,0x18,0x8c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1c,0x6c,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbd,0x2e,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b, 0x5,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0xce,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x28,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xd3, 0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x19,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa5,0x34,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17, 0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1c,0x2d,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x71,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa7,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x31,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0x2b,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17,0x68,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x46,0x38,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x2,0x80,0x8e,0x17,0x68, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2d,0x70,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80, 0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x33,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0xd0,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0xd6,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51, 0xd3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x8c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x71,0xd9,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a, 0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x97,0xd6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd9,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xdb,0x29,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc9,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0xd8,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0xb3, 0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0x17,0x54,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8,0xd3,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0x17, 0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe4,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4, 0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x54,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0x45,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe8,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80, 0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d, 0x53,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xe4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9a,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x96,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd5,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x12,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x12,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xb0, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x86,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x72,0x80,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x1a,0x6b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xe5,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa8,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4f,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0xe0,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf, 0x99,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xc9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc9,0xf0,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x57,0xa,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0xbc,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xe5,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xb0, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x18,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1, 0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x75,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0xe9,0x51, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc8,0x22,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa3,0x99,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0x75,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xa7,0x42,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3d,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaf,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xbc,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0xf2, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb7,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9d,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2,0xfc,0x4b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd9,0x43,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9f,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe5,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0xbd,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4b,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x96,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb7,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xc8,0x5e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x57, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4f,0xc8,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x71,0xe9,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95, 0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x57,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1a,0xf6,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf4,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb8,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x57,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xe0,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35, 0xa7,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x68,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x55,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd2,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0xe0,0x1b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xe9, 0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4b,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x52,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x57,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0xbc,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9,0x86,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x65,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe9,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x57,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xe0,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf1, 0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5b,0xf8,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb6,0x1a,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xbd,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0xe0, 0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xcb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3e,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5e,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xbc,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x58,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x90,0x27,0x2e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80, 0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x22,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42, 0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb0,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa2,0x1a,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa9,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xbc,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xc8, 0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xcb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x89,0xfa,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x64,0xd8,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x57,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3a,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x62,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80, 0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb6,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xe0,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xb0,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f, 0x3e,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xc9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x69,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e, 0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe6,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcf,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xb0,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,0xa2, 0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x45,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1, 0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf8,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xfc,0x1,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xed,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xa,0x68,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x13,0x96,0x4c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x45,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xe8,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xb0,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b, 0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xc9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x58,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x64,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xce,0x13,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6b,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1, 0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x49,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98, 0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xce,0x13, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x73,0x5,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x43,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbc,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x10,0x23,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x5,0x60,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39, 0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe,0xc3,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e, 0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9c,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0x80,0x41,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa1, 0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x11,0xf0,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9c,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xfe,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x59,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x5,0x55, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0xd,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbe,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x45,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x32,0x60,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x1a,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb8,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6f,0x8c,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd9,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x39,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x48,0x5e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xe3, 0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x82,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x20,0xe7,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x23,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x1e,0x62, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5b,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc7,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0xbc,0x3,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba, 0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4b,0x17,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc7,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x48,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0xe5,0x65,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x59,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4d,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x1c,0x62,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xe3,0x74, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa9,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcb,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0xf0,0x50,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x1a,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe5,0xd7,0x52,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf3,0x80,0x8e, 0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7e,0xe3,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa5,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x48,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x31,0xf0,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x78,0x4d,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x5a,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x14,0x62,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0xb6,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb6,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x1a,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc, 0xa4,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa6,0x12,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e, 0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x65,0x6a,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x95,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xb6,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0x48,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc8,0xad,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x8e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xd4,0x52,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0x78,0x87, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x48,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80, 0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x89,0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd9,0x80,0x8e,0xa1,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xd5,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x8d,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf9,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x43,0xef,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x95,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0x88,0x54,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x8b, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x47,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xea,0x74,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x5,0x0,0x0,0xe,0x33,0xda,0x95,0x66, 0xd9,0x46,0xa2,0x89,0xc2,0xf3,0x79,0xfa,0x5,0x13,0x9c,0xe6,0xfd,0x82,0xe4,0xf6, 0x9d,0x46,0xd2,0x81,0xa1,0xa3,0xe5,0x5e,0x3a,0x4a,0xb7,0xce,0x79,0x42,0x24,0x42, 0x96,0x48,0xac,0xa5,0x86,0x5f,0x83,0xd4,0x72,0x6a,0x7d,0x70,0x39,0xd5,0xc,0xd3, 0x8b,0x49,0xec,0xb9,0x4c,0x27,0x68,0x50,0xac,0x13,0xd9,0xa0,0xb6,0x97,0xf9,0x8d, 0x6d,0x41,0x8c,0x81,0x9c,0xef,0xf1,0x95,0x39,0x28,0xd4,0x27,0x51,0xa9,0xd2,0x34, 0x60,0x4b,0x9a,0x87,0xdd,0x0,0xb1,0xe1,0x29,0x33,0xac,0x6e,0xa7,0x7d,0x8e,0x78, 0x54,0x4f,0xaf,0x8e,0xad,0x65,0xfe,0x99,0xf9,0x96,0x56,0xf8,0x46,0x94,0x8a,0x4, 0x4b,0x43,0x6b,0x95,0x80,0xc9,0x46,0x3,0x54,0xd1,0x7,0xfe,0x43,0x82,0x9c,0x1d, 0x88,0x4b,0x40,0x9c,0x64,0x4b,0xe5,0xa3,0x79,0x6e,0x7,0xaa,0xe3,0xb1,0xb2,0xe9, 0x51,0x44,0xaa,0xa8,0xc2,0x0,0x2a,0xe5,0x22,0xb1,0xff,0x6,0x63,0x6d,0xa1,0xe8, 0xbe,0x44,0x7a,0x93,0x8c,0xd2,0xd4,0x59,0x5a,0x28,0x6,0x62,0x3b,0xda,0x60,0xc3, 0x84,0x4d,0x67,0xb8,0xc5,0x38,0x2c,0x14,0x6b,0x29,0x6a,0x43,0xec,0xbc,0xfc,0xa3, 0x7a,0x4b,0x7f,0xa7,0x4d,0x11,0x64,0x3a,0x71,0xa6,0xc8,0xc6,0x7d,0x40,0x3a,0x8f, 0xf,0x4a,0xc6,0x86,0x47,0x8e,0xf,0x5e,0xb8,0xe9,0xb4,0x8b,0x60,0x40,0x7a,0xda, 0xa0,0x4a,0x61,0xba,0x91,0xbb,0x4b,0x29,0x62,0xcf,0xdd,0x4a,0x21,0xca,0xe6,0xec, 0x32,0x49,0xb1,0xbf,0xa2,0x94,0xe6,0xc,0x6c,0x1,0x55,0x36,0xd7,0x62,0xd1,0xa8, 0x3c,0x40,0xc2,0x93,0x25,0xa,0xed,0x4e,0xcb,0xd,0x5b,0x9,0xd6,0xe4,0xd4,0x89, 0x42,0x45,0x83,0x93,0x78,0x74,0x15,0xd0,0x35,0x9a,0x96,0x17,0x9,0x56,0x6c,0x27, 0x4c,0x40,0x62,0x93,0x72,0x9f,0x7d,0x3a,0x53,0x6c,0x90,0xd8,0x50,0x6c,0x83,0x7e, 0x8c,0x4a,0xa8,0x99,0xd9,0xdf,0x55,0x35,0x43,0x44,0x73,0xe6,0x80,0xe6,0x40,0x92, 0xfe,0x49,0xf3,0xbc,0xc,0x3a,0xa1,0x9d,0xec,0xbf,0xe1,0xdf,0x70,0xc2,0x65,0x3f, 0xa5,0x4b,0x4,0x86,0xfb,0x17,0xe,0x77,0xfa,0x77,0xe7,0x24,0xb8,0xbe,0x69,0xa7, 0x9a,0x45,0x54,0x93,0x2e,0x41,0xc5,0x10,0x66,0xd2,0xb5,0xdd,0xb5,0x89,0x70,0x60, 0xfb,0x4c,0xd1,0x8d,0xcb,0x69,0x8f,0x8d,0x20,0x97,0x95,0xcd,0x8a,0xf7,0x4b,0x1b, 0x23,0x4f,0x4c,0xb9,0x17,0x75,0xcd,0xae,0x2f,0xfd,0x4e,0x56,0x71,0xa2,0x8e,0xe9, 0x76,0x40,0x1b,0xba,0xbb,0x44,0xa4,0x7,0x34,0xb7,0x22,0x80,0xca,0x6a,0xed,0x32, 0x68,0x4b,0xf5,0x88,0x46,0x9d,0xd8,0x1f,0x2a,0x19,0x24,0xc6,0x8e,0xde,0x81,0x98, 0x9c,0x45,0x27,0x91,0x4e,0xa9,0x1e,0x1a,0x79,0x2d,0x38,0xf5,0x1f,0x65,0x11,0x4a, 0x9b,0x4b,0x1a,0xad,0x0,0x90,0x17,0x77,0xe4,0x79,0xbb,0x95,0x15,0x9f,0x8,0x39, 0xbc,0x42,0xba,0xa1,0xed,0xe3,0xa2,0x8c,0xa,0x45,0x40,0xd3,0xd1,0x7a,0xae,0x3c, 0xd0,0x42,0x5b,0x8d,0x5f,0xcb,0x3f,0xd6,0xfe,0xa4,0x3b,0xe5,0x5e,0xaf,0xec,0x19, 0x15,0x4e,0xe,0x99,0x5b,0x2d,0xf8,0x4c,0x20,0x64,0x0,0x17,0x70,0xae,0xa4,0xff, 0x59,0x48,0x85,0xad,0x30,0x2a,0xd4,0xb5,0x7e,0x18,0x84,0xfd,0x27,0x2,0x56,0xbb, 0x6a,0x4e,0x2f,0xbe,0xcb,0x3d,0x4e,0x31,0x84,0x82,0x43,0x85,0x59,0x34,0x1d,0x10, 0x9c,0x4f,0x65,0x96,0xcf,0xf9,0xb1,0x53,0x60,0x25,0xae,0x95,0xf1,0x9c,0x4c,0x88, 0x91,0x4d,0x64,0xa4,0x26,0xcc,0xf4,0xd,0x4d,0x88,0xdf,0xa3,0x52,0xda,0xfa,0xba, 0x1c,0x40,0x4a,0xbf,0xea,0x6b,0x3d,0x88,0x7e,0xa0,0x4e,0x40,0xfa,0xb0,0x19,0xb5, 0xfb,0x45,0xfc,0x83,0x1,0x6b,0xef,0x65,0xb0,0xfe,0xd9,0xb,0x13,0x70,0xe9,0x33, 0x5d,0x48,0x5c,0x81,0xc3,0x36,0xdb,0x30,0xc3,0x52,0xb7,0xa4,0xb8,0x5c,0xd8,0x27, 0xf9,0x47,0xa1,0xbd,0x97,0x3e,0x31,0x53,0xbb,0x3,0x77,0xdc,0x4d,0x22,0x75,0x13, 0x15,0x4a,0xd8,0x95,0x77,0x69,0xda,0x6,0xd0,0xbc,0xe,0xc3,0x46,0x96,0x6e,0x50, 0x93,0x47,0x68,0xbd,0x5,0xb0,0xa2,0x19,0x85,0x80,0x7f,0x35,0x6a,0x59,0xea,0x8b, 0xbf,0x46,0x71,0x9b,0x3b,0x4f,0xc2,0xe2,0xa2,0xfe,0x46,0xa3,0x8,0xfa,0x7b,0x13, 0x5,0x40,0x1d,0x94,0x3c,0xd3,0x93,0xa6,0x8a,0x1f,0x8c,0xfd,0x69,0x1f,0x2e,0x1a, 0x41,0x41,0xed,0xb2,0xf5,0x4c,0x2e,0xe4,0x6,0x7b,0xa4,0x20,0xe2,0xd8,0x50,0xd2, 0xf3,0x42,0xe4,0xbf,0x6c,0x51,0xd,0xd3,0xb8,0x96,0x3c,0x20,0x24,0xc,0x4e,0x3b, 0xc4,0x43,0x6a,0xba,0xfa,0xc6,0x81,0xd8,0xab,0x60,0x8,0x2e,0xfb,0x5c,0xa9,0x17, 0x94,0x4d,0x57,0xad,0xac,0xd8,0xac,0xc,0xb3,0x8b,0x2,0x49,0x8f,0x30,0xc4,0xc5, 0xc8,0x48,0x8f,0x8a,0xf7,0x79,0xc1,0xb9,0x4d,0x36,0x45,0xdd,0xbf,0xcf,0x1b,0xb9, 0x83,0x47,0x5a,0x9d,0x15,0xf5,0x86,0xe0,0x44,0xef,0xaa,0x3a,0xd7,0xc4,0x81,0xe, 0x1f,0x4b,0x10,0x92,0x38,0xe8,0xcb,0x85,0x73,0x51,0xf5,0x42,0x3a,0x57,0x51,0x10, 0x5b,0x4a,0x4,0xb7,0x3a,0x5a,0xf7,0x53,0xac,0xfb,0x22,0xb2,0x45,0x80,0x4c,0x6, 0xd,0x45,0x47,0x9c,0x8b,0xb4,0xdf,0xb0,0x29,0x8a,0x8d,0xb9,0x77,0xd0,0xb2,0x19, 0x95,0x44,0x4a,0x8e,0x4,0xae,0xc8,0x2f,0xf2,0x4f,0x90,0x2a,0xde,0xc,0x42,0xd4, 0x6b,0x4d,0x3d,0xb6,0x1,0x90,0x47,0x1d,0xdb,0x4a,0xb3,0x7b,0xf1,0x9b,0xfd,0x91, 0x60,0x47,0x17,0xa4,0x7d,0xa8,0xb2,0xed,0x61,0x13,0x38,0x91,0xf4,0xea,0xaf,0x29, 0x61,0x4f,0xb7,0x8c,0xbe,0x24,0x73,0xe1,0x4f,0x9,0x6f,0x1d,0xdf,0xd9,0xc4,0x91, 0xbe,0x48,0x66,0x86,0xe1,0x4,0x67,0xf6,0xbb,0xe7,0xa,0x8d,0x58,0x7c,0xb5,0x7d, 0x64,0x46,0x1d,0xb9,0x4e,0x55,0x16,0x1,0xeb,0xdc,0xa0,0x13,0x8c,0xe6,0xef,0xaa, 0x70,0x4b,0xd7,0xa8,0xf8,0x53,0x8d,0xeb,0x94,0xef,0x7,0x2b,0x56,0xc8,0xf5,0xbc, 0xc3,0x44,0xed,0xbf,0xd,0xa5,0x58,0x2e,0xe6,0x1e,0xa1,0xe1,0xdd,0xd8,0x22,0x23, 0x4e,0x46,0xd2,0x8e,0xd2,0x84,0xff,0x6d,0x86,0xb1,0xd9,0xd3,0x72,0x91,0xfc,0x2, 0x87,0x40,0xf1,0xb5,0x88,0xa3,0x7d,0xcd,0xd5,0x99,0x7f,0x46,0xd3,0x77,0x56,0x42, 0x84,0x43,0x44,0xb7,0x21,0x9a,0x11,0xd6,0xa1,0xda,0xe0,0x27,0x81,0xfd,0xcb,0x4b, 0x4,0x4b,0xb2,0xa3,0x20,0xbd,0xe6,0x74,0xa1,0x76,0xd6,0x29,0x7e,0xf8,0xf5,0xe0, 0xce,0x4a,0x7a,0x88,0x61,0x3a,0x29,0xef,0xbb,0xb5,0x66,0x19,0x9,0x7b,0x42,0x48, 0xa2,0x41,0xca,0xb4,0x73,0x62,0x8,0xad,0xff,0x90,0xcc,0x4f,0x59,0x1c,0xb3,0x22, 0xac,0x4d,0xec,0xa5,0x15,0x95,0x4d,0x18,0xf3,0x1f,0xee,0xfe,0x30,0x9b,0xaa,0xce, 0x82,0x4e,0xd5,0x99,0x39,0xd0,0x15,0x99,0x99,0x74,0x66,0xf1,0x23,0x2e,0x71,0xba, 0xd3,0x4d,0xb0,0x87,0x7f,0xca,0xe,0x9d,0x47,0x43,0x1b,0xf2,0xab,0x2a,0xbf,0x51, 0x44,0x4d,0x8,0x9f,0xd4,0x56,0x41,0xd0,0x26,0xce,0x1d,0x14,0x89,0xe3,0x7a,0x9a, 0xac,0x4a,0x6c,0xa0,0x65,0xe1,0x90,0xa5,0xbd,0x56,0xff,0x7e,0x20,0x43,0xac,0xcf, 0x28,0x4f,0xdb,0xae,0xc5,0x27,0x28,0x9e,0x6b,0xb8,0x19,0x7f,0x6d,0xbc,0xb6,0xe6, 0x40,0x49,0x3f,0x9a,0x90,0x41,0x4e,0xe8,0xf8,0x4,0x2d,0x70,0x64,0xa7,0xdd,0xee, 0xbe,0x40,0x12,0xb3,0xe,0xcf,0x9b,0x91,0xd5,0xc5,0x69,0xaa,0x7a,0x97,0x98,0x9f, 0x35,0x4e,0xac,0x8a,0xfa,0xce,0x2f,0xe8,0xa4,0xbc,0xf,0xa4,0x84,0x1,0x95,0x1a, 0x2b,0x4d,0xe6,0x92,0xf6,0xba,0xdf,0x1e,0x10,0x70,0xa6,0xc3,0x86,0xc8,0xff,0xc0, 0x95,0x4e,0xe6,0x99,0xe0,0x7a,0x2,0x61,0x36,0xbb,0xfb,0xd0,0x15,0x71,0x5a,0x8c, 0x9c,0x4c,0x3b,0x9c,0x94,0xad,0x66,0x36,0x2d,0x71,0x6f,0x89,0xc0,0xd,0xe6,0x4, 0xd5,0x44,0x67,0xa9,0x1a,0xad,0x8e,0x70,0xb4,0x65,0xf4,0x9d,0xf5,0x8f,0x2f,0xa9, 0xdc,0x4e,0x3,0x8b,0xa6,0x8a,0xcd,0x3b,0x6b,0x4f,0xf,0x59,0x12,0x4c,0xf,0xc8, 0xec,0x48,0x31,0x8c,0x49,0xd6,0x6f,0x41,0x5d,0xf6,0x65,0x18,0x98,0x3b,0xbc,0x95, 0x2c,0x44,0x16,0xa0,0x88,0x46,0x7c,0x4b,0x5b,0x7c,0x30,0xed,0x20,0xf,0x5c,0x7f, 0x1a,0x4e,0x7d,0x83,0x4c,0xc6,0x6b,0x7a,0x98,0xe2,0x12,0x9b,0x18,0x88,0xa6,0x22, 0xa8,0x4b,0x62,0x89,0xdd,0xdf,0x78,0xa7,0x15,0xe5,0x6a,0x9c,0x7,0xfc,0xc6,0xff, 0xf5,0x45,0x2d,0x95,0xa1,0x19,0xb1,0x62,0x3f,0xff,0x41,0xe0,0x33,0x48,0xef,0x87, 0x94,0x46,0x19,0xb7,0x3,0xe3,0x19,0xf3,0xae,0x5a,0x9c,0x91,0x43,0xe3,0x55,0xd2, 0x82,0x46,0xc3,0xab,0x19,0x9,0xd9,0xfc,0x5b,0x96,0x2f,0xc5,0x29,0x25,0x11,0x19, 0x9b,0x4b,0xbb,0x8f,0x3e,0x9d,0x64,0x72,0xd4,0x8a,0x4,0x6c,0xe1,0x35,0x0,0x69, 0x59,0x4e,0xb8,0xab,0xdf,0xaa,0xea,0x5d,0xd1,0x59,0x6d,0xa8,0x28,0x8d,0x59,0xcb, 0xd5,0x45,0x2f,0xaa,0x7e,0x9c,0x24,0x83,0x3c,0x4f,0xe7,0x5e,0xe5,0x6d,0x51,0x91, 0x9,0x4a,0xb0,0xa5,0xa2,0x58,0x7b,0x2c,0x3d,0xa5,0xd,0x84,0xaf,0xd8,0x70,0x57, 0x27,0x41,0x63,0xb6,0xbd,0x5a,0xd3,0x49,0xb,0xa,0x19,0x39,0xe8,0xfe,0x41,0x1c, 0xb8,0x42,0x3c,0x88,0xa2,0x7f,0xbb,0x49,0x1e,0x32,0xca,0x7f,0xd5,0xd6,0x8,0xa8, 0x66,0x48,0x35,0x88,0xb0,0xed,0x50,0xb2,0x6b,0xea,0xf2,0xeb,0xde,0x71,0x78,0xab, 0x4d,0x48,0xe4,0x95,0x56,0x84,0xc7,0x7f,0xba,0x42,0xec,0x13,0xb4,0x37,0x72,0x2f, 0xb,0x4f,0xb7,0x8c,0x78,0x34,0x83,0xd,0x7d,0x70,0xc0,0xa2,0xcf,0xfe,0xcb,0x32, 0xb4,0x44,0x36,0x9c,0xee,0x8a,0x50,0xe4,0xee,0x5d,0x68,0x5c,0x78,0x1,0xb5,0x5f, 0xdc,0x45,0xd2,0x9e,0x70,0xd0,0x5f,0x4,0x67,0x13,0xd7,0x45,0x92,0x30,0xd9,0x86, 0xdd,0x42,0x16,0x83,0x94,0x97,0xc4,0xa9,0xd0,0x6e,0xd8,0xa6,0xec,0x8b,0x7b,0x5d, 0xd7,0x4a,0x48,0x96,0x96,0x65,0x7f,0x65,0xbc,0x3,0xa5,0xbe,0x8e,0x19,0x57,0xcb, 0x67,0x41,0x5,0xae,0x1d,0x30,0x44,0x65,0x11,0xb4,0xd5,0xef,0xc6,0xff,0x55,0x6b, 0xd8,0x41,0x1b,0xb6,0x21,0xfb,0x6b,0xc,0x16,0xa1,0x44,0x7c,0x54,0x6d,0x69,0xac, 0xd6,0x40,0xf0,0x92,0xd8,0x19,0x75,0x74,0xd0,0x1e,0xb0,0x42,0x6a,0x92,0xdf,0x80, 0xda,0x47,0xb1,0xba,0x9f,0x64,0x21,0xc3,0x6a,0x81,0x3c,0x7d,0x30,0xbc,0xec,0x51, 0xb1,0x49,0x77,0x87,0x94,0xd3,0xc3,0x0,0x2c,0x30,0x4e,0xf,0x8c,0x41,0x4,0x6a, 0x77,0x48,0x17,0x91,0xb,0xec,0x80,0xed,0xc,0x10,0x9,0xf5,0xb,0xd0,0x3,0xd2, 0x3b,0x4d,0xb9,0x8e,0xc3,0x19,0x27,0x7a,0x3f,0x23,0xac,0xa0,0xe,0xb1,0x24,0x44, 0xbc,0x42,0xc5,0x82,0xed,0x47,0x2d,0x2f,0xb5,0xde,0x33,0xd8,0x8,0x14,0x12,0x54, 0xc3,0x41,0xcd,0x89,0x1c,0xb3,0x33,0x1b,0x5d,0x6,0x69,0x1b,0x89,0x21,0x3d,0x18, 0x18,0x4e,0x69,0x96,0xc3,0xcc,0x19,0x6,0x1d,0xbe,0x84,0xcb,0x71,0xac,0x33,0x3d, 0x98,0x40,0x99,0xb9,0x83,0xfc,0x4e,0x24,0xb3,0xe3,0x18,0x70,0xc2,0xb6,0x26,0xb, 0x2a,0x4a,0x61,0x8e,0x85,0x5f,0xbf,0x41,0x7a,0xcb,0x6f,0x7a,0x3e,0x52,0x79,0x11, 0x7e,0x4d,0x73,0xa5,0xd2,0x4d,0x3,0x7,0xa8,0x1b,0x36,0xfa,0xd7,0xeb,0x83,0x88, 0xe9,0x4d,0x81,0x9c,0xa8,0x10,0x9,0x8b,0xff,0xda,0xc3,0x64,0x1,0x7a,0x72,0xb8, 0x97,0x46,0xcf,0x9e,0x76,0xe9,0xb9,0x51,0x24,0xec,0x11,0x5a,0xb9,0xf1,0xe1,0x98, 0xf0,0x42,0xb,0xa0,0xbf,0x8f,0xbb,0xf7,0x47,0xfd,0xc5,0xec,0xed,0x1f,0x6f,0x52, 0x5f,0x40,0x99,0xaf,0xc6,0xb3,0x86,0x35,0x5,0x7b,0xba,0x78,0x21,0xfe,0xa7,0x59, 0x6f,0x42,0x28,0x96,0x1a,0x57,0x10,0x30,0xf1,0x2e,0xf6,0x9,0xbe,0xd5,0x9c,0x49, 0xab,0x4b,0x24,0xbb,0xd9,0x8d,0x15,0x4d,0xb3,0x33,0x4b,0xdc,0xb5,0x6d,0xec,0x4f, 0x9b,0x44,0x93,0x86,0x23,0xec,0xdf,0x47,0xa4,0x6e,0x6e,0xd0,0xe5,0xbf,0x19,0xd5, 0xa1,0x4c,0xf7,0x82,0xae,0x5c,0xb,0xd7,0xe7,0xfb,0x9b,0x8d,0xec,0x59,0xf,0xcf, 0x20,0x45,0x2d,0x8c,0xb7,0x97,0x1,0x83,0x8c,0xbc,0x91,0x1c,0x6e,0x71,0x8c,0x65, 0x80,0x42,0xda,0xa0,0x17,0x9,0x3a,0x48,0x93,0x18,0xd7,0xde,0x70,0xa7,0x25,0x52, 0x37,0x45,0xe8,0x99,0xc7,0xe6,0x7,0xd4,0x16,0x59,0x22,0x49,0x3a,0x71,0x5c,0x6f, 0x3b,0x4b,0xfc,0x96,0x90,0x0,0x46,0x77,0x28,0x9,0x1a,0x25,0xba,0xd,0xfd,0x8, 0x5d,0x41,0x10,0x80,0xff,0x23,0x10,0x5a,0xd,0x85,0xec,0xdf,0x9c,0x9c,0xa6,0x78, 0x36,0x4c,0xcb,0xb6,0x43,0x83,0x9e,0xea,0xfc,0x7c,0x82,0x7c,0x28,0x79,0x50,0x1f, 0x5f,0x4f,0xbd,0xaa,0xd7,0xb4,0xad,0xa7,0x58,0xd9,0xc6,0x69,0x58,0xe3,0xb3,0xf2, 0xb4,0x46,0x94,0x85,0xd5,0x43,0xb0,0x92,0xfd,0xd7,0x15,0xa9,0x2e,0xde,0x42,0x6e, 0x58,0x43,0x18,0xb0,0x7b,0x75,0x1d,0xb8,0x2f,0xb8,0x5d,0x44,0x87,0xbf,0x86,0xb6, 0xc9,0x47,0x21,0xb5,0xc2,0x6d,0x32,0xe0,0xe3,0xa3,0x52,0x8b,0x2a,0x7f,0xe0,0x2e, 0x2b,0x4c,0x13,0xa9,0x13,0x13,0xf1,0xdb,0x19,0x80,0xfc,0xda,0xcf,0xea,0x4d,0xc, 0x8a,0x4b,0xa,0xb0,0xdd,0x92,0x52,0x1,0x48,0x63,0xdd,0x65,0xb9,0x56,0x32,0x20, 0x69,0x45,0x67,0x99,0xfe,0x5a,0xba,0x2b,0x1,0x46,0xa0,0x7b,0x8c,0xbc,0x13,0x2b, 0xcb,0x42,0xba,0xa5,0xe3,0xe5,0x97,0xe3,0xa4,0x41,0xe5,0x4,0x3c,0x78,0xbc,0xe8, 0xae,0x47,0x9,0xa3,0xf4,0xcd,0xd9,0x67,0xe9,0xdb,0xae,0x8f,0x64,0x82,0x5,0x46, 0x4c,0x43,0x92,0x91,0x78,0xe5,0x3b,0x24,0x48,0xb1,0x46,0xee,0xaf,0xcc,0x32,0xc0, 0xef,0x45,0x7,0x9e,0x50,0x3c,0x69,0xac,0x96,0x35,0x8b,0x5a,0xa5,0x8a,0x25,0xd1, 0xc6,0x46,0x22,0x96,0x55,0x1a,0x98,0x56,0xe9,0x94,0x11,0x27,0x4d,0xd,0x26,0x3f, 0xe3,0x41,0x65,0xa1,0xa6,0xf9,0xb0,0x3b,0xce,0x6,0xc6,0x7e,0xbb,0x4c,0x8b,0x38, 0xb6,0x4c,0x74,0x99,0xf3,0xa1,0xb,0xcc,0x25,0x97,0xac,0xf9,0xcb,0x55,0x6,0x5d, 0x5c,0x43,0xce,0xbb,0x52,0x2d,0x1a,0xe0,0x11,0xf6,0x4a,0x10,0x64,0x24,0x43,0xe1, 0x28,0x4d,0xd6,0x84,0x71,0xac,0x97,0xd8,0x68,0x5e,0x8a,0xd6,0x85,0x38,0x4,0x3d, 0x59,0x40,0xf6,0x88,0x71,0x84,0xde,0xf8,0x17,0xc3,0xa7,0x6a,0x98,0xed,0x65,0x37, 0x90,0x49,0x28,0xb4,0x5f,0x6f,0x29,0x96,0xaa,0x1d,0x56,0x41,0xd5,0xc7,0x86,0x5f, 0xd1,0x42,0x24,0x8b,0x3b,0x2c,0x9e,0xd0,0x7a,0xbc,0xfe,0x80,0x78,0x89,0x7f,0xae, 0x24,0x49,0x27,0xaa,0x53,0x6b,0xe6,0x36,0x1f,0xc7,0x97,0xb6,0x26,0xdb,0xdb,0x7b, 0xec,0x47,0xd2,0x9a,0x39,0xf7,0xc3,0x75,0xc5,0xe1,0x10,0x89,0x84,0x6e,0xdd,0x7a, 0xbe,0x40,0x4c,0x95,0x1a,0x16,0xf,0x76,0x9a,0xbb,0x5d,0x2a,0x48,0x3,0xb5,0x83, 0x5e,0x43,0xad,0x94,0xce,0xd2,0xd7,0xb9,0x5e,0x6e,0xa,0xbb,0xd4,0x30,0xc7,0x5a, 0x2c,0x41,0x82,0x99,0xee,0x2,0x17,0x3,0xfb,0x89,0xee,0xe2,0x17,0xee,0x9a,0x1b, 0xef,0x46,0x18,0x80,0x91,0xd5,0x7a,0xb7,0xc1,0xd5,0x3f,0x7c,0x5d,0x6,0xe,0xc4, 0x76,0x47,0xc8,0xbf,0xeb,0x4d,0x65,0x9c,0x17,0xb4,0x73,0x16,0x81,0xe5,0x3c,0xfe, 0x50,0x4d,0xbe,0xbb,0x22,0xbf,0x6b,0xc,0xab,0x8f,0xa,0xf3,0x82,0x62,0xd,0x4c, 0xf1,0x4e,0xcb,0x81,0xbb,0x73,0x9d,0xd,0xe1,0xbd,0x15,0xca,0x1c,0x8c,0x15,0x1d, 0x37,0x49,0xd,0xaa,0x40,0x2d,0x4d,0xe7,0x30,0xa5,0x94,0x83,0x9c,0x6c,0x96,0x40, 0x1a,0x42,0x5f,0x8b,0xed,0xf7,0x15,0x1f,0x66,0x25,0xe,0xbd,0x95,0xb6,0xc2,0x3c, 0xbf,0x4f,0x74,0x87,0xbc,0xc1,0x51,0xc1,0xa1,0x8d,0x92,0x83,0xf9,0xad,0xd1,0x16, 0xed,0x44,0x8,0x8f,0x53,0x70,0x74,0x76,0xa0,0x36,0x96,0x3c,0x56,0xce,0xb8,0x7e, 0xfc,0x4c,0x76,0x95,0x7c,0xa7,0xf6,0xe,0x27,0x29,0x46,0xa2,0x8,0xf4,0x44,0x6d, 0x85,0x4e,0xe8,0x96,0x60,0x22,0x4,0x6e,0x3d,0xb1,0xc1,0x18,0xf0,0x4f,0x14,0x36, 0xb5,0x4e,0x49,0x96,0x6b,0x55,0x63,0x29,0x63,0xb7,0x0,0x16,0x55,0x83,0x6e,0x4f, 0xcf,0x43,0xc,0x93,0xa,0x47,0x54,0x68,0x25,0xbe,0xe,0x45,0x59,0x31,0x8a,0x60, 0x3c,0x49,0x74,0xad,0x24,0xd4,0xa,0x7a,0xa6,0xb,0xdd,0xe,0xfb,0x9c,0x3e,0x88, 0x5d,0x48,0x47,0xb7,0xf3,0x19,0x88,0xed,0xe1,0x79,0x8e,0x6,0x43,0x4b,0x4e,0x1, 0x45,0x42,0x66,0xab,0xab,0x11,0x45,0xfa,0x8b,0xc3,0x40,0x42,0xab,0xd4,0x7,0xfc, 0x27,0x47,0x86,0xa1,0x72,0xb7,0x72,0xaf,0xb6,0x0,0xf5,0x86,0xc2,0x8b,0xc4,0x35, 0xc9,0x4e,0xbe,0x9d,0xd9,0xc1,0x8a,0xbd,0xee,0x98,0x1b,0xb9,0x45,0xc5,0xec,0x6d, 0xf5,0x4a,0xde,0xa1,0x8d,0xd2,0xb9,0xf9,0xcc,0xd3,0x52,0xc1,0x37,0xef,0x58,0x36, 0xe4,0x4a,0xad,0xac,0x4e,0xa5,0x2e,0x5c,0xf0,0xc5,0x4c,0xa3,0x2,0xf1,0x8e,0xa0, 0x88,0x40,0xfa,0xad,0x5,0xe,0xa2,0xc0,0xf8,0x6d,0x8d,0xc2,0xa0,0xa9,0xb9,0x7, 0x77,0x4b,0xde,0x9d,0xc4,0xfc,0x97,0xdf,0xc3,0xf7,0x96,0xbf,0xa0,0x72,0xd7,0xfa, 0x92,0x47,0x41,0xa3,0x41,0xe9,0x93,0xf5,0xab,0x87,0x5,0x77,0x38,0xd0,0x76,0x7f, 0x85,0x4a,0x6,0x8e,0x10,0xd3,0xce,0x6b,0x97,0x6e,0xd4,0x1b,0xe,0x4b,0x6b,0x9a, 0x85,0x4a,0x92,0x89,0xb3,0x48,0x8b,0x97,0xd5,0xfe,0xf,0x1,0x5c,0xca,0x79,0xe5, 0x8e,0x47,0x6f,0x99,0x4,0x26,0x54,0xc0,0x5c,0x9e,0xb3,0x3f,0x5e,0xd6,0x4a,0x47, 0x28,0x4d,0x94,0xa3,0x1d,0xeb,0x45,0x3,0xb5,0x2b,0x7e,0xba,0x68,0xe2,0xd9,0xdd, 0x92,0x41,0x5b,0x83,0x3d,0x12,0xc8,0xf6,0x80,0x7f,0x1e,0x5e,0x9,0x65,0x55,0x18, 0x79,0x4e,0xec,0xac,0x25,0x94,0x23,0x9,0xfd,0xbd,0xb6,0x81,0xc7,0xc0,0xd3,0x44, 0x18,0x40,0x12,0xad,0xea,0xd7,0xc9,0x11,0x53,0x0,0x3c,0x87,0x72,0x7d,0xb1,0xf0, 0x5b,0x4a,0x9a,0xbe,0x48,0xa1,0x3b,0x75,0x54,0xe7,0xc6,0xe0,0xcd,0x35,0xb1,0xba, 0x2b,0x4e,0xc8,0x93,0xf4,0xd0,0xef,0x81,0xbd,0xdd,0xde,0x9d,0x4a,0x55,0xd4,0xa, 0x7b,0x40,0xb8,0x8b,0x2a,0xb1,0x35,0xfc,0xf1,0x43,0xe1,0x7a,0x38,0x2a,0x86,0x7e, 0xd1,0x4b,0x82,0xa0,0x98,0x30,0xbb,0xf2,0x50,0xa6,0x98,0x2f,0xb6,0x4f,0xd5,0xca, 0x75,0x48,0xa2,0x98,0x20,0x85,0xe0,0x6e,0x42,0xea,0x18,0xf7,0x13,0x99,0x2a,0xe9, 0xf9,0x43,0xa8,0x8b,0xd,0x1d,0x5b,0x4e,0xe9,0xa4,0x34,0xe0,0xe9,0x6f,0x20,0x6a, 0x22,0x4d,0xd6,0x90,0x7b,0x86,0x74,0xe3,0xfe,0xbe,0x2c,0x58,0x42,0xd8,0x50,0x81, 0x1c,0x4b,0x3f,0x85,0xc8,0x6e,0x7f,0x98,0x74,0xea,0x26,0x76,0x99,0x37,0x81,0x61, 0x52,0x41,0xd,0xb3,0xaa,0x1c,0x84,0xe2,0x5e,0x66,0x63,0x8d,0x8,0x61,0xf8,0x9, 0x45,0x4f,0x67,0xb3,0xfb,0x2c,0xf0,0x49,0xd5,0x94,0x27,0xea,0xa7,0xeb,0x9b,0xa8, 0x1d,0x4f,0x1,0x9b,0xff,0xf6,0x3e,0x57,0x29,0xef,0x40,0x7a,0xeb,0xca,0xc5,0x29, 0xbe,0x47,0x8e,0xb3,0x2a,0xa7,0x4c,0x27,0x14,0x84,0xef,0x71,0xe8,0x4f,0x82,0xa2, 0xfc,0x47,0x3a,0x83,0x86,0x35,0xc,0x17,0x91,0x9e,0x9d,0x74,0xca,0x95,0x29,0x77, 0xe3,0x4a,0x82,0xaa,0xfa,0xa8,0xb3,0xd7,0x36,0x5c,0x4f,0xda,0x97,0x44,0x16,0xb4, 0xa8,0x49,0x67,0x91,0x9f,0x75,0x41,0xa9,0x80,0x8e,0x4b,0xc8,0x0,0xe6,0x43,0xa4, 0xfc,0x4b,0xeb,0x91,0xed,0xeb,0xff,0x83,0x15,0xd8,0x9f,0x60,0xf5,0x7c,0xc6,0x13, 0xda,0x43,0xa1,0xbe,0x30,0xa7,0x91,0xd0,0x7a,0x82,0x9e,0xbd,0x33,0x31,0x9c,0x35, 0xf5,0x49,0x8d,0x88,0xda,0xe,0x40,0xd3,0x27,0x95,0x97,0x5d,0xd7,0x4d,0xb1,0x3e, 0x3d,0x47,0xa9,0xbb,0x17,0xb9,0x32,0xf4,0xa5,0x5a,0xaf,0xc5,0xfa,0x89,0x26,0xd5, 0x35,0x4a,0x51,0xba,0x4d,0x9c,0x6,0x57,0x1b,0x28,0xfc,0x49,0x7,0x79,0x90,0x18, 0xb9,0x45,0x8a,0xb7,0x37,0x63,0x94,0xa6,0x14,0x33,0x97,0xab,0x12,0x3b,0x63,0x2f, 0x43,0x4f,0xe6,0xa9,0xfd,0x6d,0xf,0x90,0xf8,0xb2,0x5d,0xc9,0x9,0x7d,0xfa,0x9, 0x9d,0x40,0xf8,0xad,0x34,0x73,0x59,0xab,0x88,0xb4,0x88,0xba,0xd4,0x92,0xd3,0x65, 0x33,0x40,0xa7,0x82,0x33,0x90,0xe8,0x1f,0x19,0x2c,0xf1,0xe6,0x64,0xb3,0x13,0x55, 0x6a,0x48,0xa9,0x84,0xef,0xca,0x5a,0xd0,0x12,0x1e,0xda,0x6b,0xd7,0xbf,0x17,0x15, 0x7,0x48,0x8a,0xad,0x87,0x35,0xf4,0x10,0xea,0x4,0x58,0x25,0xff,0xc0,0x5e,0x5e, 0xf6,0x4f,0x11,0x9d,0xac,0x24,0x9a,0x46,0xb4,0xab,0x47,0xa0,0x56,0xa7,0xb9,0x7, 0xbe,0x47,0xff,0x84,0x55,0xc1,0x63,0x79,0xda,0x9e,0x44,0x9,0xc3,0x74,0xd8,0x19, 0x9b,0x42,0x71,0x8f,0x10,0xa9,0xbc,0x29,0x9f,0x72,0x54,0xf3,0x1b,0xb9,0x3d,0xfb, 0x81,0x49,0x4c,0xb7,0xac,0x56,0x89,0xbf,0x34,0x7d,0x51,0xd3,0xb5,0xa1,0x31,0x23, 0xd7,0x4d,0x2d,0x92,0x83,0xaa,0xfe,0xe0,0x23,0x33,0x7b,0xa1,0x4e,0xaa,0x77,0x66, 0x18,0x44,0x27,0x95,0x43,0x17,0xe6,0x47,0x4c,0x9a,0x24,0xee,0x45,0x57,0x4b,0xfc, 0xc2,0x4f,0xef,0x90,0xbb,0xdd,0x48,0x68,0x2b,0xff,0x92,0xa3,0x39,0xdd,0xab,0xf1, 0x87,0x4d,0xf6,0xba,0x61,0xc7,0xf8,0x47,0xa4,0x2a,0x9d,0xa1,0xb0,0xba,0xd1,0xb6, 0xb0,0x4d,0x28,0x9d,0xe7,0xf8,0xc7,0x5,0x37,0xaf,0xda,0x5e,0xa6,0xd7,0x97,0x74, 0xe3,0x4f,0x97,0xae,0xbf,0x91,0xbb,0x94,0xf2,0xf5,0xd9,0x4c,0xee,0xd9,0x81,0xc1, 0x4f,0x4f,0x18,0xa2,0x22,0x42,0x86,0x87,0x5a,0x90,0xef,0x1,0x8c,0xb2,0x6d,0xe2, 0x77,0x43,0x2f,0xa7,0xe6,0x2b,0xed,0xbd,0xbc,0x18,0xc3,0x7c,0x24,0xc6,0xd2,0x6a, 0x87,0x41,0xe6,0x96,0x5d,0x58,0x8f,0x12,0xdd,0xb9,0x2c,0xe0,0x59,0xe7,0x1f,0x36, 0xa2,0x4d,0xef,0xb6,0x3d,0x9b,0x36,0x35,0x15,0x45,0x1a,0x10,0xde,0xd4,0x82,0xf2, 0xb0,0x47,0xcb,0x91,0xc3,0x53,0x60,0xa6,0xe7,0x35,0xac,0xd2,0x8b,0x4d,0xe5,0xed, 0x58,0x4b,0x71,0x96,0x87,0xde,0x6c,0xa3,0x5,0xf6,0x8f,0x1f,0xb,0x83,0xbd,0x9c, 0xa4,0x46,0xf,0x84,0x1d,0xb4,0xd8,0x5a,0x8b,0xd,0x16,0xd1,0x85,0xf9,0x19,0x74, 0x7d,0x43,0x83,0x9a,0xe,0x9c,0x85,0x2,0xb8,0xda,0xed,0xd1,0xe9,0x26,0x55,0xe2, 0x86,0x4c,0x1d,0x98,0xa7,0x46,0xd,0x78,0xcf,0x36,0xba,0x32,0xad,0x13,0x11,0x3b, 0x1,0x48,0xf,0x90,0xc7,0x26,0x37,0x64,0x9c,0x8,0xd1,0x6,0xa3,0x3a,0x25,0xd3, 0x1d,0x4a,0x99,0x92,0x51,0x99,0xca,0xb3,0xd8,0xf7,0x8,0x4d,0x9f,0x6f,0x68,0x95, 0x76,0x4d,0xfa,0x81,0xba,0x79,0x96,0xa5,0xff,0x46,0xf1,0x39,0xe9,0x90,0x41,0xd8, 0x51,0x4d,0xb1,0xbf,0x15,0x6b,0x97,0x97,0x66,0x8a,0xee,0xc7,0x2b,0x8b,0xed,0x52, 0xb0,0x4f,0x4,0x86,0x9e,0xb6,0x83,0x82,0x34,0x6e,0x70,0x7c,0xd,0xb6,0x4,0x67, 0x5a,0x47,0x52,0xbf,0x5c,0x4d,0x6b,0x96,0xb0,0xa3,0xbb,0xd1,0x3e,0x95,0x8b,0x4f, 0x79,0x43,0xdb,0x90,0xc0,0xb7,0xa3,0x24,0x3e,0x9b,0xa5,0x64,0x62,0xe1,0xfd,0xf1, 0x48,0x46,0x2e,0xa1,0xfd,0xa1,0x95,0xb6,0x1,0xf,0x43,0x23,0x19,0xbc,0xe5,0x6d, 0x7e,0x43,0x5c,0x89,0x80,0x83,0xaf,0x5a,0x5d,0x52,0x16,0x21,0xd1,0xcf,0xca,0xf5, 0x39,0x41,0x35,0x83,0xa1,0x2,0xde,0x44,0xd0,0xb2,0x20,0xc6,0xf2,0xc4,0xfa,0xec, 0xf7,0x4e,0xcc,0xa9,0x70,0x91,0xd6,0x16,0x9b,0xc9,0x21,0x44,0xd1,0xf1,0x6b,0x52, 0x71,0x46,0x95,0xb4,0x3,0xfe,0x4a,0xde,0xfb,0x40,0x9e,0x50,0xa2,0xc9,0xad,0xe3, 0xba,0x48,0xa6,0x9e,0x70,0x66,0x1f,0xb3,0x1e,0xfb,0xce,0x2,0x35,0x3a,0x2b,0xd1, 0xcb,0x4c,0x3d,0xa0,0xfd,0xe1,0x19,0xd,0xdb,0x6,0xbe,0xc,0xf1,0x8c,0xf5,0x8a, 0x7,0x44,0x82,0x96,0x9,0x80,0xac,0x74,0x17,0x67,0x92,0x74,0x80,0x5d,0xf6,0xa0, 0xc5,0x48,0xe8,0x88,0x1d,0xe7,0x97,0x6e,0x6c,0x40,0x98,0x34,0x1e,0x30,0x16,0xd, 0xd6,0x47,0x70,0xa7,0x9f,0xac,0xa4,0x80,0xfa,0xb1,0xae,0x2,0xb1,0x2e,0x1e,0xa5, 0xc8,0x41,0xc2,0xbe,0x99,0x48,0x77,0x68,0x88,0xd3,0x47,0x28,0xa0,0xf9,0xac,0x55, 0x48,0x4c,0xe2,0xbf,0xcf,0x1e,0x41,0x67,0xf5,0x6,0x54,0x5e,0xcd,0x89,0xf,0xf3, 0xec,0x4a,0x19,0xb0,0xe8,0x40,0x5d,0xbc,0xf5,0xf7,0x7,0x96,0xb6,0xa8,0x5c,0x81, 0xb4,0x46,0xc4,0x8b,0xf6,0x10,0x12,0xde,0xf2,0xc8,0x45,0xe8,0x7,0x57,0xfe,0xbb, 0x70,0x49,0x5d,0x9c,0x4f,0x78,0xcb,0xdc,0x5e,0x68,0x80,0x5d,0x49,0x8b,0x92,0x12, 0xaf,0x48,0xa6,0x83,0x54,0xc,0xac,0x10,0x10,0xf8,0x1e,0xd4,0xf9,0x8d,0x20,0x24, 0xb6,0x46,0x35,0xbf,0x8a,0x64,0xdf,0x83,0xa9,0xc,0x91,0x5,0x47,0x53,0x8d,0x44, 0x23,0x42,0x68,0x9a,0xfd,0xbf,0xf,0xa2,0x2d,0x74,0xd0,0x6e,0x60,0x41,0x98,0x50, 0x5,0x44,0x2b,0x9e,0x17,0xfc,0xc7,0x7e,0x12,0x69,0xa9,0x6e,0x45,0x66,0xf4,0xd9, 0xf6,0x4f,0x20,0xb0,0x45,0xbf,0xed,0x33,0x2a,0x47,0x11,0x92,0xe,0x59,0x19,0x76, 0x36,0x4d,0x74,0x84,0xe8,0xce,0xd6,0xcc,0xa0,0x58,0x56,0x21,0x9f,0x81,0x15,0xc5, 0x33,0x41,0x38,0xb9,0x18,0xd3,0x1e,0xbe,0xb1,0x16,0x25,0x11,0xfa,0x9,0x55,0x43, 0xaa,0x40,0x6c,0x88,0x6,0x7d,0x99,0xf6,0x7c,0xfe,0x14,0x3d,0x16,0x20,0x66,0x38, 0xd2,0x4d,0xaf,0xab,0xd6,0x95,0x7,0x86,0xd0,0xb5,0x49,0x77,0xa8,0x98,0x1,0x19, 0xc9,0x45,0x5c,0x89,0x97,0xb8,0x98,0xb,0x9,0x14,0x28,0x96,0x7b,0x47,0x37,0x2f, 0x45,0x49,0xf2,0x81,0x1a,0x5a,0x5c,0x2d,0x98,0x88,0xc8,0x8a,0x4b,0x33,0xe0,0x83, 0x74,0x4c,0xf0,0xbe,0xf2,0xc1,0x9,0x28,0x24,0xb5,0xab,0x6c,0x58,0x9b,0x58,0x34, 0xf8,0x4c,0x36,0xa6,0x62,0xaf,0xfa,0x4b,0xab,0x5d,0x9d,0xab,0x3a,0x1b,0x3c,0xed, 0x2,0x4d,0x6d,0xbc,0x5d,0xc5,0x47,0xf6,0x7d,0xe,0xf6,0xe0,0xa,0xac,0xe0,0x4c, 0xbc,0x4b,0x67,0x8d,0xb,0xa6,0x5c,0xe3,0x73,0xb4,0xad,0xb,0x3d,0x1b,0xf7,0x7f, 0x11,0x4f,0xc0,0xa2,0x5f,0x6,0xdf,0x34,0x26,0xe,0x34,0xdc,0xfc,0x3f,0xe6,0x42, 0x60,0x48,0x22,0x87,0xd1,0x4c,0x36,0x54,0x39,0xe3,0x43,0x46,0x81,0x8d,0x94,0x4d, 0xd2,0x4a,0x89,0xb8,0xe6,0xbe,0xd1,0x50,0x23,0x50,0xed,0xa,0x44,0xde,0x91,0x7b, 0xad,0x4f,0xed,0xb9,0x32,0x8e,0xf8,0x20,0xeb,0x61,0x9b,0x41,0xa7,0xa2,0xee,0x6, 0xf7,0x4b,0x10,0xbe,0x1f,0x95,0xf9,0xeb,0x62,0xa4,0x7d,0x2b,0xb6,0x1b,0xa,0x36, 0xab,0x4b,0xdc,0x8a,0xe0,0xc9,0x9b,0x18,0x27,0xf7,0x37,0x79,0x8a,0x90,0x40,0x4f, 0xab,0x4e,0xd8,0xb8,0xf7,0x43,0x2e,0xcc,0x1e,0x70,0x6c,0x69,0xed,0x5d,0x28,0xf2, 0x28,0x43,0xe5,0x84,0x5,0x82,0x49,0x5a,0xed,0x31,0x46,0xe0,0x89,0xd,0xfc,0xea, 0xf,0x4b,0xe9,0xb6,0xd1,0xf3,0x9c,0x79,0x79,0x9c,0x1f,0x14,0xc3,0xff,0x87,0x6e, 0xc6,0x44,0xaf,0xb9,0x7a,0x37,0xd6,0x21,0x8,0x6a,0xe,0x75,0x12,0x46,0xe7,0x14, 0x37,0x49,0xbf,0xb1,0xc7,0x13,0xf9,0xb9,0x51,0xc8,0xa4,0xba,0xe9,0xe3,0xc7,0xb1, 0x8c,0x47,0x14,0x8d,0x1c,0x84,0x7f,0x9e,0x4,0xdf,0xdb,0xb7,0x9f,0x6f,0xf2,0x14, 0xd,0x4f,0x11,0xb7,0xd7,0x3e,0xfb,0x1b,0xb2,0x98,0x2d,0xba,0x6,0x9,0x44,0xa2, 0xc2,0x42,0x3d,0xa3,0xe,0xc9,0x67,0xcd,0x7c,0xa5,0xf5,0x71,0x13,0xc4,0xc0,0xc9, 0xfa,0x42,0x1e,0x8c,0x19,0xb9,0xa5,0x8b,0x8f,0x1d,0xe4,0x2a,0x5e,0xc8,0xff,0x83, 0x53,0x4b,0x42,0xbf,0x56,0x9c,0xc5,0xc,0x43,0xf8,0x1d,0x78,0x2a,0x36,0x1,0x6c, 0x6e,0x4d,0x2c,0xa2,0x1f,0x56,0x57,0xbd,0x97,0x54,0x66,0x48,0x36,0xc,0x99,0xbe, 0xc6,0x40,0x3f,0x9c,0x93,0x54,0x4c,0xc4,0x2f,0x8c,0x8a,0x88,0x82,0x4f,0x93,0xc0, 0xf9,0x4f,0x2a,0x90,0x81,0x71,0xa7,0xc2,0x4a,0xae,0xba,0xb7,0xc2,0x72,0x32,0x95, 0x5f,0x4d,0x41,0xa9,0x54,0x91,0x78,0x35,0xe6,0x59,0xeb,0xad,0xe,0x6,0x5,0xf3, 0x97,0x40,0x20,0xaa,0x29,0xba,0x69,0x17,0x31,0xfb,0xe4,0x2c,0x6c,0x9a,0x6d,0x41, 0x98,0x4c,0x81,0xb9,0xc1,0x23,0x78,0x2b,0xc2,0x58,0x1d,0x3c,0x32,0x3,0xc6,0x89, 0x3,0x4e,0xa5,0xb8,0x96,0x98,0x58,0x2,0x2d,0x22,0x6d,0x9b,0x42,0x21,0x6a,0x6c, 0x45,0x48,0x68,0x85,0x12,0x7a,0xa9,0xe8,0x48,0x79,0x38,0xba,0xad,0xf7,0x2d,0x46, 0x31,0x4a,0xed,0xb4,0x5b,0xf2,0xb5,0x3d,0xff,0xe3,0x1b,0x8c,0x89,0x50,0xe4,0x7, 0x94,0x4f,0xe2,0xb3,0x42,0x70,0xcb,0x63,0x7b,0xa7,0xbd,0x4,0x7f,0x2e,0xcb,0x1d, 0xe5,0x4f,0x23,0x95,0xfa,0xef,0xa9,0x4a,0x93,0x18,0xbe,0xb7,0x41,0x49,0xa5,0xbf, 0x14,0x4d,0xeb,0xa4,0x53,0x20,0x65,0x30,0xe0,0x31,0x7b,0xd5,0xcb,0x15,0xc7,0x12, 0x48,0x45,0xb6,0xa5,0x1e,0xb9,0xc6,0x3c,0x6a,0x39,0x4f,0xfd,0x1b,0x51,0x42,0xb2, 0xc5,0x45,0x73,0x8b,0xec,0xf3,0x27,0xfe,0xee,0x2b,0x66,0x95,0x2d,0x37,0xe,0x4e, 0x14,0x4c,0xd9,0xa9,0x22,0x8b,0xc7,0xf6,0xc6,0xd7,0x5d,0x35,0xaa,0xe1,0x66,0x54, 0xce,0x49,0x1b,0x8e,0x34,0x5f,0xca,0xdc,0x87,0xe1,0x45,0xf7,0x35,0x65,0xf0,0x27, 0x4e,0x42,0x1b,0xbd,0x0,0xa3,0xe2,0xdd,0xe2,0xdd,0x64,0x53,0xce,0x48,0xf1,0x47, 0x50,0x46,0x29,0xa9,0xef,0xd8,0x6d,0x1,0xb7,0xfd,0x95,0x7f,0xdc,0x20,0x86,0x27, 0x8e,0x45,0x40,0x82,0x92,0x2b,0x3d,0x4d,0xc4,0xf9,0xc0,0xc2,0x4a,0xc3,0xda,0xf8, 0x20,0x4c,0xc2,0xb8,0x8a,0xcf,0xf1,0xd1,0x52,0xc9,0x47,0xce,0x3e,0x6b,0x79,0x8b, 0x7f,0x42,0x87,0x86,0xb9,0xa2,0x1,0x16,0x79,0xd7,0x3,0xa0,0x1c,0x27,0x93,0x3d, 0x45,0x48,0x54,0xa0,0x25,0xa0,0x4f,0x6b,0xb4,0x1f,0x6f,0x1c,0x4c,0xb9,0xd5,0xaa, 0x35,0x4e,0x37,0xb9,0x5,0xe1,0x8,0x70,0xf8,0x21,0x22,0x5e,0xc,0x0,0x91,0x59, 0x94,0x4c,0xff,0xb6,0x62,0xbe,0x61,0x13,0xfa,0x6c,0xa3,0xa1,0x6c,0x66,0xb8,0x5c, 0xcc,0x4c,0x79,0x95,0x55,0xb2,0xcc,0xfe,0x5d,0xc,0x94,0x45,0xa5,0x4d,0x40,0xb5, 0x1e,0x4e,0x61,0x9f,0xfe,0xd1,0xb8,0xeb,0xdc,0x4a,0xd2,0x89,0x3c,0xef,0x1b,0xab, 0x6c,0x4f,0x4e,0xb4,0x3e,0xd4,0xd8,0x89,0xad,0xd7,0x4e,0xe3,0xa2,0x46,0xe0,0x3, 0xd8,0x48,0x78,0xb0,0x4b,0x56,0x93,0x9f,0x36,0xf9,0xc1,0xd,0x79,0x43,0x75,0x97, 0x37,0x46,0x50,0xa5,0x14,0x17,0x10,0xc6,0x3f,0x78,0xc6,0xf9,0x69,0xd3,0xf9,0xc, 0x18,0x41,0xa5,0x91,0x72,0x41,0xe5,0x7f,0x1a,0x87,0xd7,0x44,0xa8,0x83,0x17,0x99, 0xa4,0x44,0x61,0xb6,0xb2,0xb,0xd8,0xcb,0x5,0xa2,0x59,0x35,0xaf,0x9e,0x60,0x7e, 0x2d,0x41,0x72,0xb3,0x73,0xe,0xf0,0xb3,0xe6,0x66,0x20,0x6b,0x3a,0x78,0x5e,0x15, 0x21,0x4f,0x8,0xac,0x84,0x88,0xc3,0x20,0xc0,0x5,0xaf,0xd4,0x19,0x16,0x36,0xab, 0xce,0x41,0xe2,0x95,0x35,0x44,0x24,0x96,0xc9,0x93,0xcd,0x39,0x21,0x7c,0xf,0x84, 0xf4,0x4d,0x13,0xa6,0xc3,0xbe,0xc8,0xcc,0xdf,0x90,0x75,0x4c,0x6b,0xf6,0x38,0xe1, 0xe7,0x4f,0xbb,0x96,0xb8,0x6d,0x8c,0xb0,0x56,0xf3,0x23,0xb5,0x84,0xc7,0xca,0x9, 0xad,0x4b,0x35,0xb1,0x22,0x4d,0x80,0x24,0xe,0xf8,0x43,0xb9,0x96,0xa6,0x22,0x6f, 0x53,0x4e,0xe4,0x84,0x91,0xf0,0xcf,0x1c,0x8,0xc4,0x76,0x86,0x15,0xf4,0xe4,0x10, 0xa3,0x45,0x9a,0x98,0x7c,0x7,0xfd,0x87,0x9d,0x3e,0xc2,0x95,0xfb,0x78,0x5e,0x5, 0xc4,0x47,0x31,0xb2,0x52,0xed,0x26,0xbc,0x31,0x8c,0x2,0x13,0x5e,0x70,0x44,0xd3, 0xe3,0x41,0xa6,0x9b,0x25,0xb2,0x75,0xa7,0xe4,0x2,0x65,0xed,0x5a,0xf5,0x3c,0x14, 0x56,0x42,0x94,0x98,0xbb,0xb3,0x7b,0xa7,0x77,0x62,0xa0,0x8b,0x72,0x60,0x2f,0xbd, 0xfd,0x4b,0x24,0x8a,0xc7,0x51,0xfb,0x6e,0x96,0xee,0xb3,0xc7,0x2f,0xfa,0x95,0xe9, 0x24,0x42,0xdf,0x8e,0xe0,0xdb,0xa1,0x49,0xa,0xd8,0xa9,0x16,0x3,0x81,0x3f,0xaa, 0x81,0x48,0xb,0xa1,0x21,0x5,0xd,0x5c,0xc0,0xcf,0xd7,0xa2,0x82,0x86,0x92,0xeb, 0xea,0x42,0x63,0x8c,0x98,0x35,0x65,0x29,0xbb,0x4f,0xb4,0xb5,0xe4,0x57,0xd3,0x29, 0x68,0x42,0x11,0x84,0xa4,0x1a,0xf9,0x17,0x8,0x8a,0xda,0x33,0xd2,0x4b,0x56,0xcf, 0x89,0x40,0xd7,0x9e,0xf5,0x62,0xf,0x67,0xfa,0xde,0x73,0xf4,0xe9,0xdc,0x35,0x65, 0x9b,0x4b,0xfb,0xb9,0x66,0x58,0x25,0x62,0xde,0x61,0x7b,0x1a,0x6b,0xa4,0x6d,0xc7, 0x31,0x4f,0xad,0x9d,0x75,0xaa,0x83,0x6a,0x8,0xf9,0x7a,0x3e,0x65,0x7b,0xf5,0x2e, 0x3,0x4a,0xea,0x8d,0xfc,0x4f,0x96,0x58,0x69,0x8e,0x6f,0x7a,0x98,0xc1,0x60,0xe5, 0x25,0x4c,0x18,0xa2,0x1d,0x38,0x6b,0x4a,0x56,0xee,0x9c,0x50,0x6,0x1,0xf8,0xce, 0x95,0x47,0x66,0xae,0xf5,0xf1,0x12,0xec,0xb1,0xcd,0xe0,0x80,0xd7,0xc5,0x7d,0xf7, 0xec,0x48,0x19,0x9d,0x6a,0xf0,0x58,0x39,0x3a,0xbf,0xd2,0x37,0x24,0x31,0x98,0xbf, 0x9a,0x43,0x3e,0x88,0xdb,0x80,0xb6,0x69,0x88,0x81,0x7d,0x30,0x75,0x1a,0xf3,0x97, 0xce,0x40,0xd5,0x8e,0x19,0xf5,0xba,0xc9,0xcb,0xcc,0x3e,0xd2,0xb5,0x6f,0xe7,0x43, 0xae,0x4e,0xbc,0xb5,0x52,0xc7,0x4b,0xbf,0x7d,0xb9,0x74,0x8e,0x62,0x70,0x36,0xe4, 0x74,0x4c,0x46,0x80,0xc8,0x29,0x2f,0x4f,0x32,0xce,0x21,0xd,0xa,0x3c,0x79,0xe8, 0x89,0x4e,0x71,0x8b,0x18,0x12,0x35,0x6c,0x27,0x90,0x4,0xcb,0x87,0xc0,0xe5,0xb6, 0x77,0x42,0x9e,0xa2,0x25,0xec,0x40,0x6e,0x5f,0x4a,0x59,0xcc,0x7a,0xa6,0x56,0xc8, 0x9,0x49,0x53,0xa5,0x9b,0x92,0x4e,0x13,0x5c,0x9f,0x4f,0x15,0xd2,0x26,0x2e,0xd8, 0x12,0x4c,0x9d,0xb5,0x6,0x7,0x7c,0x40,0x96,0x62,0x11,0x7f,0x22,0x78,0xe7,0xe8, 0xbe,0x42,0x7d,0x80,0xe9,0x91,0x5e,0x8,0xbe,0x25,0x26,0xa9,0x49,0x30,0x68,0x13, 0xbe,0x49,0x2d,0x9e,0x5,0xdf,0xb9,0x52,0x63,0xa3,0x8f,0x42,0xc5,0xe8,0x24,0x87, 0x28,0x48,0xe4,0xa0,0x38,0xe2,0x29,0xf7,0xee,0x88,0xca,0x84,0x5b,0x5,0x85,0x41, 0xa0,0x46,0xc8,0xa4,0x1f,0xfa,0x70,0x68,0x7e,0x89,0x7b,0xdd,0xf1,0x4a,0xec,0xff, 0x38,0x4b,0x8c,0x99,0x8,0xc5,0xfd,0x93,0xa3,0xd3,0xcd,0x46,0x86,0xb1,0x62,0xce, 0x91,0x4b,0xc1,0x87,0x1,0x28,0x7b,0xe3,0xbf,0x6e,0x2,0xe5,0x7d,0x97,0x7f,0x1f, 0x93,0x48,0x5f,0x80,0x44,0x63,0xc5,0xcc,0xa6,0xc,0xf8,0xd6,0x80,0x46,0x39,0xbf, 0xd2,0x46,0x5b,0xb5,0x85,0x6d,0xe2,0x5e,0x7,0x61,0xd7,0x62,0x19,0x88,0x2b,0xa2, 0x64,0x49,0xb1,0x8e,0x55,0x15,0xfc,0xcd,0xa1,0x69,0x56,0x3f,0x11,0x1,0x8e,0xf2, 0x93,0x47,0xa,0xb2,0x16,0xa0,0xac,0xf8,0x22,0xad,0x27,0x7d,0x1f,0x9,0xdc,0x1f, 0xf5,0x4f,0x99,0xbd,0x9,0x1c,0xf2,0xe0,0x64,0xec,0x19,0xb7,0x9a,0x36,0xfc,0x8b, 0xe5,0x4e,0x99,0xbe,0x16,0x87,0x86,0xc1,0xda,0x97,0xf3,0xd6,0x4d,0x55,0xf3,0x79, 0x6b,0x4a,0x4b,0x9f,0xf,0x95,0xf2,0xbd,0xf8,0xe,0x84,0xe2,0xe8,0x13,0x4b,0x2a, 0xf8,0x4e,0x78,0x98,0x79,0x40,0x8a,0x34,0x4e,0xa0,0xe3,0xc9,0xc5,0x3d,0xb9,0xf0, 0x64,0x4b,0xf6,0xbc,0xab,0x5e,0x39,0x90,0xf3,0xa3,0x99,0xf0,0xb1,0x48,0xfa,0x90, 0xe8,0x40,0xeb,0xaa,0xd5,0xec,0xa7,0x3b,0xda,0x9a,0xee,0x7e,0x3a,0x94,0x32,0xd, 0x1f,0x4f,0xcc,0xbf,0x30,0xc6,0xab,0xce,0x24,0xe,0x61,0xb0,0x25,0x82,0x3a,0xce, 0xe7,0x4b,0x4d,0x86,0xc4,0xc5,0xd9,0x4f,0xb1,0x47,0x7f,0xbd,0x3f,0x13,0x9f,0xdf, 0x2c,0x48,0xd1,0xad,0x7c,0x29,0xad,0x5e,0xee,0x97,0x77,0x9,0x51,0x16,0x3d,0x14, 0x4e,0x40,0x3d,0xb1,0xc3,0xdd,0x7b,0xe6,0x28,0x6,0xb6,0xd,0xc4,0x89,0x4f,0x5e, 0x1b,0x45,0xff,0xb0,0x98,0x23,0x91,0x97,0x5d,0x69,0xa6,0x84,0xf,0x4c,0x5b,0x93, 0x50,0x40,0x4,0x90,0xb4,0x4b,0xc5,0x5b,0x4d,0x50,0x35,0xe0,0xc6,0x33,0xc9,0x4, 0x13,0x48,0xb7,0x8b,0x20,0xf0,0xdf,0xae,0xc1,0xbb,0xbb,0x86,0xa2,0x3e,0x77,0x4c, 0xc3,0x4c,0xe2,0xa9,0xfd,0x6e,0xe2,0xde,0xe9,0xa,0xe9,0x43,0xc2,0x55,0x53,0xe7, 0x55,0x43,0xfb,0x87,0x1e,0x98,0x73,0xa5,0xa0,0x4a,0xfb,0x7d,0x0,0xe3,0x64,0x5f, 0x5,0x47,0x36,0xaa,0xa4,0x4b,0xac,0x80,0xd9,0xbd,0xe4,0x6d,0xd7,0xf9,0xe7,0x65, 0xe0,0x45,0x9b,0xb6,0x7f,0x47,0xbb,0x53,0x23,0xd0,0x43,0x59,0xb5,0x26,0xd3,0x16, 0xee,0x47,0xc6,0xbf,0xf3,0xaf,0x76,0xff,0xe5,0x80,0xe,0x78,0xc6,0xdf,0x18,0xc9, 0xbe,0x43,0x5,0x89,0xe8,0x58,0x40,0x87,0xf2,0xfb,0x9b,0x9e,0xcf,0x7b,0x38,0xfc, 0x9e,0x44,0xd3,0xa3,0x0,0xaf,0x45,0x16,0x37,0x57,0xc1,0x9,0x37,0x2a,0xd3,0x88, 0xc8,0x40,0x7e,0x97,0x40,0x92,0xea,0x1,0xd0,0x7a,0x67,0x18,0xa1,0xc4,0x6a,0x59, 0x59,0x4b,0xe0,0x8e,0xcd,0xaa,0x53,0x52,0x7b,0xd9,0x55,0xa,0xc0,0xc1,0x4a,0x89, 0x14,0x40,0xe,0x89,0xfa,0x52,0xc9,0xad,0x74,0x54,0x1c,0x71,0x30,0x81,0xc1,0xf4, 0xc1,0x4f,0xb0,0x95,0xb8,0x9f,0x1,0x2d,0xc,0x41,0x9f,0x1f,0x51,0x21,0xe5,0x8a, 0xe7,0x40,0x6d,0x8f,0x3f,0xc5,0x60,0x7e,0xe5,0x2d,0xb3,0xd5,0xac,0x69,0xdd,0x69, 0x65,0x46,0xdf,0xa0,0xc8,0x81,0x6e,0xe0,0x7c,0x11,0x23,0x9c,0x5a,0x7e,0xad,0x41, 0xa,0x4b,0x86,0xa5,0xa0,0x8e,0x5c,0x50,0xec,0x77,0x95,0xc5,0xb6,0xaa,0x1e,0x18, 0xfd,0x46,0xd3,0xbf,0xc0,0xea,0x74,0x8d,0xc2,0x13,0xf7,0xd6,0x18,0xf6,0xcf,0x86, 0xdc,0x42,0xf3,0xae,0xe,0xc8,0x79,0x89,0x86,0x94,0x37,0xa3,0x55,0x16,0x53,0x38, 0x37,0x40,0x3b,0xaf,0xf,0x9b,0xd8,0xe3,0x74,0x83,0x8d,0x86,0x88,0xb0,0xe9,0xeb, 0xd5,0x46,0x3a,0xae,0x5d,0x6f,0x67,0x25,0xcb,0x5d,0xe2,0x70,0x3c,0x70,0x31,0xf3, 0x92,0x40,0x6,0x99,0x51,0xcd,0x5b,0x34,0x46,0x7,0x1e,0x6c,0xf4,0xa7,0x40,0x47, 0xe2,0x44,0xdf,0xb6,0xab,0xa8,0xde,0xff,0x6a,0x24,0xe5,0x35,0xca,0x16,0x5,0x13, 0x71,0x41,0xbb,0x8d,0xe,0x87,0xb5,0x5b,0xdb,0xb7,0xf9,0x5,0xdc,0xb4,0x31,0xef, 0xa9,0x45,0x9,0x9f,0xfd,0x2d,0x10,0x91,0xf7,0x2c,0xa2,0x47,0x73,0xbf,0xf1,0xb8, 0x3f,0x43,0x69,0x90,0x58,0x18,0x17,0xdf,0x1d,0xc,0x67,0x51,0x96,0x3,0xba,0x62, 0x14,0x43,0xab,0x8e,0x4e,0xec,0xf3,0xa4,0x95,0xfb,0x34,0xa9,0x84,0x7b,0xbc,0xff, 0xa8,0x43,0x27,0x96,0xdb,0x1d,0xea,0xe7,0x17,0x35,0x8b,0xc2,0x48,0xfc,0x43,0x28, 0x59,0x49,0xd2,0x95,0x85,0x84,0x17,0x40,0x33,0x58,0x7a,0x4,0xf9,0x30,0x51,0x89, 0x28,0x45,0x1d,0x8f,0xaa,0x13,0x5f,0x18,0x73,0xfa,0x3d,0x36,0xeb,0x26,0xd2,0x90, 0xc8,0x4e,0x92,0xa5,0x24,0x97,0x9,0xf5,0x53,0x81,0x2d,0xb1,0xa0,0xb,0xe8,0x62, 0x5c,0x44,0xe1,0x8d,0xed,0xb4,0x84,0xad,0x78,0xb4,0xf,0x85,0xda,0x3f,0x26,0xad, 0xfd,0x43,0x20,0x87,0x42,0x69,0xeb,0x28,0xed,0x2e,0x44,0xcd,0xc7,0x96,0x41,0x49, 0x10,0x41,0x9c,0x8d,0x80,0xce,0xa6,0xf1,0xf4,0x5c,0x90,0xd0,0x7b,0xe,0x7c,0x5a, 0x43,0x46,0xbb,0xb9,0x2d,0x49,0xb2,0xd6,0xef,0x6,0xd7,0x36,0xef,0x97,0x9,0x67, 0x2e,0x4c,0x47,0xbe,0xa6,0xe0,0x96,0xfa,0xea,0x5e,0x4d,0x8d,0x9a,0x30,0x3b,0xe3, 0x72,0x45,0x77,0x96,0xa3,0x62,0x39,0xd0,0x6c,0x94,0xf6,0x98,0xbc,0xa5,0xad,0xef, 0x9f,0x4a,0xed,0xae,0xce,0x76,0xa7,0xd3,0x8f,0xd9,0x6c,0xca,0x69,0xc6,0x31,0x16, 0xd5,0x44,0xb,0x99,0x6b,0x42,0xf4,0x40,0xa,0x25,0x97,0x8b,0xe6,0x88,0x81,0xca, 0xa7,0x41,0xf9,0x80,0xd3,0x15,0xac,0x11,0x64,0xb5,0x25,0x4e,0xa5,0xfa,0x70,0x8e, 0x9e,0x4a,0xe,0xb3,0x15,0xc,0xb7,0x8d,0x4c,0x15,0x8e,0xde,0xaa,0xc6,0xba,0x90, 0x15,0x4a,0xad,0x89,0x8a,0x93,0x46,0x2f,0x9a,0x55,0xde,0x3e,0x91,0x1b,0x74,0xf2, 0x74,0x41,0xd6,0x8d,0x7a,0xbc,0x4c,0xa8,0x0,0xf9,0xae,0x2f,0xee,0x20,0x61,0xda, 0xaa,0x47,0x6d,0x97,0xb5,0x63,0xcc,0xfc,0x83,0x7a,0x1a,0x5d,0x73,0x5c,0xdf,0x5a, 0x19,0x44,0xb5,0x9c,0x97,0xa0,0x0,0x7e,0xd8,0xb5,0xb4,0xe8,0xda,0x52,0x6f,0x59, 0x88,0x44,0xa3,0x9d,0x7b,0xe8,0x55,0x6c,0x35,0x2f,0xb0,0x7b,0x47,0xdf,0xf7,0xfc, 0x63,0x49,0x22,0xb5,0x51,0xfc,0xb8,0xb1,0xbc,0x41,0xec,0xe0,0x25,0xf2,0x7c,0x55, 0x6d,0x42,0x37,0x80,0x4d,0x12,0x6d,0xf1,0x9b,0x4f,0x5c,0xd4,0x83,0xcc,0xbb,0xb4, 0xbd,0x47,0xaf,0x89,0x41,0xfb,0xb9,0xbf,0xe4,0x95,0x1d,0x2a,0x31,0x58,0x20,0x3d, 0x60,0x42,0xe8,0xbb,0x43,0xd8,0xb7,0xae,0x16,0xdc,0x5a,0xb4,0x5a,0xa6,0x18,0xd6, 0x72,0x47,0xcf,0xaa,0x2e,0x1f,0x12,0x43,0x50,0x8e,0x54,0x27,0x6d,0x2a,0x55,0xe5, 0x64,0x42,0xb1,0x87,0x4b,0x1e,0x9f,0xf0,0x55,0xe,0xd8,0xea,0x7d,0x65,0xdc,0xc1, 0xd5,0x4f,0x30,0x97,0x69,0x1f,0xff,0xec,0x8,0xcd,0x92,0xb4,0xf5,0xcd,0xa6,0x3e, 0xba,0x44,0xb0,0xb5,0xa7,0x32,0xaa,0xe3,0x31,0x52,0x61,0x29,0xb,0x2,0x97,0x39, 0x56,0x4f,0x1f,0xb7,0x55,0xa1,0x82,0x66,0xa0,0xac,0x22,0x7d,0xe4,0x8f,0x26,0x98, 0xa6,0x4c,0xc,0x9d,0xe7,0x21,0xd1,0xaa,0x8a,0x6d,0x4f,0x51,0x7d,0x6c,0xa4,0xa5, 0x8d,0x4a,0x92,0x9f,0xe5,0xed,0x6a,0x9,0x1,0xf1,0x6e,0xdb,0x24,0x43,0x5a,0x69, 0xdc,0x41,0xa9,0xae,0x6b,0xf0,0xd8,0x3b,0x28,0x83,0x63,0xce,0xcb,0xdf,0xbc,0x2f, 0xa1,0x44,0x30,0x86,0x90,0xc0,0x2,0xf2,0xa0,0xfd,0x2c,0x4c,0x29,0x25,0x9e,0x8f, 0x2c,0x4b,0xb8,0xa8,0x1b,0xf3,0xf0,0x2e,0xc2,0xa3,0x10,0x5e,0x30,0x59,0x18,0x96, 0x56,0x48,0xd8,0x81,0xeb,0x96,0xb4,0x95,0x2a,0x33,0x8a,0xec,0x1b,0x5c,0x7d,0xba, 0x58,0x4a,0x38,0xa9,0x84,0x9e,0xe1,0xc3,0x3,0x31,0x32,0x32,0x6c,0xb9,0x10,0xab, 0xba,0x4f,0x9a,0xae,0x3d,0x47,0xbf,0xef,0xa2,0xf4,0x8,0x7d,0xd8,0x77,0x13,0x38, 0x82,0x48,0xbd,0xad,0x48,0xdd,0x11,0xb,0xa2,0x5d,0xfc,0x77,0x1b,0xf2,0xac,0x4d, 0xdf,0x41,0x9,0x92,0x90,0x98,0xb9,0xc8,0x86,0x30,0xa7,0xf5,0x43,0x83,0x25,0xc6, 0x7,0x41,0x16,0xa3,0x15,0xeb,0x28,0x51,0x98,0x4a,0x7a,0xcc,0x71,0xc,0xfd,0x3b, 0x57,0x42,0xaf,0x8e,0x6d,0x42,0xac,0x44,0xd7,0xc,0x51,0x69,0x53,0x73,0xd3,0xba, 0xf5,0x47,0x4d,0xb6,0x4a,0xb4,0x3c,0x6e,0x7,0xae,0xd0,0x89,0xf5,0xd3,0x22,0x63, 0x8a,0x4a,0x2a,0xb8,0x8a,0x48,0xb2,0xb,0x32,0x1,0xb0,0x3a,0xd8,0xe4,0xe0,0xfb, 0xeb,0x43,0x87,0xa5,0x1,0xc9,0xb6,0xe7,0x19,0x19,0xd9,0xce,0x2e,0xb8,0xd4,0x29, 0x3a,0x44,0xa8,0x82,0xf5,0x94,0x24,0x8c,0x66,0xb9,0xdf,0xeb,0x9,0x29,0xea,0x20, 0xeb,0x49,0xb0,0x89,0xab,0x49,0xa0,0xaa,0xc6,0x95,0x9c,0xfc,0xba,0xc,0x74,0x9c, 0x7c,0x45,0xe9,0xb8,0xb1,0x47,0x8f,0xdc,0xad,0x44,0x7a,0x13,0xb2,0x60,0xaf,0x17, 0xe1,0x4e,0x1a,0xb0,0xd5,0x21,0x37,0x92,0x3b,0xa2,0x7e,0x97,0x11,0x71,0x6c,0x6a, 0xd3,0x41,0xc7,0x8d,0x32,0xd9,0xb9,0x65,0xb3,0x46,0x13,0xd9,0xba,0xb,0xcc,0xcd, 0xf5,0x49,0x23,0xb7,0x82,0x6e,0x4,0x4c,0xc9,0xe0,0x82,0x4b,0x11,0x52,0x6f,0xc9, 0xbd,0x41,0x54,0x8f,0x91,0xe9,0x0,0x67,0x80,0x1e,0xe6,0x2e,0x13,0x1b,0x3d,0xf7, 0xe2,0x46,0x8,0xb5,0xb2,0x82,0x61,0xd0,0x47,0x43,0x72,0xb8,0xdf,0xac,0x6a,0x7f, 0xd0,0x42,0x90,0xb6,0xc0,0x9a,0xe7,0x7d,0xa2,0xb1,0x8b,0xd6,0x8a,0x3a,0x80,0x9a, 0x94,0x49,0x2a,0xb2,0xe3,0x42,0x59,0x1,0x23,0x65,0x45,0xb9,0x59,0x24,0x9b,0x1d, 0x6d,0x4a,0xaf,0x81,0x3e,0xbe,0xe9,0x16,0xe2,0xf4,0x60,0x6f,0x29,0x1a,0xa8,0xf3, 0x61,0x48,0x95,0x8f,0x3,0x60,0xd2,0x29,0xe8,0x71,0xe0,0x85,0x44,0xb8,0xab,0xb7, 0x78,0x4e,0x39,0xbd,0x85,0xd9,0x44,0xa2,0xec,0x68,0xb6,0x1e,0x5,0x1f,0x6d,0xc, 0xa3,0x40,0x36,0x8b,0x66,0x16,0x45,0x8d,0x15,0xf8,0xe3,0x17,0xd0,0x1d,0x44,0x9b, 0x1,0x42,0x7b,0x82,0xa1,0x31,0x12,0xfc,0xbe,0x1f,0xb2,0xcb,0x72,0x7c,0xf8,0x57, 0xb7,0x44,0xa,0x8c,0xd,0x95,0xa1,0x78,0x8f,0xa1,0x9a,0xee,0xd6,0x1a,0x3b,0x94, 0x7e,0x48,0xda,0xac,0x5,0x3d,0xec,0x8a,0xbd,0xc5,0xc,0x6c,0x89,0xf5,0x7d,0x75, 0x29,0x48,0x80,0xb4,0xf1,0xe7,0xe8,0xe5,0x55,0x85,0xb7,0x37,0xab,0xd4,0x16,0x43, 0x16,0x4b,0xb8,0x8c,0x76,0x55,0x77,0x71,0x8e,0xc7,0x10,0x82,0xc2,0x69,0x25,0xbf, 0xe5,0x4c,0x55,0xb3,0xbc,0xbd,0x54,0xc,0x29,0xe3,0xb5,0x33,0x59,0x8f,0xf1,0xe1, 0xf1,0x4f,0x55,0x97,0x9b,0x53,0xa7,0x8f,0x86,0x6b,0x98,0x46,0x2e,0xbb,0xa3,0x4b, 0xd3,0x49,0x5c,0x87,0x4,0x8a,0xc8,0x8e,0xa0,0xde,0xfe,0xa8,0xe2,0x3a,0xbf,0x94, 0x5d,0x41,0xb2,0x89,0xaa,0xb4,0x2d,0xf9,0xc,0x93,0x6f,0xb3,0xc1,0xd2,0x4c,0x8a, 0x60,0x4c,0x8c,0x9a,0x37,0xea,0x50,0x2e,0xa9,0xf3,0x57,0x6e,0x7d,0x9e,0xa4,0xd, 0xf1,0x47,0x65,0x8c,0xd6,0x52,0xce,0x9a,0x40,0x13,0x5b,0x25,0x7b,0x30,0x32,0xaf, 0x11,0x4d,0x1,0x90,0xc3,0x3d,0x97,0x7e,0x19,0xaa,0xec,0x8d,0x82,0x73,0xaf,0x24, 0x4d,0x47,0xce,0x80,0x90,0xd9,0xd,0x64,0x3e,0x64,0xf6,0xd8,0xc,0x55,0x14,0x94, 0xb4,0x4c,0xa4,0xb9,0xdb,0x1d,0x38,0x57,0x15,0x5a,0xdd,0xb8,0x3,0x9a,0xdd,0x30, 0x1c,0x41,0xe2,0xac,0x1b,0x44,0x87,0x9f,0x76,0xa2,0x9a,0xea,0xfd,0x25,0x4f,0xc7, 0x14,0x4c,0xfb,0xa8,0x5a,0xcd,0xb8,0x5e,0x22,0x33,0x2b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x9a,0x29,0x3f,0x59, 0x5,0x42,0x11,0x87,0xc9,0xc3,0x59,0xd6,0xb0,0xf5,0xa7,0x95,0x75,0x11,0xf4,0x6e, 0x31,0x49,0x25,0x8a,0x8f,0xf,0x58,0x49,0xb2,0x11,0x53,0x83,0x6d,0xcc,0xa4,0x84, 0x5f,0x4e,0xd6,0xb0,0x53,0x11,0xb8,0xaa,0x62,0x40,0xae,0xc5,0x70,0x0,0x99,0xb3, 0x3a,0x49,0xb2,0xbf,0xfb,0x67,0x6,0x4d,0xfe,0x6e,0xb8,0x4b,0xe9,0xe1,0xe7,0x98, 0xa4,0x41,0xad,0xb4,0xe8,0x73,0x72,0x92,0x34,0xa5,0x65,0xfa,0x5a,0xc6,0x88,0xf7, 0x82,0x42,0xbf,0x8f,0x10,0x4e,0xa4,0xd1,0x5c,0x8f,0xf0,0x84,0xd3,0x60,0xd2,0x62, 0xe7,0x4d,0xcc,0xbf,0x74,0x7b,0x1e,0x61,0x7a,0x58,0x1a,0x7c,0x1a,0xcd,0xb2,0xa0, 0xfa,0x46,0x6b,0x95,0xfd,0xfa,0x46,0x4c,0xdd,0xc8,0xd4,0xbc,0x66,0x6f,0x1b,0xf6, 0xcb,0x4a,0x5,0xa0,0xdd,0xe4,0xf3,0x68,0x5e,0x58,0xe3,0x61,0xb4,0x67,0x44,0x44, 0x3a,0x40,0x59,0xa4,0xc4,0xe0,0xf6,0x48,0xab,0x28,0x86,0x3a,0xc6,0x5a,0xd5,0x70, 0xbb,0x46,0x2,0xb4,0xca,0xb5,0x7a,0x8c,0xc0,0xc7,0xab,0x87,0x2d,0x69,0x2d,0x13, 0x9f,0x47,0x62,0xb2,0xcd,0x8d,0xb1,0x1e,0x8c,0x6,0x88,0x64,0x99,0x5,0x88,0xd4, 0x1f,0x48,0xc9,0x92,0x77,0x62,0xa2,0x57,0x38,0x3f,0xc1,0x7b,0x16,0xcc,0xfd,0x9c, 0x43,0x41,0xc6,0x8d,0xe5,0x98,0x70,0x1,0x68,0x21,0xee,0xb7,0xf7,0x80,0x66,0xec, 0x94,0x4f,0x46,0x80,0x92,0x80,0x1e,0x38,0x17,0x17,0xea,0x6f,0xa,0xae,0x9b,0xc9, 0x99,0x41,0x1,0x8e,0x6f,0x52,0x3,0x8f,0x19,0x47,0xc4,0x53,0xaa,0xb8,0xe2,0xa9, 0x81,0x40,0x76,0xa0,0xa3,0x98,0x10,0x2e,0x7f,0x58,0x73,0x69,0xb4,0xa9,0x7b,0xa8, 0x3d,0x4f,0x95,0x93,0x37,0x94,0xe6,0x38,0x91,0x93,0x18,0x61,0x65,0x38,0xb1,0xe2, 0xec,0x4d,0x65,0x81,0x10,0x4,0xb7,0x2d,0x3,0xe0,0x9d,0x16,0x20,0x3c,0x16,0xe1, 0x40,0x46,0xa8,0x92,0x59,0xdf,0x8e,0xf7,0x1a,0xec,0x32,0xa9,0x1,0xd2,0x72,0x17, 0x84,0x4b,0x34,0x8b,0xeb,0x69,0x97,0xb1,0x34,0xcd,0x2e,0xc5,0xeb,0x30,0x59,0x57, 0xe2,0x4e,0xcb,0x97,0xf0,0x65,0xcb,0x20,0xd4,0xcb,0x0,0xd4,0x22,0x6,0x8,0xb6, 0x98,0x44,0xf8,0x80,0x38,0x17,0xae,0x46,0xcb,0xab,0x51,0x5f,0x50,0x61,0xe0,0x7f, 0x99,0x44,0xb0,0xb7,0x45,0xf1,0x3e,0x46,0x84,0x51,0xed,0xb8,0x1e,0xef,0x63,0x3c, 0xa1,0x44,0xbc,0xbe,0xf4,0x24,0x88,0xad,0x4f,0xa9,0xc5,0x48,0xfc,0xdf,0xac,0x3d, 0xe1,0x43,0x33,0x87,0xc7,0xb3,0xe7,0xcf,0xcb,0xfc,0x3c,0xa8,0x99,0x31,0xe9,0x12, 0xa4,0x40,0x5c,0xb7,0xca,0x94,0x6f,0xbc,0x6e,0xa8,0x2b,0xc0,0x6c,0x75,0x1e,0x3f, 0x1a,0x4f,0x72,0xa1,0xe9,0x41,0x23,0xc5,0xdb,0x6,0x68,0x43,0x12,0x2e,0x4,0x27, 0x71,0x4c,0x6b,0x9f,0x39,0x2b,0x2e,0xb8,0xc7,0x70,0xe3,0xaf,0x6c,0x7d,0x16,0x20, 0x2d,0x4a,0x80,0xbe,0xe0,0x8c,0xcc,0x4,0x85,0x7c,0x3,0xa4,0xea,0xa6,0x34,0xe9, 0x95,0x43,0x3d,0xa0,0x4,0xae,0x7e,0x35,0xb9,0xb5,0xdd,0x14,0x92,0xd7,0x32,0xd9, 0xe3,0x4e,0x3c,0x85,0x82,0x28,0x38,0x42,0x98,0x20,0x3,0xeb,0xd1,0x35,0xdd,0x58, 0xa1,0x40,0x56,0x95,0x45,0x27,0xcf,0xdd,0x50,0xa0,0xf7,0xe6,0x2a,0x52,0xe5,0xd6, 0xd0,0x48,0x7d,0x93,0x49,0xfb,0xae,0x67,0x7a,0xa7,0xce,0x36,0xf1,0x5,0x92,0x9a, 0xbe,0x4d,0x2b,0x82,0x48,0xda,0x9,0x15,0x86,0x6,0x2f,0x5,0xba,0xdd,0x0,0x4d, 0x6b,0x4c,0x70,0xae,0xe4,0xe4,0x59,0x43,0xf5,0xe4,0x3c,0x97,0x7e,0x25,0x59,0x48, 0xe2,0x4b,0x6c,0x87,0x26,0x47,0xa,0xfc,0x26,0x29,0x4f,0x52,0x8,0x64,0x7a,0xde, 0x45,0x47,0x65,0x97,0xb2,0x72,0xf0,0x51,0xb6,0xb0,0x58,0x4c,0xcd,0x4,0x81,0xfa, 0x84,0x44,0x2c,0x83,0x82,0x7,0xf0,0x15,0x1c,0xc7,0xbe,0xdf,0x61,0x2a,0xba,0xbc, 0x5a,0x49,0x5a,0xb0,0x81,0xff,0x17,0xc5,0xbe,0x9,0x1d,0x16,0x46,0x9f,0x79,0x76, 0x9e,0x48,0x8,0x9b,0x69,0x30,0x76,0x4e,0xd5,0x9d,0xb2,0xe2,0x4d,0xfb,0x73,0x80, 0xc9,0x45,0xbb,0x9e,0xc5,0xee,0x5,0x45,0xd5,0xe1,0x6f,0x7,0x9f,0x7f,0xa9,0xc9, 0xca,0x44,0x6d,0xab,0x23,0x52,0x1d,0x31,0xe5,0x9d,0xee,0x65,0xb4,0x3e,0x8b,0x5, 0x2e,0x49,0x5c,0xbc,0xa7,0x4d,0x4a,0xf2,0x88,0x3c,0x5,0xb9,0xc9,0xdc,0xc5,0x1d, 0xff,0x41,0x2,0xa2,0x26,0x27,0xc7,0xd6,0xe9,0xe3,0xe7,0xd4,0x24,0x16,0xad,0x87, 0x38,0x4b,0x25,0xb3,0x23,0x4f,0x46,0xc2,0x78,0xaf,0x65,0x5f,0xb5,0x8,0xca,0xf8, 0xe5,0x4c,0xb9,0xaa,0x9,0xa5,0xc8,0x2e,0x5e,0xaf,0x2e,0xf4,0x31,0xdb,0xbf,0x5a, 0x82,0x44,0xb7,0xb3,0xeb,0x2f,0xb9,0x2a,0x1d,0xb3,0x55,0x69,0xde,0x66,0x9d,0x4b, 0x74,0x47,0x78,0xaa,0x58,0xd6,0x80,0x2b,0x9,0x86,0x75,0x83,0x51,0x2a,0xf3,0x7b, 0x51,0x43,0xd3,0xb0,0xfd,0xc0,0x18,0x8b,0x65,0x77,0x8b,0xb6,0x1d,0x5d,0x21,0xc9, 0xbd,0x4d,0xb5,0xb9,0x9b,0x2d,0x8a,0x17,0xff,0x2f,0xfc,0x9c,0x89,0x16,0x97,0xd0, 0xb4,0x41,0x42,0xa0,0xb2,0x9c,0x18,0xcc,0xd4,0x53,0x60,0xab,0x1f,0x6f,0x6f,0x6f, 0xd7,0x4b,0x8c,0xa2,0xda,0x9c,0xa1,0x31,0x85,0x46,0x75,0x82,0xa6,0xa0,0xa7,0x4f, 0xf7,0x4a,0xd4,0x85,0x90,0x3e,0xf7,0x62,0x97,0x38,0xe8,0x12,0xe1,0xf3,0x22,0x96, 0xc7,0x42,0xdd,0xa8,0x44,0x1e,0xd5,0xfa,0xbc,0x69,0x50,0x8a,0x25,0xbf,0xc7,0x2, 0xc7,0x4b,0x94,0xb5,0x54,0xa,0xff,0x6,0x6d,0xe,0x9b,0x7e,0x9c,0xd8,0x5a,0xa9, 0x19,0x4b,0xba,0x8b,0x16,0x92,0xc7,0x1a,0xb8,0x61,0x85,0xa2,0x11,0xb4,0xbe,0xd3, 0x66,0x41,0xd5,0xbb,0x22,0x73,0x9a,0xa2,0x3e,0x7e,0xd4,0xb5,0x3a,0xb5,0x73,0xc1, 0x9c,0x4a,0x36,0xa5,0x75,0xa0,0xdd,0x69,0xb6,0xd6,0x70,0xbd,0x32,0x4f,0xf9,0x94, 0xec,0x49,0xb3,0x87,0xe8,0xd4,0x72,0x9b,0xb8,0x6e,0x74,0x88,0x19,0xdf,0x86,0xac, 0xfa,0x41,0x88,0x95,0x7,0x8a,0x83,0x5f,0x50,0xd0,0x73,0x31,0x5c,0x10,0xf4,0x79, 0x19,0x42,0x2e,0xa0,0x8b,0x46,0x26,0x72,0x52,0xd0,0xf4,0x40,0x1b,0xfb,0xd3,0x7, 0x18,0x4e,0x1a,0x83,0x89,0xf5,0x6a,0xdb,0x6e,0xa4,0x62,0x98,0x63,0xeb,0x7c,0x49, 0x45,0x40,0xe7,0x9d,0x35,0xea,0x9b,0xff,0x1d,0x7,0x5d,0xbd,0xf6,0x42,0xc7,0xa7, 0x65,0x4f,0x5f,0x92,0x90,0x8f,0x69,0x91,0xbd,0x77,0xac,0x7a,0xbd,0xf8,0x5d,0x2a, 0x2,0x47,0x7f,0x86,0xd6,0x90,0xe2,0x29,0xdf,0xbf,0x69,0x9b,0x21,0xee,0x63,0xeb, 0x51,0x48,0x25,0xb6,0xd4,0xa5,0xbb,0x8c,0x7f,0x52,0x55,0x9b,0x96,0xa2,0x34,0xe5, 0xc8,0x4d,0x18,0x85,0x90,0x6e,0xd1,0x2c,0x51,0x31,0xce,0x5b,0xfd,0x1b,0xce,0x5e, 0x86,0x45,0x13,0xaa,0xed,0x5f,0x30,0xa3,0x24,0xe7,0x10,0xb4,0x9e,0x14,0x8b,0xd7, 0x8b,0x4b,0x67,0x97,0x26,0x2a,0xea,0xfa,0xe1,0x86,0x8f,0x38,0x1d,0x53,0x0,0x64, 0x25,0x4d,0xa2,0x92,0x4f,0xd3,0x6d,0x3f,0x9e,0x12,0xab,0x2f,0x24,0x72,0xb8,0xba, 0x92,0x4c,0xd,0xb6,0xdd,0xe2,0xda,0x33,0xc7,0xf4,0x9f,0x7,0xa8,0xbe,0x54,0xe7, 0x2d,0x49,0xc1,0x91,0x33,0xda,0x20,0xb3,0x55,0xf5,0x9,0xc2,0x13,0xc9,0xb3,0x9f, 0x54,0x4f,0x21,0xb6,0xe3,0x38,0xcf,0x25,0xd5,0x5b,0xa5,0x22,0x2d,0x86,0x82,0x38, 0x49,0x4b,0xdf,0xa5,0x61,0x96,0xc5,0x49,0x9e,0x60,0x43,0xf2,0xf1,0x44,0x53,0xf4, 0xd1,0x42,0xb4,0x99,0x4b,0x8c,0x11,0x5,0xe4,0xb,0xc1,0xd6,0x2c,0x37,0xc7,0xeb, 0xae,0x43,0x4a,0x93,0x67,0x78,0x30,0x1f,0x42,0xd,0xf8,0x6d,0xea,0x99,0x3b,0x7f, 0x36,0x45,0xab,0xba,0xf,0x15,0x18,0xde,0xae,0x74,0xc3,0x61,0x25,0x97,0x5b,0x46, 0x92,0x45,0x68,0x8a,0x7b,0x7c,0xce,0xfe,0x7b,0x14,0xd1,0x2b,0x21,0x98,0xb6,0x48, 0x98,0x49,0xf6,0x88,0x3c,0x1a,0x1c,0x41,0x91,0x3a,0xea,0x0,0x1,0x54,0x37,0x3d, 0x40,0x48,0xb3,0x8a,0x15,0x30,0x4b,0x79,0x77,0xd,0xd7,0xf5,0x9c,0x65,0xde,0x7a, 0xf6,0x48,0x5c,0xa3,0x0,0x8d,0xd6,0xaa,0x72,0xdd,0x4d,0x7f,0xbe,0xb4,0x6a,0x2, 0x77,0x40,0x8e,0xbd,0x2f,0x52,0x4b,0x9a,0x8b,0xb1,0xe6,0x85,0xdb,0x1c,0xb0,0xf1, 0xf2,0x44,0xcf,0x9a,0x6c,0x94,0x5b,0xe8,0xfe,0xea,0x5e,0xbc,0x6,0xc,0x4a,0x19, 0x10,0x42,0x60,0xa8,0x36,0x22,0x4a,0xff,0x6a,0x12,0x36,0x4,0x22,0x73,0x1f,0xa6, 0xf0,0x4c,0xcd,0x88,0xb1,0xd6,0xbb,0x8b,0x81,0x2d,0xae,0xe4,0x26,0x22,0x85,0x3d, 0xdd,0x41,0x76,0x99,0x2e,0x85,0x3a,0xa2,0x60,0x93,0x89,0x2,0xaa,0x91,0xea,0x10, 0x5f,0x45,0xa2,0xa7,0xc8,0x37,0x6e,0x2b,0x55,0x15,0x4c,0x33,0x6,0x8e,0x17,0xdf, 0xcc,0x4f,0x37,0x9c,0x7a,0xc5,0xcc,0x12,0xfb,0xc3,0x13,0x4b,0xde,0x67,0xee,0xdb, 0xc7,0x42,0xbc,0x95,0xb7,0xb3,0xe,0x28,0x50,0xd9,0x5f,0x10,0xb4,0xd7,0xbe,0x9a, 0x31,0x4d,0x42,0x8c,0xf1,0x7,0x53,0x2c,0x7b,0xbb,0xbe,0x3f,0xb,0x6b,0x16,0x4d, 0xb3,0x4b,0x82,0xbc,0x77,0x51,0xd6,0x35,0x4d,0x50,0x97,0x73,0x8,0xc0,0x36,0xbd, 0x3c,0x4f,0x79,0xb4,0x85,0x24,0x9f,0xd0,0xc9,0xdb,0xad,0xfe,0x93,0x93,0x37,0x40, 0xf,0x4c,0xa3,0xa1,0x51,0x68,0xf7,0xa8,0xb6,0xf7,0x10,0x1d,0xad,0xeb,0xaa,0x5e, 0x22,0x43,0xa3,0x87,0x6f,0x15,0x9c,0x99,0x2b,0xdf,0xa4,0x2f,0x3d,0xb3,0x0,0xaa, 0x59,0x42,0x2,0xb5,0x4f,0x9c,0xf7,0x2b,0x11,0x89,0x86,0x7a,0x71,0x4c,0x29,0x21, 0x51,0x40,0xfe,0xa1,0xd3,0xcf,0xc8,0xef,0xf1,0x17,0x91,0x9e,0x0,0xd9,0xd6,0x7d, 0xe0,0x4a,0x28,0x95,0x0,0xe2,0xdf,0xd9,0xf5,0xa5,0x28,0x2c,0x39,0xd5,0x71,0xac, 0x34,0x4c,0x5b,0x81,0x5f,0xfa,0xa9,0x7c,0x5c,0x5a,0x7f,0xcc,0x87,0xda,0xd6,0xe0, 0x23,0x44,0x22,0x93,0x66,0xa5,0x58,0x97,0x8a,0xae,0xfe,0x13,0xbc,0x94,0xb2,0x47, 0x3a,0x41,0x57,0x83,0xe8,0x89,0xd,0xb1,0x70,0x68,0x90,0xfa,0xdf,0x7f,0x7c,0x61, 0x7d,0x4d,0x99,0x9f,0xbc,0x33,0x17,0xe9,0xea,0x1a,0x4,0xf9,0xce,0x72,0x9a,0x3b, 0x99,0x43,0x98,0x98,0xf6,0x68,0x34,0xd4,0x96,0xe0,0x81,0x8b,0xb6,0x74,0x2e,0x6d, 0x61,0x41,0x68,0xb7,0x2e,0x61,0xc1,0xf7,0x7b,0x80,0xf0,0xfb,0xf5,0x35,0x56,0xdf, 0xc5,0x48,0x27,0xb3,0x77,0xb6,0xd4,0xe6,0xd8,0xd3,0x62,0xa1,0x35,0x74,0x30,0x70, 0x5e,0x4a,0xf6,0xbb,0x16,0x6e,0x36,0x7a,0xb0,0x54,0x7,0x9,0xe4,0x26,0xe2,0x16, 0x1,0x4e,0xd8,0xba,0x88,0xdd,0xd2,0x49,0xa3,0xa,0x24,0xcc,0xa9,0x69,0xb8,0xed, 0xba,0x46,0xd1,0x95,0xc7,0x35,0x1e,0xe7,0x15,0x42,0x1d,0xac,0x32,0x83,0x2b,0x55, 0xc1,0x40,0x89,0x83,0xca,0xfa,0xb,0x4e,0x9e,0x16,0x42,0x8c,0x11,0xa4,0x99,0xcb, 0xdc,0x48,0xf2,0xaf,0x22,0xcd,0x2a,0xc9,0x79,0x10,0xfd,0x79,0xe3,0x20,0xb9,0x2a, 0x6d,0x44,0x4e,0xb4,0xad,0x88,0xcf,0xc2,0x98,0xac,0xc6,0xde,0xf7,0x22,0x7e,0x57, 0x8,0x4d,0x6,0xb7,0x11,0x93,0x23,0x95,0xcf,0x96,0x75,0x93,0x52,0x7,0x8f,0xa5, 0x47,0x44,0xdd,0xb5,0x5d,0xf,0x77,0x4e,0x6e,0xab,0xd7,0x9c,0x9d,0x7c,0xea,0x89, 0x26,0x47,0x36,0xae,0xb1,0x12,0x47,0xbc,0x1a,0x48,0xcd,0xe7,0x8f,0xba,0x1b,0xb, 0x99,0x49,0xfe,0x80,0x4a,0xbb,0x3e,0x22,0x13,0xf9,0xe2,0x1d,0xc0,0xf8,0x63,0x60, 0xa3,0x49,0xe7,0xa9,0x1,0x79,0x4b,0xbd,0x75,0x5d,0x96,0xd5,0x63,0xe2,0xfd,0xd5, 0x6d,0x4f,0xf7,0xad,0x99,0x28,0xf3,0x2a,0xf1,0x63,0xf2,0xae,0x6f,0x81,0xfe,0x57, 0x2f,0x41,0x47,0x95,0xd5,0x82,0x24,0x53,0x51,0xc3,0xe9,0x3b,0xa,0x94,0x2e,0x5b, 0xb2,0x41,0x2a,0xbd,0xb0,0xdc,0x37,0x69,0x95,0x8b,0xf5,0x24,0xf7,0x52,0x83,0xb9, 0xb5,0x41,0xb6,0xb5,0xbe,0x1e,0x58,0x11,0xe9,0xd3,0x5a,0x97,0xc3,0x73,0x2c,0x12, 0x6,0x4f,0x9d,0x83,0x9f,0x86,0xd8,0xe4,0x4b,0x52,0x23,0xe2,0xea,0x20,0xb0,0xa5, 0xb3,0x42,0x6e,0xbf,0xa3,0xf7,0x40,0xd7,0x55,0x4c,0x5e,0xb3,0xe0,0x9b,0xe0,0x98, 0x3d,0x4e,0x4e,0xaf,0x99,0x48,0xf3,0x37,0xe,0xc,0xe9,0xc0,0xa3,0xc,0x40,0x4f, 0xfd,0x4c,0x12,0x93,0x36,0x4,0x6e,0x77,0xe6,0xea,0x64,0x93,0x1d,0x63,0x63,0x84, 0xd4,0x42,0xee,0xad,0xf6,0x65,0x56,0xfd,0x98,0x13,0xa8,0x4d,0x11,0x94,0xbe,0x6a, 0x6d,0x41,0xee,0xaf,0x91,0xee,0x22,0xfe,0x6e,0xec,0x6b,0xf4,0xc5,0x75,0x9d,0x55, 0xb7,0x4c,0x28,0xa9,0x68,0x4e,0x29,0x48,0x17,0xf3,0x88,0xb5,0xbf,0xd1,0xdc,0x19, 0xf9,0x46,0x2d,0xb9,0x21,0xae,0xac,0x49,0xf4,0xfc,0x3b,0x9c,0xcc,0x45,0xbb,0x87, 0x7b,0x4f,0x81,0x89,0xcf,0xfa,0x1,0x4c,0xa0,0x2b,0x29,0x4b,0xf1,0xba,0x52,0xa6, 0x6f,0x4d,0xf4,0xb2,0xc6,0x75,0xe2,0x40,0x90,0x26,0x16,0x99,0x8f,0x24,0x8,0x1a, 0xa5,0x47,0xfb,0x97,0x83,0x8e,0xef,0x20,0x80,0x2,0x41,0xf7,0xe7,0x94,0xcb,0x41, 0x1f,0x4a,0xb1,0xa6,0x7f,0x18,0xff,0x99,0x49,0x88,0xfe,0x47,0x31,0x4f,0x5c,0x46, 0xe2,0x49,0xb4,0xa3,0x50,0x36,0x46,0xf6,0xa8,0x1a,0xbc,0x6b,0xf5,0x38,0x31,0xcf, 0x90,0x49,0x6d,0xa0,0xba,0x79,0x9e,0xb7,0x2e,0x4d,0xde,0x6f,0xe0,0xd3,0xf5,0x1d, 0xbe,0x46,0x9,0xbf,0x44,0xb7,0x8b,0x31,0x95,0x77,0xab,0x5b,0x3a,0xd7,0x72,0x9c, 0xa0,0x48,0xb4,0x8a,0x78,0x4c,0xcc,0xbc,0xb0,0x62,0x30,0xb1,0x6,0xd5,0x4,0xa, 0xab,0x4f,0x22,0x9d,0x9d,0x7f,0xbc,0x6d,0x33,0x82,0xa2,0xb1,0x41,0x85,0x22,0xa8, 0xb7,0x4a,0x8f,0x89,0x9d,0x5e,0x2a,0xc7,0x72,0x10,0xf0,0x7f,0x3a,0x84,0xeb,0x73, 0xe7,0x4f,0xd5,0x98,0x79,0x7,0xe5,0x74,0xf7,0xe5,0x4b,0x13,0xd,0x78,0x3a,0xf0, 0xad,0x4a,0x95,0xb4,0xea,0xf,0x86,0xb2,0xe1,0x72,0x9d,0x6f,0xff,0x85,0xd0,0x22, 0xb5,0x45,0xc6,0xb6,0xba,0x51,0x1e,0xc8,0x58,0xd8,0xe4,0x4,0xe,0xbc,0x5e,0x46, 0x87,0x4f,0xbb,0x9b,0xe7,0x1d,0xdb,0xf,0xc5,0x3e,0xb1,0xde,0x49,0x11,0xa2,0x26, 0xb6,0x42,0x4,0xa8,0x53,0xc0,0xf,0xeb,0x27,0xe1,0xe4,0x3b,0x83,0x59,0xa3,0x76, 0x6c,0x46,0x7c,0x80,0x83,0x44,0xa1,0xc5,0x72,0xd6,0x77,0xf3,0x56,0x3b,0xdf,0xbb, 0xff,0x4f,0xc,0xb8,0xd5,0xe,0xbf,0x15,0x6,0x5,0x51,0x25,0xa0,0xdd,0xda,0xe2, 0xbc,0x4c,0xe9,0x98,0x50,0x18,0x25,0x53,0x79,0xe2,0xe5,0x45,0x7a,0x83,0xa4,0x21, 0x1b,0x4b,0x4f,0x8c,0x68,0x45,0x51,0x79,0xf0,0xe5,0xc8,0x31,0x83,0xff,0xd6,0x42, 0x54,0x48,0xcc,0x9c,0x96,0x68,0x71,0x64,0x62,0x62,0x91,0x60,0xf9,0xaa,0x2c,0xcd, 0x7c,0x47,0xfe,0xb2,0xe9,0x78,0x65,0xa5,0xb3,0x65,0x77,0x68,0x18,0xa,0x3,0x50, 0x89,0x49,0xcf,0x92,0x9a,0xab,0x9e,0x4c,0x13,0x1e,0x41,0xd8,0x43,0x37,0xa0,0x67, 0x3d,0x43,0x2a,0x9c,0xf0,0xf2,0xdd,0xd5,0x56,0xec,0x2a,0x2b,0x1e,0xc6,0x8e,0x97, 0x8e,0x47,0x27,0x87,0x30,0x35,0xa3,0xbe,0xf6,0x1,0x85,0x8,0x94,0x78,0x1a,0x66, 0x85,0x41,0x81,0x90,0xe9,0xa4,0x58,0x72,0x37,0xe4,0x8e,0xe8,0xda,0x5b,0x7b,0x62, 0xe5,0x43,0xcd,0x9f,0x5f,0x8c,0x23,0xd8,0x73,0xb5,0x79,0xfd,0x59,0x3f,0x8,0x6c, 0x78,0x40,0xe9,0x87,0x82,0x43,0xb8,0xa0,0xad,0xb3,0xbe,0x68,0x65,0x99,0x50,0xd7, 0x88,0x4c,0x11,0x8b,0x5f,0x37,0x72,0x6f,0x60,0xa9,0x56,0x34,0x43,0x80,0x36,0x50, 0x68,0x49,0x91,0x97,0x8b,0x1b,0xb6,0x73,0xb6,0x4f,0xb7,0x4,0xca,0x8c,0x2d,0x99, 0x6e,0x4e,0x20,0xad,0xdf,0xf1,0x2a,0xf6,0x47,0x19,0x4b,0xe9,0xf1,0x3f,0x95,0xe0, 0xf4,0x4b,0xf0,0x9d,0x31,0xf5,0xa3,0x9f,0xc5,0x27,0xe,0x2d,0xf0,0x5e,0xb,0xd0, 0xfe,0x42,0x7e,0xb7,0xc6,0x49,0xd0,0x76,0x6a,0x9b,0x1e,0x82,0x9,0x8f,0x3d,0xfe, 0x1b,0x4d,0x8b,0xa1,0x82,0x1a,0x86,0x6e,0x9e,0x13,0x95,0xad,0x86,0x21,0xa9,0xa8, 0xde,0x41,0xdf,0x82,0x7,0x9f,0xcd,0x5d,0x1f,0x12,0x55,0xf,0xd,0x2b,0xec,0xbe, 0x7c,0x47,0xe1,0xaa,0x33,0xe7,0x5d,0xe0,0x33,0x95,0x34,0x69,0x42,0xfd,0x1e,0x7b, 0xec,0x40,0x3b,0x84,0x90,0xe3,0x92,0x46,0xc,0xfc,0xbe,0x22,0xd2,0xbe,0x2c,0xcd, 0xcb,0x4f,0xa9,0xae,0x6b,0x4d,0x90,0x7b,0x8e,0xc6,0x75,0x96,0x14,0x8c,0x7c,0x38, 0x44,0x46,0xe4,0x8b,0xdb,0x60,0xdd,0xfe,0xb5,0x61,0x2,0xee,0xa9,0x80,0x30,0x2f, 0xe4,0x48,0xbd,0x85,0x2f,0xd1,0xea,0x4d,0xaf,0xac,0xa1,0x36,0x8e,0x36,0x8d,0x23, 0xb8,0x4e,0x4e,0x89,0x4d,0x85,0x53,0x4f,0x67,0xad,0xa7,0x80,0x4b,0xc3,0x4c,0x56, 0x81,0x4d,0xca,0xa1,0x48,0xff,0xfe,0xa7,0xfa,0x4,0x55,0x25,0x6a,0xfb,0xf9,0x17, 0x8f,0x42,0x32,0xa4,0x47,0x5d,0xc,0x6d,0x5c,0x9a,0x63,0x26,0xff,0x4e,0x7c,0xab, 0x97,0x43,0xf1,0xb4,0x56,0x5e,0x66,0xed,0x43,0xf,0xd5,0x34,0x9b,0x71,0x47,0x7a, 0x9d,0x4b,0x33,0x81,0x4,0xd5,0x8e,0x46,0x2b,0xf5,0xec,0xae,0xf,0xfa,0xe6,0x3d, 0x7c,0x4d,0x56,0x93,0x63,0x3f,0x3a,0x13,0x5c,0x46,0x60,0xf7,0x80,0xa4,0x62,0x90, 0x86,0x44,0xfe,0x84,0x30,0x5,0x38,0x87,0xda,0x7a,0x40,0x4b,0x25,0xe0,0x35,0x34, 0xe1,0x4e,0x38,0x8c,0xd2,0x6d,0x52,0x46,0x4c,0x21,0xee,0x9f,0xcb,0x5b,0xde,0x14, 0x13,0x4b,0x61,0x83,0xf0,0x8b,0x18,0xbd,0x47,0x9,0x31,0x8b,0x16,0xd9,0xe9,0xc2, 0x3c,0x44,0x1f,0xbf,0xea,0x7d,0x62,0x61,0x3a,0x63,0x1e,0x8c,0x95,0x7f,0x5c,0xf0, 0xc0,0x44,0xbf,0xb0,0xd9,0xd3,0x27,0x5,0x8e,0x86,0x18,0x94,0x4a,0x80,0xa0,0x5a, 0x6,0x4c,0x5b,0xb7,0x5a,0x6a,0xe1,0xe9,0x19,0x69,0xd4,0xa0,0x93,0x56,0xd4,0xf6, 0xbd,0x42,0x42,0x97,0xd0,0x58,0xd6,0xda,0x45,0x37,0xb2,0x2,0xfc,0x9f,0x4b,0xea, 0x6,0x47,0xe9,0x85,0xf,0x25,0x90,0x77,0xa0,0x37,0x28,0xff,0x15,0xf3,0x73,0xe6, 0x89,0x49,0x42,0xac,0xbf,0xcf,0x3f,0x68,0x49,0x8e,0x4c,0x53,0xa6,0x70,0xe1,0x4, 0xeb,0x42,0x95,0x8f,0xb1,0x79,0x56,0x75,0x80,0xb9,0x30,0x9e,0x26,0xf7,0x77,0xb7, 0xd8,0x4b,0x98,0x86,0xa4,0x81,0xee,0x1b,0xf0,0xf7,0x65,0xed,0x8f,0xe8,0xc8,0x7f, 0x77,0x41,0x4f,0x93,0x42,0xe0,0x45,0xa3,0x75,0x4e,0xbe,0x92,0x13,0x18,0x33,0x42, 0x8e,0x40,0xaa,0xbb,0xc7,0xb1,0xd5,0x85,0x49,0x4d,0x65,0x1,0x25,0x8d,0xc2,0xc4, 0x4,0x42,0xdd,0x92,0x94,0x26,0x43,0x15,0xfc,0x88,0xad,0xbc,0x5f,0xec,0x65,0x3b, 0x8f,0x44,0x27,0x95,0xce,0xd0,0xa8,0x4a,0xb7,0x57,0x25,0xa,0x4c,0x6,0xc1,0xc3, 0xa2,0x43,0x91,0x94,0x5d,0x5f,0x76,0x54,0xd8,0x9c,0x42,0xe8,0x22,0x38,0xcc,0xf9, 0x80,0x46,0x29,0xab,0x21,0x82,0x2a,0x11,0xa4,0x78,0xb5,0xcd,0xd8,0xbe,0xf0,0x2c, 0x85,0x4b,0x57,0x8e,0x80,0x23,0x63,0x68,0x9f,0x85,0x53,0xb8,0x9,0x6b,0x32,0x25, 0xfd,0x4a,0x1b,0x8e,0x24,0xee,0x7,0xdf,0xae,0xc,0x5e,0x9e,0x99,0x72,0x40,0x6d, 0xc2,0x4d,0x85,0xb6,0xbf,0x9,0x50,0x50,0x5,0x84,0x57,0x3e,0xc6,0xd6,0x12,0x65, 0xbe,0x4a,0xf8,0xb7,0x9,0xf8,0xde,0xa5,0x7b,0x85,0x28,0x50,0xf,0xc1,0x1e,0x10, 0x76,0x4c,0x1f,0xbf,0xae,0x83,0x6d,0xc0,0xb2,0xf0,0xe5,0xae,0xae,0x17,0xbc,0x66, 0x42,0x4a,0xc2,0x90,0x92,0x4e,0x35,0xa0,0xef,0x75,0x7,0xaf,0xc6,0x13,0xfb,0x88, 0x19,0x4c,0x8e,0xa5,0x7c,0x3d,0x84,0xd3,0xd7,0xbe,0x3d,0xda,0xc1,0xb8,0x52,0xda, 0xbf,0x42,0xd1,0xab,0x78,0xda,0xde,0x83,0xce,0xca,0xa1,0x13,0x10,0x15,0x51,0x76, 0xdb,0x46,0x29,0x8d,0xbc,0xaf,0x8a,0x2d,0x1b,0x17,0x17,0x45,0x7c,0x6,0x38,0x4c, 0x7a,0x4d,0xcd,0x8c,0x2,0x42,0xde,0xa6,0x76,0xe7,0xac,0x4b,0xb2,0x98,0x12,0x8f, 0x2f,0x47,0xd7,0x95,0xfe,0xd,0xc2,0x5b,0x4,0x70,0x89,0xb5,0xfc,0xe0,0x48,0x85, 0x32,0x45,0x3,0xba,0x4f,0x2,0x46,0xcd,0xf7,0x55,0x66,0xaf,0x7c,0x97,0x59,0x25, 0x27,0x41,0x9c,0xad,0xd0,0xfc,0x8e,0xa6,0xf2,0x53,0xe6,0x94,0x7a,0x22,0x3a,0xf, 0xca,0x4e,0x42,0x94,0x3b,0x42,0xbe,0x5f,0x28,0x5c,0x46,0xd6,0x4c,0x18,0x92,0x7b, 0xc9,0x43,0x99,0xa0,0x67,0x45,0x5b,0x28,0xd,0xf7,0xff,0x48,0xe4,0x8d,0x55,0x60, 0xde,0x47,0x1e,0xb6,0x27,0x9f,0x17,0x60,0x6c,0xf1,0x34,0x1e,0xd6,0xbf,0x47,0xfa, 0x13,0x43,0x87,0xa6,0xae,0x30,0xe0,0x51,0x54,0x93,0xff,0x5f,0x21,0x7f,0x6a,0x5e, 0xa7,0x49,0xc4,0xad,0xf0,0xca,0xa2,0xdd,0x71,0x9b,0xe1,0xcc,0x6c,0xa0,0xaf,0xe3, 0xb2,0x41,0xe4,0xab,0x10,0x75,0x70,0xed,0x97,0x2f,0x97,0x21,0xb4,0x63,0x56,0xf8, 0xc0,0x49,0x24,0x80,0x53,0x49,0x27,0x73,0xc6,0x84,0x6c,0x58,0xc5,0xdc,0xe6,0x3d, 0x6b,0x42,0xa8,0xad,0x6b,0x3b,0x70,0x6a,0x69,0x43,0x8,0xf5,0x36,0xa8,0x91,0x9, 0xbe,0x4b,0x15,0x97,0x6f,0x7,0xb9,0x72,0x98,0x27,0x8c,0x3,0xf6,0x3a,0xc1,0xb0, 0x5d,0x4b,0x1a,0x9e,0x4e,0xbe,0x96,0x12,0x3,0x64,0x50,0xcc,0x4e,0xe9,0x90,0xdb, 0xa3,0x45,0xf5,0x9d,0xef,0xf1,0x2d,0xf6,0xef,0x3,0xf4,0x69,0x49,0x52,0x10,0x7c, 0xc4,0x40,0x7a,0x9f,0x1f,0x9e,0xa3,0x28,0x9e,0xf6,0xda,0x61,0x53,0x7,0x43,0xa2, 0x7c,0x41,0xf,0x92,0xee,0x49,0xdd,0x4b,0xca,0x52,0xf4,0x58,0x89,0xa4,0x69,0xc5, 0x84,0x4f,0x4,0xba,0x5,0x1c,0x1e,0xeb,0xbe,0xb,0x64,0xe1,0x92,0xa0,0xde,0x58, 0x90,0x4c,0xda,0x84,0x11,0xa5,0x51,0xa,0x25,0x35,0x26,0x66,0x94,0xc8,0x2,0x76, 0xa1,0x4a,0xf6,0x92,0xc6,0x51,0x86,0x8,0xf5,0x67,0xe5,0x4b,0x3a,0x42,0x8a,0x7f, 0xed,0x42,0x65,0xba,0xf3,0xb2,0xc,0x9c,0xf6,0x49,0x3f,0xaa,0x96,0xd5,0x61,0xb, 0x7e,0x4c,0x12,0xb1,0xcb,0x9a,0xe8,0xb6,0x27,0xb6,0x1c,0x50,0x91,0xc4,0x5b,0x98, 0x4e,0x49,0x67,0x94,0x29,0x12,0x21,0x7c,0x17,0x50,0x20,0xd,0x7c,0xd7,0xbc,0xd5, 0x2c,0x4d,0x7d,0x95,0x3d,0xda,0xec,0x7c,0xaf,0xfa,0x3,0x57,0x69,0x40,0xb6,0x99, 0x80,0x45,0x58,0x98,0xa7,0xc9,0xb2,0x44,0xcb,0xd6,0xa1,0xf1,0xb5,0xf,0xb3,0xcb, 0xa,0x42,0xaa,0xaf,0x97,0x7d,0x53,0xf8,0x3e,0xe1,0x69,0xc0,0x3,0x26,0x9e,0x46, 0x52,0x4d,0xc,0x81,0x6d,0xcb,0x4a,0xe9,0x1e,0xec,0xdc,0x3b,0x5e,0x3b,0x6e,0x86, 0x1c,0x46,0x7,0x8d,0x42,0x21,0xf7,0xa,0x41,0x7e,0x8b,0xf8,0xf,0x28,0x60,0x60, 0x39,0x42,0x6d,0x8d,0xd0,0x83,0x24,0x10,0x2d,0x8b,0xd7,0x2f,0x27,0xd9,0x56,0xc8, 0xad,0x48,0xfb,0xb4,0xdf,0x6a,0x21,0x34,0xd8,0x43,0xf2,0x25,0xef,0xea,0x9c,0x62, 0x6c,0x43,0x56,0xbe,0x9b,0xea,0x53,0xca,0x5d,0x27,0x40,0xda,0xcf,0xca,0x12,0x9c, 0xe6,0x4e,0x27,0xb0,0xa8,0x73,0x83,0x6e,0x5f,0x66,0x98,0x1e,0xa2,0x10,0x9f,0xaa, 0xc2,0x41,0x27,0x9d,0xf2,0x79,0x14,0x96,0x4d,0x5d,0xc1,0x85,0x7c,0x2f,0x6b,0x2c, 0xf2,0x4b,0xb8,0x9f,0x19,0x4c,0xc,0xcc,0x6e,0x5a,0xbb,0xd3,0x26,0xd,0xa5,0xc9, 0x63,0x4f,0xda,0x91,0xa8,0xf3,0xc0,0x23,0x32,0x89,0x8e,0xb0,0xc3,0xa0,0xda,0xd2, 0x4c,0x48,0x70,0x81,0xf2,0x7e,0xbf,0xaa,0x52,0xe4,0x16,0x86,0x88,0xce,0x6e,0x94, 0xf9,0x4e,0xf4,0x87,0xdf,0x8b,0xb,0x24,0x1e,0xaa,0xd0,0xbe,0x33,0x34,0x1b,0x81, 0xfd,0x4b,0xf4,0x8c,0x52,0xd,0x56,0x4b,0x89,0xce,0xd3,0x1c,0xe4,0xa,0x5f,0xf3, 0x9b,0x4b,0x8d,0x88,0xf4,0x95,0xd2,0x69,0x4d,0x29,0x93,0x6e,0x7e,0xe5,0x91,0xd3, 0xb5,0x48,0x15,0x87,0x64,0xa8,0x7f,0x4d,0xa,0x19,0x33,0xb2,0xc1,0x7d,0x8b,0xb7, 0x42,0x4d,0xe5,0xaa,0x5a,0x84,0x4d,0xb1,0xfe,0x85,0xb5,0x83,0xe5,0x3a,0x73,0x6, 0x91,0x4f,0x0,0x81,0x59,0xff,0x3a,0x8,0xb4,0x6b,0xd1,0x9b,0x98,0x50,0xb6,0xd2, 0x14,0x4f,0xc6,0xa8,0xdf,0x9f,0xd5,0xd2,0x9f,0x18,0xee,0x7c,0x81,0xdf,0x1d,0x33, 0x54,0x45,0x40,0xad,0x3e,0xa6,0x22,0xf2,0xa7,0x67,0x68,0xaa,0x33,0x3b,0xdb,0xb7, 0xe5,0x49,0x5b,0xad,0xb0,0xbd,0xce,0x95,0xa4,0xfa,0x3f,0xd1,0xaa,0x4b,0x4a,0x2b, 0x91,0x42,0x54,0xbc,0x1b,0x60,0x8f,0x46,0x7e,0x26,0x74,0x8a,0xa,0x39,0xe6,0x57, 0xc5,0x4d,0xfa,0xad,0x3f,0x10,0xbb,0x18,0xb5,0x71,0x5f,0x3e,0x6b,0x3b,0x41,0x20, 0x99,0x4a,0xdd,0xa8,0x4a,0xf9,0xce,0x6,0x6c,0x86,0xb3,0x1e,0x88,0x7c,0x34,0x54, 0xc7,0x43,0xdc,0xac,0xc7,0xa7,0xc9,0xb1,0x73,0x10,0x19,0x68,0x22,0xc,0x1d,0x62, 0x29,0x41,0xc7,0xa0,0x4a,0x6d,0x1c,0x12,0xba,0x33,0x41,0xde,0x14,0x0,0xe8,0x58, 0x9b,0x4d,0xff,0xa1,0xcd,0x14,0x88,0xcf,0xf7,0xeb,0xa4,0x21,0x1,0xa0,0x87,0x62, 0xb5,0x43,0xf5,0xad,0x12,0x92,0x3b,0xf2,0x54,0x94,0x31,0x5d,0x6d,0xe7,0xa4,0x4e, 0x13,0x44,0x1c,0xbd,0x15,0x6c,0x94,0xf3,0xf8,0x5d,0x2f,0xf0,0xc9,0xa9,0x96,0x66, 0x60,0x40,0x34,0x9d,0xa3,0x52,0x22,0x25,0xca,0x93,0xb9,0xc1,0x84,0x80,0xe9,0x22, 0xeb,0x4b,0xc8,0x8c,0x53,0x12,0xc5,0x43,0xbc,0x7d,0x33,0xb5,0x87,0x61,0x8b,0x9d, 0x85,0x4c,0xc2,0x95,0xd9,0x85,0xbe,0x8,0x5d,0x13,0xf2,0xf7,0x27,0xdb,0xfd,0xd9, 0x6d,0x4e,0xbb,0xa8,0xa5,0x66,0xc7,0xf8,0x61,0x20,0xa8,0xf0,0xad,0x7,0x61,0x75, 0x19,0x41,0xd9,0xb1,0xe2,0x26,0xb,0x8a,0x25,0xc5,0xaf,0xf0,0x5e,0xce,0xcf,0xc0, 0x73,0x44,0xe8,0x8c,0x8c,0xa1,0x77,0x4a,0xfe,0x68,0x68,0xf8,0xc6,0x57,0x1c,0xb4, 0x4c,0x4e,0x3,0x85,0x81,0x4a,0xee,0x1e,0x1c,0x74,0xf4,0x4f,0x6b,0xa8,0xa0,0x67, 0x6,0x49,0xfa,0xbc,0xb4,0x72,0xdb,0xbb,0x30,0x37,0x12,0x21,0xb,0x71,0x4a,0xdf, 0x7e,0x46,0x91,0xb8,0x91,0xa3,0x10,0x8f,0x94,0x7,0xdd,0xb7,0x33,0x7a,0x78,0xef, 0xcf,0x4d,0x39,0xbb,0xc6,0xec,0x45,0xb8,0x95,0x5f,0xc3,0x80,0x4b,0xa4,0x69,0x30, 0x6e,0x41,0x8f,0xa7,0x71,0xf6,0xcd,0xb6,0x7,0x0,0x89,0xa1,0xda,0xbe,0x7b,0xe5, 0x5e,0x4d,0x7f,0xa5,0x79,0x8e,0x71,0x8a,0xbf,0xc2,0x73,0x75,0xb,0x62,0x8f,0x19, 0xba,0x48,0x9c,0x93,0xfe,0x3b,0xc2,0xbc,0x1f,0xd2,0xb,0xdf,0x86,0xcd,0x6f,0x7c, 0xeb,0x4a,0x6c,0x93,0x6f,0x96,0x97,0x53,0xff,0x50,0xe7,0xe2,0x4c,0xe4,0xe1,0x6d, 0x23,0x40,0x5a,0x93,0x6d,0xae,0x6b,0x5b,0x4e,0x20,0xc4,0xfc,0xea,0x5f,0x1d,0x70, 0x3b,0x4a,0x44,0xb2,0x7b,0xd8,0xc2,0x32,0x76,0x51,0xd0,0xdb,0x1c,0xbb,0x1,0xec, 0x7e,0x44,0xe7,0xa3,0x5,0xd9,0x82,0xa8,0xfb,0x94,0x30,0xe5,0x7d,0xea,0x3b,0x5a, 0xec,0x44,0x5e,0x99,0x9a,0x5c,0xa1,0xca,0x60,0xdb,0x49,0x59,0x2d,0x33,0xc6,0x3, 0x75,0x4b,0xb,0x9f,0xd,0xb5,0x39,0xf7,0xde,0x5d,0x7b,0xef,0x78,0x53,0x0,0x75, 0xa8,0x4c,0xe6,0x88,0x7e,0x32,0x9a,0x97,0x98,0xc0,0x79,0xfd,0x87,0xf4,0xb6,0x6, 0xf7,0x46,0xc1,0x9d,0xc3,0x41,0x99,0x50,0xb0,0x2e,0x74,0x14,0x7c,0x5f,0x27,0x1e, 0xba,0x4d,0xe0,0x8d,0xbe,0x17,0xd3,0x2f,0x5e,0x2b,0x93,0x85,0x97,0x42,0x5e,0x6d, 0x33,0x49,0x4d,0x9f,0x88,0xa1,0x7,0x87,0x9b,0x52,0x96,0xe,0xa,0xa0,0xcb,0x4, 0x2e,0x42,0x36,0xa4,0xd8,0x9,0x9a,0x10,0xdc,0x2b,0xef,0x8d,0x2e,0xd0,0x23,0x30, 0x7a,0x45,0xab,0xb8,0x70,0x32,0x68,0x6,0x3d,0xa9,0x9a,0xfd,0x8d,0xd,0x68,0x59, 0x33,0x4b,0xa4,0x8e,0x6b,0x50,0xfa,0x6b,0x56,0x2c,0x2b,0x50,0x7f,0x93,0x5,0xaf, 0x48,0x41,0x6f,0xaa,0x44,0xb,0x60,0x5b,0x35,0xad,0xe2,0x89,0xaa,0xe6,0x33,0x9, 0x89,0x40,0xf4,0x89,0xf,0xe3,0x9b,0x4a,0xbe,0x82,0x7c,0xa0,0x8c,0x3b,0xde,0x6d, 0xca,0x42,0x5a,0x80,0x43,0xbc,0x4,0x82,0xd7,0x51,0x98,0x92,0x8f,0x19,0x13,0x96, 0xd2,0x4e,0x15,0x99,0xee,0xa1,0xc5,0x1b,0xa7,0x86,0xef,0x81,0x9e,0x6a,0xf8,0x65, 0x1d,0x49,0xb0,0x86,0x2,0x59,0xf8,0xb8,0xaa,0x36,0xea,0x6f,0x8c,0x25,0xe,0x48, 0xed,0x4f,0x5b,0xa4,0x1b,0x5d,0x40,0x49,0x80,0x9c,0xc9,0x12,0xad,0x50,0x57,0x67, 0x1f,0x40,0xc6,0xb5,0xdc,0x28,0xfd,0x9e,0x73,0xee,0xd3,0x5e,0xd2,0x1a,0x8e,0x9c, 0x22,0x49,0x2e,0xbc,0x2b,0xbf,0xfc,0x54,0xfb,0xa0,0x7b,0x74,0xb6,0x8d,0x1b,0x16, 0x8a,0x4e,0x1f,0x96,0x7c,0x2f,0x38,0x4f,0xf6,0xb7,0x32,0xb,0x76,0x8c,0xe2,0x5, 0xc3,0x41,0x33,0x91,0x8b,0xff,0x37,0x37,0xe3,0x32,0x87,0x8f,0x72,0x80,0x24,0x69, 0x2c,0x42,0x1e,0x8c,0x90,0xef,0xde,0x84,0x68,0xe5,0x95,0xd6,0xfc,0x7f,0x55,0xd7, 0x46,0x44,0x97,0x91,0x81,0x46,0x18,0x12,0x9a,0x8e,0x42,0xa4,0x91,0xfb,0xef,0xa2, 0x86,0x49,0x7e,0xaa,0x95,0xc8,0xf9,0x87,0x82,0x36,0x4,0xa0,0xd2,0x39,0x99,0xe, 0x4e,0x42,0xf6,0xad,0x60,0xff,0x92,0x14,0x6a,0x8c,0x3b,0x26,0x9,0xf,0x8a,0xc6, 0xa,0x42,0xfe,0xa9,0x4a,0x73,0x98,0xa3,0x83,0x51,0xe4,0xde,0xab,0xba,0x24,0x3e, 0x94,0x48,0x32,0x9f,0x81,0xc5,0xdd,0x3f,0xa0,0xa4,0x26,0x55,0xf9,0x69,0x28,0xd8, 0xc,0x4b,0xd2,0xb3,0x14,0x48,0x62,0x6d,0xf,0x1d,0x1c,0xf5,0x24,0x6e,0xb0,0x4b, 0xe3,0x48,0xd4,0x99,0x6,0xae,0x8f,0x7e,0x12,0x3d,0x10,0x5c,0x5f,0xb8,0x79,0x9a, 0xf,0x43,0xcc,0x98,0x4c,0xcd,0x3f,0xec,0x8a,0x24,0x7b,0xad,0x5e,0x71,0xdf,0x5f, 0x80,0x4f,0x1,0xaf,0x89,0xbe,0xf5,0xe0,0xb0,0xd8,0x78,0xb5,0x51,0x66,0xd1,0x21, 0x9a,0x40,0xba,0x96,0x8f,0x3e,0xa,0x11,0x35,0xd6,0xe2,0x69,0x78,0x86,0xf6,0xbb, 0xcb,0x42,0x93,0xb6,0xa,0x98,0xbe,0x46,0xdd,0xe9,0xab,0x1b,0x59,0x53,0x15,0x5b, 0xc0,0x44,0xc6,0xad,0x7e,0x7d,0x56,0xf,0x97,0x8d,0x40,0x8a,0xf3,0xb3,0x28,0xa3, 0x3e,0x4f,0x75,0xae,0x32,0x28,0x4a,0xc5,0xa4,0xb4,0xa8,0xc,0xf7,0x3b,0xf1,0x83, 0xc0,0x42,0x8d,0xa9,0xd,0x45,0x25,0xd3,0x12,0x71,0xc9,0x1c,0x44,0x1f,0x1b,0x55, 0xd8,0x4c,0xbe,0x98,0x20,0xa,0xa6,0xf2,0xef,0x79,0x48,0x10,0xf4,0x4b,0xc9,0xbc, 0x28,0x41,0x88,0x9c,0xb6,0xfc,0xeb,0x1a,0x93,0xc2,0xe4,0xfc,0x89,0xfa,0x42,0xb1, 0xc1,0x47,0x13,0x92,0x47,0x77,0x91,0x9,0xe4,0x1a,0x2d,0x53,0x17,0x48,0x47,0xb6, 0x91,0x46,0xcf,0x8f,0x3e,0x5a,0x38,0x5f,0x12,0xda,0x89,0x9a,0x49,0xc6,0xea,0x16, 0xc4,0x4b,0x2f,0xb9,0x37,0xbf,0x9d,0x44,0x63,0xda,0x85,0xf,0xc5,0xe9,0xc4,0x8a, 0x59,0x49,0x75,0xa5,0xa7,0xf,0x14,0x99,0x3e,0xf,0x91,0xc0,0xa1,0xdd,0x23,0x8d, 0x52,0x4e,0xdf,0x91,0x72,0xce,0xc6,0xea,0x19,0xbc,0x8a,0x13,0x20,0x54,0x2,0x33, 0x97,0x40,0x93,0xa5,0x24,0xa2,0xd2,0x42,0xe4,0x35,0xb1,0xd0,0xd,0x4f,0xa7,0x66, 0xef,0x47,0x71,0x84,0xd5,0x8,0x2,0xaa,0x7f,0xe5,0xa5,0x58,0x4a,0x52,0x40,0x5a, 0xa,0x4f,0x2e,0xb0,0x2b,0x96,0x6e,0xf2,0x34,0x2f,0xd5,0x7,0x23,0xb2,0xe4,0xdd, 0x9c,0x4e,0x4f,0x81,0x49,0xec,0x99,0xa5,0xd8,0x22,0x3a,0x79,0xd1,0x5e,0x9a,0x5e, 0x50,0x45,0xd3,0xb7,0x86,0xa7,0xa8,0x5f,0xbf,0x4b,0x7b,0x53,0xcb,0x16,0x67,0xb4, 0x25,0x4b,0xdc,0x8d,0xe,0x54,0xb1,0xb4,0x19,0x1a,0x5d,0xe,0x94,0x29,0x8f,0xe6, 0x30,0x48,0xb7,0xa8,0xce,0x81,0x79,0xcc,0xb8,0xa9,0x45,0x33,0x5e,0xd3,0xe2,0xb6, 0xb7,0x45,0x11,0xa1,0x28,0x11,0x8a,0x2f,0x67,0x58,0x11,0x3f,0x61,0x62,0x34,0x23, 0xcc,0x4e,0x3b,0x8f,0xca,0xcd,0x97,0x1f,0x90,0x8d,0x55,0x7,0x95,0x1c,0x6,0xb5, 0x78,0x4d,0x14,0x8c,0xa4,0xd2,0x10,0xd6,0x56,0x9b,0xcf,0xf9,0xb8,0x53,0xd9,0x1b, 0xc7,0x49,0x44,0x99,0x1f,0x90,0x7a,0xf6,0x8b,0x4e,0x45,0x55,0x4b,0x76,0x22,0x30, 0xe3,0x42,0x37,0xb8,0x98,0xf3,0x19,0x21,0x26,0x67,0xbd,0x5f,0xfb,0xa8,0xcf,0xc0, 0x90,0x4f,0xfe,0x98,0x9c,0xe2,0x4b,0xf3,0xf9,0x25,0x65,0xfa,0x9b,0x2,0xe1,0x84, 0x14,0x4b,0x82,0x8a,0x4,0x87,0xcb,0x22,0xb3,0x5e,0xb6,0xbb,0x9b,0xb5,0xcc,0x77, 0xc2,0x48,0x33,0xb2,0x53,0xee,0x68,0x8,0x73,0x20,0x33,0x52,0xb4,0xd5,0xfa,0xfb, 0x4b,0x46,0xcb,0xab,0x21,0x5,0xf6,0xff,0xf1,0x3a,0xc4,0x77,0x82,0x54,0xaf,0xe8, 0x96,0x44,0x5d,0xa4,0xfd,0x44,0x65,0x61,0x86,0x8a,0x16,0xf8,0xb3,0x4e,0x8e,0xaf, 0xeb,0x4f,0xea,0xba,0xac,0x58,0xe3,0x9e,0x3d,0x60,0xa4,0xe1,0x2d,0xc7,0x85,0xc9, 0x5c,0x42,0x3a,0x90,0x2c,0xfa,0xce,0x43,0xa,0xd1,0xf5,0xba,0x38,0x51,0x71,0xb3, 0xd1,0x4f,0x81,0x9d,0xbe,0x5,0x57,0x5f,0x6c,0xd,0x92,0xf4,0xa4,0x9b,0xcc,0xa4, 0x23,0x48,0x7f,0xbb,0x59,0x45,0xda,0xf1,0x78,0x5e,0xb2,0x24,0xa,0xc7,0xd1,0xf2, 0x41,0x48,0xb6,0x8d,0xe0,0x5d,0x15,0x18,0x67,0x46,0xaf,0x11,0xb5,0xa7,0x5b,0x45, 0xed,0x43,0xa2,0x90,0x97,0x29,0xdd,0x60,0x49,0x55,0xf8,0xe,0xb3,0x9f,0xef,0xad, 0xdf,0x42,0xee,0x8e,0x15,0x43,0x16,0x19,0xa8,0x19,0x5,0xc3,0x5d,0x87,0x30,0x13, 0xc3,0x40,0x85,0x95,0x79,0x92,0x38,0xf1,0xe8,0x3c,0xeb,0xf1,0x5f,0xf9,0x79,0x40, 0xa1,0x4e,0x2,0xb8,0x81,0xd,0x6a,0xc5,0x24,0x6d,0x33,0x40,0x62,0xab,0xb1,0xcf, 0x83,0x42,0x46,0x8d,0x4a,0x86,0x19,0x35,0xbb,0x7f,0x57,0xed,0x37,0x33,0xb1,0xa3, 0xac,0x4e,0xc9,0x87,0x71,0xcb,0x4,0xb7,0x60,0x0,0x25,0x6a,0x30,0xa6,0xde,0x2f, 0x50,0x4e,0x34,0x8e,0x80,0x9,0x7a,0x2b,0xcc,0xf6,0x2b,0xc4,0x8f,0x73,0x9f,0x13, 0xe,0x42,0xf4,0x98,0x97,0x42,0x41,0xcd,0x5c,0x53,0x10,0x5f,0x98,0xc3,0xbf,0xb2, 0x3,0x45,0xd4,0x91,0x48,0x49,0x45,0xee,0x91,0xa6,0x83,0x87,0x48,0xa4,0x28,0x4e, 0x4b,0x4b,0x81,0xa0,0x9b,0x8c,0x42,0x64,0xb6,0x4d,0x78,0xff,0xf8,0x79,0x49,0xff, 0xaa,0x4d,0xf9,0x98,0x1d,0x8f,0xea,0xa2,0xe6,0x4e,0x14,0xc1,0x8,0xf5,0x45,0x9a, 0xc5,0x4b,0xf8,0x8c,0x9b,0x36,0xfb,0x73,0x3a,0xab,0xa6,0x19,0x2c,0x6f,0xd8,0x71, 0x75,0x41,0xa7,0xad,0xf4,0xa5,0xcc,0x63,0x3e,0x11,0x30,0x8a,0xbf,0xfa,0x56,0x79, 0x73,0x43,0xbc,0x9f,0xc4,0x12,0x55,0xfb,0xe0,0x4a,0x49,0xfe,0x87,0x94,0x66,0xbf, 0xcc,0x4b,0x48,0xb2,0x1e,0x51,0xa2,0xbb,0xd5,0xb2,0x44,0x55,0xa0,0x51,0x73,0xd4, 0x30,0x42,0xd0,0x97,0xf0,0xe5,0xec,0x2a,0x4,0x68,0x3a,0xcc,0x14,0xa4,0x34,0xee, 0x1c,0x41,0xda,0x91,0x0,0xf9,0x20,0x56,0x7c,0xc2,0xe5,0xb8,0xe6,0xed,0xf6,0x9a, 0x7f,0x43,0x6c,0x87,0x56,0x9b,0x8d,0xe3,0x6e,0x2c,0xfa,0x30,0x41,0x3c,0x83,0x2, 0x47,0x49,0x97,0x8c,0xc7,0x78,0xf6,0xda,0xdc,0x7c,0x10,0xf4,0xde,0xa7,0xac,0x1, 0x1e,0x49,0x53,0xb5,0xa,0xce,0xba,0x8b,0x9e,0x37,0x5b,0xc7,0x2f,0xb5,0xb2,0x1, 0x1d,0x4f,0x18,0xb2,0x7e,0xa1,0xdb,0xe2,0xd2,0xb,0x44,0xb8,0x7d,0x7c,0xde,0xf8, 0xa8,0x46,0x90,0x8a,0x64,0xf4,0x3a,0x30,0xe1,0x77,0xeb,0xa3,0xad,0xa5,0x4,0xbe, 0xe9,0x49,0xa7,0x86,0xa8,0x84,0xdf,0xaa,0x87,0x81,0xea,0xaf,0xd6,0x82,0xb9,0x43, 0x6f,0x40,0xe2,0x9e,0x34,0x6e,0xec,0x72,0x3b,0x96,0x3,0x7f,0x18,0xf7,0x3e,0xde, 0xad,0x44,0x9d,0x87,0xb2,0x25,0x32,0x15,0x74,0xce,0x4b,0xd1,0xbf,0xa6,0x39,0x25, 0x6f,0x48,0x9c,0x8d,0xe5,0xc5,0x7b,0x3d,0xd6,0xa2,0x82,0x48,0x5,0x5a,0x7b,0x87, 0x22,0x49,0xf5,0x91,0xf6,0xa1,0x91,0x12,0x90,0x4e,0xbb,0x4a,0x68,0x8b,0x12,0xcd, 0x7f,0x48,0xb2,0xb5,0xdf,0xad,0xe3,0xda,0xea,0xc5,0xd4,0xae,0xc5,0xad,0x22,0xb3, 0xf3,0x4a,0xa7,0x91,0x28,0xba,0xd,0x27,0x91,0x85,0xa7,0x90,0xd1,0x0,0xa0,0x8a, 0x14,0x42,0x19,0xaa,0x9,0x1a,0xcc,0x88,0x59,0x9a,0x65,0x32,0x21,0xda,0x1d,0xad, 0x7b,0x42,0xb1,0xb2,0x76,0x23,0x19,0x8,0x20,0x90,0xb6,0xc1,0xa6,0x87,0x5d,0xb5, 0x9e,0x48,0x4e,0xa3,0x2e,0x36,0x3c,0xf0,0xe8,0xe6,0x28,0x80,0xe2,0x38,0xe3,0x6d, 0x95,0x49,0x48,0x99,0xed,0x79,0xf,0x25,0x79,0x23,0x50,0x60,0xc1,0x43,0x7e,0xc8, 0x16,0x4c,0x9a,0xa8,0xaa,0xfd,0x16,0xcd,0x1c,0x60,0xc1,0x75,0x67,0x49,0xcb,0x7c, 0x38,0x45,0xd9,0x97,0x22,0xdd,0xbd,0x56,0x50,0x8b,0xb,0x29,0x39,0xf6,0xc6,0x8e, 0x64,0x4c,0x9,0x95,0xb,0x63,0xe7,0xa7,0x18,0x4c,0x8,0x38,0x5,0x3e,0x93,0x3e, 0x4,0x4d,0xfb,0xbb,0x93,0x6c,0xd6,0xae,0x40,0x3b,0xd8,0x1d,0x84,0x9,0xa1,0x15, 0x90,0x42,0x91,0x9d,0x32,0xd8,0xdd,0x5,0x75,0x81,0x47,0xf9,0x62,0xda,0xe6,0x72, 0xf0,0x4e,0x15,0xb6,0x7f,0x59,0x55,0xe4,0x8e,0xf7,0x7a,0x3c,0x8f,0xd2,0x28,0x94, 0xba,0x46,0x8c,0xbf,0x15,0x44,0x41,0x6e,0xe4,0xf6,0xcb,0x7b,0xd9,0xbf,0x59,0x0, 0x12,0x4c,0x22,0xb4,0xb3,0xa,0xba,0x65,0x1d,0xb4,0x82,0x5c,0x95,0x83,0x87,0x70, 0xf1,0x49,0x6d,0x81,0x89,0x21,0x39,0x57,0x9a,0x81,0x45,0x4,0xe7,0x6b,0x78,0xa2, 0x59,0x48,0x21,0xa4,0x25,0xb8,0x13,0x24,0x82,0xf4,0x1b,0x4d,0x33,0x32,0x3d,0x41, 0xba,0x47,0xd8,0xb2,0x49,0xe2,0x6c,0x71,0xf8,0x7f,0x47,0x75,0xbd,0x26,0xd8,0x8b, 0xea,0x4b,0x93,0xb3,0xe,0x13,0xe2,0x4,0x5d,0x9f,0x2f,0xbf,0x7b,0x66,0x2c,0x8c, 0x66,0x48,0xf6,0x99,0x58,0x79,0x50,0x8c,0x87,0x66,0xcf,0xf5,0xd8,0x2a,0x24,0xe8, 0xfc,0x46,0x7a,0xbb,0xd9,0x45,0x14,0xf1,0x15,0xf8,0x37,0xae,0x2,0x9a,0xf5,0xc5, 0x74,0x42,0xd7,0xb7,0xc9,0x7e,0x2e,0x7,0x90,0x1a,0xf1,0xf6,0xd1,0x9a,0xc7,0x13, 0x8a,0x41,0x75,0x98,0xfa,0x56,0x87,0x43,0xeb,0xd3,0x29,0x45,0x1f,0xaa,0x78,0x5e, 0xc2,0x44,0x8c,0x8a,0x44,0x74,0x15,0xc4,0xa1,0x7c,0x3,0x36,0x20,0xd,0x8a,0x17, 0x77,0x47,0xa3,0xa7,0x51,0x6c,0xcb,0xba,0x23,0xef,0xfb,0x8b,0xd5,0x83,0x23,0xd7, 0x2c,0x4b,0xac,0x97,0xe1,0x7,0x4e,0x2e,0xf4,0xc8,0x15,0x1,0x8e,0x7f,0xfd,0xcc, 0xa7,0x49,0xc0,0xb9,0xd3,0xd4,0xd3,0x6c,0xde,0x4a,0xf1,0x3a,0x71,0x9e,0x68,0x4f, 0x38,0x48,0xba,0x90,0xfd,0x6f,0x38,0x7a,0x6c,0x65,0xc5,0x54,0x88,0x1d,0xa7,0x82, 0xf,0x40,0x20,0xbc,0x7f,0x13,0xfc,0xa0,0x70,0x71,0xdd,0x62,0xcf,0x89,0x64,0x10, 0x32,0x4d,0x4f,0xa5,0x59,0xbf,0x56,0x81,0xf2,0x1d,0x78,0x8e,0xb7,0x6,0x77,0xd7, 0xd1,0x4a,0x0,0x81,0xd1,0x51,0x96,0xa1,0x8a,0x99,0x4f,0xd,0x17,0x33,0x98,0x25, 0xa1,0x44,0x8c,0x9e,0xd,0x83,0xb0,0xc,0x23,0xcc,0xd7,0x7c,0xe3,0xc3,0xc7,0x47, 0x47,0x42,0x4e,0x88,0xc2,0x9c,0xb8,0x33,0x9c,0x60,0x36,0x9f,0xc9,0xda,0x4e,0xf9, 0xf0,0x40,0xb3,0xbe,0x78,0xa7,0xcc,0x8e,0x63,0xaa,0x1a,0x17,0x30,0x94,0xb9,0x2b, 0x67,0x40,0x42,0x9b,0x3e,0x2f,0x1b,0xa9,0x27,0x75,0x79,0x6f,0x21,0x68,0x2b,0x93, 0x43,0x47,0xf7,0x8c,0xca,0x13,0x68,0x57,0x8f,0xd5,0x1e,0x8b,0x66,0x6,0xc7,0x3a, 0x67,0x45,0xee,0xa1,0x93,0x8c,0xc8,0x52,0xd7,0x4,0x2,0xb,0x86,0x62,0x97,0xf, 0xc2,0x4d,0xe5,0xad,0x19,0x2b,0x61,0x1f,0x1d,0xfa,0x47,0xf7,0x1a,0x7b,0xbb,0xaf, 0x27,0x46,0x27,0x97,0x1f,0x85,0xb0,0xd2,0x5e,0x6c,0x86,0x7b,0x1b,0x22,0x23,0xc8, 0x7,0x41,0x92,0x8c,0x19,0xd0,0xf6,0x2d,0xd6,0x50,0x3e,0x6,0x50,0x8f,0xff,0x3a, 0xbe,0x4a,0xdd,0x82,0x2d,0xe3,0x8f,0xc2,0xc0,0xf6,0x45,0x68,0x7a,0x6,0x16,0xc6, 0x93,0x48,0xa6,0xa0,0x0,0xd4,0x9a,0x58,0xf9,0x5a,0x80,0x97,0xcf,0xc0,0x9b,0x3d, 0xf5,0x4f,0xf5,0x96,0x37,0xd,0x4d,0x5e,0xfc,0x2a,0x55,0x3a,0xf4,0x42,0x78,0xb4, 0x51,0x4b,0xef,0x80,0x5e,0xa,0x80,0xae,0x1e,0x51,0x58,0x46,0xbb,0x6f,0x29,0x32, 0x12,0x49,0x44,0x9f,0x15,0xe2,0x33,0xdd,0xf2,0xaf,0xc8,0xdd,0x4c,0x5d,0xd,0x29, 0xfb,0x41,0x77,0xa0,0xd7,0x19,0x90,0x5,0xc2,0x51,0xf,0xcc,0x27,0x1f,0x93,0x28, 0x1f,0x4a,0xa9,0x98,0x78,0xd1,0x93,0x81,0x3b,0x30,0xf2,0xf0,0x1,0x60,0x35,0x81, 0x12,0x4c,0x4a,0x8b,0xa6,0xc4,0xe9,0x35,0x53,0x80,0x16,0xd6,0x81,0xc,0x96,0x9, 0x58,0x4e,0xc3,0x9d,0x19,0xd,0x5f,0xf7,0xce,0x6d,0x86,0x7f,0xbf,0x31,0xa8,0xd3, 0x82,0x4d,0xad,0xb2,0x1f,0xd8,0x24,0x90,0x9b,0x36,0x31,0x14,0x8f,0x95,0x14,0xf3, 0xf3,0x40,0x7b,0xba,0x67,0x90,0xa0,0xde,0xfe,0xce,0xed,0x7d,0x31,0x66,0x92,0x3a, 0x67,0x45,0x69,0x8f,0x7b,0x30,0x4d,0x24,0x89,0x30,0xd5,0xf0,0x90,0x37,0x6e,0x97, 0xd8,0x4b,0xbf,0x90,0xa9,0xae,0x8a,0x64,0x30,0xb7,0xd8,0x8e,0xbd,0xb1,0x49,0x2f, 0xa2,0x48,0x3,0x83,0xa0,0x71,0x55,0x99,0x80,0xb0,0x26,0xd0,0x1f,0x21,0x22,0x5f, 0x3a,0x43,0x5b,0xbb,0x87,0x1,0x91,0x3c,0xbe,0xd2,0x96,0x56,0xf3,0x99,0xb5,0x8b, 0x5b,0x4c,0x14,0xac,0xc0,0xf8,0x5e,0xe6,0x8b,0x46,0xc9,0xed,0x6c,0x8c,0x9a,0xc4, 0xf3,0x45,0xc5,0x81,0x8,0x11,0x9,0x36,0x30,0xcd,0x72,0x4,0x7a,0xee,0xaf,0x67, 0x60,0x46,0xf3,0x9b,0xaf,0xbe,0xff,0xf,0xd1,0x66,0xb9,0xe1,0x18,0x41,0xcd,0xe4, 0x4f,0x42,0xf0,0x98,0x47,0xb7,0x6e,0x4f,0x11,0x20,0xad,0xfb,0x88,0x75,0x29,0xe8, 0x45,0x41,0xb7,0xb4,0x96,0xe3,0x39,0x3f,0xd,0x32,0x27,0xe1,0xf4,0x62,0xdc,0xc6, 0x8c,0x43,0x92,0x8a,0x2f,0xce,0x42,0x4d,0x45,0xf,0xce,0x6b,0xf7,0xca,0x6e,0xaf, 0xc0,0x49,0x95,0x98,0x8d,0x6c,0x57,0x47,0x51,0x0,0x5d,0xa3,0x28,0x46,0xbb,0xec, 0x86,0x4d,0x57,0x8a,0xce,0x6d,0xe2,0x47,0xdf,0x24,0x36,0xf5,0x2d,0x4a,0xb9,0x8b, 0xeb,0x41,0x23,0x9e,0xdb,0x50,0xde,0xcb,0xaf,0x25,0xef,0x15,0x8f,0xe9,0x6a,0x6c, 0xbc,0x40,0x9d,0x8c,0x9f,0xe1,0x8d,0x25,0xf1,0x83,0x35,0xd1,0x86,0x8,0x4d,0x99, 0x3c,0x45,0xb3,0xbf,0x70,0xd1,0x29,0xbe,0x6a,0x8c,0x45,0xb9,0xd4,0x45,0xf1,0xc8, 0x8e,0x46,0x10,0x8d,0x28,0xcd,0xb1,0xc0,0x21,0xd7,0x8b,0x3d,0x1e,0x24,0xe0,0x6, 0xa1,0x4f,0x32,0xa9,0x22,0x6f,0x3,0x99,0x22,0x5f,0xd2,0x65,0x5d,0x24,0xa0,0x27, 0x58,0x46,0xcf,0xa3,0xb7,0xa3,0x85,0xdd,0x85,0x9a,0xdc,0x67,0xdb,0x2,0x9f,0xd, 0x54,0x4f,0x74,0x8b,0xa7,0xb1,0x20,0x59,0xb9,0x10,0xe0,0xa7,0x5e,0xd7,0xd,0x2a, 0x32,0x45,0xdb,0x98,0x9b,0x6e,0x91,0x7d,0x65,0x77,0xe1,0x28,0x9c,0xc8,0x80,0xa7, 0x8d,0x42,0x60,0xab,0x45,0xa2,0x3e,0x3e,0xc8,0x2a,0x4a,0xa8,0x4b,0x41,0xc1,0xfc, 0x6b,0x4f,0x6b,0xae,0xd7,0x7f,0x1,0xce,0xf3,0x8e,0xcf,0x34,0x49,0x73,0x52,0xd8, 0xb4,0x4d,0xc9,0x83,0x94,0x7d,0x9c,0x71,0xff,0xcc,0xa9,0x16,0xce,0xeb,0x9a,0x27, 0x80,0x4c,0x71,0xb7,0x7d,0x32,0x60,0xad,0x3,0x90,0xfe,0x71,0xac,0x9,0x6d,0xd8, 0x6,0x4e,0x26,0x87,0x49,0x33,0x83,0x48,0x73,0xac,0x12,0x1e,0x7,0x64,0x6,0xbd, 0x7a,0x4b,0x6a,0x81,0x6c,0x14,0x9a,0x30,0xfd,0xb2,0x33,0x7,0x9b,0x3c,0xad,0xed, 0x48,0x4b,0x35,0xad,0x7e,0xdc,0xca,0x11,0x6d,0x20,0x6a,0x6f,0xbb,0xc9,0x5d,0xf5, 0xc1,0x47,0xe9,0x95,0x8e,0x49,0x85,0x91,0x37,0x95,0x7f,0x63,0x10,0xfb,0xc9,0x27, 0xd8,0x4a,0xdd,0x8d,0x2b,0x88,0xf,0xdf,0x5b,0xb2,0x1c,0xfe,0xf,0x25,0x24,0xf8, 0x4b,0x47,0x8b,0xbc,0xf4,0xae,0x9,0x6f,0xec,0xfc,0x33,0x74,0xac,0x5b,0xcc,0xdb, 0xad,0x4a,0xe,0xbd,0x4b,0xb2,0xb2,0xe8,0xdf,0x6e,0x9b,0x8b,0xcd,0x39,0xb9,0x9e, 0xc8,0x4d,0x8c,0x83,0xc9,0xa2,0x7a,0x80,0xcb,0x65,0x6c,0x2e,0x77,0x44,0x91,0x46, 0x35,0x42,0x34,0x83,0xde,0x18,0xff,0xba,0x94,0x44,0x6e,0x12,0x26,0xff,0xe2,0xd4, 0xb4,0x49,0x7b,0xab,0x91,0x16,0xff,0x7a,0x31,0xd1,0x46,0x40,0x80,0xc0,0x57,0x2, 0xe6,0x46,0x26,0x8b,0x1d,0x68,0x51,0x64,0xbb,0x44,0x1d,0xe8,0xe,0xd1,0xce,0xcb, 0x3e,0x4a,0x98,0xa3,0x55,0xa1,0x7,0xab,0x9d,0x48,0x35,0xdd,0x28,0xd0,0x6e,0xc, 0xd6,0x41,0x28,0xaa,0x12,0x67,0x7b,0xde,0x12,0x87,0xac,0x9c,0xcf,0x27,0x8a,0x7f, 0x2f,0x47,0x8c,0xb5,0x92,0x7f,0x8e,0xd8,0x39,0xc8,0xe4,0x17,0x86,0xb2,0x3e,0x63, 0x53,0x4d,0xb0,0xaf,0xf3,0xa7,0x63,0x9d,0xb3,0xc,0x1f,0x7e,0x71,0x56,0xcb,0xf3, 0x6b,0x4b,0x79,0xa9,0xa2,0xf2,0xdc,0xfb,0x10,0x5a,0xaf,0x7b,0xa3,0x88,0x8d,0xd7, 0x5c,0x49,0x7d,0xb4,0x6,0x4f,0x10,0xcb,0x41,0x92,0x8f,0x7,0x14,0xa2,0x62,0x5f, 0x57,0x4b,0x71,0xb1,0x7,0x4a,0x13,0x9a,0x1f,0x77,0x9a,0xf,0x6f,0xc7,0x54,0x4f, 0xe6,0x4a,0x3c,0xa3,0x25,0xf7,0xfa,0xc2,0xb6,0x25,0x2d,0xd7,0x49,0xd6,0x9b,0x80, 0x2f,0x43,0xe1,0x81,0x63,0x43,0xe3,0x15,0x32,0xf6,0x97,0x7f,0x8c,0xb0,0x58,0xb5, 0x78,0x4d,0x39,0x80,0x6,0xd5,0x52,0x35,0x27,0x5b,0x2f,0xea,0x61,0xdf,0x1a,0x3a, 0x3d,0x44,0xff,0xbe,0xed,0xf5,0x74,0x4a,0xe,0x99,0xa9,0x1c,0x5b,0x55,0x4d,0xd, 0x97,0x47,0xf1,0xbd,0x76,0x18,0x87,0x57,0x5a,0xd1,0x79,0x2f,0xae,0xd7,0x26,0xb6, 0xeb,0x44,0xd2,0x9d,0xce,0xb9,0x36,0x62,0x98,0x17,0x9b,0x46,0xc9,0xe0,0xd6,0x39, 0x9,0x4d,0xdd,0x94,0x13,0xce,0xdf,0xa1,0x2d,0xe4,0x43,0x9d,0xe,0xba,0x30,0xf, 0xe,0x4b,0x2d,0x96,0xa6,0x12,0x47,0x18,0xef,0x77,0xb7,0x55,0x99,0x52,0x87,0xbe, 0x7c,0x4a,0x67,0xba,0x19,0xd9,0xc3,0x11,0x5a,0xd5,0xad,0xa9,0xa6,0x63,0x14,0xc, 0x93,0x42,0x66,0xa3,0xa7,0x53,0xbe,0xd6,0x8f,0x1b,0xda,0x9a,0x19,0x9,0x6c,0xc0, 0x2b,0x42,0x2,0x9f,0x2,0x88,0xc3,0xbf,0xfd,0x4,0x1e,0xdc,0xc0,0xfa,0x88,0x3c, 0xb0,0x43,0xcd,0xb0,0xaf,0x35,0x42,0xc4,0xd4,0xb2,0x45,0xae,0x10,0x7b,0x6b,0xb, 0x90,0x4b,0x95,0x8a,0xa1,0x15,0x15,0xc3,0x17,0xd8,0x18,0xee,0xe,0x6b,0xba,0xa9, 0xec,0x4f,0xe6,0xb0,0xf6,0xf5,0x6,0xad,0xe6,0x3f,0xd9,0x1e,0xae,0xad,0x14,0xb9, 0x47,0x43,0xe2,0x86,0x5c,0x36,0xa6,0xaa,0xe9,0x1f,0x4d,0x2b,0x10,0x7c,0x3a,0x5c, 0x1e,0x48,0xad,0xba,0xdb,0x93,0x9c,0xc8,0x9,0xc1,0x5b,0xd4,0xfa,0xa3,0x1b,0xfd, 0xe,0x49,0x40,0x80,0xd9,0xc7,0x18,0x69,0xe,0xa2,0x59,0xb8,0x49,0x73,0x48,0xc5, 0x41,0x43,0x20,0xa5,0x9b,0x6e,0xef,0x70,0xe2,0x3a,0x8f,0xdb,0x25,0xb5,0x4b,0x5e, 0xa9,0x41,0x5d,0x89,0xa3,0xc5,0xb3,0x1b,0x46,0x2f,0x22,0xee,0x49,0x5a,0x58,0xc, 0xb2,0x4d,0x1e,0x9b,0x6b,0x18,0x55,0xb8,0x24,0xa0,0xfa,0x9c,0xde,0x67,0xe1,0x7e, 0xa1,0x49,0x6,0x83,0x2a,0x21,0x2e,0x71,0xba,0x9d,0x8c,0xb1,0x73,0xa3,0xdb,0x1, 0x67,0x45,0x95,0x93,0x8a,0xbe,0x40,0x92,0x3c,0xdc,0xaf,0xba,0xe1,0xd7,0x96,0xe3, 0x26,0x45,0x5d,0x87,0x95,0xea,0xac,0x6,0xd1,0x7f,0x87,0x37,0xc3,0xea,0xe2,0xc8, 0x2b,0x4f,0xc0,0x8d,0x8d,0x57,0xb7,0x3c,0x61,0xd3,0x9f,0x46,0x52,0x7d,0xe0,0xd7, 0xb7,0x42,0xfb,0x9f,0x82,0xf0,0x8f,0xd3,0xea,0xa2,0xaf,0xf5,0x79,0x9d,0x14,0x0, 0x71,0x40,0xe6,0x89,0xe5,0x52,0x5b,0x25,0xfb,0x94,0x8a,0x78,0xb3,0xb4,0x91,0x70, 0xce,0x4c,0xb9,0x84,0x91,0x58,0x2f,0xdd,0xeb,0x61,0xde,0x69,0xb4,0x58,0xf,0x7d, 0xdb,0x44,0x70,0xa3,0x3d,0xa1,0x85,0x6a,0x7f,0xde,0xf2,0x72,0xc9,0x69,0xb5,0x45, 0x5b,0x48,0x15,0xaf,0xe2,0xfe,0x1a,0x20,0xce,0xd7,0x1d,0xd2,0x8,0xb1,0xcd,0xeb, 0x88,0x49,0x36,0x80,0xf2,0x85,0x70,0xa3,0xe4,0x10,0xa1,0x7d,0x60,0xb1,0x78,0x79, 0x90,0x48,0xe8,0xb8,0x16,0xaf,0xf8,0x1,0xf9,0x18,0xb2,0x54,0x47,0x9d,0x10,0xed, 0xb9,0x41,0xc1,0x89,0xf2,0x60,0x42,0x36,0x19,0x5a,0xc0,0x9,0xf,0x8b,0xe2,0xc4, 0xb,0x42,0xa,0xba,0x62,0xe2,0x11,0x1,0xf8,0x7e,0x3,0xd7,0x71,0x55,0x4d,0xb, 0xfc,0x45,0x3c,0xa3,0x29,0xe6,0xfd,0xff,0x1b,0x3,0x13,0xa6,0xad,0x33,0x4d,0x51, 0x96,0x4a,0x52,0x9f,0x78,0x39,0x1c,0x75,0x6f,0x38,0x27,0xb0,0x2a,0xbc,0xc8,0x6e, 0x7b,0x44,0x11,0xb9,0xf8,0xf9,0xfb,0x4e,0xec,0x2a,0x2a,0x5d,0x2f,0x8e,0xd6,0x29, 0x29,0x4c,0xd7,0x8b,0xc8,0x4d,0x58,0xfb,0xd0,0x9d,0xa1,0xde,0x91,0x1a,0x9e,0xf6, 0x6d,0x4b,0x2f,0x97,0x7a,0x21,0x6e,0x8e,0x80,0xc6,0x11,0x3c,0x99,0xb8,0x14,0xfd, 0xc4,0x43,0x3b,0xbe,0x3c,0x4d,0x38,0xb8,0x4b,0x39,0x8d,0x26,0xc,0x81,0x8,0x38, 0xfb,0x48,0x72,0x89,0xdc,0x25,0xb3,0x42,0x54,0x4a,0xad,0x56,0xe5,0x84,0x1a,0xfa, 0xbc,0x4c,0x6d,0xad,0xa7,0x41,0xf8,0xb4,0x4c,0x5,0x4f,0xb9,0xdd,0x75,0xc4,0xa2, 0x83,0x42,0x38,0x8c,0x32,0x45,0x2,0x72,0xf,0x48,0x59,0x50,0x57,0xc8,0xce,0x5, 0x13,0x4a,0x4a,0xa7,0x79,0x4a,0xce,0x1c,0x7,0xa9,0xf4,0x3d,0x93,0x69,0xaa,0x85, 0xfd,0x45,0x19,0xaa,0xfd,0x48,0x27,0xd8,0x8a,0xdd,0xb,0xc7,0x3,0x46,0x5e,0x32, 0x1a,0x46,0x64,0xab,0xba,0x1c,0x7e,0x35,0x62,0xe7,0xd2,0x20,0x1c,0x1e,0xe9,0xaa, 0x36,0x4c,0xcc,0x81,0x8f,0xac,0x8c,0xaa,0x60,0x1a,0x8,0x3a,0x93,0x13,0x74,0xf5, 0xed,0x42,0x75,0xab,0x73,0xf8,0xda,0x4,0xa,0x67,0xdf,0xc7,0x5e,0x25,0x1e,0xb9, 0x34,0x42,0x61,0x99,0x7e,0x77,0x9f,0xb8,0xbb,0x80,0xd7,0x90,0xe,0xee,0x94,0x30, 0x81,0x4f,0x17,0xa6,0xa1,0x95,0xd5,0x94,0xc3,0x73,0xa,0x1b,0xeb,0x3,0x7b,0xa6, 0x59,0x43,0xb,0x92,0x76,0xf5,0xef,0x4c,0x23,0x78,0x1,0x54,0xd0,0x57,0x42,0xf0, 0x7c,0x4b,0x2f,0xae,0x2e,0x17,0x8a,0xa,0x52,0xa9,0x53,0xae,0xc4,0x85,0x6e,0xea, 0xb8,0x44,0x9b,0xba,0x35,0x4b,0x56,0x3,0x12,0x8f,0x43,0x1c,0x59,0x10,0xb9,0xeb, 0xe,0x46,0x3c,0x9d,0xb8,0xba,0xdd,0x34,0x19,0x70,0xef,0x6,0x90,0x6,0x90,0x5e, 0x67,0x46,0x59,0xb6,0x6f,0x58,0xb8,0x3a,0x31,0xa4,0xab,0xb2,0xdb,0x9f,0xe9,0x7d, 0xf7,0x41,0xc8,0x8d,0x39,0xa4,0xb8,0x99,0xa1,0x7c,0x5e,0xe1,0x40,0xb6,0xf2,0x64, 0xf7,0x43,0xf9,0xbf,0x93,0x7b,0x73,0xc1,0xc3,0x82,0x63,0x28,0x3f,0x31,0x3f,0xca, 0x64,0x42,0x27,0xb2,0xba,0xa7,0x18,0xbc,0x21,0xc,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x28,0xfb,0x48,0x30, 0xbf,0x4d,0x4b,0x91,0xbf,0xda,0x61,0x99,0xb7,0x5d,0x40,0xe5,0x4e,0xd5,0x82,0x7f, 0x28,0x4e,0x2,0x88,0x19,0x61,0xd7,0x88,0x34,0x2b,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xba,0xe9,0x99,0x21, 0x97,0x43,0x52,0xaf,0x8b,0x3d,0x96,0xf7,0x22,0xb1,0xe7,0x6e,0xf5,0x5d,0xd3,0x53, 0x44,0x4c,0xf7,0xb2,0xb4,0x9e,0xf1,0x3f,0xd1,0x7b,0xbf,0x67,0xf,0x8d,0x82,0xd3, 0xa3,0x4b,0x0,0xa4,0x4f,0x66,0x31,0x11,0xd,0xe0,0x81,0x6b,0x71,0x66,0x10,0xee, 0x73,0x49,0xec,0x9c,0x4d,0x6b,0x5e,0x9e,0x38,0xee,0x10,0xfa,0x79,0xb5,0x9a,0xd2, 0x70,0x49,0xd0,0x96,0x16,0x82,0xa8,0x5f,0xc6,0xb9,0x96,0x1d,0xfc,0xe1,0x5a,0xf, 0x7e,0x47,0x55,0xb9,0xc2,0x51,0x15,0x98,0x33,0x94,0x70,0x17,0x33,0x76,0xea,0x3e, 0x42,0x4f,0x1c,0x81,0x2c,0xb4,0xa4,0x40,0x94,0xf1,0x88,0x2a,0x11,0x84,0xad,0x7f, 0xd1,0x4c,0x31,0x89,0x10,0xd,0x60,0x99,0xd5,0x62,0x5d,0x92,0xbd,0x38,0x9,0x16, 0x2,0x45,0x20,0xaf,0x58,0xd5,0xa4,0xfa,0x3,0x58,0x25,0xb0,0x6f,0xd3,0xae,0x3d, 0xfe,0x4b,0x9a,0xb2,0xdb,0xa5,0x2b,0x3c,0xa2,0xf3,0xab,0x53,0x26,0xa3,0xc8,0x4f, 0x23,0x4b,0x5d,0xb3,0x81,0xb7,0x5b,0x4,0xe1,0xbd,0x94,0x36,0x0,0x69,0x66,0x9e, 0xe0,0x4b,0x5f,0xba,0x61,0x23,0xbb,0xe,0x63,0xfd,0x47,0x2e,0x7f,0x37,0x90,0xaa, 0xd,0x42,0x2b,0x97,0xe3,0x64,0x57,0xa1,0x2e,0xda,0x9,0x3f,0x5d,0x85,0x60,0x30, 0xe4,0x4f,0xe9,0x80,0x26,0xff,0x58,0x9a,0x70,0x2a,0x16,0x1d,0xf6,0x65,0x1,0x33, 0xe0,0x41,0x9c,0xaf,0x36,0x1c,0xd,0xd4,0x27,0xa7,0xea,0x62,0xf9,0x6c,0x76,0xc0, 0x62,0x49,0x80,0xb1,0x40,0xe5,0xb6,0x73,0x3f,0x9f,0x43,0x5f,0x34,0xa6,0x63,0xe5, 0xe6,0x45,0xba,0x90,0x18,0xa3,0xeb,0xd2,0x31,0x1e,0x80,0xeb,0x27,0xbf,0xab,0xb3, 0x2,0x47,0xe0,0x88,0xae,0x7d,0x4e,0xeb,0xed,0x11,0x2b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xe1,0xed,0xfd,0xf7, 0x94,0x4e,0x1,0xb2,0xb2,0x36,0xe2,0x4d,0xb0,0x2e,0x5d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x8e,0x98,0x91,0x2c, 0x5b,0x49,0x66,0x86,0x1a,0x11,0xbf,0xc6,0x1c,0x9d,0xec,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x66,0xc3,0xdc,0x51, 0xcb,0x4b,0xe5,0xae,0xd7,0x6e,0xcb,0x74,0xc7,0xcd,0x86,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x8c,0xeb,0x83,0xd2, 0xf1,0x4e,0xa7,0xa3,0xfa,0x3d,0xf7,0xc6,0x68,0x80,0xea,0x62,0xdf,0x5c,0x48,0xea, 0xae,0x41,0x8c,0x91,0x67,0xfc,0x9d,0x61,0xc4,0xce,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x58,0xac,0x7b,0xbf, 0x47,0x4a,0xd6,0xbc,0xe4,0x10,0xd9,0xf6,0x9e,0x43,0x3a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0xa7,0x3,0xa1,0xdf, 0x22,0x48,0x1c,0xa4,0x7d,0xe3,0xe3,0x43,0x6f,0x92,0x6b,0x3f,0x41,0x5f,0x6f,0x2e, 0xba,0x45,0x5f,0xb0,0xa0,0x87,0x4e,0x77,0xbd,0x79,0xe3,0x35,0x11,0xb7,0x9b,0xb4, 0x74,0x49,0xbf,0xa9,0xa0,0xb8,0xa5,0xf2,0x9b,0x70,0xe4,0x14,0x69,0xcd,0xa4,0x25, 0xb3,0x45,0x4e,0x84,0x4a,0x48,0xe8,0x38,0xb2,0x63,0x5b,0xe4,0x7a,0x41,0xd2,0x70, 0x57,0x47,0xec,0x8d,0x52,0x2d,0x17,0xfe,0x74,0x56,0xbe,0x8,0x99,0xe2,0x8e,0xb3, 0x96,0x49,0x88,0xaf,0x6,0x30,0x37,0x39,0x1b,0x1b,0x20,0xfa,0xb9,0xbe,0x3b,0xc7, 0xe5,0x46,0xfa,0x92,0x95,0xad,0xb2,0x82,0x2b,0xb8,0xd6,0x8,0x46,0xf8,0x5f,0x2, 0xcf,0x49,0xd,0xa6,0x17,0xfd,0x34,0x65,0xab,0x2b,0x47,0xdd,0xbb,0xc3,0x2f,0x48, 0x3c,0x47,0x10,0x91,0x20,0xa8,0x13,0x15,0xde,0xa4,0x55,0x78,0x4c,0x61,0xcf,0x41, 0x1c,0x41,0x26,0xb9,0xac,0x4f,0x7f,0x1f,0x38,0x50,0x65,0x8f,0xda,0x11,0x65,0x25, 0x29,0x45,0xad,0xb9,0xf5,0xac,0xea,0xf,0x3d,0xdb,0xad,0x3a,0x27,0xf2,0x64,0x90, 0xeb,0x42,0x85,0x92,0x4f,0x3e,0xed,0xe5,0xc8,0xbc,0x85,0x78,0xb6,0x2d,0x17,0xfb, 0xd4,0x41,0x34,0x8c,0x4,0xca,0xc3,0x6f,0x78,0xff,0x69,0xd1,0x83,0xb4,0x21,0x90, 0xb3,0x43,0x35,0x81,0xbc,0x83,0x1,0x7c,0xd2,0x9a,0x58,0x3e,0xc,0xa,0xd4,0xba, 0xa0,0x4b,0x79,0x92,0xe7,0x55,0xb7,0x92,0x7b,0x30,0x71,0xb0,0xbe,0xc5,0xb2,0xc2, 0xd7,0x4f,0xbb,0xb6,0x28,0x45,0x1f,0x77,0xe6,0xce,0x7e,0xd7,0x29,0xed,0x85,0x62, 0xc0,0x47,0x22,0xa2,0x20,0xdf,0x15,0xad,0xbe,0x3e,0x6f,0x93,0xba,0x3f,0x6d,0x74, 0x37,0x47,0x73,0xae,0x67,0x79,0xbf,0x49,0xc,0xfa,0x53,0x8a,0x1d,0xb9,0x3c,0x8d, 0x83,0x49,0xe0,0xac,0x43,0xa0,0xe7,0xdb,0x5d,0xee,0xf0,0x9,0xb4,0xa9,0x61,0xb7, 0xbd,0x48,0x5f,0x9f,0x83,0x8e,0xd8,0xa2,0xd3,0xab,0xc5,0x4c,0xe0,0x4e,0xcf,0xec, 0x4f,0x4f,0x8e,0x9a,0x9e,0xbb,0xb8,0x64,0x4c,0x6,0x23,0xc,0x57,0xa1,0x7b,0x5, 0x2f,0x4c,0x35,0x92,0x55,0x2f,0xdb,0x1e,0xa3,0x63,0x45,0x55,0xcb,0x4b,0x1f,0x96, 0xa1,0x47,0xa1,0x97,0xe1,0x9c,0xeb,0x93,0x4b,0x97,0xb7,0xa0,0x12,0x9b,0x59,0xfe, 0x8c,0x4a,0xbc,0x99,0xd0,0x10,0x18,0xea,0xcd,0xdc,0x8c,0x5d,0x9a,0xa8,0x4f,0xd3, 0x38,0x4d,0x45,0xa4,0xf4,0xc6,0xd2,0xdb,0x30,0x6a,0x26,0xe,0xf4,0x55,0x14,0xb9, 0xfb,0x45,0x56,0x9d,0x37,0x27,0x97,0x58,0x7d,0x44,0xda,0x72,0x31,0xc2,0xc5,0xc5, 0x84,0x4c,0xe9,0x82,0x86,0xc3,0x48,0x57,0x18,0x63,0x78,0xc2,0xe6,0x21,0x99,0x33, 0xd7,0x4a,0x35,0x84,0x99,0x7f,0x71,0x57,0xc4,0x6f,0x7a,0x7,0xa7,0x3,0x53,0x29, 0xe9,0x4f,0x7c,0x86,0x9d,0xb,0x4,0x2d,0x23,0x5e,0x5b,0x14,0x74,0xab,0xfa,0x10, 0xac,0x4b,0xa1,0x9c,0xa7,0xf4,0x9d,0x29,0x82,0x7b,0x92,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xca,0x95,0x13,0x7a, 0x93,0x46,0x64,0xbc,0x85,0x97,0x77,0xc1,0x13,0xa3,0xb8,0x33,0x3f,0xe,0x92,0x25, 0xe5,0x44,0x74,0x81,0xb4,0x5b,0x36,0x5c,0xb0,0x31,0x9a,0x5,0x46,0x25,0x17,0x3d, 0xe0,0x45,0x2c,0xb7,0xba,0xb2,0x8a,0x85,0x6c,0x0,0x2b,0xb1,0x5a,0x44,0x74,0x40, 0xd0,0x41,0x74,0x9e,0xb8,0xda,0x5e,0x7b,0xff,0x4c,0xae,0x7c,0x30,0xd7,0xf7,0xa9, 0xd1,0x4c,0xbc,0x9a,0x65,0x4f,0x29,0xba,0x94,0x35,0x15,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x32,0x42,0xa8,0xfa, 0xf4,0x44,0xde,0xa4,0x86,0x9f,0x57,0x14,0x61,0x4c,0x15,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0xaa,0xb7,0xf,0xe2, 0xf5,0x48,0x66,0xae,0x92,0x9b,0xb9,0x86,0x49,0xc7,0x9d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x2d,0xd3,0xec,0x39, 0xa2,0x41,0xd8,0xb0,0x65,0x83,0x70,0x85,0x48,0xa,0xc3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x99,0x23,0x1,0x4f, 0x81,0x45,0x1d,0x9d,0x5f,0xd4,0x8a,0x3c,0xb1,0x3b,0xa7,0x88,0x25,0xf6,0xa5,0x51, 0xd,0x4a,0x85,0xb9,0xcc,0x72,0xd9,0x26,0x99,0xb2,0x81,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x1b,0xe,0x59,0xda, 0x7f,0x4b,0x3b,0x85,0x12,0xc4,0xb2,0x4e,0x56,0xb7,0xc5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x91,0xc8,0xb7,0xd2, 0xe9,0x4e,0x9e,0xa3,0x35,0xa0,0x18,0x60,0xc9,0x65,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x8e,0xf9,0x80,0x6e, 0x30,0x45,0x56,0xb7,0x86,0xba,0x93,0x8d,0x69,0x24,0x49,0x77,0xaa,0x3d,0x14,0x35, 0xe4,0x4a,0x60,0xa2,0x1d,0xd6,0x73,0x1c,0xea,0x40,0x3c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xca,0xe9,0x80,0x49, 0x74,0x4f,0xf1,0x8a,0xf0,0xe6,0xa4,0xd9,0x5d,0x8e,0xf0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xbd,0xb8,0x7d,0x73, 0x56,0x44,0x45,0xa6,0xc3,0x9b,0xd8,0xad,0xff,0x51,0xec,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x83,0x9c,0x14,0x5a, 0x10,0x4f,0x85,0xa3,0xe,0x37,0xcc,0x1e,0x52,0x4e,0xd8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x62,0xe1,0x6a,0xc7, 0xf5,0x4f,0xce,0x8c,0x2e,0xa9,0x90,0xfb,0x7,0x35,0x93,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xe5,0x27,0x6a,0x3a, 0xf6,0x4b,0x94,0xa4,0x72,0xbc,0xc5,0x85,0xe6,0xf8,0xf1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x7b,0x32,0x15,0x5, 0x19,0x47,0x90,0x9e,0x2e,0x83,0xd6,0x53,0x82,0x22,0xa0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x58,0x45,0x46,0x4b, 0xf,0x48,0x13,0xb5,0xea,0xca,0x98,0x50,0x1c,0xe6,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x96,0xc0,0x98,0x97, 0x17,0x40,0xd5,0x90,0x47,0x23,0x3f,0x16,0x30,0x93,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x2a,0x4,0x3b,0xf, 0x4c,0x45,0xf8,0xb6,0x20,0x20,0xd6,0x28,0x3d,0x72,0x90,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x5d,0x66,0x5d,0x28, 0x38,0x43,0x98,0xb5,0xcd,0x48,0xbf,0xb2,0x17,0x36,0xc7,0x96,0x4d,0xd9,0x4f,0x14, 0x35,0x41,0xfd,0xbf,0x61,0x2e,0xc2,0xc6,0x2a,0xf7,0x5e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x53,0xf9,0xbd,0x73, 0x39,0x41,0x8b,0x8e,0xdc,0xef,0x65,0x51,0x8f,0x30,0xf4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0xef,0x43,0x99,0x8, 0xf9,0x48,0x35,0xbf,0x9a,0x89,0xe7,0x20,0xee,0xbc,0xe9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x5c,0x38,0x69,0x5a, 0x5e,0x48,0xe5,0xa0,0x1,0xaa,0xac,0x2c,0x45,0xff,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x54,0xf4,0x45,0x6b, 0x6,0x41,0x9c,0x80,0x9a,0xde,0x82,0x98,0x1b,0x3b,0xb5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x8,0x3a,0x65,0x3, 0x52,0x49,0x79,0xad,0x24,0xe5,0x4,0x2d,0x49,0x93,0x4f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xdd,0x3e,0x93,0x95, 0xa3,0x4f,0x73,0x9f,0xa9,0x11,0xf7,0xe0,0x1e,0x53,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x69,0x8c,0x18,0x12, 0x17,0x47,0x99,0xa7,0xd5,0xcb,0xab,0x57,0xf1,0xae,0x9a,0x1e,0x17,0x8,0x18,0xc9, 0xfb,0x40,0x67,0x89,0xeb,0xe1,0x0,0xae,0xeb,0x6,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x17,0x1f,0xda,0xca, 0x6,0x40,0xe9,0xa0,0x81,0x37,0xf9,0x2,0x2,0x9d,0x27,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x5b,0x74,0xb4,0x97, 0x32,0x4b,0xe1,0x88,0x95,0xf7,0x5c,0x88,0x5e,0xa3,0x2f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x9d,0xda,0x8e,0xc6, 0x2c,0x44,0x39,0xb3,0x42,0x8,0x7e,0xc7,0xfe,0x6,0x41,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0xa5,0x55,0xe9,0x90, 0xfe,0x4a,0x30,0xbf,0xfb,0x21,0xde,0x9e,0x11,0xa2,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xb6,0x33,0xed,0x9f, 0x6c,0x45,0x22,0x89,0x1c,0x72,0x9f,0xed,0xbd,0x2e,0xad,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xf9,0x31,0x96,0xad, 0xd8,0x49,0xfa,0xae,0xd0,0x3b,0xbe,0xf,0x22,0xfc,0x5b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x5a,0x1b,0x5a,0x52, 0x57,0x4a,0x87,0x8e,0xdf,0x59,0xac,0x91,0x40,0xa0,0x30,0x5b,0x62,0x29,0x29,0xbf, 0xb1,0x4c,0x1e,0xa6,0x6c,0x5f,0xf2,0x9e,0xca,0x3a,0x25,0x2c,0xe7,0xf2,0x61,0x53, 0x1e,0x40,0xdf,0x88,0x6e,0xba,0x41,0x13,0x4,0xd1,0x0,0x4c,0x6f,0xa2,0xd8,0x94, 0xe6,0x49,0x30,0xb4,0x7c,0x87,0xae,0x40,0xf7,0xf,0xdf,0xd0,0x0,0x99,0xd7,0x9b, 0x82,0x44,0xf3,0xad,0xc1,0xa7,0x35,0x2,0x16,0x68,0xc1,0xf,0xfa,0x6d,0x42,0x4e, 0xfc,0x41,0xac,0xb4,0x82,0x90,0x24,0x8a,0x7d,0xae,0x57,0xf7,0x9f,0x9,0x2c,0xfe, 0x95,0x4e,0x70,0xa8,0xcf,0x5a,0x9d,0xab,0x1c,0x16,0x35,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x7a,0x7d,0x95,0x73, 0x6d,0x4d,0x48,0xbe,0xe4,0xb5,0xe5,0xaf,0x6e,0x20,0xd0,0x54,0xd6,0xd6,0xa7,0x6c, 0x71,0x40,0x6b,0xbc,0xd8,0x2a,0xb8,0xbf,0x4c,0x15,0xb9,0x92,0xf9,0x75,0xa0,0xe9, 0x1c,0x42,0x4a,0x95,0x8b,0x59,0x90,0x57,0xfb,0x79,0x91,0xe0,0xd9,0xac,0xde,0xb2, 0x5a,0x43,0x24,0x8b,0xbf,0xe4,0x6c,0x5a,0x9e,0x16,0xfa,0xfe,0xa9,0xf1,0xcb,0x6d, 0xe4,0x49,0xb2,0x87,0x9a,0x7e,0xf4,0xd0,0x1c,0x2a,0x2c,0xf4,0xb,0x4d,0x44,0xaa, 0x96,0x49,0xee,0xb9,0x11,0x93,0xbb,0x65,0xcb,0xb,0xa6,0x8f,0xb4,0xfd,0xda,0xdc, 0x3c,0x4f,0x7,0x88,0x65,0xd8,0x59,0x84,0xfa,0xc3,0x28,0xba,0xbd,0xf7,0x12,0x30, 0xbf,0x43,0xee,0xbd,0x8a,0x2a,0xb7,0x46,0xc8,0x2c,0x6c,0x91,0x27,0xa3,0x3e,0x6e, 0x27,0x4e,0x45,0x85,0xf9,0x3d,0x6a,0x44,0x41,0xde,0x79,0x4c,0x6e,0xe4,0xc7,0xf7, 0xfd,0x41,0x1e,0x84,0xa4,0x4e,0x55,0x99,0x5c,0xdc,0x11,0x35,0xed,0x3c,0xf0,0x2e, 0x7a,0x4b,0x8c,0xa7,0xd1,0x9e,0x45,0xf3,0x3e,0x84,0x4e,0xe1,0xf5,0x67,0xe9,0x94, 0xd7,0x4f,0xc1,0x89,0xf9,0xb5,0xce,0xb,0xfe,0x31,0x4e,0xcc,0x2d,0x24,0xbc,0x3c, 0xa,0x4d,0xc0,0x9e,0x9f,0x8b,0x8e,0x3c,0x7b,0x6f,0x1,0x2f,0x27,0x7b,0xf0,0xc7, 0x62,0x4d,0x4c,0x8f,0x2f,0x88,0x4c,0x74,0xc,0x6a,0x76,0xc,0x6f,0x1b,0xe0,0xfd, 0xbe,0x4b,0x2b,0x8f,0xa3,0x4e,0xf5,0xaf,0x33,0x32,0xba,0xe5,0x59,0xce,0xa4,0x44, 0x74,0x49,0x85,0x8c,0xf0,0xd4,0x28,0x7e,0x7b,0x85,0xfb,0x21,0x77,0x5f,0xfe,0x1f, 0x2e,0x47,0xe1,0xa1,0xcd,0x74,0x43,0x24,0x51,0xce,0xdf,0xaf,0x8e,0xfc,0x9e,0xef, 0x64,0x4a,0x3b,0x86,0xb1,0x7b,0xb9,0x63,0xce,0xed,0x28,0xda,0x33,0xd6,0x53,0xfc, 0xc5,0x48,0x28,0xb5,0xfa,0xfe,0xfe,0xa6,0x9e,0x33,0x60,0x63,0x35,0xe6,0x4c,0x13, 0x3c,0x46,0xc2,0x88,0x7c,0x8f,0x93,0x59,0x7c,0x82,0x77,0x50,0x89,0x7e,0x78,0x29, 0xcd,0x4c,0x5f,0xaa,0x64,0x6e,0x8d,0xdc,0x90,0x96,0xcb,0xb,0x88,0xcc,0x93,0x6a, 0xfb,0x4d,0xc6,0x8d,0xb1,0xf0,0x8a,0x8d,0xbd,0xdc,0xa6,0xf,0xea,0xbe,0x58,0x4, 0x13,0x4d,0x47,0x90,0x8b,0xb6,0x9a,0x54,0x30,0xf8,0xab,0x64,0x4c,0x78,0x32,0xc3, 0xb3,0x43,0x15,0x95,0x2a,0xe6,0x48,0x3f,0x5e,0x42,0x2c,0x9,0x47,0x25,0x51,0xad, 0x78,0x4c,0x1e,0xb5,0x2e,0xc,0xd0,0xd2,0x7e,0xa1,0xb3,0x58,0x6f,0x8c,0x62,0x23, 0xfa,0x47,0x75,0x89,0x7f,0x8a,0xfc,0xe8,0x64,0xa1,0x1f,0x51,0x25,0xcc,0xc5,0xdb, 0x1f,0x4f,0xd4,0xb8,0x35,0xa5,0x53,0x94,0x89,0x1f,0x5f,0xec,0x3f,0x1b,0x1c,0xaa, 0xb5,0x43,0xdc,0x87,0x7d,0x56,0x87,0x49,0x7d,0x26,0x12,0xc6,0xfc,0x69,0x2b,0x31, 0xf2,0x48,0xf,0x84,0x72,0xce,0xc5,0x4b,0xf8,0x7d,0xda,0x3d,0x57,0x56,0x2c,0xd2, 0x3c,0x48,0xd5,0x82,0x36,0xc5,0x42,0xac,0x1f,0xcb,0x74,0x77,0x28,0xe8,0x41,0x59, 0xab,0x4c,0x80,0xb0,0xb,0x24,0x37,0x53,0xd1,0x3a,0xf2,0xa5,0x4d,0x15,0xd4,0x70, 0x5b,0x4c,0x2b,0x89,0x19,0x60,0xde,0x2e,0x62,0x77,0xf4,0xf7,0x39,0xc6,0x3b,0x53, 0x54,0x4a,0x1,0x86,0x36,0x46,0x34,0xec,0x76,0x37,0xdc,0xcd,0xfb,0x1,0xc1,0x7d, 0x1f,0x4f,0xe4,0xa3,0xe7,0x7b,0xee,0x80,0xbe,0x65,0x73,0xd8,0x96,0x57,0x40,0x59, 0xd9,0x4e,0x8b,0xbd,0xa3,0xc3,0x91,0x1a,0x58,0x34,0x6f,0xfd,0xd6,0xea,0xbd,0xb, 0x32,0x4d,0x84,0xbd,0x15,0x2d,0x33,0x31,0x43,0xbd,0x1a,0x1e,0xdd,0xd2,0x3c,0x4e, 0x7f,0x42,0x64,0xba,0xf4,0xe8,0x93,0x41,0xa3,0x33,0x6c,0xe1,0x10,0xd1,0xb9,0x20, 0x42,0x4d,0x7e,0x80,0x54,0xdb,0xf7,0x38,0x61,0xfb,0xd3,0xae,0xf9,0xf5,0xb2,0xde, 0xcb,0x47,0xd6,0xab,0x29,0x1,0x89,0x40,0x18,0x23,0x78,0xb2,0xe9,0x23,0x9,0xce, 0xbf,0x42,0xdd,0x8d,0x99,0x6,0xb4,0x85,0xfd,0x54,0x56,0x1,0xce,0xcc,0x16,0x93, 0x3c,0x42,0xed,0xaa,0xa1,0x45,0xf2,0x30,0xf0,0xc8,0x40,0x99,0x2b,0x53,0x6b,0x9b, 0x6f,0x44,0x2e,0x85,0x82,0x95,0xf,0x51,0x45,0x21,0x3b,0x2c,0xea,0x57,0x35,0x3a, 0xc8,0x46,0x4c,0xa6,0xc5,0x78,0x2f,0x7c,0xe0,0xfa,0x27,0x73,0x8,0x4,0x98,0xd2, 0xd,0x4b,0x3,0xa3,0x7,0x12,0x32,0x6e,0x56,0xa1,0x48,0x8f,0x6a,0xd8,0xc8,0x4e, 0xd1,0x4c,0x63,0x8e,0x9f,0xec,0x8b,0x84,0xc2,0x9c,0x81,0xed,0xa7,0x74,0x39,0xc, 0xa6,0x43,0x53,0xa7,0xc9,0x17,0xe4,0x83,0xd6,0x31,0x94,0x82,0xb,0x6,0x9b,0x2, 0xdc,0x49,0xa7,0xa3,0xcc,0x2d,0x34,0x81,0xa5,0x2,0x68,0xd3,0xa3,0xf4,0x83,0x1a, 0xae,0x45,0x28,0xba,0xaf,0x1b,0xbf,0x4,0xcd,0x4e,0xc9,0x4b,0x8a,0x17,0x31,0x8a, 0x4d,0x4c,0x52,0x83,0x1a,0x13,0x40,0xfd,0x3,0xb8,0x4c,0xe0,0x45,0xfc,0xf9,0xb5, 0x91,0x48,0x70,0xab,0xf0,0xc1,0x4a,0x50,0x7d,0xc3,0xe9,0xad,0xc2,0xab,0xe,0xfb, 0x36,0x41,0x6d,0xa1,0x36,0xf,0x7e,0x91,0x4b,0xa4,0xec,0x7e,0xa2,0x71,0xd7,0x94, 0x63,0x4b,0x4d,0xa8,0x46,0x63,0x30,0xfa,0x53,0x72,0x75,0xa8,0x47,0x60,0x61,0xb, 0x1f,0x47,0x60,0x9a,0x59,0x1d,0x7b,0x0,0x89,0x27,0xd0,0xc8,0x59,0x2,0x65,0xb4, 0x57,0x4d,0x43,0xb8,0xe5,0x82,0xd9,0xd1,0xb9,0xf,0xeb,0x5e,0xa2,0x43,0x8d,0x54, 0x7b,0x44,0xa4,0x89,0x5f,0x61,0xb2,0x38,0x3f,0x57,0x21,0xcd,0xbb,0xeb,0x78,0xca, 0x12,0x4d,0x77,0x8d,0x67,0x99,0xcb,0x6d,0x11,0x10,0x54,0x92,0x37,0xfa,0x2c,0x99, 0xbd,0x46,0x98,0xa8,0x4a,0xc6,0x21,0xcf,0x13,0xd5,0xac,0xed,0x94,0x88,0xf,0x9b, 0x49,0x43,0x8d,0x80,0x70,0x49,0xec,0xa6,0x57,0xd1,0x78,0x9f,0x8f,0xae,0xee,0xef, 0x4e,0x42,0xeb,0xa7,0x7b,0x20,0xb1,0x46,0x41,0xaa,0x2c,0x28,0x5e,0x90,0x5a,0xd3, 0xb0,0x4a,0x55,0xb2,0x70,0xed,0x2d,0xa0,0x86,0xbf,0xe0,0x16,0x9e,0xd5,0x1f,0xc5, 0xa0,0x40,0x6b,0xa5,0xe0,0xb9,0xc6,0x9e,0x96,0xfa,0xc6,0xdb,0xb8,0x36,0xbb,0xc9, 0x43,0x42,0xf7,0xb4,0xa2,0x24,0xce,0x43,0x55,0xd6,0x10,0xa7,0x7d,0x4f,0x6c,0x50, 0xe,0x47,0x12,0xa5,0xf9,0x69,0x53,0xf1,0xdc,0x88,0xf6,0x1b,0x7b,0xbe,0xef,0x54, 0x5,0x4a,0xc4,0xa9,0x65,0x5d,0xf5,0x6b,0xa1,0x25,0x6c,0xef,0xb,0x5a,0xf0,0x63, 0x1e,0x4a,0x36,0x95,0xac,0xb,0xc5,0x4b,0x9e,0x65,0x6c,0x51,0x68,0xce,0x65,0xfe, 0xe9,0x46,0x62,0x86,0x52,0x44,0xe1,0x9f,0x52,0x55,0xde,0x31,0xcf,0x49,0xc8,0x17, 0x83,0x4e,0x71,0xb7,0xc2,0x3e,0x4d,0xdf,0xbb,0x8c,0x70,0x77,0x3,0xc,0x10,0xa4, 0xb6,0x49,0xcf,0x9c,0xd3,0x27,0x3a,0xe3,0x2,0xb1,0xf9,0xff,0x44,0xed,0x87,0x18, 0xb8,0x4c,0xe3,0xb5,0x78,0x35,0x83,0xa8,0x56,0x83,0x46,0x55,0xe,0x9c,0x92,0xfb, 0x48,0x47,0x17,0x9b,0xf1,0x64,0x52,0x45,0xbd,0x98,0x22,0xb8,0x8d,0xa5,0x6c,0x7c, 0xe3,0x40,0x1a,0xb5,0x48,0xd9,0x70,0xa6,0x51,0xdf,0x73,0x55,0xde,0x23,0x3,0x94, 0x8b,0x40,0x64,0xb3,0x68,0x66,0x16,0xf0,0xfb,0x61,0x1b,0x8e,0xb2,0xce,0x8d,0xba, 0x46,0x42,0x4c,0xa4,0xe5,0x4f,0x46,0x67,0x43,0x33,0xa8,0x12,0x2a,0xc2,0xdc,0x6b, 0x92,0x40,0xa9,0xbd,0x1e,0xe3,0x67,0x9f,0xbf,0x38,0x2,0x3c,0x70,0x54,0x18,0x28, 0x97,0x43,0x9f,0x80,0x63,0xd9,0xe7,0x7d,0x42,0x58,0x4d,0xac,0x47,0x44,0x87,0xee, 0x38,0x4f,0x3a,0x88,0xc1,0x51,0xd7,0xa2,0xb9,0x4d,0x1b,0x78,0xd5,0x95,0x36,0x2, 0x61,0x4d,0x9,0xb8,0xfc,0xdb,0x28,0xc3,0xc9,0xf1,0xe5,0xfc,0xba,0xc3,0x0,0x1, 0x42,0x42,0x54,0x94,0xab,0xbb,0xbe,0xa1,0xc1,0xc1,0x3f,0xa9,0x6e,0x2d,0x50,0x45, 0x62,0x4f,0x28,0x89,0x69,0x3c,0xb8,0x7e,0xfe,0x3d,0x3c,0x3d,0x9f,0x38,0xcc,0x9d, 0x5,0x4b,0xb0,0xa1,0xb6,0x12,0x25,0x8,0x6c,0xfe,0x2f,0x6b,0x9f,0x5e,0xff,0xdc, 0x71,0x4e,0x66,0x93,0xf1,0xfd,0x3d,0x14,0xb6,0x4b,0xd2,0x4d,0xe2,0xd4,0x96,0xba, 0x93,0x40,0xdd,0xaf,0x9d,0xf2,0x57,0x54,0x88,0x26,0x7,0xf4,0x13,0xbc,0xe0,0xf0, 0xaf,0x4e,0xef,0x9e,0xf,0x89,0xe2,0x96,0x95,0xf3,0x96,0x3b,0x91,0x1e,0x15,0x40, 0xc7,0x42,0xaa,0xb1,0x16,0xa6,0x40,0x76,0x71,0xcc,0xbc,0x4c,0x13,0xdb,0x1b,0xce, 0x65,0x49,0xcc,0x88,0x99,0xf1,0xe3,0x4b,0xb4,0xda,0xeb,0xfc,0x8,0xbe,0xc1,0x40, 0xb4,0x45,0x3a,0xa2,0x9,0x5c,0x9e,0x19,0x61,0x48,0xa6,0x9b,0x6f,0xf8,0xf9,0xff, 0xa,0x46,0xe8,0x87,0xd1,0xa3,0x2d,0x31,0x33,0xfc,0xfc,0xd0,0x6b,0xea,0x32,0x94, 0xee,0x47,0x8a,0xb8,0xf7,0x22,0x1d,0x39,0x4f,0x9d,0x52,0xd7,0x65,0x28,0x8d,0x8, 0x5f,0x46,0xef,0xbc,0x9b,0xa,0x70,0x7d,0xe,0x4a,0x36,0x3c,0x3b,0x83,0xca,0x13, 0x20,0x49,0x5a,0x91,0x8,0x39,0xb7,0x49,0x7f,0x9a,0x6e,0xec,0xd4,0xee,0xcc,0x7c, 0x5e,0x4b,0x5f,0xa0,0xb9,0x5d,0x29,0x2f,0x1d,0xeb,0x17,0x14,0xf5,0x54,0x15,0xb2, 0x3e,0x46,0xd8,0x89,0xbf,0x29,0x87,0x44,0x79,0x65,0xe6,0x16,0x5f,0x32,0x55,0x53, 0xbe,0x4f,0xb1,0x93,0x7f,0xf0,0x38,0xfa,0xd9,0x15,0xc1,0x9d,0x31,0x49,0xb3,0xed, 0xeb,0x43,0x9,0xa4,0xc9,0x77,0xaf,0x75,0x75,0x2d,0x46,0x41,0x70,0x2a,0x41,0x6a, 0x10,0x43,0x5b,0x93,0xec,0x24,0x56,0xeb,0xbd,0x7c,0xa8,0x87,0x54,0x31,0x2d,0x4b, 0xbb,0x43,0xfa,0xa9,0x5d,0x36,0x83,0x35,0xe4,0x17,0x81,0x4c,0x65,0x2f,0x63,0x42, 0x1a,0x4c,0x15,0xa7,0x60,0x38,0x41,0x6a,0xdb,0x1,0x32,0x12,0x52,0x91,0x1d,0x7c, 0xdc,0x44,0xb,0xb8,0x3e,0x17,0x45,0xbb,0x94,0xf6,0x5f,0x53,0xbb,0x88,0xfb,0xe9, 0xbe,0x48,0x4e,0xb4,0xcb,0x41,0x87,0x60,0xfa,0xea,0xb8,0x66,0xfb,0x51,0xa7,0xd8, 0x4,0x4b,0x65,0x9c,0x53,0xd7,0xf0,0x5c,0x11,0x8f,0x48,0xbc,0x69,0xa6,0xf8,0x5e, 0xc1,0x42,0x72,0xa6,0x6,0xeb,0x3d,0x9a,0x6f,0x6c,0x60,0xdf,0x21,0x73,0xb3,0x4, 0x32,0x4d,0x28,0xbc,0x75,0x8c,0x27,0xb6,0x6a,0x92,0x11,0x95,0xf5,0x2d,0x7a,0x2b, 0xee,0x4a,0x4b,0xab,0x21,0x41,0x6f,0x8c,0x6d,0xfb,0x5b,0x98,0x58,0x7b,0x7a,0x52, 0x29,0x4b,0x0,0x89,0xd7,0x4d,0x39,0xd7,0xd5,0x31,0xe9,0x64,0xc6,0x89,0xa2,0xe0, 0x59,0x49,0x5f,0x9b,0x6c,0xc,0x87,0x4d,0xc1,0x43,0xfe,0x4c,0x1d,0x6a,0x1d,0x9e, 0x2e,0x43,0x75,0x93,0x14,0xbc,0x31,0xe7,0xc3,0xb3,0xe0,0x50,0xed,0x9e,0xa2,0x47, 0x8d,0x4a,0xc6,0xa3,0x81,0xa6,0x5e,0xca,0x84,0x94,0xc,0x2c,0xcf,0x14,0xc9,0xe9, 0x76,0x42,0x2d,0xb2,0xc,0xf0,0x1d,0x57,0x25,0xb9,0xa6,0x24,0xd0,0xf1,0x85,0x57, 0x80,0x44,0x45,0xac,0x62,0x7d,0xe3,0xce,0x61,0x97,0xa4,0x68,0xcb,0xec,0x4d,0x3a, 0x1b,0x43,0xbe,0xaf,0x79,0x29,0x2f,0xc4,0xa7,0xfe,0x34,0xa3,0x88,0xe3,0xf2,0x95, 0x1,0x40,0xab,0xa4,0x16,0xa8,0xd3,0x73,0xbd,0xd1,0x70,0xaf,0x94,0x7b,0x42,0x5f, 0xf1,0x40,0x67,0x9a,0x5,0x6,0x12,0xcd,0x51,0x72,0x4,0xa4,0xe9,0x99,0xf4,0x83, 0xf4,0x4e,0x7f,0x8f,0x9d,0x83,0x39,0x4d,0x87,0xf5,0xd8,0x5,0x10,0xaf,0x83,0x77, 0x7d,0x49,0xd7,0x92,0xea,0x43,0x38,0x65,0x6a,0xc,0x7c,0x2,0x40,0xc3,0xa5,0x8a, 0x62,0x48,0x9f,0x9b,0x91,0xb2,0x72,0xc4,0xac,0xb7,0xf9,0xbe,0x13,0x1c,0xe5,0x65, 0xea,0x41,0x72,0x9d,0xda,0x31,0x7,0x5f,0x35,0xf8,0x6f,0x27,0x7c,0xda,0x4b,0x36, 0x9e,0x44,0x2f,0xb2,0x65,0x68,0x9c,0x9e,0xca,0xab,0xa9,0xe9,0xcc,0xb7,0xb8,0x97, 0x7,0x47,0x29,0x99,0x73,0xa6,0xcb,0xf6,0xc9,0xf0,0x7e,0xf8,0x3b,0x45,0x6,0x82, 0x14,0x48,0x9c,0x98,0xb4,0x53,0xe6,0x8e,0x78,0x59,0x84,0x2e,0x49,0xf,0x7f,0x6, 0x48,0x46,0x97,0x9a,0x55,0xae,0x9e,0x3a,0xc4,0x5f,0x40,0xba,0xca,0x54,0x2,0x3c, 0x9,0x49,0x38,0xb5,0xd7,0x18,0x47,0xfb,0xb7,0x46,0x41,0x56,0x60,0xb0,0xf1,0xcc, 0x56,0x49,0xc4,0xb8,0xe8,0xe2,0x1f,0xd0,0xac,0xdc,0xb7,0xcc,0x51,0xa3,0xb1,0xe4, 0x83,0x4f,0xc1,0x8c,0x9,0x33,0xfc,0x33,0x4c,0xaf,0x51,0x96,0x89,0xf7,0x59,0x1f, 0xce,0x40,0x55,0xa1,0xb5,0xcf,0xe4,0xe1,0xd9,0xad,0x57,0x5c,0x46,0x67,0xf9,0xea, 0x6e,0x42,0xa3,0x8e,0x4d,0x49,0x5b,0xf5,0x8b,0x17,0xd2,0xa4,0x9b,0x52,0x35,0xda, 0x88,0x41,0x56,0x96,0xc,0x74,0x3a,0xce,0x92,0x36,0x27,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x94,0x55,0x47,0x4, 0xdb,0x4b,0xb3,0xb0,0xe5,0xd4,0x56,0x1c,0xf2,0xb6,0x15,0x46,0xad,0x45,0xcf,0xf4, 0x76,0x48,0x68,0xb2,0x18,0x29,0x99,0x67,0x8a,0x5,0xd4,0xcf,0x55,0x45,0xf7,0x1c, 0x7,0x46,0x3c,0x92,0x17,0x7,0x36,0x16,0xe0,0xda,0x30,0x82,0x32,0x3c,0x95,0x32, 0xbe,0x48,0x2b,0xbb,0x10,0x5e,0xd5,0x17,0x2b,0x12,0xb2,0x3,0xfa,0x9a,0x47,0x8b, 0xeb,0x4a,0xb4,0x8e,0xed,0x76,0x2a,0x59,0x82,0xc4,0xf1,0xcc,0xfd,0x74,0x5,0x91, 0xb9,0x43,0xa,0x94,0x20,0x73,0x3,0xab,0xfa,0xe6,0x9d,0xdd,0xeb,0x62,0xb1,0xe6, 0xf6,0x46,0xb8,0xae,0x1c,0x93,0x79,0xfd,0x9b,0xb7,0xbc,0xc6,0xbb,0xb2,0x1a,0x69, 0x81,0x48,0xd9,0x86,0xc9,0xf3,0xbb,0xfa,0xb2,0xbd,0xf6,0xad,0xa3,0xab,0x14,0x17, 0xf5,0x43,0xb3,0xb4,0x8b,0x38,0x96,0x9c,0xf1,0x26,0xbd,0x41,0x2f,0x28,0x92,0xb, 0xec,0x4f,0x9d,0x89,0x81,0xee,0x9a,0x3c,0x28,0xa7,0xf4,0x3,0xad,0x57,0x4a,0xd, 0x68,0x40,0x2,0xb5,0x2f,0x6e,0x41,0xb0,0xbb,0x4a,0xca,0x7c,0xef,0x2,0x9c,0xf4, 0x35,0x43,0xf1,0xb5,0x3f,0xae,0xad,0x9e,0xf4,0xa,0xb2,0x80,0x30,0xe1,0xdc,0x73, 0x64,0x49,0xc6,0x84,0xdd,0x1f,0x37,0x79,0x90,0xf2,0x9a,0x83,0x3e,0xb8,0x75,0x12, 0xbe,0x49,0x16,0x93,0xc4,0x36,0x53,0x82,0x9e,0x14,0xa4,0xe7,0x3,0x6d,0xdb,0xde, 0xce,0x40,0x45,0x91,0x1b,0x2c,0x83,0xbd,0x2,0x47,0x73,0x4b,0xf8,0xab,0xc6,0x6c, 0xcd,0x4a,0x8b,0xb5,0xa6,0x74,0x2a,0xc0,0x76,0xca,0x4c,0xa7,0xbf,0x31,0xf9,0x45, 0x57,0x4f,0xb2,0x8f,0x9a,0xcd,0x9e,0x14,0x42,0xc,0xdd,0x7,0x1,0xde,0xa,0x40, 0x1c,0x41,0x9c,0xa8,0x43,0x2e,0xbf,0xb7,0x6e,0xfc,0x2b,0x1,0x39,0xe5,0xcd,0x60, 0x41,0x4e,0x63,0xa9,0x24,0x7,0x10,0x87,0x73,0x2,0xfc,0xa2,0xeb,0xb0,0x19,0xbb, 0x37,0x45,0xd1,0x85,0x4b,0x4d,0x86,0xe3,0x16,0xd1,0x4e,0xc5,0x48,0x14,0xd1,0x9b, 0xab,0x41,0x8d,0xab,0xf2,0xf,0x24,0x56,0x0,0x31,0x1c,0xa2,0x12,0xc,0x76,0xbe, 0x5f,0x4c,0xb0,0x9b,0x62,0xb3,0x7f,0xea,0x8f,0xba,0x43,0x3b,0x45,0x17,0x25,0xc7, 0xcf,0x4b,0xf6,0xa8,0xf3,0xbe,0x8a,0xa7,0xa3,0x4e,0x40,0x9f,0xa6,0xcf,0x2a,0xc3, 0x6b,0x46,0x48,0xb5,0xff,0x3,0x7f,0xd9,0x5d,0xef,0xe,0xf3,0xeb,0x12,0x6a,0x65, 0x26,0x4b,0xc0,0xb0,0xdc,0xd8,0xf6,0x75,0xa7,0x84,0x98,0x37,0x1,0x51,0xe,0x7f, 0x12,0x4a,0x1a,0x8d,0xb6,0x2a,0x9f,0x63,0xf3,0x65,0xf1,0x38,0x52,0x9f,0xf0,0xed, 0x92,0x43,0xfb,0xb4,0xbc,0x60,0xeb,0x88,0x1d,0x12,0x54,0xe,0xa6,0x9f,0x11,0x8b, 0x1b,0x4d,0x6,0xb7,0xf5,0xd4,0x12,0xfe,0xda,0x2f,0xa8,0xa6,0x2,0x51,0x1f,0x3e, 0xd7,0x4c,0xf,0xa6,0x99,0xbc,0x54,0xd7,0x4d,0x6b,0x8b,0xd6,0xec,0xe3,0x83,0xd7, 0x87,0x4d,0x5e,0x9a,0x2,0xcf,0x30,0x78,0x28,0x88,0x6f,0x40,0xaf,0xd3,0xef,0xa0, 0xa9,0x4f,0x6,0xb5,0x85,0x96,0x9a,0x4f,0x12,0xff,0x42,0x3e,0x88,0x80,0x38,0x2, 0xd0,0x48,0xd8,0xb5,0x2e,0x3e,0x42,0x9d,0x73,0x77,0xc3,0xef,0x1d,0xf7,0xb7,0x2, 0x48,0x4f,0x8c,0xbc,0x71,0xf9,0x33,0x8d,0x96,0xe6,0xc4,0x7f,0x46,0x4c,0x4c,0x26, 0xab,0x46,0xc4,0xb6,0x11,0x6b,0x63,0xb2,0xa0,0xe6,0x52,0xcc,0xa3,0x24,0xc3,0xff, 0x2d,0x4d,0x73,0xb0,0x4b,0x3a,0xf8,0x5f,0xd3,0xc5,0xd8,0x50,0x64,0xf2,0x9e,0x31, 0x37,0x4e,0xfd,0xb1,0x95,0x9f,0xe,0xdc,0xfe,0xf0,0x71,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x7,0xbd,0xb1,0xb3, 0x9b,0x4e,0x5b,0x8e,0xbf,0x1,0x98,0x80,0x54,0xd,0x66,0x4b,0xe,0x45,0xa2,0xe, 0x42,0x49,0x32,0x83,0x92,0x8b,0x28,0x10,0x5,0x9d,0xa1,0xe8,0x4d,0x34,0x6f,0xdf, 0x50,0x4d,0xb4,0xad,0xe1,0x93,0x53,0x74,0xb7,0xd6,0x4b,0xca,0x74,0x61,0xe,0x93, 0x7,0x48,0x3a,0x87,0x6d,0xb7,0xd8,0xb2,0x97,0x2e,0x38,0xf0,0x3d,0x1b,0x23,0x90, 0x50,0x45,0x6,0x84,0x7e,0x78,0x66,0xf,0xca,0xbe,0xf0,0x41,0x26,0x81,0xee,0x10, 0x49,0x47,0x78,0x81,0x22,0x1e,0xa9,0x1,0x30,0x31,0x98,0xfd,0xeb,0xa,0x34,0x9b, 0xa3,0x48,0xdd,0x9c,0x7f,0xd8,0x1d,0x46,0x73,0x8e,0xba,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x58,0x43,0x64,0xa2, 0x4c,0x43,0x65,0x9c,0x9,0x1f,0x65,0xf4,0xb7,0x4b,0x73,0x6f,0xc1,0xb9,0xbf,0xe4, 0x3,0x4c,0x95,0xa2,0xdc,0x5b,0xa8,0x2,0xb7,0xf0,0xa6,0x46,0x1a,0x8a,0xb6,0xd8, 0x30,0x4f,0x42,0xa8,0xfd,0xd3,0x31,0x41,0x9c,0x5d,0x10,0x48,0x61,0xcd,0xde,0x25, 0x9c,0x4d,0xd9,0xb7,0xaa,0x52,0x83,0x32,0xd4,0xb1,0x8a,0x2f,0x88,0xaf,0xe3,0xdb, 0xd8,0x43,0xa,0x9b,0x31,0xe2,0xcc,0x8f,0xe0,0x39,0x6a,0x52,0xf4,0xb,0x78,0x48, 0xa4,0x4d,0x5f,0x9a,0x82,0x22,0x93,0xd7,0x19,0xfe,0xca,0xf,0xf0,0x3a,0x9,0x1b, 0x40,0x4e,0x40,0xb7,0xf3,0x56,0x5b,0x39,0x73,0xe7,0x98,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xd2,0x46,0x6c,0xe9, 0xd7,0x4f,0x2b,0x87,0xd1,0x6d,0x3a,0xcb,0xd6,0xa0,0x7f,0x9f,0xed,0xd4,0x7d,0x86, 0xe5,0x46,0x79,0xa3,0x96,0x67,0x5a,0xad,0x92,0x78,0x50,0xfe,0x64,0xb1,0xac,0x18, 0x99,0x4a,0xf8,0x8f,0x3f,0x8e,0x73,0xfb,0x9d,0x34,0x5b,0xd3,0xa2,0x96,0xbe,0xbd, 0xe,0x44,0x36,0xb9,0x12,0x4d,0x16,0xef,0x4,0x5,0xb8,0x4c,0x78,0xd8,0x18,0x3d, 0x32,0x48,0x5a,0x97,0x76,0xab,0x4c,0x14,0x84,0xa,0xfd,0xa6,0xed,0x2b,0xa3,0x24, 0x76,0x43,0x2b,0xbf,0xb6,0x14,0x7f,0x7b,0x4a,0xca,0xd0,0x26,0x11,0xa,0x68,0xa9, 0xb7,0x45,0x50,0x92,0xb8,0x9f,0xf,0xa5,0x7a,0x5b,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xc9,0xdb,0xf0,0xe4, 0x3,0x45,0x2f,0x9c,0x18,0x89,0xc9,0x11,0x82,0x5a,0xe,0xe1,0x70,0xb4,0xe8,0x6a, 0x61,0x4d,0xa1,0x9d,0xba,0xf9,0xed,0xc5,0xe1,0xeb,0x99,0xa3,0xa6,0x65,0xeb,0x5a, 0xe6,0x4d,0xae,0x80,0x54,0xe7,0xa7,0xda,0xb6,0xba,0xc0,0x22,0xc7,0x8c,0x15,0x58, 0x92,0x4f,0xe4,0x9c,0x41,0xec,0x96,0x1f,0x12,0x54,0x1f,0xc6,0x58,0xa3,0xa8,0x24, 0x2,0x40,0x14,0x8b,0x88,0xc2,0x29,0xbe,0x2d,0xc3,0x36,0xef,0x41,0xee,0x10,0x6f, 0xc5,0x4c,0xd0,0x96,0xf6,0xaf,0x8,0x18,0x5,0x56,0x41,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0xf9,0x25,0x86,0xd3, 0xd3,0x4e,0x99,0xa9,0xc2,0x4a,0x96,0x74,0xcf,0x96,0xd6,0x34,0x55,0x2c,0x2b,0xc5, 0xc8,0x44,0xca,0xa7,0xa8,0xf2,0xeb,0xa5,0x67,0x34,0x5e,0x9a,0x9,0xd4,0x1b,0x3e, 0x98,0x43,0x82,0x81,0xf3,0xe4,0x5b,0x7e,0x3a,0xe8,0x8f,0x4,0x89,0xd1,0x68,0x0, 0xac,0x46,0x15,0x8b,0x3a,0x6a,0xbf,0x5d,0x52,0x73,0x8b,0xd2,0x96,0xed,0x61,0x6d, 0xbf,0x4d,0x60,0x81,0x8c,0x36,0x60,0xe5,0xa4,0xc7,0xbd,0x5c,0xbd,0xf2,0x4a,0xe5, 0xf,0x48,0x93,0x8e,0xfc,0x64,0xfe,0x7e,0x9b,0xa0,0xf3,0xe2,0x10,0xe3,0x5a,0x25, 0xa4,0x40,0xa5,0x8f,0x64,0x73,0xb6,0x52,0xfe,0x46,0xbd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xa6,0xa2,0x19,0x12, 0x10,0x4a,0x8e,0xb4,0x7f,0xc2,0x25,0xec,0x32,0x1f,0x61,0x61,0xc5,0xe0,0xc5,0x4f, 0x5b,0x49,0xb4,0x97,0x2b,0x5,0x6e,0x7,0xd9,0xcb,0xc1,0x35,0x23,0x3a,0x82,0x79, 0x61,0x42,0xe5,0xae,0x4f,0xe1,0x4,0xf1,0x1e,0xb2,0x60,0xd1,0x6,0x6d,0x70,0xa1, 0x23,0x46,0x9e,0xa4,0xe6,0xcf,0x68,0x6,0x9f,0xa0,0x26,0xf3,0xaf,0x3b,0x80,0xda, 0x50,0x4d,0x3b,0x89,0x68,0xa4,0x97,0x6c,0x3,0x6b,0xec,0xd3,0x41,0xa6,0x58,0x3a, 0x68,0x41,0x12,0xa7,0xc4,0x52,0xe1,0xdd,0xea,0xf3,0x2a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xfa,0xfc,0x9a,0xec, 0xa0,0x4e,0x38,0xb4,0xd2,0x9a,0xf6,0x9,0x3a,0x6e,0xdd,0xa4,0xcc,0xf0,0x85,0x37, 0x80,0x43,0xd9,0x80,0x6f,0xbb,0x1e,0x35,0x72,0xc6,0xe8,0x58,0x84,0xae,0xa8,0x8, 0xe1,0x4c,0x63,0xac,0xca,0x8f,0x38,0x7e,0x2f,0x6,0x44,0xd5,0xfc,0xe3,0x14,0x77, 0x7c,0x47,0x53,0x86,0x9e,0x87,0xb0,0xec,0x3,0xc4,0xde,0xa4,0xc3,0xae,0x17,0xb6, 0x70,0x47,0xbf,0xb2,0x3b,0x38,0x29,0x18,0xc6,0xce,0xcd,0xab,0x15,0x4e,0xb,0x84, 0xd0,0x4e,0x53,0x9e,0x44,0xc9,0xee,0x34,0x52,0xe3,0xa7,0x9b,0x3d,0x82,0x76,0xf6, 0x19,0x44,0x14,0xb7,0x8b,0x71,0xd3,0xba,0xee,0xcf,0x31,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xb,0xb6,0x30,0xea, 0xc7,0x4d,0xc5,0x9a,0xb8,0xa6,0xf6,0xdc,0xe4,0xe,0xa0,0xa8,0xa1,0x6,0x1a,0x2f, 0x61,0x4d,0x61,0xaf,0x22,0x5e,0xab,0x98,0x37,0xf,0xdb,0x3e,0xc2,0xc6,0xba,0x1c, 0x43,0x44,0x52,0x9b,0xfc,0x62,0xbf,0x3c,0xe5,0xbc,0x74,0x1,0x2d,0x32,0xec,0xc2, 0xf4,0x4d,0xa1,0xb0,0xbe,0x3,0xbe,0x38,0x34,0x3c,0x51,0x73,0xba,0xde,0x2f,0x7a, 0x43,0x4e,0x21,0x98,0x38,0x88,0x36,0x8b,0x62,0xe3,0xde,0x3b,0x80,0xa,0x97,0xb5, 0x1b,0x4b,0x18,0xb2,0x28,0xb3,0x4c,0x18,0x83,0xec,0xa0,0x18,0x50,0x30,0xcb,0x2a, 0x52,0x49,0xed,0xa5,0x7c,0x6a,0xaf,0xe,0x85,0xfd,0x7d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xa6,0x2e,0x40,0x9c, 0xbd,0x42,0x4,0xa8,0x13,0x8f,0x54,0x6e,0x2,0xee,0x8a,0x46,0xa,0x3d,0x4a,0xfc, 0x7b,0x4a,0xbb,0xab,0xf8,0x14,0xe7,0xed,0x18,0x70,0x98,0xf4,0x2a,0xba,0x34,0xfc, 0x5e,0x4c,0xc8,0x8f,0xfd,0xee,0xba,0x60,0x98,0x9,0x4d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xaa,0xdf,0x6c,0xc4, 0xe5,0x4d,0x68,0xa9,0x87,0xbc,0xf9,0x47,0xcf,0xc8,0x4d,0x64,0xa3,0x94,0x3b,0x66, 0x9c,0x48,0x29,0x8a,0x56,0xc9,0xb4,0xa1,0x7a,0xbe,0xa6,0x96,0xd4,0x8c,0xe2,0x5e, 0x17,0x47,0xd9,0xa3,0x6d,0x99,0xc8,0x7c,0x90,0x57,0x88,0x8e,0xfa,0x69,0xf0,0xad, 0x17,0x46,0xe,0xbe,0xb8,0xac,0xd1,0x66,0x5c,0x3a,0x66,0x1,0xdd,0x21,0x66,0xb3, 0x53,0x46,0xab,0xb1,0x11,0x75,0x58,0xde,0x57,0xbc,0xe3,0x4a,0xcd,0x54,0x80,0x9a, 0xde,0x45,0x9,0xab,0x88,0x6a,0xce,0xe9,0x57,0xc3,0xd4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xa,0x45,0x14,0x3, 0xe3,0x41,0x8c,0xab,0x78,0xf8,0x30,0xd1,0x92,0xb,0xce,0xd9,0x37,0x7c,0x36,0x86, 0x67,0x4f,0x60,0x93,0x60,0x37,0x8f,0x84,0xe0,0x9f,0xa8,0x1,0x9d,0x49,0xcf,0x39, 0x54,0x4d,0x78,0xac,0x3f,0x4f,0xb6,0xfd,0x2,0xc0,0x40,0x3a,0x4,0xef,0xe0,0x36, 0x79,0x4d,0xac,0xad,0xf6,0x83,0x7d,0x5e,0xdc,0xb2,0x3d,0xc4,0x5,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xcb,0x42,0x29,0x5e,0x73,0x3f,0x8a,0x25,0x0,0x3e,0x9e, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4a,0x43,0x29,0x5e,0x88,0xa8,0xbb,0x3a,0x0, 0xd0,0x8f,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b, 0x1b,0x0,0x1d,0x8c,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x21,0x43,0x29,0x5e,0xd7, 0x2e,0x60,0x5,0x0,0x8,0x88,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9d,0x42,0x29, 0x5e,0xa7,0x8b,0xd6,0x9,0x0,0x88,0xa0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b, 0x43,0x29,0x5e,0x3c,0xe7,0xae,0x35,0x0,0xdc,0xba,0xbe,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x8f,0x22,0xe9,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0x36,0x8c,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70,0x15,0x0,0x50,0x74, 0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0, 0x8e,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x30,0x44,0x29,0x5e,0x52,0x46,0x5d, 0x31,0x80,0xed,0xa7,0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x42,0x29,0x5e,0x6, 0x8f,0xa9,0x14,0x0,0x84,0xac,0xa2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0x42,0x29, 0x5e,0x10,0xab,0x9f,0x1c,0x0,0x6d,0xb3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x14, 0x43,0x29,0x5e,0x94,0x3e,0xef,0x22,0x0,0xbe,0x82,0xe8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0,0x34,0x12,0xf0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0xa,0xb8,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0,0xea,0x60, 0xd1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d,0x42,0x29,0x5e,0xee,0x8,0xdd,0x2c,0x0, 0x79,0xa1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94, 0xc,0x0,0x5b,0x9c,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd, 0x3,0x14,0x3b,0x0,0xf1,0x25,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29, 0x5e,0xcc,0x2c,0xc8,0x12,0x0,0xf1,0xaf,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4, 0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x79,0x8a,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0xfa,0x97,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3,0x43,0x29,0x5e,0x6f,0x5f,0xb6,0x37,0x0,0xa4,0x23,0xf0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xbe,0x42,0x29,0x5e,0xe3,0x67,0x9f,0x1e,0x0,0x94,0x7c, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa,0x42,0x29,0x5e,0xb5,0x58,0x4b,0x27,0x0, 0xb5,0xf0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70, 0x15,0x0,0xf,0x0,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc,0x43,0x29,0x5e,0x78, 0xab,0x5b,0x23,0x0,0xc9,0xf0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29, 0x5e,0xe9,0xdb,0x2,0x3,0x0,0xf1,0x28,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac, 0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0x35,0x26,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe1,0x42,0x29,0x5e,0x83,0xa6,0x29,0x15,0x0,0x71,0x1b,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x5f,0x42,0x29,0x5e,0x2a,0xb5,0xc9,0x25,0x0,0xaa,0x9a,0xd1,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb,0x3,0x0,0xb8,0x1f, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0, 0x61,0x2,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x43,0x29,0x5e,0xda,0x6a,0xb2, 0x11,0x0,0x6f,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x60,0x43,0x29,0x5e,0xd3, 0xd7,0xbc,0x4,0x0,0x79,0x14,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe1,0x42,0x29, 0x5e,0x83,0xa6,0x29,0x15,0x0,0x21,0xf9,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9, 0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x87,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x9c,0x42,0x29,0x5e,0x8f,0xe0,0x38,0x26,0x0,0xa4,0x25,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0xc0,0xc0,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x33,0x1e, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1,0x7,0x0, 0x46,0x33,0xbd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51, 0x8,0x0,0x11,0x2f,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29,0x5e,0xb, 0xaf,0x1e,0x2c,0x0,0xe1,0xf2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29, 0x5e,0xde,0x78,0xde,0x32,0x0,0xab,0xf4,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74, 0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0,0x32,0xb,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0xff,0xb0,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf8,0x41,0x29,0x5e,0xa5,0x83,0xf2,0x34,0x0,0x88,0xa6,0xdf,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0x65,0x15, 0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x59,0x43,0x29,0x5e,0xae,0x59,0x1d,0x11,0x0, 0xf6,0x68,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94, 0xc,0x0,0x21,0xde,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x92,0x42,0x29,0x5e,0x13, 0xb7,0x6a,0x36,0x0,0x44,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf0,0x42,0x29, 0x5e,0x2,0xdf,0xdb,0x29,0x0,0x86,0xfd,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea, 0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x69,0x67,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0x85,0x2a,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x55,0x43,0x29,0x5e,0xb7,0x88,0x56,0x33,0x0,0xe0,0x92,0xdf,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0xf4,0x35, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0x43,0x29,0x5e,0xb7,0x88,0x56,0x33,0x0, 0xc2,0x72,0xdf,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70, 0x15,0x0,0x4f,0x44,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29,0x5e,0x9c, 0x70,0x12,0x39,0x0,0x46,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29, 0x5e,0xae,0x6e,0x8a,0x2e,0x0,0xbd,0xc,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b, 0x0,0x29,0x5e,0x67,0xc7,0xfe,0x29,0x0,0x44,0x1a,0xa5,0x5,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x92,0x42,0x29,0x5e,0x13,0xb7,0x6a,0x36,0x0,0x77,0x26,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0x44,0x5e,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x3d,0x42,0x29,0x5e,0xa,0xfb,0xa7,0x39,0x0,0x52,0xce, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x59,0x43,0x29,0x5e,0xae,0x59,0x1d,0x11,0x0, 0xce,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x87,0x4c,0x4e,0x5e,0xe6,0xbb,0x2f, 0x32,0x0,0x5f,0x7f,0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc, 0x2c,0xc8,0x12,0x0,0xff,0xf1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29, 0x5e,0x50,0xb6,0x15,0x21,0x0,0x6d,0x4f,0xde,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32, 0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0xd6,0x10,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xff,0x41,0x29,0x5e,0xa0,0xc3,0x37,0xb,0x0,0x9d,0x8a,0xb1,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0xc4,0x5,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x2e,0x43,0x29,0x5e,0xee,0x24,0xbc,0x8,0x0,0xf9,0x72, 0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d,0x42,0x29,0x5e,0xee,0x8,0xdd,0x2c,0x0, 0xf3,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b, 0x1b,0x0,0x8c,0x26,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae, 0x6e,0x8a,0x2e,0x0,0xbd,0xc,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29, 0x5e,0xe0,0xc1,0x39,0x32,0x0,0xf0,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc, 0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x47,0xd9,0xf4,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45,0x30,0x0,0x44,0x1a,0xa5,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x55,0x43,0x29,0x5e,0xb7,0x88,0x56,0x33,0x0,0x38,0x22,0xf0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x66,0x1c, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29,0x5e,0x88,0xd8,0x6,0x9,0x0, 0x1,0xd7,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0x42,0x29,0x5e,0x13,0x8d,0x8f, 0xe,0x0,0x84,0x66,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa2,0x42,0x29,0x5e,0xb4, 0x9b,0x65,0x12,0x0,0xc0,0xdc,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29, 0x5e,0x50,0xb6,0x15,0x21,0x0,0x5b,0xbb,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb4, 0xff,0x28,0x5e,0xfd,0x5a,0x32,0x38,0x0,0x44,0x1a,0xa5,0x7,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x42,0x42,0x29,0x5e,0xc6,0x4b,0x35,0x0,0x0,0x16,0xf,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x51,0x48,0x29,0x5e,0xa4,0xb9,0xbc,0xe,0x80,0x65,0x9b,0x75,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5b,0x43,0x29,0x5e,0x75,0xd1,0x5,0x0,0x0,0x37,0x9, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c,0x42,0x29,0x5e,0xf4,0x92,0x89,0x38,0x0, 0x94,0x5d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa5,0x42,0x29,0x5e,0x79,0xdd,0xc6, 0x2b,0x0,0x75,0x1e,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae, 0x6e,0x8a,0x2e,0x0,0xf6,0x29,0xf0,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0x42,0x29, 0x5e,0xb2,0x95,0x22,0x6,0x0,0xce,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x40, 0x42,0x29,0x5e,0x2a,0x4d,0xaf,0x33,0x0,0xcd,0x25,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x7,0x0,0x29,0x5e,0x21,0x20,0x11,0xb,0x0,0x44,0x1a,0xa5,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xc7,0x76,0x73,0x7,0x0,0xc0,0xbc,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5a,0x42,0x29,0x5e,0x86,0x68,0xf,0x1c,0x0,0xdd,0x98, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0, 0x83,0x5d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74,0x42,0x29,0x5e,0x26,0x44,0x4c, 0x10,0x0,0x1,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd, 0x3,0x14,0x3b,0x0,0x4e,0x13,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29, 0x5e,0x6c,0x31,0x84,0xc,0x0,0x59,0xb7,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe, 0x43,0x29,0x5e,0xda,0x6a,0xb2,0x11,0x0,0x2c,0xf6,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x46,0x42,0x29,0x5e,0x2c,0xb3,0xda,0x1,0x0,0x95,0x24,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x58,0x42,0x29,0x5e,0xa1,0x76,0x6c,0x2c,0x0,0xe0,0xd1,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4,0x57,0x29,0x5e,0x3d,0xf9,0x1c,0x10,0x0,0xff,0x6f, 0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0, 0x7e,0x75,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b, 0x2e,0x0,0x9d,0x1a,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d,0x42,0x29,0x5e,0xee, 0x8,0xdd,0x2c,0x0,0x6c,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d,0x42,0x29, 0x5e,0xee,0x8,0xdd,0x2c,0x0,0x73,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc, 0x42,0x29,0x5e,0xb2,0x95,0x22,0x6,0x0,0x48,0x5e,0xe9,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x13,0x43,0x29,0x5e,0xd6,0xae,0x40,0x1a,0x0,0x4f,0xb3,0xa4,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x92,0x42,0x29,0x5e,0x13,0xb7,0x6a,0x36,0x0,0x29,0x1c,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29,0x5e,0xb,0xaf,0x1e,0x2c,0x0,0xaf,0xde, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5f,0x42,0x29,0x5e,0x2a,0xb5,0xc9,0x25,0x0, 0x37,0x10,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x42,0x29,0x5e,0x53,0xe8,0x59, 0x25,0x0,0x35,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0x50, 0xb6,0x15,0x21,0x0,0x8b,0x28,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29, 0x5e,0x41,0xd,0x6b,0x2e,0x0,0x30,0x12,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb7, 0x42,0x29,0x5e,0xdb,0x4e,0xfc,0x7,0x0,0x40,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70,0x15,0x0,0x8e,0x25,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x33,0x43,0x29,0x5e,0x1f,0x8a,0x61,0xd,0x0,0x25,0x27,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b,0x2e,0x0,0x74,0x2d, 0xa9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb,0x3,0x0, 0x12,0x12,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c, 0x32,0x0,0x36,0x75,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd, 0x27,0x94,0xc,0x0,0x13,0x2a,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29, 0x5e,0xe,0xc5,0x8d,0x29,0x0,0x9b,0x6d,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x53, 0x0,0x29,0x5e,0xc6,0xb3,0x70,0x3a,0x0,0x66,0x2a,0xa6,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0x81,0x18,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x63,0x0,0x29,0x5e,0xa,0xc8,0x89,0x14,0x0,0x44,0x1a,0xa5,0x3, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xeb,0x42,0x29,0x5e,0x35,0x75,0x60,0x2d,0x0,0x7e,0x6a, 0xd1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd7,0x42,0x29,0x5e,0xad,0x63,0xd5,0x3,0x0, 0x54,0x28,0xa9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x42,0x29,0x5e,0xfb,0x68,0xd7, 0x1f,0x0,0x89,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x76,0x42,0x29,0x5e,0x2d, 0xe0,0x26,0x1e,0x0,0x1,0x23,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29, 0x5e,0xe0,0xc1,0x39,0x32,0x0,0x3c,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55, 0x42,0x29,0x5e,0x7b,0x3e,0xa8,0x15,0x0,0x14,0x1f,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb7,0x42,0x29,0x5e,0xdb,0x4e,0xfc,0x7,0x0,0xcc,0x27,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd7,0x42,0x29,0x5e,0xad,0x63,0xd5,0x3,0x0,0x2a,0x1c,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x98,0x30, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc0,0x42,0x29,0x5e,0xf,0xc3,0x22,0x2f,0x0, 0x96,0x8,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf, 0x24,0x0,0x34,0x71,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29,0x5e,0x88, 0xd8,0x6,0x9,0x0,0x5e,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0x42,0x29, 0x5e,0x7b,0x3e,0xa8,0x15,0x0,0x64,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0, 0x42,0x29,0x5e,0x41,0xd,0x6b,0x2e,0x0,0x43,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x7c,0xff,0x28,0x5e,0x64,0xcc,0x8b,0x15,0x0,0x23,0xe6,0xa0,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x45,0x43,0x29,0x5e,0x7d,0x33,0x1d,0x35,0x0,0x53,0x1,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0x39,0xfc, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0x42,0x29,0x5e,0x42,0x18,0xd0,0xc,0x0, 0x9f,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5e,0xff,0x28,0x5e,0xc5,0xf5,0x46, 0x13,0x0,0x57,0x4a,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0x43,0x29,0x5e,0xbc, 0x6a,0xae,0x3a,0x0,0xd2,0xee,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2e,0xff,0x28, 0x5e,0x30,0x87,0xf9,0x8,0x0,0x6,0xcc,0x9a,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x48, 0xff,0x28,0x5e,0x7e,0xfd,0x20,0xe,0x0,0x68,0x53,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfe,0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0,0x88,0x1b,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf,0x24,0x0,0x7c,0x10,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x40,0x43,0x29,0x5e,0xcf,0x44,0xd5,0x31,0x0,0x9b,0x1, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0xfe,0x28,0x5e,0x3e,0x9a,0x4a,0x8,0x0, 0xf4,0x14,0x95,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x57,0xff,0x28,0x5e,0x96,0x9f,0x53, 0x38,0x0,0xec,0xed,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6e,0x42,0x29,0x5e,0xdf, 0xf,0xa1,0x1e,0x0,0x99,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0xff,0x28, 0x5e,0x66,0x2c,0x3f,0x36,0x0,0x5,0x9d,0x9e,0x5,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4, 0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x63,0xa7,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0,0x4e,0x4,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x18,0xb,0xf1,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x55,0x42,0x29,0x5e,0x7b,0x3e,0xa8,0x15,0x0,0x50,0x32, 0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe6,0x42,0x29,0x5e,0xa0,0xcd,0xba,0x1a,0x0, 0xf5,0x3,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a, 0x2e,0x0,0xbf,0x15,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5b,0x43,0x29,0x5e,0x75, 0xd1,0x5,0x0,0x0,0x1e,0x27,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0x43,0x29, 0x5e,0xb7,0x88,0x56,0x33,0x0,0x3,0x3,0xa8,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2b, 0x56,0x29,0x5e,0x7f,0xef,0xa4,0xa,0x0,0x56,0x5d,0xae,0x9,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x8d,0x42,0x29,0x5e,0xee,0x8,0xdd,0x2c,0x0,0x40,0x23,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b,0x2e,0x0,0x68,0x1c,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0,0x8f,0xf, 0xa2,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x49,0x0,0x29,0x5e,0xa0,0x96,0x55,0x29,0x0, 0xf1,0x62,0xc6,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15, 0x21,0x0,0x3a,0x26,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7, 0xe0,0x11,0x25,0x0,0x9c,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x43,0x29, 0x5e,0xda,0x6a,0xb2,0x11,0x0,0x36,0x46,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x96, 0xff,0x28,0x5e,0x5e,0x48,0x65,0x6,0x0,0xb4,0xbc,0x9f,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0x67,0x26,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfe,0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0,0xc0,0x3,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xc7,0x76,0x73,0x7,0x0,0x30,0xac, 0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x43,0x29,0x5e,0x1e,0x30,0x8b,0x8,0x0, 0xf2,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf5,0x4c,0x4e,0x5e,0x3d,0x94,0x78, 0x4,0x0,0xbb,0x80,0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x77,0xff,0x28,0x5e,0xf, 0x85,0x2,0x9,0x0,0x65,0xec,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3f,0x0,0x29, 0x5e,0x1,0xd,0xf,0x21,0x0,0x44,0x1a,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd6, 0x56,0x29,0x5e,0x20,0xe2,0x7d,0x1b,0x0,0x3b,0xe9,0xc2,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0xdf,0x6,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4c,0xff,0x28,0x5e,0x5,0xd7,0x5f,0x36,0x0,0xb4,0x5f,0xa1,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x28,0x61, 0xbd,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0, 0xa9,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22,0x43,0x29,0x5e,0x97,0x3e,0xf8, 0x29,0x0,0x59,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0xff,0x28,0x5e,0xc8, 0x2d,0xf2,0x3,0x0,0xe0,0x4b,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29, 0x5e,0x18,0x44,0x4c,0x32,0x0,0x65,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86, 0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x44,0x1a,0xa5,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x3,0x42,0x29,0x5e,0x93,0x4,0x98,0xc,0x0,0x32,0x98,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x37,0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0x25,0x62,0xe9,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0xa1,0x2a, 0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0, 0xde,0x35,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf, 0x24,0x0,0xb4,0xee,0xa7,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x42,0x29,0x5e,0x6e, 0x44,0x43,0x2d,0x0,0xe0,0x6,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4f,0xff,0x28, 0x5e,0xde,0xb1,0xbb,0x30,0x0,0x11,0x4b,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27, 0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0,0x3f,0xc0,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x52,0xff,0x28,0x5e,0x42,0x6d,0xd0,0x29,0x0,0xa3,0xd7,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfc,0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x9a,0x5b,0xc2,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x52,0xff,0x28,0x5e,0x42,0x6d,0xd0,0x29,0x0,0x53,0x71, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0, 0xe0,0x70,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xae,0x4c,0x4e,0x5e,0x82,0xae,0xbd, 0x2,0x0,0x9c,0x79,0xc2,0x19,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd, 0x3,0x14,0x3b,0x0,0xd3,0x43,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0x5,0x97, 0x5d,0x6f,0xfb,0xb0,0x13,0xc0,0x4a,0xb1,0x11,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x82, 0x0,0x29,0x5e,0x21,0x89,0x40,0x0,0x0,0x44,0x1a,0xa5,0x4,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x98,0x42,0x29,0x5e,0x24,0xf8,0x10,0x4,0x0,0xa0,0x1c,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd5,0x42,0x29,0x5e,0x84,0xad,0xe8,0x36,0x0,0x1f,0x30,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0xa,0x62, 0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0, 0x87,0x4,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f, 0x1b,0x0,0xef,0xda,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x35,0x0,0x29,0x5e,0x7, 0x48,0x0,0x11,0x0,0x44,0x1a,0xa5,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29, 0x5e,0xde,0x78,0xde,0x32,0x0,0x75,0x76,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4, 0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x8,0xa5,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x5d,0x42,0x29,0x5e,0x60,0xe3,0xd7,0x36,0x0,0x2e,0xa7,0xc9,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4b,0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0,0x5c,0x15,0xf0,0xa, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x25,0xaa, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x42,0x29,0x5e,0x6,0x8f,0xa9,0x14,0x0, 0x3e,0x97,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12,0x43,0x29,0x5e,0x69,0x5c,0xad, 0x33,0x0,0xcf,0x50,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x31,0xff,0x28,0x5e,0xd5, 0x8f,0xba,0x26,0x0,0x95,0xdc,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xeb,0x57,0x29, 0x5e,0x4e,0x90,0xfc,0x26,0x0,0x21,0xb3,0xc1,0x4,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x52, 0xff,0x28,0x5e,0x42,0x6d,0xd0,0x29,0x0,0x5d,0xa,0xa1,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x2c,0x43,0x29,0x5e,0x3,0x48,0x77,0x18,0x0,0xdf,0xf,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1,0x7,0x0,0xfb,0xa9,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xbe,0x42,0x29,0x5e,0xe3,0x67,0x9f,0x1e,0x0,0xc9,0x8b, 0xde,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0, 0x36,0xa2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa0,0xff,0x28,0x5e,0xc,0x1b,0x92, 0x16,0x0,0x60,0x5d,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0xe2,0xa0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b,0x43,0x29, 0x5e,0x3c,0xe7,0xae,0x35,0x0,0xff,0x10,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe3, 0xff,0x28,0x5e,0xcb,0x90,0x4e,0xe,0x0,0x44,0x1a,0xa5,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x3b,0xab,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0xb1,0xdc,0xdd,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0x71,0x2, 0xf0,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3d,0xff,0x28,0x5e,0x8b,0xed,0x99,0x36,0x0, 0x6e,0xef,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb, 0x3,0x0,0x26,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0x7e,0x93,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29, 0x5e,0xc0,0x10,0x91,0xd,0x0,0xd8,0x63,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c, 0xff,0x28,0x5e,0x64,0xcc,0x8b,0x15,0x0,0x73,0xdc,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x42,0x29,0x5e,0x88,0xd8,0x6,0x9,0x0,0xe2,0xa0,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x12,0x43,0x29,0x5e,0x69,0x5c,0xad,0x33,0x0,0x1b,0xd,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x7,0x0,0x29,0x5e,0x21,0x20,0x11,0xb,0x0,0x44,0x1a, 0xa5,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0x3,0x48,0x77,0x18,0x0, 0x37,0x91,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa,0xff,0x28,0x5e,0x71,0xc5,0xa9, 0x28,0x0,0xf4,0x14,0x95,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0, 0x9a,0x51,0x8,0x0,0x66,0x4a,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29, 0x5e,0xb,0xaf,0x1e,0x2c,0x0,0xf8,0x4e,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x90, 0x51,0x29,0x5e,0x26,0x63,0x59,0x1c,0x0,0xf9,0x3f,0x75,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4e,0x42,0x29,0x5e,0x1a,0xc,0x1c,0x1e,0x0,0xb8,0xc,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x27,0x42,0x29,0x5e,0xf2,0xb7,0x8e,0xf,0x0,0x19,0x91,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0xf7,0x26, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0, 0xf8,0xae,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe2,0x0,0x29,0x5e,0x89,0xd3,0xf9, 0x2e,0x0,0x2b,0xb8,0x58,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78, 0x51,0x1f,0x1b,0x0,0xe7,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x43,0x29, 0x5e,0xda,0x6a,0xb2,0x11,0x0,0xa1,0xf,0xa8,0x4,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe, 0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0,0x45,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x5f,0x42,0x29,0x5e,0x2a,0xb5,0xc9,0x25,0x0,0x80,0x2c,0xe9,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x27,0x2a,0xf0,0xe, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0,0x92,0x1, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x38,0x43,0x29,0x5e,0xd4,0xa0,0x3c,0x13,0x0, 0x89,0xa1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14, 0x3b,0x0,0xc4,0xe7,0xef,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12,0x43,0x29,0x5e,0x69, 0x5c,0xad,0x33,0x0,0x42,0x86,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0xa2,0x2a, 0x5e,0xbe,0x8c,0xc6,0xc,0x0,0xe4,0x75,0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x19, 0x43,0x29,0x5e,0x1,0x61,0x10,0x25,0x0,0xce,0x25,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x84,0x1a,0xe8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0xd6,0x60,0xe9,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xdf,0xdb,0xb2,0x5d,0x13,0x1,0x5b,0x2f,0x0,0xce,0x36, 0x9f,0x22,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1,0x7,0x0, 0x3,0xa1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x96,0xff,0x28,0x5e,0x5e,0x48,0x65, 0x6,0x0,0xfd,0x39,0xa0,0x7,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29,0x5e,0x9c, 0x70,0x12,0x39,0x0,0x91,0x67,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd7,0x42,0x29, 0x5e,0xad,0x63,0xd5,0x3,0x0,0x36,0xb1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9, 0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x85,0x2f,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0x4f,0x3a,0xf0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0xe2,0xce,0x4e,0xb,0x0,0xc1,0x29,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf5,0x42,0x29,0x5e,0x51,0x94,0xcb,0x31,0x0,0x94,0x37, 0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x42,0x29,0x5e,0x40,0xc,0xb6,0xb,0x0, 0x32,0xaf,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf1,0x42,0x29,0x5e,0x2b,0x23,0xf5, 0x31,0x0,0x55,0x97,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0x1a,0x85,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa,0x43,0x29, 0x5e,0xf,0x89,0xed,0x11,0x0,0x84,0xbd,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xba, 0x0,0x29,0x5e,0x97,0x53,0x1c,0xc,0x0,0x44,0x1a,0xa5,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfe,0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0,0xb7,0x86,0xdd,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0x4c,0x86,0xef,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x7e,0xf0, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0, 0x9f,0x46,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74,0x42,0x29,0x5e,0x26,0x44,0x4c, 0x10,0x0,0x41,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78, 0x51,0x1f,0x1b,0x0,0x5e,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c,0xff,0x28, 0x5e,0x64,0xcc,0x8b,0x15,0x0,0x7a,0xc5,0x9e,0x4,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x57, 0xff,0x28,0x5e,0x96,0x9f,0x53,0x38,0x0,0x7a,0xe3,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4d,0xff,0x28,0x5e,0xc0,0x1f,0x5,0x1c,0x0,0xfa,0x4f,0xa1,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe2,0x42,0x29,0x5e,0x26,0xa2,0x30,0x1e,0x0,0x88,0x11,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x30,0x43,0x29,0x5e,0xc0,0x42,0x65,0x1a,0x0,0xf4,0xc2, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x46,0xff,0x28,0x5e,0x26,0x8e,0xf6,0x20,0x0, 0x32,0x39,0xa1,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x77,0xff,0x28,0x5e,0xf,0x85,0x2, 0x9,0x0,0xa,0xee,0xa0,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x43,0x29,0x5e,0xbf, 0x1d,0x28,0x1a,0x0,0x6,0xf9,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xda,0x42,0x29, 0x5e,0xf,0x31,0x84,0x1d,0x0,0x3f,0xf6,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3f, 0x0,0x29,0x5e,0x1,0xd,0xf,0x21,0x0,0x92,0x4c,0xa1,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd3,0xff,0x28,0x5e,0x88,0xd,0xd4,0x32,0x0,0x39,0xe6,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0,0x89,0x1d,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x52,0xff,0x28,0x5e,0x42,0x6d,0xd0,0x29,0x0,0x18,0xc0, 0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4d,0xff,0x28,0x5e,0xc0,0x1f,0x5,0x1c,0x0, 0x79,0x48,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22,0x43,0x29,0x5e,0x97,0x3e,0xf8, 0x29,0x0,0x24,0xb,0xaa,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf7,0xff,0x28,0x5e,0x67, 0x4a,0x9d,0x2e,0x0,0x8c,0x18,0xa2,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29, 0x5e,0xc0,0x10,0x91,0xd,0x0,0x95,0xc1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1f, 0x43,0x29,0x5e,0xa9,0xa7,0xd7,0x32,0x0,0xd0,0xf,0xa8,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x25,0xff,0x28,0x5e,0xe3,0x3e,0x43,0x3a,0x0,0xfc,0xda,0xa1,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf,0x24,0x0,0x5a,0xf,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70,0x15,0x0,0x32,0xba, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0, 0x6e,0x14,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7,0xe0,0x11, 0x25,0x0,0xe4,0x13,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x38,0x43,0x29,0x5e,0xd4, 0xa0,0x3c,0x13,0x0,0x12,0x3,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29, 0x5e,0xde,0x78,0xde,0x32,0x0,0x66,0x4,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc, 0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x9e,0x87,0xc2,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x22,0x42,0x29,0x5e,0xc8,0xe7,0x5e,0x8,0x0,0x41,0x6f,0xb2,0x4,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc,0x4,0x0,0x64,0x33,0xf0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x1d,0x67,0x39,0x5e,0x17,0x2e,0xf5,0x25,0x0,0xe,0x21, 0x74,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x76,0xbb,0xb2,0x5d,0x33,0x8c,0x1b,0x11,0x0, 0x5c,0x42,0x97,0x7,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14, 0x3b,0x0,0xad,0x44,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa2,0x42,0x29,0x5e,0xb4, 0x9b,0x65,0x12,0x0,0x66,0x15,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29, 0x5e,0xe9,0xdb,0x2,0x3,0x0,0x5f,0xea,0xf4,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x11, 0x43,0x29,0x5e,0x9,0x18,0x99,0x2b,0x0,0x3e,0xdc,0xdf,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6b,0x1,0x29,0x5e,0xdd,0x3c,0xeb,0x1b,0x0,0xb5,0x32,0xa8,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x45,0x43,0x29,0x5e,0x7d,0x33,0x1d,0x35,0x0,0x5c,0xa7,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0,0xca,0x88, 0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x42,0x29,0x5e,0xf2,0xb7,0x8e,0xf,0x0, 0x7f,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xba,0xff,0x28,0x5e,0xa9,0xa0,0x1c, 0x5,0x0,0xfd,0x55,0xa0,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x43,0x29,0x5e,0x18, 0x63,0x66,0x29,0x0,0x1a,0x2b,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x42,0x29, 0x5e,0xfb,0x68,0xd7,0x1f,0x0,0x90,0xb,0xf1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c, 0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0xdc,0x2b,0xe9,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x46,0x43,0x29,0x5e,0xf1,0xe,0xbb,0x20,0x0,0xb9,0x67,0xe9,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0x2d,0x24,0xa1,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x9a,0x1d, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12,0x43,0x29,0x5e,0x69,0x5c,0xad,0x33,0x0, 0x39,0x13,0xf1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf0,0x42,0x29,0x5e,0x2,0xdf,0xdb, 0x29,0x0,0x31,0x3d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x15,0x43,0x29,0x5e,0x15, 0xcf,0x52,0x2c,0x0,0xc8,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29, 0x5e,0xb0,0x9a,0x51,0x8,0x0,0xe8,0xf2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x98, 0x42,0x29,0x5e,0x24,0xf8,0x10,0x4,0x0,0xde,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x86,0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x25,0xe6,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x46,0x43,0x29,0x5e,0xf1,0xe,0xbb,0x20,0x0,0xa5,0x11,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x96,0xff,0x28,0x5e,0x5e,0x48,0x65,0x6,0x0,0xe9,0x14, 0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x57,0x29,0x5e,0x3d,0xf9,0x1c,0x10,0x0, 0x3,0x5a,0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7,0xe0,0x11, 0x25,0x0,0xa5,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd3,0x42,0x29,0x5e,0x75, 0xdd,0x37,0x3,0x0,0xee,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9d,0x48,0x29, 0x5e,0xa9,0xc0,0x6b,0x3b,0x80,0xac,0x62,0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea, 0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0xac,0x98,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x7c,0x0,0x29,0x5e,0x1c,0xfc,0x5f,0x34,0x0,0xa7,0xdb,0xa0,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3f,0x42,0x29,0x5e,0xc2,0x59,0xc8,0x6,0x0,0x64,0xae,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4d,0xff,0x28,0x5e,0xc0,0x1f,0x5,0x1c,0x0,0x3,0xdb, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x38,0xff,0x28,0x5e,0xc,0xdc,0xa6,0x27,0x0, 0x2a,0xe6,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x36,0x42,0x29,0x5e,0x41,0x9,0x12, 0x26,0x0,0xe2,0xa0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc0,0x4e,0x29,0x5e,0x38, 0x15,0x54,0x1,0x80,0xbb,0x9a,0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29, 0x5e,0xe8,0x1e,0xdb,0x3,0x0,0x25,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa5, 0x0,0x29,0x5e,0x6c,0xe6,0x5a,0x2e,0x0,0x86,0xe6,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x54,0x43,0x29,0x5e,0x1e,0x30,0x8b,0x8,0x0,0x6b,0x1,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70,0x15,0x0,0x44,0xab,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0xb2,0x3,0x33,0xb,0x0,0xd7,0xf2, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x87,0x0,0x29,0x5e,0xa,0xe0,0x4f,0x8,0x0, 0x44,0x1a,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28,0x5e,0x2,0xc2,0xfc, 0x1e,0x0,0x54,0x5,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x77,0xff,0x28,0x5e,0xf, 0x85,0x2,0x9,0x0,0x33,0x5a,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c,0xff,0x28, 0x5e,0x64,0xcc,0x8b,0x15,0x0,0xc5,0xdb,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe4, 0x41,0x29,0x5e,0x2b,0x3c,0x1b,0xd,0x0,0xf5,0xb2,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe4,0x42,0x29,0x5e,0x6c,0xfa,0xc2,0x2e,0x0,0x23,0xb7,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x8,0x42,0x29,0x5e,0x64,0x4,0x42,0x16,0x0,0xf5,0xb2,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc2,0x42,0x29,0x5e,0xbd,0x70,0x8d,0x1f,0x0,0xb0,0xb2, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x41,0x29,0x5e,0xa5,0x83,0xf2,0x34,0x0, 0xad,0xb1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3e,0x43,0x29,0x5e,0x20,0xb3,0x83, 0x24,0x0,0x1,0xa2,0xa8,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc, 0x2c,0xc8,0x12,0x0,0x9e,0xb1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0x84,0x3a, 0x5e,0x7b,0x10,0x51,0x4,0x0,0xe7,0x6d,0xbd,0x5,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9b, 0x0,0x29,0x5e,0x1,0x7c,0xbd,0x25,0x0,0x6,0x37,0xd5,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x29,0x1,0x29,0x5e,0x5,0x98,0x8c,0x24,0x0,0xf7,0x63,0xd5,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf1,0x0,0x29,0x5e,0x8c,0x99,0xca,0x37,0x0,0xb7,0x57,0xd9,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0xe9,0xb0, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0, 0x41,0x76,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x89,0x1,0x29,0x5e,0x3a,0x7,0xe9, 0x26,0x0,0x30,0xc2,0xd5,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x42,0x29,0x5e,0xfb, 0x68,0xd7,0x1f,0x0,0x20,0x9b,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x3,0x29, 0x5e,0xa1,0xea,0xa7,0x1b,0x0,0x62,0x4d,0xd9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c, 0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0,0xc3,0x5c,0xe9,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x21,0x43,0x29,0x5e,0xd7,0x2e,0x60,0x5,0x0,0xaa,0xe0,0xd1,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0xa0,0xb0,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xfd,0x1,0x29,0x5e,0x71,0xc3,0x67,0x36,0x0,0xf7,0x43, 0xdb,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdf,0x1,0x29,0x5e,0x22,0xea,0x51,0x26,0x0, 0x9f,0x62,0xd5,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29,0x5e,0xb,0xaf,0x1e, 0x2c,0x0,0x2,0xff,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x34,0x42,0x29,0x5e,0x20, 0xda,0x82,0x35,0x0,0x91,0xa1,0xb2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x66,0x1,0x29, 0x5e,0x72,0x50,0x73,0x13,0x0,0xbf,0xe1,0xad,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62, 0x52,0x29,0x5e,0xe9,0xdb,0x2,0x3,0x0,0xd5,0xde,0xfc,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x3a,0x2,0x29,0x5e,0xd5,0xe5,0xbc,0x7,0x0,0x27,0xbe,0xa9,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x92,0x42,0x29,0x5e,0x13,0xb7,0x6a,0x36,0x0,0x56,0xac,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x66,0x1,0x29,0x5e,0x72,0x50,0x73,0x13,0x0,0xa1,0xed, 0x5b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xbc,0x42,0x29,0x5e,0x3a,0x57,0xf1,0xd,0x0, 0x22,0x23,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xda,0x42,0x29,0x5e,0xf,0x31,0x84, 0x1d,0x0,0x73,0x1b,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0xa,0xe9,0x5d,0xab, 0x7e,0x4,0x23,0x80,0xd6,0xba,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29, 0x5e,0xc0,0xaa,0x1,0x7,0x0,0x21,0x8a,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e, 0x42,0x29,0x5e,0x10,0xab,0x9f,0x1c,0x0,0x4a,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0xd6,0xa6,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x7e,0xa,0xe9,0x5d,0xab,0x7e,0x4,0x23,0xc0,0xd9,0x55,0x10,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x7e,0xa,0xe9,0x5d,0xab,0x7e,0x4,0x23,0xa0,0x2e,0xe6, 0x1d,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf6,0x42,0x29,0x5e,0xc4,0xfa,0x1b,0x3a,0x0, 0xa5,0x3a,0xd2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde, 0x32,0x0,0x76,0xad,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc0,0x42,0x29,0x5e,0xf, 0xc3,0x22,0x2f,0x0,0x24,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0xa,0xe9, 0x5d,0xab,0x7e,0x4,0x23,0x60,0x7,0xf1,0x1b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e, 0xa,0xe9,0x5d,0xab,0x7e,0x4,0x23,0x20,0xa1,0x2f,0x14,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x7e,0xa,0xe9,0x5d,0xab,0x7e,0x4,0x23,0xa0,0x81,0xeb,0x14,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfd,0x55,0x29,0x5e,0xc2,0xb,0x45,0x22,0x0,0xa5,0xa1,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf7,0x41,0x29,0x5e,0x41,0xaa,0x8a,0x8,0x0,0xb1,0xd0, 0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9a,0x56,0x29,0x5e,0x11,0xc6,0xf4,0x11,0x0, 0xaf,0xaa,0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xff,0x44,0x29,0x5e,0x48,0xcc,0x8d, 0x31,0x0,0x25,0xad,0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3,0x42,0x29,0x5e,0x93, 0x4,0x98,0xc,0x0,0x39,0x39,0xb0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1c,0x41,0x29, 0x5e,0x10,0x12,0x74,0x1c,0x0,0x7a,0xf5,0x4f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac, 0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0x18,0xa0,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x16,0x0,0x29,0x5e,0xc0,0x3e,0x9d,0x22,0x0,0xb3,0xa6,0x93,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94,0xc,0x0,0xf6,0xb,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6e,0x42,0x29,0x5e,0xdf,0xf,0xa1,0x1e,0x0,0x8c,0x26, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc,0x0,0x29,0x5e,0x3a,0x4a,0xb0,0x13,0x80, 0xe9,0xd3,0x5e,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0xa,0xe9,0x5d,0xab,0x7e,0x4, 0x23,0x20,0x2d,0x93,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0, 0xc1,0x39,0x32,0x0,0xd5,0xde,0xb0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x41,0x29, 0x5e,0xa5,0x83,0xf2,0x34,0x0,0xf4,0xb2,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37, 0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0x72,0x1b,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xdd,0x42,0x29,0x5e,0x6,0x8f,0xa9,0x14,0x0,0xb7,0x69,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc9,0xff,0x28,0x5e,0xba,0x12,0xe5,0x21,0x0,0xfb,0x55,0x5e,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0x8b,0xab, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb,0x43,0x29,0x5e,0x52,0xe,0x9a,0x1a,0x0, 0x8,0x91,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc9,0xff,0x28,0x5e,0xba,0x12,0xe5, 0x21,0x0,0xcf,0xd4,0x5c,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18, 0x44,0x4c,0x32,0x0,0x76,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee, 0x5d,0x53,0x4b,0x61,0x28,0x20,0xaa,0xfe,0x15,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54, 0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0x20,0x24,0x26,0x7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94,0xc,0x0,0x8a,0x5e,0xe9,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0x40,0x95,0x9d,0x26,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x93,0x18,0xfa,0x5d,0x1b,0x60,0x25,0x1b,0x0,0xe2,0x86, 0x62,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29,0x5e,0xe9,0xdb,0x2,0x3,0x0, 0xa3,0x82,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a, 0x2e,0x0,0xde,0x8f,0xef,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53, 0x4b,0x61,0x28,0x40,0x5f,0x70,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29, 0x5e,0xe9,0xdb,0x2,0x3,0x0,0x6a,0xac,0xfc,0xd,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54, 0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0xa0,0xf6,0xf3,0x10,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x2c,0x42,0x29,0x5e,0x15,0x4b,0x99,0x16,0x0,0x5f,0xfa,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0xe0,0x67,0x12,0x16,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0x8,0x62,0xa1, 0x5,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0xa0, 0xa4,0x2b,0x18,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x42,0x29,0x5e,0x54,0x85,0xee, 0x21,0x0,0xd7,0xd,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53, 0x4b,0x61,0x28,0xc0,0x58,0x38,0x15,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee, 0x5d,0x53,0x4b,0x61,0x28,0x80,0xc4,0xf6,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9b, 0xff,0x28,0x5e,0xc3,0xa0,0x16,0xe,0x0,0xf5,0x31,0x5c,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x7e,0x42,0x29,0x5e,0x10,0xab,0x9f,0x1c,0x0,0x34,0x76,0xe8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc,0x4,0x0,0xf,0x28,0xe9,0xc, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xed,0xff,0x28,0x5e,0xeb,0x2f,0x15,0x1e,0x80,0x9a,0xab, 0x58,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0x60, 0xef,0x7e,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61, 0x28,0x40,0x9b,0xf1,0x27,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0xb2, 0x3,0x33,0xb,0x0,0x16,0x35,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x43,0x29, 0x5e,0xbf,0x1d,0x28,0x1a,0x0,0x3,0xaf,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0, 0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x5a,0x7f,0xef,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x9b,0x26,0xee,0x5d,0xa8,0xa7,0x16,0x9,0xd0,0x4f,0x51,0x7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x17,0x42,0x29,0x5e,0xbb,0xea,0xb0,0x31,0x0,0xab,0xef,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0xdd,0xa3, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0xe0, 0xcd,0xdd,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e, 0x36,0x80,0xba,0x11,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb, 0x80,0x1e,0x36,0x40,0xe2,0xf9,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc2,0x42,0x29, 0x5e,0xbd,0x70,0x8d,0x1f,0x0,0xac,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc, 0x42,0x29,0x5e,0x7e,0x26,0x9a,0x37,0x0,0x15,0xfb,0xde,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x7c,0x10,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xba,0x41,0x29,0x5e,0x3a,0x65,0x13,0x13,0x0,0x58,0xcf,0xb2,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0x40,0x41,0x9, 0x11,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x15,0x43,0x29,0x5e,0x15,0xcf,0x52,0x2c,0x0, 0x9c,0x8e,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc2,0x42,0x29,0x5e,0xbd,0x70,0x8d, 0x1f,0x0,0xde,0xa1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb, 0x80,0x1e,0x36,0x80,0x9f,0xea,0x11,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x14,0x43,0x29, 0x5e,0x94,0x3e,0xef,0x22,0x0,0x9e,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac, 0xdc,0x9,0x5e,0x6,0xe0,0x97,0x30,0x0,0xd1,0x31,0x87,0x3a,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x86,0x42,0x29,0x5e,0x23,0xc7,0xe6,0x36,0x0,0x61,0x1d,0xb0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x20,0x4,0xf6,0x10,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xa0,0x7,0x35, 0x17,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0, 0xfd,0x1b,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94, 0xc,0x0,0xa2,0x1d,0xf1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c, 0x12,0xd6,0x30,0x80,0x4,0x49,0x5e,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x93,0x18,0xfa, 0x5d,0x1b,0x60,0x25,0x1b,0x80,0xe1,0xea,0x60,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x21, 0x43,0x29,0x5e,0xd7,0x2e,0x60,0x5,0x0,0xff,0x3,0xf0,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf1,0x42,0x29,0x5e,0x2b,0x23,0xf5,0x31,0x0,0xbe,0xb2,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0x80,0xb1,0x7,0x3f,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x91,0x1d, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b,0x43,0x29,0x5e,0x3c,0xe7,0xae,0x35,0x0, 0x84,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6, 0x30,0x0,0xcf,0x47,0x3a,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62, 0x1,0x33,0x39,0x0,0x46,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0xa2,0x2a, 0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x85,0x7b,0xc5,0x4,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91, 0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0x0,0xdb,0xa2,0x64,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xc0,0xab,0x27,0x16,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94,0xc,0x0,0xe,0x13,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1,0x7,0x0,0x43,0x27, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0x0, 0x6e,0x5b,0x4c,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70, 0x15,0x0,0x82,0xbb,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c, 0x12,0xd6,0x30,0x80,0xe4,0x73,0x66,0xb,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0x42,0x29, 0x5e,0xb2,0x95,0x22,0x6,0x0,0xe7,0x55,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91, 0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0x80,0xfc,0x98,0x64,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xe0,0xb6,0xbe,0x18,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0,0x3,0xff,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4d,0x42,0x29,0x5e,0xd7,0x30,0x1b,0x16,0x0,0x5d,0x88, 0xa8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0x42,0x29,0x5e,0x3b,0xbd,0x9c,0x2b,0x0, 0x70,0xa2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7, 0x1f,0xe0,0x3a,0xdf,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd, 0x3,0x14,0x3b,0x0,0x5,0xa7,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa, 0x5d,0x40,0x20,0x69,0x19,0x0,0x73,0x3f,0x50,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b, 0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0xc0,0xa0,0xe4,0x39,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0xa0,0x37,0xc,0x14,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xc0,0x7,0xfc,0x10,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x14,0x43,0x29,0x5e,0x94,0x3e,0xef,0x22,0x0,0x4c,0x1d, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0, 0x14,0xb2,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa,0x5d,0x40,0x20,0x69, 0x19,0x80,0xed,0x26,0x7c,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96, 0x33,0x32,0x2f,0x0,0xb0,0x51,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e, 0x5e,0x1c,0x12,0xd6,0x30,0x0,0x65,0x9d,0x45,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x76, 0x42,0x29,0x5e,0x2d,0xe0,0x26,0x1e,0x0,0x10,0x81,0xa9,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0x40,0x13,0x11,0x3d,0x2c,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x56,0x42,0x29,0x5e,0x38,0xb5,0x2,0x1b,0x0,0x50,0x29,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa4,0x55,0x29,0x5e,0x1e,0xac,0x5d,0x2c,0x80,0x86,0x5d, 0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0x40, 0x2e,0xf8,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6, 0x30,0xb0,0x51,0x2c,0xd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41, 0xd,0x6b,0x2e,0x0,0x78,0xa2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x98,0x42,0x29, 0x5e,0x24,0xf8,0x10,0x4,0x0,0x59,0xcb,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3, 0x42,0x29,0x5e,0x93,0x4,0x98,0xc,0x0,0xa5,0xd4,0xb0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x60,0x42,0x29,0x5e,0x6,0xbc,0xe1,0x2d,0x0,0xfa,0xe0,0xaf,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0xe0,0x14,0x74,0x1a,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4b,0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0,0xac,0x48, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0x80, 0xff,0xd9,0x48,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b, 0x2e,0x0,0xd4,0x1a,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0x78,0x2f,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29, 0x5e,0xb,0xaf,0x1e,0x2c,0x0,0x65,0xbb,0xab,0x4,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf, 0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0x50,0xe8,0x62,0x6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70,0x15,0x0,0x2c,0x7c,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0xa0,0x2,0xcc,0x12,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb7,0x42,0x29,0x5e,0xdb,0x4e,0xfc,0x7,0x0,0x56,0x54, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x0, 0x87,0xb8,0x45,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9d,0x42,0x29,0x5e,0xa7,0x8b,0xd6, 0x9,0x0,0x3a,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84, 0x84,0xe3,0x16,0x0,0xf2,0x18,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb, 0x5d,0x71,0xd3,0xe7,0x1f,0xc0,0xf6,0x39,0x21,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91, 0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0xc0,0x60,0xb9,0x3b,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0,0xe5,0x36,0xf0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc0,0x55,0x29,0x5e,0x70,0x93,0xa,0x11,0x0,0x26,0x6a,0xa3,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33,0x39,0x0,0xc8,0xaa, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x80, 0xcf,0xf,0x6b,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb,0x43,0x29,0x5e,0x52,0xe,0x9a, 0x1a,0x0,0xd6,0x95,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78, 0x51,0x1f,0x1b,0x0,0xf4,0x78,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0x42,0x29, 0x5e,0x10,0xab,0x9f,0x1c,0x0,0xac,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22, 0x43,0x29,0x5e,0x97,0x3e,0xf8,0x29,0x0,0x2e,0x74,0xae,0x4,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xac,0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0x83,0xb5,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0,0x81,0x1c,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94,0xc,0x0,0x7d,0x1c, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa7,0x42,0x29,0x5e,0x85,0x43,0x6a,0x1b,0x0, 0x7e,0xad,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e, 0x36,0x60,0x74,0x5b,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d,0x42,0x29,0x5e,0xee, 0x8,0xdd,0x2c,0x0,0x78,0xa6,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26, 0x5e,0x1c,0xc7,0xdf,0x4,0x80,0xca,0xed,0x3c,0x8,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdf, 0x41,0x29,0x5e,0xf1,0x50,0x5a,0x3,0x0,0xc2,0xec,0xcf,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4,0x57,0x29,0x5e,0x3d,0xf9,0x1c,0x10,0x0,0x41,0xe2,0xf4,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x22,0x43,0x29,0x5e,0x97,0x3e,0xf8,0x29,0x0,0x13,0xaa,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x40,0xab, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0, 0xc3,0x21,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29,0x5e,0xe9,0xdb,0x2, 0x3,0x0,0xb2,0x60,0xfe,0x8,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62, 0x1,0x33,0x39,0x0,0x6e,0xf9,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0x42,0x29, 0x5e,0x1b,0xd1,0x1f,0x16,0x0,0x25,0xad,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b, 0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0,0xe9,0xf4,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x62,0x52,0x29,0x5e,0xe9,0xdb,0x2,0x3,0x0,0xda,0x43,0xe9,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb,0x43,0x29,0x5e,0x52,0xe,0x9a,0x1a,0x0,0x9e,0x1c,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0x3,0x59, 0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0, 0x58,0x4f,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x63,0x42,0x29,0x5e,0x3c,0x4,0xf2, 0x2,0x0,0x3c,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe, 0xc5,0x8d,0x29,0x0,0x94,0x6e,0xd1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x31,0x42,0x29, 0x5e,0x23,0xce,0x11,0x1d,0x0,0x58,0xfe,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b, 0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x40,0x67,0xd0,0x16,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x3c,0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x9a,0x28,0xf0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0x78,0x31,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0xe4,0x9a, 0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0x80, 0x81,0xb0,0x24,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d, 0x6,0x80,0x29,0xea,0x47,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0, 0x9a,0x51,0x8,0x0,0xd7,0x89,0xe0,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3f,0x42,0x29, 0x5e,0xc2,0x59,0xc8,0x6,0x0,0xa0,0xf9,0xc1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37, 0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0x47,0x95,0xf0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x3b,0x42,0x29,0x5e,0xb,0xaf,0x1e,0x2c,0x0,0xd,0x15,0xe9,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x42,0x29,0x5e,0xfb,0x68,0xd7,0x1f,0x0,0x2d,0x2e,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc,0x4,0x0,0x37,0x13, 0xf1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0, 0xb1,0x27,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14, 0x3b,0x0,0x64,0x21,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0x3, 0x48,0x77,0x18,0x0,0x20,0x44,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6e,0x42,0x29, 0x5e,0xdf,0xf,0xa1,0x1e,0x0,0x39,0x23,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91, 0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0x80,0x71,0xbb,0x42,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xa0,0xfd,0x4,0x1f,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0x3,0x48,0x77,0x18,0x0,0xc7,0x2,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0xa0,0xd4,0x5d, 0x13,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x40,0x42,0x29,0x5e,0x2a,0x4d,0xaf,0x33,0x0, 0x7d,0xda,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x57,0x29,0x5e,0x47,0x25,0x2c, 0x21,0x0,0xb9,0xb6,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf6,0x42,0x29,0x5e,0xc4, 0xfa,0x1b,0x3a,0x0,0x62,0x72,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0x42,0x29, 0x5e,0xb2,0x95,0x22,0x6,0x0,0xbb,0x28,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b, 0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x80,0x47,0x11,0x40,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x84,0x84,0x25,0x5e,0x5a,0x2b,0xec,0xd,0x40,0x1d,0x88,0x1f,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x13,0x43,0x29,0x5e,0xd6,0xae,0x40,0x1a,0x0,0x14,0x1e,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0xf7,0x3e, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x43,0x29,0x5e,0xda,0x6a,0xb2,0x11,0x0, 0x92,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b,0x43,0x29,0x5e,0x3c,0xe7,0xae, 0x35,0x0,0x99,0xc6,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd, 0x3,0x14,0x3b,0x0,0xb8,0x39,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x43,0x29, 0x5e,0x18,0x63,0x66,0x29,0x0,0xb2,0x37,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9, 0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x34,0x1e,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x13,0x43,0x29,0x5e,0xd6,0xae,0x40,0x1a,0x0,0x5f,0xf,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd4,0xb4,0xf4,0x5d,0x14,0x8c,0xc2,0x28,0x0,0xea,0x73,0x98,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0x0,0xe3,0xa1, 0x48,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x42,0x29,0x5e,0x54,0x85,0xee,0x21,0x0, 0x2b,0x1e,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32, 0x2f,0x0,0xcb,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0, 0x9a,0x51,0x8,0x0,0xde,0x28,0xf0,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef, 0x5d,0xdb,0x80,0x1e,0x36,0x40,0xa2,0x99,0x1e,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc1, 0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0x43,0xb6,0xd1,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf8,0x42,0x29,0x5e,0xea,0x1c,0xeb,0x6,0x0,0x87,0x1d,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6c,0x42,0x29,0x5e,0x73,0x39,0x14,0xe,0x0,0xad,0xe5,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0xe0,0xa2,0x21, 0xa,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xcb,0x42,0x29,0x5e,0x73,0x3f,0x8a,0x25,0x0, 0xa6,0x11,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb, 0x3,0x0,0x61,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96, 0x33,0x32,0x2f,0x0,0x1,0x1f,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x98,0x42,0x29, 0x5e,0x24,0xf8,0x10,0x4,0x0,0x4,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50, 0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0xd5,0x60,0xe9,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0,0x65,0x1d,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0xea,0x35,0xf0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc5,0x42,0x29,0x5e,0xb3,0x23,0xf3,0x37,0x0,0x6e,0x14, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0, 0x5d,0x21,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd5,0x42,0x29,0x5e,0x84,0xad,0xe8, 0x36,0x0,0x9c,0x28,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc, 0x2c,0xc8,0x12,0x0,0x4c,0x31,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9d,0x42,0x29, 0x5e,0xa7,0x8b,0xd6,0x9,0x0,0xa3,0x21,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74, 0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0,0xe3,0xae,0xdf,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0xb8,0xb1,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x55,0x43,0x29,0x5e,0xb7,0x88,0x56,0x33,0x0,0x2c,0x2a,0xf0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x76,0x42,0x29,0x5e,0x2d,0xe0,0x26,0x1e,0x80,0x57,0x79, 0x79,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45,0x30,0x0, 0xed,0x58,0xa1,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdc,0x42,0x29,0x5e,0xc,0x6,0x26, 0xc,0x0,0xac,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0xe1,0x2e,0x5e,0xaf, 0xeb,0x36,0x3,0x0,0x73,0xa1,0x70,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x59,0x43,0x29, 0x5e,0xae,0x59,0x1d,0x11,0x0,0x9d,0xfc,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x71, 0xff,0x28,0x5e,0xd5,0x23,0x49,0x3a,0x0,0xca,0x35,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x5c,0x42,0x29,0x5e,0x4e,0xaa,0x21,0x2e,0x0,0x36,0xb0,0x86,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x33,0xff,0x28,0x5e,0x8a,0xde,0xab,0x18,0x80,0xe9,0xec,0x5a,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28,0x5e,0x2,0xc2,0xfc,0x1e,0x0,0x79,0xee, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x43,0x29,0x5e,0xbf,0x1d,0x28,0x1a,0x0, 0x91,0xf6,0xd1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9b,0xff,0x28,0x5e,0xc3,0xa0,0x16, 0xe,0x0,0x9d,0x5e,0xa0,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x14,0x43,0x29,0x5e,0x94, 0x3e,0xef,0x22,0x0,0x62,0x1,0xa8,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x96,0xfe,0x28, 0x5e,0x2b,0x43,0x22,0x2c,0x0,0xdb,0xae,0x58,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24, 0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x80,0xfb,0x9d,0x63,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x0,0xe4,0xe8,0x6a,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xa0,0xff,0x28,0x5e,0xc,0x1b,0x92,0x16,0x0,0xae,0x50,0xa1,0x7, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0x20,0xb3,0x82, 0x8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x80, 0x54,0xc3,0x5e,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa7,0x42,0x29,0x5e,0x85,0x43,0x6a, 0x1b,0x0,0x8a,0x81,0xa8,0x9,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc, 0x2c,0xc8,0x12,0x0,0x4b,0x15,0xf0,0xb,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x41,0x29, 0x5e,0x4a,0x90,0xdd,0x14,0x0,0x80,0x39,0x93,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24, 0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x0,0xa9,0xe3,0x4b,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0x40,0xbe,0xe6,0x21,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0xa0,0xd1,0x47,0x7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x80,0xd8,0x1d, 0x49,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9b,0xff,0x28,0x5e,0xc3,0xa0,0x16,0xe,0x0, 0xc,0xdb,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7, 0x1f,0x0,0xe2,0xe1,0x4b,0xb,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa,0x5d,0x40, 0x20,0x69,0x19,0x80,0x30,0xcd,0x43,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26, 0x5e,0x1c,0xc7,0xdf,0x4,0x0,0x7,0x8a,0x42,0xc,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86, 0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x95,0xf3,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb,0x43,0x29,0x5e,0x52,0xe,0x9a,0x1a,0x0,0x47,0xf5,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb,0x3,0x0,0x3d,0xc6,0xc8,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x0,0xfb,0x4a, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0, 0xc4,0x21,0xbf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45, 0x30,0x0,0x19,0xbb,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x48,0xff,0x28,0x5e,0x7e, 0xfd,0x20,0xe,0x0,0x99,0xe,0xa8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe7,0x42,0x29, 0x5e,0x8c,0xc3,0xe5,0x22,0x0,0xff,0xf1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xbe, 0x42,0x29,0x5e,0xe3,0x67,0x9f,0x1e,0x0,0xa1,0x71,0xa0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf8,0x42,0x29,0x5e,0xea,0x1c,0xeb,0x6,0x0,0x2f,0x2,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4c,0xff,0x28,0x5e,0x5,0xd7,0x5f,0x36,0x0,0x69,0x92,0xa0,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28,0x5e,0x2,0xc2,0xfc,0x1e,0x0,0xd,0x5c, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0, 0xb0,0x2b,0x93,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdf,0x42,0x29,0x5e,0x6,0x2,0xdb, 0x25,0x0,0x78,0x10,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa,0x43,0x29,0x5e,0xf, 0x89,0xed,0x11,0x0,0x48,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26, 0x5e,0x1c,0xc7,0xdf,0x4,0x80,0x1a,0xf8,0x47,0xf,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b, 0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0xa0,0xbb,0xb,0xe,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf7,0xff,0x28,0x5e,0x67,0x4a,0x9d,0x2e,0x0,0x85,0xf4,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc7,0x42,0x29,0x5e,0xfb,0x8c,0x21,0x25,0x0,0x63,0x3e,0xaa,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x0,0x8c,0xe4, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2b,0x43,0x29,0x5e,0x5a,0xe2,0xd7,0xf,0x0, 0xea,0x10,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7, 0x1f,0x0,0xc4,0xe6,0x42,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0xff,0x28,0x5e,0x72, 0x4b,0xf2,0x1e,0x80,0x74,0x2b,0x7f,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28, 0x5e,0x92,0xb1,0x45,0x30,0x0,0x7a,0xee,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86, 0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x5,0xee,0xa0,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xe0,0xe8,0xf9,0x10,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x80,0xf9,0x4d,0x7c,0x4, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x44,0x43,0x29,0x5e,0x7e,0x65,0x6,0x2d,0x0,0xd6,0xf, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xec,0x42,0x29,0x5e,0xb1,0xd5,0x72,0x36,0x0, 0xec,0xf1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45, 0x30,0x0,0x5f,0xcf,0x9b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x77,0xff,0x28,0x5e,0xf, 0x85,0x2,0x9,0x0,0x61,0xde,0x9f,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e, 0x5e,0x1c,0x12,0xd6,0x30,0x0,0x4a,0x81,0x45,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83, 0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0xe0,0xfc,0xa0,0x1a,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0,0x67,0x53,0xa1,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x39,0x43,0x29,0x5e,0xed,0xa7,0xe0,0x1b,0x0,0x83,0x26,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0,0xc0,0x9, 0xe0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8,0xff,0x28,0x5e,0x6b,0xfe,0x7b,0x16,0x0, 0xf1,0xf3,0xa0,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28,0x5e,0x2,0xc2,0xfc, 0x1e,0x0,0xd0,0xa3,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe4,0x42,0x29,0x5e,0x6c, 0xfa,0xc2,0x2e,0x0,0x92,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa, 0x5d,0x40,0x20,0x69,0x19,0x80,0xd0,0xea,0x4b,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24, 0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x60,0xff,0x5,0x1a,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc,0x4,0x0,0xde,0xeb,0xef,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0x3a,0x56,0xa0,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0xcc,0x76, 0xb2,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x43,0x29,0x5e,0xf0,0xd5,0xd6,0x7,0x0, 0x40,0xf9,0x79,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2f,0x43,0x29,0x5e,0xaa,0x2a,0x47, 0x11,0x0,0x95,0xf0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa7,0x42,0x29,0x5e,0x85, 0x43,0x6a,0x1b,0x0,0xaf,0x64,0xc1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x33,0xff,0x28, 0x5e,0x8a,0xde,0xab,0x18,0x0,0x89,0x4c,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x11, 0x0,0x29,0x5e,0xa0,0x94,0x1e,0x1b,0x0,0x3b,0x5b,0xd3,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4d,0xff,0x28,0x5e,0xc0,0x1f,0x5,0x1c,0x0,0x38,0x45,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc9,0xff,0x28,0x5e,0xba,0x12,0xe5,0x21,0x0,0xe9,0x79,0x66,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x40,0xc,0x11, 0xd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0, 0xd6,0xee,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xc7,0x76,0x73, 0x7,0x0,0xcc,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x38,0xff,0x28,0x5e,0xc, 0xdc,0xa6,0x27,0x0,0x95,0x4f,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0xff,0x28, 0x5e,0x72,0x4b,0xf2,0x1e,0x80,0x86,0x85,0x7b,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86, 0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x6b,0x3,0x5f,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0x1f,0x5d,0xa1,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x44,0x43,0x29,0x5e,0x7e,0x65,0x6,0x2d,0x0,0xaa,0xf0,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x0,0xa8,0xdb, 0xa0,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0xff,0x28,0x5e,0x4c,0x64,0x91,0x18,0x0, 0xed,0x58,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84, 0xc,0x0,0xcc,0x80,0xd3,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x49,0x43,0x29,0x5e,0x10, 0xc3,0xe,0x36,0x0,0x80,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xda,0x42,0x29, 0x5e,0xf,0x31,0x84,0x1d,0x0,0x1,0x3,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b, 0x43,0x29,0x5e,0x43,0x5b,0xec,0x2b,0x0,0xfa,0xf1,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x77,0xff,0x28,0x5e,0xf,0x85,0x2,0x9,0x0,0x32,0x5e,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4,0xff,0x28,0x5e,0x86,0x63,0xef,0xd,0x80,0x65,0xc6,0x61,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x8b,0xff,0x28,0x5e,0x13,0xee,0x3e,0x32,0x0,0x8a,0x93, 0x9f,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0xff,0x28,0x5e,0x4c,0x64,0x91,0x18,0x0, 0x42,0x3a,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d, 0x6,0x80,0x7b,0xd4,0x4b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c, 0x12,0xd6,0x30,0xc0,0xbe,0x58,0x7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0xff,0x28, 0x5e,0x4c,0x64,0x91,0x18,0x0,0x28,0xe7,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac, 0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0xc2,0x76,0xc7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x37,0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0xc9,0xf0,0xa7,0x4,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd7,0x42,0x29,0x5e,0xad,0x63,0xd5,0x3,0x0,0xea,0x3,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x73,0x42,0x29,0x5e,0xa5,0x8a,0xf,0x28,0x0,0xc9,0xd9, 0x9e,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86,0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0, 0x1f,0x5f,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0xb2,0x3,0x33, 0xb,0x0,0x9a,0xcb,0xa9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x59,0xff,0x28,0x5e,0xaa, 0x7c,0x5,0x6,0x0,0xd5,0x8a,0x95,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4c,0xff,0x28, 0x5e,0x5,0xd7,0x5f,0x36,0x0,0x86,0x52,0x9d,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81, 0xff,0x28,0x5e,0x2,0xc2,0xfc,0x1e,0x0,0xcb,0x8e,0x9f,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xce,0xff,0x28,0x5e,0xad,0x3e,0x52,0x2a,0x0,0xbd,0xc2,0x7f,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x68,0xff,0x28,0x5e,0xd6,0x4b,0x67,0x2e,0x0,0x64,0xdf,0xa0,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x15,0xca, 0xa9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0, 0x79,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc5,0x42,0x29,0x5e,0xb3,0x23,0xf3, 0x37,0x0,0xb7,0x92,0xe5,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0xa2,0x2a,0x5e,0x38, 0x82,0xb,0x12,0x0,0x4a,0xa7,0xc3,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5e,0xff,0x28, 0x5e,0xc5,0xf5,0x46,0x13,0x0,0x52,0xee,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c, 0xff,0x28,0x5e,0x92,0xb1,0x45,0x30,0x0,0x99,0x4b,0xa0,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x86,0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x11,0x4b,0xa0,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x0,0xb9,0xcb,0x89,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0x9c,0x91, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xff,0x28,0x5e,0x1f,0xc3,0xe8,0x38,0x0, 0x30,0xe6,0xc8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x45,0x43,0x29,0x5e,0x7d,0x33,0x1d, 0x35,0x0,0xe6,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d, 0xb0,0xa7,0x19,0x80,0xdb,0x30,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb, 0x5d,0x71,0xd3,0xe7,0x1f,0x80,0x65,0xe9,0x4b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83, 0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x0,0x4a,0xd9,0x42,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x33,0xff,0x28,0x5e,0x8a,0xde,0xab,0x18,0x0,0x70,0x86,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x46,0x42,0x29,0x5e,0x2c,0xb3,0xda,0x1,0x0,0x13,0xa5,0xaf,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5a,0x42,0x29,0x5e,0x86,0x68,0xf,0x1c,0x0,0xcc,0xc6, 0x82,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x36,0x43,0x29,0x5e,0xa2,0x46,0x66,0x22,0x0, 0xd2,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29,0x5e,0xe9,0xdb,0x2, 0x3,0x0,0x68,0xbd,0xf4,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9b,0xff,0x28,0x5e,0xc3, 0xa0,0x16,0xe,0x0,0x45,0xe6,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29, 0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x6b,0xc8,0xbc,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x96, 0xff,0x28,0x5e,0x5e,0x48,0x65,0x6,0x0,0xe4,0xf3,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfc,0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x0,0x49,0xf9,0xa,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x39,0xff,0x28,0x5e,0x7f,0x13,0xc7,0x2f,0x0,0xee,0x5a,0xa1,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x57,0xff,0x28,0x5e,0x96,0x9f,0x53,0x38,0x0,0xd5,0xbb, 0x8b,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0x3,0x48,0x77,0x18,0x0, 0x30,0x13,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x47,0x0,0x29,0x5e,0xee,0x4a,0xf5, 0x23,0x0,0x72,0xe1,0x59,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa5,0x0,0x29,0x5e,0x6c, 0xe6,0x5a,0x2e,0x0,0x8a,0x1,0x56,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28, 0x5e,0x2,0xc2,0xfc,0x1e,0x0,0x9f,0x73,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef, 0xfe,0x28,0x5e,0x10,0x4f,0x32,0x10,0x80,0x89,0x1,0x7f,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb,0x3,0x0,0xa1,0x1,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xba,0xff,0x28,0x5e,0xa9,0xa0,0x1c,0x5,0x80,0x9e,0x35,0x6f,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x62,0xff,0x28,0x5e,0x4c,0x64,0x91,0x18,0x0,0xfa,0x14, 0xa1,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0, 0xb4,0x86,0xc3,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x48,0xff,0x28,0x5e,0x7e,0xfd,0x20, 0xe,0x0,0x15,0x36,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2,0x0,0x29,0x5e,0x16, 0x89,0x56,0x3,0x0,0xb2,0x52,0x7c,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd3,0x42,0x29, 0x5e,0x75,0xdd,0x37,0x3,0x0,0x6a,0x93,0x86,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x46, 0x43,0x29,0x5e,0xf1,0xe,0xbb,0x20,0x0,0xfc,0x10,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0xd6,0xf,0xa8,0x4,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x8c,0xff,0x28,0x5e,0x64,0x8f,0x5f,0x3a,0x0,0x1c,0x3a,0xa0,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x1,0x42,0x29,0x5e,0x28,0x74,0xe5,0x1b,0x0,0x4e,0x85, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x41,0x29,0x5e,0x1e,0x7b,0x13,0x11,0x0, 0x6,0x86,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x42,0x29,0x5e,0x15,0x4b,0x99, 0x16,0x0,0x8,0xda,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0x42,0x29,0x5e,0x30, 0x11,0x35,0x16,0x0,0xb8,0xdc,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd9,0x41,0x29, 0x5e,0xb3,0x7c,0x9a,0x35,0x0,0xcc,0xdd,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1, 0x42,0x29,0x5e,0x28,0x74,0xe5,0x1b,0x0,0x80,0x68,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd4,0x41,0x29,0x5e,0x59,0x1a,0xc2,0x2b,0x0,0x6c,0x17,0xb0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1f,0x42,0x29,0x5e,0x52,0xc6,0x6d,0x10,0x0,0xcd,0xdd,0xb0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x30,0x42,0x29,0x5e,0xbb,0xf0,0xf7,0x30,0x0,0x42,0x8d, 0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12,0x42,0x29,0x5e,0xa5,0xb2,0x71,0x2a,0x0, 0x9,0xda,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2,0x42,0x29,0x5e,0xce,0xdb,0x80, 0x24,0x0,0x9,0xda,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb4,0x41,0x29,0x5e,0x56, 0xbb,0x2b,0x2,0x0,0x8,0x65,0xae,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x90,0xff,0x28, 0x5e,0x69,0xf0,0xf7,0x39,0x0,0xc9,0x50,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe2, 0x41,0x29,0x5e,0xfa,0x32,0x7,0x1c,0x0,0xd,0xda,0xb0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x1f,0x42,0x29,0x5e,0x52,0xc6,0x6d,0x10,0x0,0xff,0xdd,0xaf,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x32,0x42,0x29,0x5e,0x53,0xe8,0x59,0x25,0x0,0x68,0xd8,0xaf,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa0,0xff,0x28,0x5e,0xc,0x1b,0x92,0x16,0x0,0xc9,0x50, 0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0, 0x27,0xc6,0xae,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a, 0x13,0x0,0x1c,0x61,0xaa,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c,0xff,0x28,0x5e,0x64, 0xcc,0x8b,0x15,0x0,0xe6,0x40,0xa6,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe3,0x41,0x29, 0x5e,0x5b,0xbc,0x4f,0x24,0x0,0xf5,0xdd,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81, 0xff,0x28,0x5e,0x2,0xc2,0xfc,0x1e,0x0,0xb8,0x50,0xa5,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe1,0x41,0x29,0x5e,0xa5,0x7e,0xe3,0x13,0x0,0xaa,0xdc,0xb0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x40,0x42,0x29,0x5e,0x2a,0x4d,0xaf,0x33,0x0,0x9,0xda,0xb0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x0,0x9a,0x3b, 0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb,0x42,0x29,0x5e,0x38,0xec,0x99,0x2f,0x0, 0xc5,0xdd,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28,0x5e,0x2,0xc2,0xfc, 0x1e,0x0,0xb1,0x50,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86,0xff,0x28,0x5e,0x9, 0xa7,0x88,0x27,0x0,0x48,0x3a,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x42,0x29, 0x5e,0x15,0x4b,0x99,0x16,0x0,0xc6,0xdd,0xaf,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x14, 0x42,0x29,0x5e,0xeb,0x7c,0x70,0x38,0x0,0x54,0x68,0xae,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45,0x30,0x0,0x51,0x3a,0xa5,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x5f,0x42,0x29,0x5e,0x23,0xc4,0x8,0x4,0x0,0xcb,0xdd,0xb0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf3,0x41,0x29,0x5e,0x81,0xfd,0x61,0x2a,0x0,0x45,0xad, 0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc,0x42,0x29,0x5e,0x7e,0x26,0x9a,0x37,0x0, 0x63,0x8e,0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45, 0x30,0x0,0xbd,0x50,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xcf,0x41,0x29,0x5e,0xf7, 0x63,0xce,0x20,0x0,0x9,0xda,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf0,0x42,0x29, 0x5e,0x2,0xdf,0xdb,0x29,0x0,0x57,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf6, 0x42,0x29,0x5e,0xc4,0xfa,0x1b,0x3a,0x0,0x44,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x6d,0xf3,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfc,0x42,0x29,0x5e,0xb2,0x95,0x22,0x6,0x0,0x6d,0xf3,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf0,0x42,0x29,0x5e,0x2,0xdf,0xdb,0x29,0x0,0x45,0xf5, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf2,0x42,0x29,0x5e,0xfb,0xf,0xaa,0x3a,0x0, 0x45,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf1,0x42,0x29,0x5e,0x2b,0x23,0xf5, 0x31,0x0,0x6c,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x0,0x43,0x29,0x5e,0x5e, 0xc9,0x34,0x6,0x0,0x6c,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf2,0x42,0x29, 0x5e,0xfb,0xf,0xaa,0x3a,0x0,0x6f,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef, 0x42,0x29,0x5e,0xe2,0xce,0x4e,0xb,0x0,0x59,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x6d,0xf3,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x44,0xf5,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x76,0xb1,0x42,0x5e,0x48,0x37,0x46,0x1b,0x0,0x9b,0xea, 0xc2,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x42,0x29,0x5e,0xea,0x1c,0xeb,0x6,0x0, 0x6c,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0x4d,0x7c,0x6e, 0xf,0x0,0x6f,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d, 0x4c,0x53,0x16,0x0,0x9b,0x4e,0xb8,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xff,0x28, 0x5e,0xd3,0xba,0x9e,0x3a,0x0,0x47,0x62,0x8f,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf2, 0x42,0x29,0x5e,0xfb,0xf,0xaa,0x3a,0x0,0x4e,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfc,0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0xe7,0x5e,0xc2,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfa,0x42,0x29,0x5e,0x22,0xeb,0xc3,0x38,0x0,0x74,0xf3,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x58,0xa, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf5,0x42,0x29,0x5e,0x51,0x94,0xcb,0x31,0x0, 0x70,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3,0x43,0x29,0x5e,0x6f,0x5f,0xb6, 0x37,0x0,0x8b,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x0,0x43,0x29,0x5e,0x5e, 0xc9,0x34,0x6,0x0,0x50,0xc5,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29, 0x5e,0xc0,0x10,0x91,0xd,0x0,0x8c,0xf3,0xa7,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc, 0x42,0x29,0x5e,0xb2,0x95,0x22,0x6,0x0,0x48,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x30,0x43,0x29,0x5e,0xc0,0x42,0x65,0x1a,0x0,0x6f,0xf3,0xa7,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x12,0x42,0x29,0x5e,0xa5,0xb2,0x71,0x2a,0x0,0x42,0xdd,0xac,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4,0x42,0x29,0x5e,0xc6,0x56,0xc1,0x14,0x0,0x16,0xd6, 0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x77,0xff,0x28,0x5e,0xf,0x85,0x2,0x9,0x0, 0xc8,0x30,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xed,0x41,0x29,0x5e,0x6a,0xa,0x3b, 0x37,0x0,0xe3,0x6,0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xeb,0x41,0x29,0x5e,0xbe, 0x97,0x35,0x27,0x0,0xd9,0xd9,0xaf,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28, 0x5e,0x92,0xb1,0x45,0x30,0x0,0xc5,0x30,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5d, 0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0xe9,0x30,0xa5,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x1,0x42,0x29,0x5e,0x28,0x74,0xe5,0x1b,0x0,0x4c,0xd6,0xaf,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4d,0xff,0x28,0x5e,0xc0,0x1f,0x5,0x1c,0x0,0xc1,0x30,0xa5,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x47,0x42,0x29,0x5e,0xc7,0xab,0x3,0x8,0x0,0xd1,0x15, 0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xce,0xff,0x28,0x5e,0xad,0x3e,0x52,0x2a,0x0, 0x19,0x48,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86,0xff,0x28,0x5e,0x9,0xa7,0x88, 0x27,0x0,0x51,0x41,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x42,0x29,0x5e,0x40, 0xc,0xb6,0xb,0x0,0xaa,0x7c,0xa9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26, 0x5e,0x1c,0xc7,0xdf,0x4,0x0,0x35,0xe5,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b, 0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0xc0,0x4e,0x29,0x32,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x90,0xff,0x28,0x5e,0x69,0xf0,0xf7,0x39,0x0,0x89,0x45,0xa6,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x0,0x55,0xe1,0x42,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xaa,0xff,0x28,0x5e,0x86,0x11,0xd0,0x27,0x0,0xb4,0x30, 0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x80, 0xa3,0xb,0x15,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0xff,0x28,0x5e,0x86,0x11,0xd0, 0x27,0x0,0x3b,0xdd,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa,0x5d,0x40, 0x20,0x69,0x19,0xc0,0xb2,0x8,0x3d,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22,0x43,0x29, 0x5e,0x97,0x3e,0xf8,0x29,0x0,0xe0,0x6,0xb1,0xb,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa, 0xff,0x28,0x5e,0x86,0x11,0xd0,0x27,0x0,0xc7,0x30,0xa5,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x77,0xff,0x28,0x5e,0xf,0x85,0x2,0x9,0x0,0xc0,0x3a,0xa6,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe8,0x41,0x29,0x5e,0x53,0x6,0xe1,0x2e,0x0,0x6a,0xd8,0xb0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa0,0xff,0x28,0x5e,0xc,0x1b,0x92,0x16,0x0,0xae,0x30, 0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x41,0x29,0x5e,0x5c,0x7d,0x8c,0x28,0x0, 0xe,0xdb,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7, 0x19,0x48,0x26,0x4f,0x7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8b,0xff,0x28,0x5e,0x13, 0xee,0x3e,0x32,0x0,0x54,0x31,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5b,0x43,0x29, 0x5e,0x75,0xd1,0x5,0x0,0x0,0xe5,0xa2,0xfc,0xf,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83, 0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x80,0x17,0x21,0x14,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x24,0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x80,0x29,0xda,0x42,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x5e,0x41,0x29,0x5e,0x7a,0x2b,0x45,0x1a,0x0,0x3e,0xd6,0xaf,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0x0,0x4e,0x30, 0x32,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x80, 0x5f,0x4e,0x25,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26,0x5e,0x1c,0xc7,0xdf, 0x4,0xe0,0x5c,0xab,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d, 0xb0,0xa7,0x19,0x80,0x18,0xab,0x32,0x7,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25, 0x5e,0x28,0xfe,0x2d,0x6,0x80,0xff,0xea,0x42,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc4, 0xff,0x28,0x5e,0xc,0xb5,0x7f,0x1a,0x80,0x6,0xbd,0x5c,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0,0xda,0x60,0xa6,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xdd,0x41,0x29,0x5e,0xb,0x3e,0xd5,0x12,0x0,0xb9,0xf1,0xaf,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xfe,0x41,0x29,0x5e,0x1b,0x1d,0x93,0x4,0x0,0x0,0x90, 0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5e,0x56,0x29,0x5e,0x33,0xa,0x88,0x33,0x80, 0x27,0x3,0x7b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xee,0x41,0x29,0x5e,0xa4,0xf6,0x95, 0x20,0x0,0xc6,0xb2,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7, 0x3d,0x5d,0x14,0xc0,0xf2,0x8e,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x67,0xff,0x28, 0x5e,0x80,0x3e,0x6e,0x25,0x0,0x11,0xe1,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24, 0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x40,0x19,0xfd,0x1a,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0x40,0x8a,0x49,0x12,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x40,0x3b,0xa7,0x3f,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x52,0xff,0x28,0x5e,0x42,0x6d,0xd0,0x29,0x0,0xa,0x48, 0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc0,0x41,0x29,0x5e,0x8f,0x83,0x20,0x6,0x0, 0xb2,0xdb,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x42,0x29,0x5e,0x64,0x4,0x42, 0x16,0x0,0x66,0xae,0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xce,0xff,0x28,0x5e,0xad, 0x3e,0x52,0x2a,0x0,0xf1,0x68,0xa5,0x7,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c, 0x5e,0xa7,0x3d,0x5d,0x14,0x0,0xf2,0x1d,0x1f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24, 0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x0,0xbf,0xf5,0x47,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0x20,0xb8,0x36,0xd,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xcb,0x42,0x29,0x5e,0x73,0x3f,0x8a,0x25,0x0,0xad,0xdb,0xaf,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x68,0x42,0x29,0x5e,0x98,0xe1,0x6e,0xd,0x0,0x26,0xe7, 0xaf,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0, 0xb7,0xe1,0xb0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f, 0x7,0x0,0x6f,0xea,0x39,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7, 0x3d,0x5d,0x14,0xc0,0xc,0x64,0x1d,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb, 0x5d,0x6e,0xb9,0x8f,0x7,0xe0,0xd0,0x21,0xe,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8, 0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x80,0x9c,0x88,0x17,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0x80,0xd8,0xe8,0x46,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x40,0x15,0xcf,0x1a,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0x80,0x6c,0xdf, 0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x0, 0x2,0xb9,0x41,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe7,0x6c,0x2c,0x5e,0xf8,0x76,0x94, 0xe,0x0,0x6e,0x6f,0x15,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d, 0xb0,0xa7,0x19,0x20,0x1c,0xed,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb, 0x5d,0x6e,0xb9,0x8f,0x7,0xd0,0xbb,0x1d,0xe,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8, 0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x40,0x36,0x29,0x1c,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x0,0x7d,0xc9,0x16,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0xa0,0xde,0x52,0x12,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0xc0,0xc5,0x2, 0x11,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x60, 0xc8,0x2b,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa, 0xe,0x0,0x93,0x81,0xa2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d, 0xb0,0xa7,0x19,0x0,0x6c,0xe3,0x4d,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28, 0x5e,0x25,0xde,0xa,0xe,0x40,0xc6,0x36,0x29,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8, 0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x0,0x49,0xa8,0x15,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x80,0x5a,0x23,0x1c,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0xc0,0x48,0x40,0x28,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0xb5,0xdf, 0x42,0x7,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x80, 0x98,0xe3,0x4b,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x90,0xff,0x28,0x5e,0x69,0xf0,0xf7, 0x39,0x0,0x11,0x48,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e, 0xb9,0x8f,0x7,0x0,0xc8,0x26,0xd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0xff,0x28, 0x5e,0x4c,0x64,0x91,0x18,0x0,0x14,0x68,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc8, 0x41,0x29,0x5e,0x5d,0x99,0xcf,0x24,0x0,0x58,0xdc,0xb0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0,0xe,0x48,0xa5,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe7,0x41,0x29,0x5e,0xd1,0xcf,0x49,0x26,0x0,0xb0,0xdb,0xaf,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x9b,0xff,0x28,0x5e,0xc3,0xa0,0x16,0xe,0x0,0x56,0x69, 0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x0, 0x1b,0x1f,0xb0,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1c,0x42,0x29,0x5e,0x27,0x42,0x6e, 0x17,0x0,0xb3,0xdb,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf, 0xe1,0xd3,0x1e,0x0,0x56,0x69,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28, 0x5e,0x2,0xc2,0xfc,0x1e,0x0,0xe,0x68,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdf, 0x57,0x2c,0x5e,0xa,0x2d,0x9f,0x11,0x0,0x48,0xa3,0x15,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf3,0x40,0x29,0x5e,0xd1,0x55,0xc2,0x34,0x0,0xb8,0xe1,0xb0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0xd4,0xe9,0x43,0x12, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0x90,0xec, 0x80,0x9,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4a,0xff,0x28,0x5e,0xd8,0x29,0x6d,0x21,0x0, 0xe4,0x6b,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x41,0x29,0x5e,0xce,0x76,0xe6, 0x28,0x0,0x6a,0xae,0x56,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x42,0x29,0x5e,0x2a, 0xe3,0xeb,0x2c,0x0,0x15,0xd6,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb0,0x41,0x29, 0x5e,0x7c,0xce,0x30,0x0,0x0,0x5d,0xdc,0xb0,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xba, 0xff,0x28,0x5e,0xa9,0xa0,0x1c,0x5,0x0,0xe,0xb7,0x93,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x70,0xc4,0x2a,0x5e,0x8c,0xd2,0xee,0x18,0x80,0xff,0x4c,0x6b,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xff,0x41,0x29,0x5e,0xa0,0xc3,0x37,0xb,0x0,0xb2,0xa4,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb1,0x41,0x29,0x5e,0x31,0x60,0xb0,0x2d,0x0,0x2e,0x84, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x82,0x0,0x29,0x5e,0x21,0x89,0x40,0x0,0x0, 0xdd,0xf0,0xe6,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe1,0x41,0x29,0x5e,0xa5,0x7e,0xe3, 0x13,0x0,0x97,0xb9,0xab,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x63,0x0,0x29,0x5e,0xa, 0xc8,0x89,0x14,0x0,0x83,0xcc,0xbd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0x41,0x29, 0x5e,0x7b,0xb1,0x4d,0x3,0x0,0x2d,0x84,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfb, 0x41,0x29,0x5e,0xb3,0x2,0x4e,0x17,0x0,0x6,0x86,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd9,0x41,0x29,0x5e,0xb3,0x7c,0x9a,0x35,0x0,0x6c,0xd8,0xb0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe7,0x6c,0x2c,0x5e,0xf8,0x76,0x94,0xe,0x0,0x48,0xbe,0x23,0x9, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x0,0x42,0x29,0x5e,0x96,0xaf,0x5b,0x13,0x0,0x49,0x84, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x0, 0xbd,0xea,0x4f,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0, 0x29,0x0,0x8d,0x5,0x21,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25, 0xde,0xa,0xe,0x0,0x79,0x99,0x6f,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x60,0x41,0x29, 0x5e,0x10,0xb0,0x7f,0x27,0x0,0xd,0xdb,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb, 0x42,0x29,0x5e,0x38,0xec,0x99,0x2f,0x0,0x2f,0x84,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0x32,0xb7,0x4a,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd9,0x41,0x29,0x5e,0x5b,0xa8,0xcc,0x10,0x0,0xc,0xdb,0xb0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf,0x42,0x29,0x5e,0x4,0xd,0xd9,0x30,0x0,0xad,0x84, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x42,0x29,0x5e,0xc6,0x56,0xc1,0x14,0x0, 0x4f,0x85,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0x41,0x29,0x5e,0xe8,0x79,0x8e, 0x2a,0x0,0x9c,0xd4,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xab,0x41,0x29,0x5e,0xfe, 0xe8,0x29,0x1d,0x0,0x35,0xd7,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29, 0x5e,0x88,0xd8,0x6,0x9,0x0,0xf4,0xb2,0xa8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f, 0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x60,0x8e,0xa7,0x1f,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd,0x42,0x29,0x5e,0x7d,0xfe,0x9f,0x20,0x0,0x49,0xd7,0xb0,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf6,0x41,0x29,0x5e,0x29,0x9a,0x4d,0x0,0x0,0xd9,0xa2,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xd2,0x41,0x29,0x5e,0xee,0xc1,0x20,0x3a,0x0,0xee,0x86, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xed,0x67,0x2c,0x5e,0xd,0x23,0xca,0x20,0x0, 0xca,0x2,0x99,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29,0x5e,0xc0,0x10,0x91, 0xd,0x0,0x8,0x2e,0xf9,0xe,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf7,0x41,0x29,0x5e,0x41, 0xaa,0x8a,0x8,0x0,0xed,0x86,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x41,0x29, 0x5e,0x5c,0x7d,0x8c,0x28,0x0,0x25,0x87,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa, 0x42,0x29,0x5e,0xb5,0x58,0x4b,0x27,0x0,0xdc,0xdc,0xb0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0,0xb0,0x8a,0xa8,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x60,0xe1,0xc1,0x16,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x0,0xf6,0x37, 0x18,0x9,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x42,0x29,0x5e,0xca,0x31,0xe0,0x28,0x0, 0x11,0x16,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x0,0x50,0xe2,0x4d,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1, 0xb9,0x3c,0x8,0x0,0xdf,0xf5,0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x80,0x84,0xd1,0x76,0x4,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1, 0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x80,0x51,0xe1,0x6a,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x80,0x49,0x92,0x5f,0x6,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x0,0x89,0x1c,0x52,0x4, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x0,0xdf,0xf5, 0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x0, 0x18,0xd6,0x96,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b,0x5e,0x2c,0x5e,0xd8,0x2,0xf, 0x16,0x40,0x7b,0x6d,0x15,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e, 0xb9,0x8f,0x7,0x40,0xea,0x28,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28, 0x5e,0x25,0xde,0xa,0xe,0x80,0x91,0xea,0x4b,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3, 0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0xbf,0x54,0x6b,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x60,0x40,0x83,0x8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x50,0x23,0x30,0xd,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x60,0xe0,0xb0, 0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x80, 0xe8,0x8e,0x2c,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a, 0x13,0x80,0xf8,0x6,0x43,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f, 0xbf,0x0,0x29,0x80,0x4c,0xa9,0x7e,0xb,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb, 0x5d,0x6e,0xb9,0x8f,0x7,0x30,0xd7,0x16,0xe,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0, 0x68,0x2c,0x5e,0xf1,0x3a,0x83,0x20,0xe0,0x9c,0x5c,0x1b,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd9,0xe2,0x2e,0x5e,0x2d,0x5d,0x92,0xb,0xe0,0xdf,0x15,0x10,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0x4e,0x92,0x20,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x80,0xca,0xb0, 0x64,0x5,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x0, 0x1e,0xe4,0x4b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0x80,0x78,0xb6,0x68,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1, 0xb9,0x3c,0x8,0x0,0x92,0xd0,0x82,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x0,0x69,0xa7,0x82,0x8,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b, 0x57,0x2c,0x5e,0x1d,0x41,0x74,0x27,0x40,0x6d,0xfb,0x10,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x0,0x69,0xa7,0x82,0x8,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0xc0,0xbe,0xa6,0x3f,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0xce,0x20, 0x4d,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xa0, 0x1c,0x7,0x13,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c, 0x8,0x0,0x78,0xe7,0x4c,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1, 0xb9,0x3c,0x8,0x0,0x7d,0xdc,0x4c,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x0,0xd3,0x97,0x5b,0x9,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa, 0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0x1e,0x19,0x4d,0x2,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0xf9,0x32,0x4f,0x3,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0x4c,0xd5,0x85,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x80,0x5f,0x2f, 0x14,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x0, 0x5c,0xec,0x4c,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0x40,0xf9,0xbf,0xf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1, 0xb9,0x3c,0x8,0x80,0x1e,0x19,0x4d,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x80,0xfb,0x86,0x4e,0x1,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa, 0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x0,0xe3,0xc4,0x83,0x1,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xa0,0xb5,0xb2,0x19,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0x33,0xe3,0x43,0x3, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x80,0xb1,0xbf, 0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x90, 0x9d,0x37,0xd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa, 0xe,0x0,0xe1,0xe3,0xa2,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54, 0x8f,0x15,0x5,0x30,0xd7,0xe2,0xd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8, 0x5d,0xd3,0x4d,0xc9,0x18,0x40,0x68,0xc9,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f, 0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x0,0xe4,0xf9,0x42,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe7,0x6c,0x2c,0x5e,0xf8,0x76,0x94,0xe,0x60,0x71,0xba,0x12,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0xa0,0x4a,0xe,0x1b,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x10,0xcb,0x3, 0xe,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x93,0x18,0xfa,0x5d,0x1b,0x60,0x25,0x1b,0x0, 0xcd,0xa1,0x52,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa, 0xe,0x80,0x97,0x91,0x6f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54, 0x8f,0x15,0x5,0x0,0xbf,0xeb,0x7a,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a, 0x5e,0xdb,0xe8,0x6a,0x13,0x80,0x82,0xbb,0x3b,0xd,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3, 0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x0,0xb4,0xa3,0x64,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xaf,0x61,0x2c,0x5e,0x4,0x50,0x7a,0xf,0x0,0x41,0x7e,0x99,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0xa0,0x70,0x18,0x16,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0x31,0x8d, 0xa6,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xa0, 0x78,0xf3,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0x80,0x0,0xca,0x7d,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb, 0xe8,0x6a,0x13,0x20,0xe8,0x86,0x8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20, 0x5e,0x9f,0xbf,0x0,0x29,0x0,0x7d,0xf8,0x42,0x7,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8, 0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x0,0x19,0xa2,0x8,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0xfb,0xde,0x6c,0xb,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x0,0xf1,0x31,0x7b,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x48,0x56,0x29,0x5e,0x91,0xdc,0x30,0x33,0x0,0x2f,0x17, 0x76,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x40, 0x31,0xbf,0x24,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9, 0x18,0x40,0x6e,0xd3,0x24,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25, 0xde,0xa,0xe,0x0,0xc6,0xe2,0x4b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x0,0x78,0xe7,0x4c,0x2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8, 0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x0,0xd6,0x8c,0x66,0x6,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x40,0x6c,0xe0,0x12,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0x1b,0x9b,0x20,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x0,0xc9,0x1e, 0x14,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x80, 0x81,0x59,0x6d,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c, 0x8,0x0,0x2a,0xca,0x82,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1, 0xb9,0x3c,0x8,0x0,0x69,0xc,0x9d,0xd,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x80,0x65,0xa9,0x72,0x0,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa, 0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0x23,0xe,0x4d,0x7,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0x1e,0x19,0x4d,0x4,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0x23,0xe,0x4d,0x8, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0x90,0x44, 0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xad,0xa4,0x50,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0xc0,0x95,0x95,0x3d,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x0,0xba,0xba,0x84,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xe9,0xb5,0xa9,0x9,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0xf1,0x6a,0x51,0x0,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x1, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xba,0xba, 0x84,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xdc,0xca,0x85,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x80,0xf1,0x6a,0x51,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb, 0xe8,0x6a,0x13,0x40,0x57,0xe1,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x5,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f,0x86,0x4,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x40,0xd8,0xab,0x28,0x5, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xc0,0xc8,0xac, 0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xba,0xba,0x84,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x0,0xdc,0xca,0x85,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x0,0xdc,0xca,0x85,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x0,0xba,0xba,0x84,0xc,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x1e,0x14,0x84,0x9,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x6,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x4, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6, 0x4f,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0x7d,0x3f,0x86,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x0,0x2f,0xe6,0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0xf0,0x67,0x6d,0x4,0x0,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x3,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0xb1,0xf1,0x5a,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f,0x86,0xa, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xba,0xba, 0x84,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x0, 0x7e,0xfd,0x7d,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x0,0x2f,0xe6,0x4f,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb, 0xe8,0x6a,0x13,0x80,0x90,0xc6,0x3b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20, 0x5e,0x9f,0xbf,0x0,0x29,0x0,0x0,0xb,0x48,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f,0x86,0x4,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0xc,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x5, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x1e,0x14, 0x84,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xba,0xba,0x84,0x7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9, 0x18,0x60,0xbf,0x86,0x8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x80,0x17,0xaa,0x75,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28, 0x5e,0x25,0xde,0xa,0xe,0x0,0x1d,0x83,0x58,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x44,0x2a,0x9f,0x8,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f,0x86,0xb,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x1, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xdc,0xca, 0x85,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xdc,0xca,0x85,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x0,0x2f,0xe6,0x4f,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd9,0xe2,0x2e,0x5e,0x2d, 0x5d,0x92,0xb,0x80,0x2e,0x34,0x46,0x6,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x3,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xba,0xba,0x84,0x4,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f,0x86,0x12,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x80,0x9d,0x92,0x5f,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xba,0xba, 0x84,0xc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf3,0x41,0x29,0x5e,0x81,0xfd,0x61,0x2a,0x0, 0xc,0xbc,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x80,0x8d,0x11,0x52,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x80,0xf1,0x6a,0x51,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x8,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xfa,0xfd,0x86,0x3,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x0, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f, 0x86,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xaf,0x21,0x53,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0, 0x29,0x40,0x40,0xec,0x2c,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x0,0x9c,0xd2,0x84,0x9,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xaf,0x21,0x53,0x0,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xc0,0x8e,0xdd,0x12,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xfa,0xfd,0x86,0x9, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x80,0xd3,0x46, 0x46,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80, 0x8d,0x11,0x52,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2, 0x1e,0x80,0xf1,0x6a,0x51,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55, 0xa7,0xb2,0x1e,0x0,0xaf,0x21,0x53,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac, 0x57,0x55,0xa7,0xb2,0x1e,0x0,0x7d,0x3f,0x86,0x4,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1, 0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x80,0xa0,0x4b,0x6f,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0xc0,0xaf,0x72,0x39,0x4,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0xaf,0x21,0x53,0xb, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11, 0x52,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0, 0x2f,0xe6,0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x21,0xac,0x57,0xce,0xa8,0x72, 0x39,0x0,0xba,0xba,0x84,0x9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55, 0xa7,0xb2,0x1e,0x0,0x2f,0xe6,0x4f,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac, 0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0xa,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3, 0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0xe0,0x6c,0xdf,0x12,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x80,0xe8,0xa3,0x5f,0x8,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0xb,0xd0,0x52,0xb, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11, 0x52,0x7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0, 0xdc,0xca,0x85,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2, 0x1e,0x80,0x8d,0x11,0x52,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3, 0x4d,0xc9,0x18,0xe0,0x70,0xb3,0x1f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac, 0x57,0x55,0xa7,0xb2,0x1e,0x0,0xc6,0x6b,0x9e,0x9,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6, 0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0x2f,0xe6,0x4f,0x6,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0x67,0x74,0xaa,0x3,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0xb,0xd0,0x52,0x8, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xec,0x20,0xac,0x57,0xc,0x63,0x18,0x35,0x0,0x7d,0x3f, 0x86,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80, 0xb2,0x95,0x5d,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0x80,0x9,0x32,0x62,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86, 0x6c,0x3e,0x24,0x80,0xa9,0x3a,0x5d,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5f,0xee,0xc7, 0x57,0x69,0x39,0x62,0x33,0x40,0x6e,0x62,0x38,0x1,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d, 0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80,0x1,0x57,0x37,0x0,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0xc0,0xcd,0xbb,0x1f,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x68,0xee,0xc7,0x57,0x63,0xff,0xd5,0x6,0x80,0xb2,0x95,0x5d,0x2, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80,0x2c,0xe2, 0x38,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x65,0xee,0xc7,0x57,0xb4,0xa,0xf7,0x34,0x80, 0x76,0x7f,0x5c,0x7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e, 0x24,0x80,0xde,0x98,0x37,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86, 0x6c,0x3e,0x24,0x0,0x84,0x1,0x5d,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7, 0x57,0x86,0x6c,0x3e,0x24,0x0,0x52,0xb8,0x5d,0xa,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d, 0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80,0x1,0x57,0x37,0x5,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80,0xf8,0x67,0x26,0x0,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x40,0x6e,0x62,0x38,0x7, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0xc0,0x4c,0x52, 0x37,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80, 0xa9,0x3a,0x5d,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x61,0xee,0xc7,0x57,0xb0,0x67,0xd3, 0x5,0x80,0xb2,0x95,0x5d,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x63,0xee,0xc7,0x57,0xd8, 0x66,0x0,0x26,0x40,0x6e,0x62,0x38,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7, 0x57,0x86,0x6c,0x3e,0x24,0x40,0x6e,0x62,0x38,0x2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8, 0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x20,0x32,0x96,0x8,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x0,0xd3,0x6e,0x38,0x4,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x80,0x49,0x32,0x67,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6a,0xee,0xc7,0x57,0x62,0x54,0xe7,0xf,0x80,0x7b,0x74, 0x5c,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0, 0xaf,0x21,0x53,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2, 0x1e,0x80,0xf1,0x6a,0x51,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55, 0xa7,0xb2,0x1e,0x0,0xfa,0xfd,0x86,0xb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20, 0x5e,0x9f,0xbf,0x0,0x29,0x80,0x26,0xa0,0x52,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6, 0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0xfa,0xfd,0x86,0x4,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0xf6,0x69,0x4e,0x2,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0xfa,0xfd,0x86,0x3, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x95,0x7e, 0x5e,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x33,0xf3,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0, 0xfa,0xfd,0x86,0xb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48, 0x1f,0xc0,0x2d,0x31,0x3a,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42, 0x3e,0x48,0x1f,0x80,0x29,0x8,0x3b,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7, 0x57,0x42,0x3e,0x48,0x1f,0xc0,0x2d,0x31,0x3a,0x4,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0, 0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0xc0,0x2d,0x31,0x3a,0x4,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x80,0x29,0x8,0x3b,0x4,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0xa0,0x89,0xb8,0x12,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x20,0x98,0xcd, 0x1f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x0, 0x45,0xdf,0xa2,0x18,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48, 0x1f,0x80,0x95,0x7e,0x5e,0x7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42, 0x3e,0x48,0x1f,0x80,0x95,0x7e,0x5e,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7, 0x57,0x42,0x3e,0x48,0x1f,0xc0,0x2d,0x31,0x3a,0x0,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0, 0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x0,0xf8,0xe7,0x77,0x2,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x0,0xc2,0xcc,0x62,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0xc0,0x2d,0x31,0x3a,0x1, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x80,0xdf,0x0, 0x70,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x0, 0xa1,0x1,0x43,0x8,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48, 0x1f,0x0,0x3e,0xf9,0x5d,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42, 0x3e,0x48,0x1f,0x0,0x3e,0xf9,0x5d,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e, 0x5e,0x54,0x8f,0x15,0x5,0xa0,0x69,0x80,0x17,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0, 0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x0,0x3e,0xf9,0x5d,0x3,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x0,0x3e,0xf9,0x5d,0x1,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0x1e,0x14,0x84,0x9, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x0,0x1c,0xe9, 0x5c,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80, 0x8d,0x11,0x52,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2, 0x1e,0x0,0x7d,0x3f,0x86,0x9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3, 0x4d,0xc9,0x18,0xe0,0x31,0xa5,0x1f,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac, 0x57,0x55,0xa7,0xb2,0x1e,0x0,0x7d,0x3f,0x86,0x3,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6, 0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0x6,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x0,0x17,0xa4,0x1f,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0x3, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x80,0xca,0xe0, 0x62,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80, 0x8d,0x11,0x52,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2, 0x1e,0x80,0x8d,0x11,0x52,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55, 0xa7,0xb2,0x1e,0x0,0x7d,0x3f,0x86,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac, 0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0x3,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6, 0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0x1,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0xc,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0xba,0xba,0x84,0x7, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11, 0x52,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xe0, 0xe6,0xdb,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0x40,0x4b,0x38,0x11,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3, 0x4d,0xc9,0x18,0xc0,0x2e,0xdf,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e, 0x5e,0x54,0x8f,0x15,0x5,0x80,0x25,0x47,0x46,0x13,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8, 0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x60,0x56,0x2d,0x14,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x80,0x82,0x8c,0x63,0x4,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xa0,0x17,0xd3,0x1f,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x36,0x8d,0xa1,0x57,0x8c,0xc8,0x1c,0x32,0x0,0xcd,0xcc, 0x4c,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22,0x8d,0xa1,0x57,0x14,0x5a,0xdc,0x28,0x0, 0x5c,0x8f,0x82,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74,0xb1,0x42,0x5e,0xd5,0x17,0x82, 0x7,0x0,0x3c,0x92,0xc1,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xba,0x42,0x29,0x5e,0x25, 0xdf,0xce,0x1f,0x0,0xbc,0x60,0xb2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0xae,0x42, 0x5e,0xec,0x6e,0x8f,0x20,0x0,0x93,0xe3,0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74, 0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0,0x8d,0xb5,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf8,0x41,0x29,0x5e,0xa5,0x83,0xf2,0x34,0x0,0xa6,0xff,0xf0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x47,0xb1,0x42,0x5e,0xb9,0x93,0xaf,0x1,0x0,0xb0,0xe3,0xc2,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xee,0x41,0x29,0x5e,0xa4,0xf6,0x95,0x20,0x0,0x13,0xb3, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x41,0x29,0x5e,0x1e,0x7b,0x13,0x11,0x0, 0x88,0xb5,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22,0x42,0x29,0x5e,0xc8,0xe7,0x5e, 0x8,0x0,0xb0,0xb2,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8c,0x6c,0x45,0x5e,0xa3, 0xfa,0x59,0x14,0x0,0xb0,0x18,0x76,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x41,0x29, 0x5e,0xa5,0x83,0xf2,0x34,0x0,0x3f,0xb7,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xee, 0x41,0x29,0x5e,0xa4,0xf6,0x95,0x20,0x0,0xdc,0xb1,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x22,0x42,0x29,0x5e,0xc8,0xe7,0x5e,0x8,0x0,0x23,0xb7,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x17,0x42,0x29,0x5e,0xbb,0xea,0xb0,0x31,0x0,0xf6,0xb2,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf0,0x42,0x29,0x5e,0x2,0xdf,0xdb,0x29,0x0,0x67,0x1d, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0xb2,0x3,0x33,0xb,0x0, 0x24,0xb6,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0xe2,0xce,0x4e, 0xb,0x0,0x9a,0xcb,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0, 0xc1,0x39,0x32,0x0,0x23,0x1e,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29, 0x5e,0x6c,0x31,0x84,0xc,0x0,0x38,0x63,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c, 0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x87,0xe9,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0x6a,0x22,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x84,0x1c,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x0,0x9a,0x28, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd,0x42,0x29,0x5e,0x7d,0xfe,0x9f,0x20,0x0, 0xcf,0x13,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29,0x5e,0xb,0xaf,0x1e, 0x2c,0x0,0x92,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0xa2,0x2a,0x5e,0x38, 0x82,0xb,0x12,0x0,0x80,0x88,0xc3,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7a,0x1f,0x2, 0x5e,0x9,0xbe,0x29,0x25,0x40,0x87,0xfe,0x19,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27, 0x43,0x29,0x5e,0x8f,0x5c,0x1a,0xd,0x0,0xe9,0x87,0xee,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0x2f,0x22,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xbb,0x42,0x29,0x5e,0xf5,0x27,0x97,0x24,0x0,0xd6,0xf6,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf5,0x42,0x29,0x5e,0x51,0x94,0xcb,0x31,0x0,0x17,0x1e, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0, 0x85,0x23,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33, 0x39,0x0,0x9b,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0x42,0x29,0x5e,0x3b, 0xbd,0x9c,0x2b,0x0,0x1d,0xfd,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x36,0x42,0x29, 0x5e,0x41,0x9,0x12,0x26,0x0,0xe4,0xf6,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea, 0x57,0x29,0x5e,0x47,0x25,0x2c,0x21,0x0,0x8d,0xb6,0xee,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfc,0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x29,0x89,0xc1,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4,0x57,0x29,0x5e,0x3d,0xf9,0x1c,0x10,0x0,0x40,0xc3,0xc1,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x39,0x43,0x29,0x5e,0xed,0xa7,0xe0,0x1b,0x0,0xcf,0x1d, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c,0x55,0x29,0x5e,0x95,0x82,0x6a,0x18,0x0, 0xaf,0x87,0x8f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc,0x2c,0xc8, 0x12,0x0,0x7a,0x9e,0xe7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0xa0,0xca,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29, 0x5e,0x7,0xe0,0x11,0x25,0x0,0x62,0x28,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c, 0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0,0xee,0x21,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0x1d,0xf6,0xa6,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x23,0xf8,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x79,0x1f,0x2,0x5e,0xa9,0x19,0xb8,0x20,0x0,0x4d,0x76, 0x4b,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0, 0x28,0xf8,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x60,0x42,0x29,0x5e,0x6,0xbc,0xe1, 0x2d,0x0,0x34,0x58,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1d,0x42,0x29,0x5e,0xe9, 0x27,0x60,0x0,0x0,0x4a,0xf5,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1d,0x43,0x29, 0x5e,0x1,0x96,0xcf,0x24,0x0,0xc9,0xfc,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe, 0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0,0x4a,0xfb,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0xee,0xd1,0xdc,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfd,0x42,0x29,0x5e,0x13,0x8d,0x8f,0xe,0x0,0x7d,0x75,0xdd,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb,0x3,0x0,0x34,0x22, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5a,0x42,0x29,0x5e,0x86,0x68,0xf,0x1c,0x0, 0x3f,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39, 0x32,0x0,0xea,0xa,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd,0x42,0x29,0x5e,0x7d, 0xfe,0x9f,0x20,0x0,0x95,0xb5,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29, 0x5e,0x7d,0x4c,0x53,0x16,0x0,0xc2,0x1d,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b, 0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0,0xc3,0x21,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xa2,0x42,0x29,0x5e,0xb4,0x9b,0x65,0x12,0x0,0x3,0xf7,0xa6,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0xd7,0xbc,0xee,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5a,0x42,0x29,0x5e,0x86,0x68,0xf,0x1c,0x0,0x64,0x22, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd5,0x42,0x29,0x5e,0x84,0xad,0xe8,0x36,0x0, 0x87,0xa,0xe7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf6,0x42,0x29,0x5e,0xc4,0xfa,0x1b, 0x3a,0x0,0x5c,0xb5,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62, 0x1,0x33,0x39,0x0,0xb,0xf7,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x92,0x42,0x29, 0x5e,0xf0,0x9d,0xc4,0x14,0x0,0x16,0x1e,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac, 0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0xd1,0xfc,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x1f,0x2,0x5e,0x60,0x4f,0x1d,0x29,0xc0,0x2a,0xd8,0x19,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6d,0x42,0x29,0x5e,0x1b,0xd1,0x1f,0x16,0x0,0x36,0x13,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x32,0x20, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74,0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0, 0xc3,0x21,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xbc,0x42,0x29,0x5e,0x3a,0x57,0xf1, 0xd,0x0,0x2c,0x1c,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x31,0x42,0x29,0x5e,0x23, 0xce,0x11,0x1d,0x0,0xe1,0x5f,0xe7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29, 0x5e,0x9c,0x70,0x12,0x39,0x0,0x27,0x1d,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74, 0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0,0xb4,0xa,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x27,0x1d,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0,0x81,0xb6,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x54,0x43,0x29,0x5e,0x1e,0x30,0x8b,0x8,0x0,0x24,0x7c, 0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b,0x2e,0x0, 0x40,0xb7,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x98,0x42,0x29,0x5e,0x24,0xf8,0x10, 0x4,0x0,0xc6,0xd3,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29,0x5e,0x88, 0xd8,0x6,0x9,0x0,0x27,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x29,0x42,0x29, 0x5e,0x8a,0x6d,0xa5,0x1d,0x0,0xcf,0xe8,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe, 0x43,0x29,0x5e,0xda,0x6a,0xb2,0x11,0x0,0x7f,0x1d,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xcb,0x42,0x29,0x5e,0x73,0x3f,0x8a,0x25,0x0,0xea,0x94,0xe7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0xc3,0xfa,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x33,0x43,0x29,0x5e,0x1f,0x8a,0x61,0xd,0x0,0xd9,0xdc, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0, 0x92,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x42,0x29,0x5e,0x54,0x85,0xee, 0x21,0x0,0xa1,0xf4,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xcb,0x42,0x29,0x5e,0x73, 0x3f,0x8a,0x25,0x0,0x2f,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0x1f,0x2, 0x5e,0x5a,0x9f,0xc0,0x12,0x80,0x90,0x9,0x19,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1, 0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0x76,0x8c,0xee,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0xac,0x22,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf,0x24,0x0,0x87,0x28,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x40,0x42,0x29,0x5e,0x2a,0x4d,0xaf,0x33,0x0,0x72,0xf4, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1,0x7,0x0, 0x8f,0x94,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33, 0x39,0x0,0xec,0xf9,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0x2f,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29, 0x5e,0x88,0xd8,0x6,0x9,0x0,0xc0,0x2a,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12, 0x42,0x29,0x5e,0xa5,0xb2,0x71,0x2a,0x0,0x1,0xbd,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x3,0x25,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf0,0x56,0x29,0x5e,0x83,0xad,0xe6,0x2d,0x0,0x55,0xdd,0xc1,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xbb,0x42,0x29,0x5e,0xf5,0x27,0x97,0x24,0x0,0x89,0xfa, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0, 0xbe,0xd9,0xcd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb7,0x42,0x29,0x5e,0xdb,0x4e,0xfc, 0x7,0x0,0xc2,0x1d,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7, 0xe0,0x11,0x25,0x0,0x47,0x21,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa7,0x42,0x29, 0x5e,0x85,0x43,0x6a,0x1b,0x0,0x3d,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d, 0x42,0x29,0x5e,0xee,0x8,0xdd,0x2c,0x0,0xa6,0x8a,0xee,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0xd8,0x21,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0xa2,0xde,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xea,0x57,0x29,0x5e,0x47,0x25,0x2c,0x21,0x0,0xe9,0xf, 0xe7,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x79,0x1f,0x2,0x5e,0xa9,0x19,0xb8,0x20,0x60, 0x29,0xa8,0x1e,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc, 0x4,0x0,0x17,0xed,0xe6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd, 0x27,0x94,0xc,0x0,0xa2,0x19,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0x42,0x29, 0x5e,0x70,0x7b,0xc0,0x6,0x0,0xf7,0x18,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83, 0x42,0x29,0x5e,0x54,0x85,0xee,0x21,0x0,0x27,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x55,0x42,0x29,0x5e,0x7b,0x3e,0xa8,0x15,0x0,0x1e,0xb6,0xee,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x42,0x42,0x29,0x5e,0xc6,0x4b,0x35,0x0,0x0,0x33,0xfa,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0x1e,0x22, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x41,0x29,0x5e,0x1b,0x1d,0x93,0x4,0x0, 0x71,0xba,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x92,0x42,0x29,0x5e,0xf0,0x9d,0xc4, 0x14,0x0,0x33,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb,0x43,0x29,0x5e,0x52, 0xe,0x9a,0x1a,0x0,0x90,0x3e,0xe7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29, 0x5e,0xdd,0x27,0x94,0xc,0x0,0x36,0xfb,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12, 0x43,0x29,0x5e,0x69,0x5c,0xad,0x33,0x0,0x5b,0x23,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0x14,0xdd,0xa6,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xa2,0x42,0x29,0x5e,0xb4,0x9b,0x65,0x12,0x0,0x17,0x1e,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x61,0x97,0xdf,0x57,0xaf,0xb2,0x73,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x36,0x42,0x29,0x5e,0x41,0x9,0x12,0x26,0x0, 0x33,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9d,0x42,0x29,0x5e,0xa7,0x8b,0xd6, 0x9,0x0,0x97,0x3e,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x78,0x1f,0x2,0x5e,0xe, 0x52,0x1b,0x17,0x60,0x40,0x25,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29, 0x5e,0x78,0x51,0x1f,0x1b,0x0,0xed,0x8a,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37, 0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0x1e,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x7d,0x60,0xdc,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0,0x11,0xf4,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x27,0x42,0x29,0x5e,0xf2,0xb7,0x8e,0xf,0x0,0x4c,0xf3, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x43,0x29,0x5e,0xbf,0xe8,0x62,0x33,0x80, 0x9f,0xe2,0x74,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5b,0x43,0x29,0x5e,0x75,0xd1,0x5, 0x0,0x0,0x81,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe, 0xc5,0x8d,0x29,0x0,0x37,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x40,0x42,0x29, 0x5e,0x2a,0x4d,0xaf,0x33,0x0,0x72,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50, 0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0x6d,0xf7,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc3,0x42,0x29,0x5e,0x66,0x39,0x85,0x27,0x0,0x0,0x3e,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0x1c,0x3e,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x72,0xfa, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0, 0xb0,0x3a,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x42,0x29,0x5e,0x64,0x4,0x42, 0x16,0x0,0x4d,0xed,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x43,0x29,0x5e,0x18, 0x63,0x66,0x29,0x0,0xe2,0xf3,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29, 0x5e,0x9c,0x70,0x12,0x39,0x0,0xb8,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xba, 0x42,0x29,0x5e,0x25,0xdf,0xce,0x1f,0x0,0xf8,0xfb,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe,0x43,0x29,0x5e,0xda,0x6a,0xb2,0x11,0x0,0x59,0x8a,0xee,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x8a,0x42,0x29,0x5e,0xae,0x28,0x34,0x34,0x0,0x26,0xfb,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6e,0x42,0x29,0x5e,0xdf,0xf,0xa1,0x1e,0x0,0xca,0xcc, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0xa2,0x2a,0x5e,0x38,0x82,0xb,0x12,0x0, 0x2,0xae,0xc1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f, 0x1b,0x0,0x94,0x84,0xee,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29,0x5e,0x88, 0xd8,0x6,0x9,0x0,0x24,0xfd,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0x43,0x29, 0x5e,0xbc,0x6a,0xae,0x3a,0x0,0xb5,0x4,0xe7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1, 0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0xa5,0xe8,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x0,0x42,0x29,0x5e,0x96,0xaf,0x5b,0x13,0x0,0x80,0x43,0xdc,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x74,0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0,0xca,0xdc,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x26,0x5c, 0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0, 0x9d,0x9a,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x92,0x42,0x29,0x5e,0x13,0xb7,0x6a, 0x36,0x0,0x8d,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x57,0x29,0x5e,0x3d, 0xf9,0x1c,0x10,0x0,0x5f,0x23,0xc2,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5f,0x42,0x29, 0x5e,0x2a,0xb5,0xc9,0x25,0x0,0xca,0xb0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4, 0x3e,0xd2,0x58,0x53,0x16,0x6f,0x31,0x0,0x5c,0x8f,0x82,0x45,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0xfb,0x99,0xef,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0xbf,0x90,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x0,0x2,0xaa, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0, 0x36,0x90,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b, 0x2e,0x0,0x75,0xab,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0, 0xc1,0x39,0x32,0x0,0xb1,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x13,0x43,0x29, 0x5e,0xd6,0xae,0x40,0x1a,0x0,0x31,0x86,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe, 0x3d,0xd2,0x58,0xb8,0x81,0x9c,0x1e,0x80,0x97,0x6e,0x72,0x55,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33,0x39,0x0,0x34,0x99,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xa,0x43,0x29,0x5e,0xf,0x89,0xed,0x11,0x0,0x2f,0x74,0xe8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe,0x43,0x29,0x5e,0xda,0x6a,0xb2,0x11,0x0,0x66,0x83, 0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0, 0x87,0x9b,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf, 0x24,0x0,0xdb,0x9c,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x36,0x44,0x29,0x5e,0x51, 0xf1,0x10,0x1f,0x0,0x5a,0xa0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29, 0x5e,0xeb,0xc6,0x70,0x15,0x0,0x15,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7, 0x3e,0xd2,0x58,0x79,0x2d,0xc8,0x11,0x0,0x27,0x31,0xa8,0x33,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0xfb,0xaa,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0x47,0x76,0xe8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x7e,0x42,0x29,0x5e,0x10,0xab,0x9f,0x1c,0x0,0xeb,0xa9, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0xe2,0xce,0x4e,0xb,0x0, 0xc0,0xab,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53, 0x16,0x0,0xc6,0xc4,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x39,0x43,0x29,0x5e,0xed, 0xa7,0xe0,0x1b,0x0,0x9e,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29, 0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x8f,0xa0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe, 0x3e,0xd2,0x58,0x3,0xed,0x98,0x1a,0x0,0x27,0x31,0xa8,0x4d,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0xd4,0xa9,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0x1e,0x5e,0xde,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x40,0x42,0x29,0x5e,0x2a,0x4d,0xaf,0x33,0x0,0x1b,0xb1, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x0, 0x3c,0x5d,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b, 0x1b,0x0,0x15,0x76,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe, 0xc5,0x8d,0x29,0x0,0xeb,0xa9,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3,0x3e,0xd2, 0x58,0x9a,0xe8,0xd,0x28,0x0,0x27,0x31,0xa8,0x36,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x21, 0x43,0x29,0x5e,0xd7,0x2e,0x60,0x5,0x0,0x87,0x84,0xef,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfc,0x42,0x29,0x5e,0xb2,0x95,0x22,0x6,0x0,0x3d,0xb8,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b,0x2e,0x0,0xb7,0xa1,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0xa5,0xb7, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0, 0x51,0x36,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1, 0x7,0x0,0x96,0x59,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe, 0xc5,0x8d,0x29,0x0,0x7c,0x9b,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x3e,0xd2, 0x58,0x3,0xed,0x98,0x1a,0x0,0x5c,0x8f,0x82,0x48,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef, 0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0xb1,0x88,0xef,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd8,0x42,0x29,0x5e,0x42,0x18,0xd0,0xc,0x0,0xbc,0xaa,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xa7,0x42,0x29,0x5e,0x85,0x43,0x6a,0x1b,0x0,0xae,0xaa,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0xd4,0x8e, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0, 0xbd,0x33,0xe8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe1,0x42,0x29,0x5e,0x83,0xa6,0x29, 0x15,0x0,0xed,0x78,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x5c,0x87,0x57,0xbd, 0x86,0x63,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x3e,0xd2, 0x58,0x3,0xed,0x98,0x1a,0x0,0x27,0x31,0xa8,0x35,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b, 0x42,0x29,0x5e,0x88,0xd8,0x6,0x9,0x0,0x16,0xab,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0x2b,0x8b,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x42,0x29,0x5e,0xfb,0x68,0xd7,0x1f,0x0,0xc7,0xa6,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0xbb,0xb7, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x0, 0x3,0xd2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7,0xe0,0x11, 0x25,0x0,0xbb,0x97,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0, 0x9a,0x51,0x8,0x0,0xc9,0x7e,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x3e,0xd2, 0x58,0x3,0xed,0x98,0x1a,0x0,0x27,0x31,0xa8,0x34,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41, 0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0xd9,0x77,0xef,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc,0x4,0x0,0x2,0xaa,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x12,0x42,0x29,0x5e,0xa5,0xb2,0x71,0x2a,0x0,0xd8,0x74,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb,0x43,0x29,0x5e,0x52,0xe,0x9a,0x1a,0x0,0x3f,0xa0, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0, 0xe2,0xf,0xde,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0xe2,0xce,0x4e, 0xb,0x0,0xe,0xa7,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb0,0x42,0x29,0x5e,0xc0, 0x1d,0xc4,0x1,0x0,0x6,0x9f,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x3e,0xd2, 0x58,0x3,0xed,0x98,0x1a,0x0,0x5c,0x8f,0x82,0x30,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37, 0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0x13,0x78,0xef,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0x8d,0x32,0xe8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0,0xab,0xa7,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x8,0x3e,0xd2,0x58,0xb6,0x87,0xc4,0x1b,0x0,0x5c,0x8f, 0x82,0x48,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33,0x39,0x0, 0x5c,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x21,0x43,0x29,0x5e,0xd7,0x2e,0x60, 0x5,0x0,0x8a,0x25,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xbb,0x42,0x29,0x5e,0xf5, 0x27,0x97,0x24,0x0,0xf6,0x23,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf3,0x41,0x29, 0x5e,0x81,0xfd,0x61,0x2a,0x0,0x67,0x1b,0xaa,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27, 0x42,0x29,0x5e,0xf2,0xb7,0x8e,0xf,0x0,0x74,0xf5,0xdf,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xa9,0x42,0x29,0x5e,0xfe,0x10,0xe,0x2d,0x0,0x9d,0xd1,0xa9,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe,0x3e,0xd2,0x58,0x3,0xed,0x98,0x1a,0x0,0x5c,0x8f,0x82,0x4b, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33,0x39,0x0,0x6a,0x1c, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0, 0x3f,0x2f,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14, 0x3b,0x0,0xf9,0x6b,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0x43,0x29,0x5e,0xb7, 0x88,0x56,0x33,0x0,0x64,0x6,0xf0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0xc4,0x5,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x60,0x56,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0xb6,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, 0x6a,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8d,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x77,0xf3,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x94,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0xa2,0x65,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x59,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0x32, 0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8d,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa8,0x52,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0x54,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x6,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe2,0x27,0x75, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb3,0xe4,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x59,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xac,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0x1a,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0x48,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8, 0xe4,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xce,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2a,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7a,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc5,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x59,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x6a,0x84,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x8b, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x92,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6d,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x73,0x4c,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x15,0x30, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa7,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x63,0xf0,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcf,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0xb7,0x7f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe5,0xf7,0x67,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x97,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe8,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x8c,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x49, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xdf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9,0x3c,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1, 0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7b,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xb3,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0x49,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xeb,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc,0x84,0x59,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x56,0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xac,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x32,0x61,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x49,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb5,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e, 0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc8,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x6b,0x4d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x49, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xdf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x70,0x30,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x53,0xc6,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xb3,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd0,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9b,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80, 0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc4,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x57,0x3f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa, 0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdc,0x5e,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xda,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xd5,0x2b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x74, 0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xe6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf7,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf1,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x49,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe9,0x26,0x84, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc0,0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xd5,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec, 0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2,0x8c,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3e,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa5,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9f,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x4a,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x49,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3d,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80, 0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd7,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0xb3,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7, 0xe4,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xce,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x96,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x81,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x93,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xb3,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xb3,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0xf5, 0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xce,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x88,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xaf,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xea,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x86,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x5a,0x41, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x92,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x94,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbf,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x86,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x86,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23, 0x9d,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xcf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6e,0x9d,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcc,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x8b, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xae,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x64,0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xc6,0x68,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb6,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd5,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80, 0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xb5,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbc,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85, 0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xcf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb4,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe5,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb3,0x5a,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x26,0x5b,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f, 0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x86,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x86,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xda,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x41,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x16,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc3,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x68,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x95, 0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3d,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa3,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x4a,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x7e, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe6,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5c,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1, 0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x78,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x8b,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x55,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa1,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80, 0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xea,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x68,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xb7,0x7f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97, 0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9f,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd9,0xf7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x96,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x49,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x94,0x57,0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x50,0x45,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x75,0x70,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6,0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa2,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x7e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x57,0x3f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a, 0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdf,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e, 0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x40,0xce,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xee,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb1,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xff, 0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa7,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfe,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x15,0x30,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc7,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6a,0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,0x75,0x70,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x68,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15, 0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x85,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdd,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0xc0,0x4d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x78, 0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x25,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2, 0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6f,0x57,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x72,0xa,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcd,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x74,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa3,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x4a,0x3a,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x49,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda, 0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x1d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5b,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x20,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe3,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x28,0x50,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x99,0x6d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x6, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x77,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x68,0x36,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x7b,0x47,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xc8,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x76,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80, 0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x62,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0x1a,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f, 0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xd4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2f,0x8a,0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xeb,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x39,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xf4,0x68,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xb7, 0x8a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x30,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2, 0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x60,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xb,0x5b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x78,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5e,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80, 0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xef,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcd,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x47,0x5e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0xc7,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7, 0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xd3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc5,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xdf,0xb2,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe2,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xbc,0x3,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3b,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9b,0x90,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf, 0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xef,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xc8,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x74,0x6b,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x26,0x3,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xa4,0x58,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57, 0x8a,0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xeb,0x76,0x4a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x19,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdd,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd9,0x27,0x75,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xbd,0x42,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xaa, 0xf,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x84,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x23,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0x73,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xc8,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x94,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc2,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x62,0x49,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xbc,0x3,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xb6,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f, 0x4d,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x7f,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e, 0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe7,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x5,0x4f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x78,0x87,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x78, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x46,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb6,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0xb1,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3d,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbb,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x71,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xed,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2e,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc, 0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x73,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x68,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb2,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80, 0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd1,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb1,0x34,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0xc8,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93, 0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdb,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4c,0xbb,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xf2,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x51,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x60,0x87,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xd3, 0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb7,0xb6,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb0,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0x41,0x61,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x20,0x3a, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd2,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x57,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x28,0x66,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x34,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xe8,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a, 0xff,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x99,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x72,0x6b,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xaf,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0x1d,0x78,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0xc8, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xcd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9f,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1, 0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x15,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea, 0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x99,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x89,0xc8,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x34,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x39,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcd,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80, 0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb7,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0xc0,0x4d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x39,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfe,0xe9,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa6,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc5,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x19,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x69,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x1a,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x39,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x36,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa6,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe7,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xc8,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e, 0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7b,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe0,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0x59,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x12,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x12, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x87,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa1,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98, 0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0xf4,0x4d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xc7,0x6e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc0,0xc9,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x18,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x17,0xcc,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89, 0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb1,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0x75,0x70,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xcf,0x6e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17, 0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb9,0xd1,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a, 0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x22,0x3a,0x77,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xad,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x6,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0xd8, 0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x75,0xdb,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x18, 0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x14,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x59,0x50,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x70,0xbd, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x79,0x5c,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x59,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xdc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xd5,0x2b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa, 0xa4,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x18,0x8d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x91,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xba,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc0,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xbc,0x3,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xa9,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xac, 0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8f,0xf0,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0xaf,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xb4,0x22, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2b,0xc0,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x18,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4d,0xa8,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80, 0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x52,0x29,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x27,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f, 0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x10,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc3,0x5,0x32,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a, 0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbb,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x4b,0x41,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdb,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x6,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x59,0xd,0x32,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18, 0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x47,0xce,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xd5,0x2b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x16,0x85,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xe6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xde,0x93,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89, 0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd7,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x78,0x87,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x96,0x1d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7, 0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x64,0x56,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a, 0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaf,0x59,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa3,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x31,0x3d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x5e,0xe,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xa3, 0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf9,0xe6,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x53,0x8a,0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x63,0xe,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xfc,0xb2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x66,0xe, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x37,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x53,0x69,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89, 0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x6f,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbb,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x72,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x8b,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac, 0x74,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9,0x77,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a, 0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x97,0xbc,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xab,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0xb,0x5b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x75,0x7b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xc2, 0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4a,0x82,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xad,0x84,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7, 0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x32,0x61,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x32,0x60, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd3,0xd9,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x18,0x8e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x39,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe8,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x8a,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0x28,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c, 0x2a,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x18,0x8b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xad,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2a,0xf8,0x67,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xed,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x2d, 0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbc,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x62,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x30,0x16,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9f,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x1a,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x8d,0x17, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6e,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe1,0x10,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x93,0x32,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa3,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x15,0x30,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xb4,0x54,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1, 0x13,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe,0x7a,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6e,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x95,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x6,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xdb,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0xbc, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xab,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x84,0x16,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b, 0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x32,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x34,0x3a,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbf,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa3,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xde,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x49,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7, 0x18,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9c,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa4,0xc,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x97,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x3c,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaf,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xf0, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x61,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1d,0xe1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xf,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x1b,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x87,0xe3,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x18,0x8f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf2,0x3f,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89, 0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd3,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x32,0x61,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x11,0x6,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe, 0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9a,0x23,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a, 0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaa,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdc,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0xe6,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc4,0x1f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x9b, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x51,0x42,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x18, 0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x68,0x26,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab, 0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x7c,0x86,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x78,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4f,0xeb,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x14,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca, 0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xd3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x58,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xba,0x47,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xff,0x3f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x45,0x29,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x19, 0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x96,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xed,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x28,0x19,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa2,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4e,0xd9,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdd,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x45,0x7c,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97, 0x4d,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xed,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xce,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0xb5,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x8d,0x33,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xd5, 0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x43,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1a,0x4a,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xae,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xb5,0x58, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf4,0xb5,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x75,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xeb,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x15,0x30,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x81,0xd1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5e,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2f,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb3,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x62,0x49,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x34,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbd, 0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xcd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9e,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd0,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0x99,0x59,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xc8,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x2b,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x89,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2b,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x60,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x95,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xf1,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x6,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16, 0x7b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9d,0x9b,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x88,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xaa,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x1d,0x78,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0xc8,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xa4, 0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1e,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xcd,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xad,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x1c,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x85,0x4c,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdf,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xb2,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x97,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0x78,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xdb,0x68,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x78,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x71,0x2e,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb7,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x8,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc7,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x79,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x34, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa0,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe8,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xef,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0x34,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc8,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe3,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x69,0xf3,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x1f,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaf,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x79,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x34,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75, 0xff,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbf,0x4f,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd7,0xdd,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc3,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0x79,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x34,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0xb4, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xab,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xdd,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x34,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xbd,0x42, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe5,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9a,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0xa4,0x58,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24, 0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc7,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x20,0x7b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa6,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x73,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xad,0x84,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x79, 0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x20,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2, 0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x68,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0x27,0x20,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0xc8,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0x7a,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x18,0x8f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x60,0x4d,0xf,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89, 0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x2b,0x43,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x62,0x94,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4,0xb7,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x39,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xfb, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe1,0x53,0xf,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x60,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x3,0x61,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0x67,0x15,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xba,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3e,0x57,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8d,0x3c,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x13,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd3,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xfd,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63, 0x2a,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x18,0x88,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc,0xc1,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xeb,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x5,0x52,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfd,0xdd,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xed,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x85,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xb2,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x87,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfe,0x50,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80, 0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc4,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xdd,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x68,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5e,0xc4,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbf,0x41,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcb,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x9e,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8d,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x47,0x3,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0x72,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x58,0x5b,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xff,0x8,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89, 0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb0,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0x68,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0xe3,0x40,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24, 0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x14,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x52,0x4a,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a, 0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x10,0x1c,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdf,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xe, 0x45,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3b,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe9,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x32,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xc9,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xce,0xb7,0x8a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x48,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x24,0x44,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x7f,0x26,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x6a,0x5f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1d,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x77,0xd6,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcf,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x4d,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x4c, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x21,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2, 0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3b,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0x78,0x15,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xe,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x37,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x17, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9d,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xeb,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0xae,0x6e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6c,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x69,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe7,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xa3,0x25,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x43,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd8,0xcf,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x4f,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd7,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcc,0xb1,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xdd,0x43, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x43,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x66,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x2d,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaf,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x77,0x26,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0x92,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e, 0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x41,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb3,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x7e,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdb,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0xb1,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x7e, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3f,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x78,0x1d,0x8c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xa,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xf2,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x77,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x45,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9d,0xd6,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xe0,0x43,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x7e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91, 0xab,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc1,0x11,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a, 0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x80,0xd5,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x51,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x81, 0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x18,0x88,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa3,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7b,0xdb,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x78,0x5f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4f,0x81,0x97,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2a,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80, 0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x5e,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbb,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xc8,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x59,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e, 0x97,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x26,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e, 0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x12,0x1a,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe2,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x68,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xf6,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x76,0x8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x18, 0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe3,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x1e,0x16,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x3b,0x50,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x7e,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa7,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x18,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xf0,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c, 0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x10,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x7c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4d,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xef,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0xf0,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xf0, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x64,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2, 0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xec,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xe2,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xe2,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x45,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x13, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x23,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xf7,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x47,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x28,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2a,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1b,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3, 0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0xe2,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xe2,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x15,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x13, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x11,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd1,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xe2,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4, 0xe1,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x91,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e, 0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb1,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd3,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xe8,0x34,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xe8, 0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc0,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xaf,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xe8,0x34,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa7,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7, 0x63,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0xf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x37,0x9e,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a, 0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe7,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0x2b,0x44,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xe8,0x34,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xe8, 0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xcc,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xab,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0xe8,0x34,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x14,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9e,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x3b,0x9,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54, 0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x46,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc6,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x3a,0x9,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x21,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x35,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xc8,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbf,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf0,0xdf,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0xb9,0x31, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0xe,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3c,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc0,0xe1,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89, 0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd3,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xe8,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b, 0x47,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x18,0x88,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x37,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfa,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdc,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x39,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1a,0xbc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7, 0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xa1,0xb4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xe4,0x3f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1b,0xeb,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0x9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x51,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xc1,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbb,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0xe7,0x3f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xed,0x6,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f, 0xc4,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd7,0xe9,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a, 0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfa,0x99,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe2,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x81,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x80, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x38,0x29,0x2e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xac,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2, 0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd1,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x81,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xef,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x27,0xc7,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0xe, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2c,0x5b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x81,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c, 0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x1b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc8,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a, 0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x40,0xf3,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdf,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xca,0x31,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc7,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x81,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0x80, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x52,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x97,0x5d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b, 0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc3,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x60,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x90,0xcc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x19,0xe, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7a,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89, 0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x81,0xd3,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcf,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x63,0x17,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x11,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6, 0xd5,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf9,0x67,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a, 0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbc,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x6b,0x17,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd8,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd8,0x6d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x18, 0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf7,0xe6,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb, 0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xdb,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdb,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0xe9,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x46,0x70,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x18,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1a,0xde,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89, 0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x81,0x39,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xec,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe, 0x72,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x18,0x89,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2f,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x24,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x81,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x81, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5a,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x22,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0x80,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x1b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe3,0x3b,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xef,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc7,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x81,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xba,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a, 0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4e,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc3,0x80,0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe2,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xfa,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x97,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa6,0x3c,0x59,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x19, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x22,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0x41,0x45,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0xee,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xee,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xcb,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6f,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89, 0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa7,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xfc,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0x41,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0, 0xf9,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc1,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x50,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xeb,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x43,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd1,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xef, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x54,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2, 0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x35,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3, 0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xfe,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa5,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd7,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80, 0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb7,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x37,0x83,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92, 0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfd,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbf,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0xef,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x7e,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6d,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf9,0x4d,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x7, 0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xc6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdf,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x60,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0xfc,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0x1,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7f,0xc7,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80, 0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xc8,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xef,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x4c,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x11,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6, 0x80,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x18,0x89,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x73,0xff,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a, 0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd6,0x4e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xab,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x9,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x83,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd8,0x1,0xd,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x19, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x8f,0xb,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x51,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x88,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3c,0x2,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4b,0x4,0xd,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89, 0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xe,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaf,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x54,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x5,0x2a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0x61,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x70,0x53,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5a,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdd,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x5d,0x31,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x8b,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15, 0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0x17,0x49,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc7,0x9e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x70,0x14,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0, 0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x19,0x22,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xe6,0x2f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x1e,0x22, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0x17,0x49,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe6,0x1b,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa7,0xc0,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89, 0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x10,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x1d,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0x7,0x2a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c, 0x20,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa0,0x13,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc1,0x5a,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9d,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xa2,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x97,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x56,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa5,0x8e,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x18, 0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf7,0xc3,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97, 0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xa,0x2a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdb,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xa4,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x12,0x15, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x19,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xaf,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x18,0x8a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe6,0x5f,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x17,0x91,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdb,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x12,0xe9,0x4d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc6,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c, 0xd,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xcf,0x1c,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a, 0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4f,0x62,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbf,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd9,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xda,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x93,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3c,0xa9,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xcd,0xab,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x1f,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbf,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x64,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xae,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x16,0xcb,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0x8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa5,0xae,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89, 0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x81,0xa5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xea,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x68,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0xb0,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c, 0xd2,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa2,0x4c,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0x17,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2,0xb1,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0x22,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x6a,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xb4, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x18,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xdd,0xd5,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x19, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf1,0x59,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6, 0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x5c,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb8,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x12,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x16,0x22, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf9,0x80,0x8e,0x17,0x49,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa9,0x21,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd0,0x12,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfe,0x80, 0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc8,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x81,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xb3,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43, 0xcc,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6b,0x7b,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e, 0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2e,0x8,0x57,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xaa,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x8b,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xba,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x81,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xd0, 0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0x17,0x74,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc5,0xc7,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4f,0x80,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x26,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc7,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x7e,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x87,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x10,0xc5,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x42,0x73,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xb6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xcb,0x47,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7b,0xbe,0x47,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe, 0xc6,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0x17,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4b,0xbf,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e, 0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbb,0xc1,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x86,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe6,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x7d,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x80, 0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0x17,0x6f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc1,0xc3,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0x17, 0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xde,0x83,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb, 0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0x7b,0x47,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xf0,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x3d,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x7c,0x47, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfe,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0xd8,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x19,0x8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc5,0xb7,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xba,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaf,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xb6,0x29,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x7e,0x47,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e, 0x28,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x19,0xd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe7,0x75,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a, 0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb4,0xbc,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb5,0x74,0x47,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1b,0x7,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x7d,0x47,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1b,0x1,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x84, 0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5,0xbb,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17, 0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc,0xb9,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7, 0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0x40,0x11,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xfb,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0xda,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x82,0x20, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd8,0xbb,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x25,0x77,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x8f,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9e,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0x81,0x20,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x45,0x11,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x2,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47, 0xbe,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc4,0x41,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x50,0x87,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa9,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x95,0xb8,0x56,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x30,0x15,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xb5, 0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x6f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa3,0x82,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfb, 0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0x46,0x11,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa6,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x73,0x47,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf8,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x44,0x11, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x0,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf3,0x7f,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0x17,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x57,0x49,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80, 0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x8e,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb1,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x43,0x11,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x78,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e, 0x4b,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x4,0x80,0x8e,0x17,0x6b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc7,0x8a,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x83,0x3e,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdd,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xbe,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbb,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x8c,0x20,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xc0, 0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x19,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7e,0xd,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0x17, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xff,0xf,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec, 0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xe,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x4e,0x4f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xdd,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa7,0xf7,0x39,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x64, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb,0x11,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x6,0x80, 0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x15,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1b,0x4,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x8,0x40,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xfa,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x48,0x4f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3, 0xb,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x3,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x22,0xf,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfd,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6a,0x7b,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdb,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x33,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x9,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xf9,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x14, 0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x0,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x40,0x4d,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xed,0x6,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xc0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbf,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbd,0x46,0x4f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x11,0x40, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0x17,0x64,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3d,0x8c,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0x17,0x64, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfc,0x12,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf6,0x80, 0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x47,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x2,0x25,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xc3,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24, 0x6,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0x17,0x66,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x54,0xff,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7f,0xf8,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x36,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0x3,0x25,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xf5, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf5,0xfd,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17, 0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc,0x8,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xf4,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xfa,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xfc,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0x17,0x66,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3b,0x1,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0x17,0x66, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdd,0xf6,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80, 0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x5,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd3,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x6,0x25,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x0,0x25,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb, 0xfc,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x66,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xae,0xf7,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e, 0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x47,0xc3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc3,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xf9,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc5,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xf6, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc2,0x5a,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x8a,0x64,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee, 0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x99,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x7e,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x97,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x59,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0x17,0x65, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x31,0xa1,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80, 0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x90,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa2,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x98,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0xd4,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d, 0xd3,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x33,0xcf,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x64,0xd1,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x97,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0xdd,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56,0x39,0x15,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xc6, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x18,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x78,0xcc,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc5,0xd5,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3, 0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xd6,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9f,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xd8,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xdc,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf5,0xc8,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd6,0xca,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80, 0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xda,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0x3b,0x15,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x89,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea, 0x7c,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17,0x68,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6c,0xd1,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a, 0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf3,0x85,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa3,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x88,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x79,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x8c, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0x17,0x68,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xac,0x2a,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0x17, 0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x96,0x78,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xc8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x6c,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbd,0x2e,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x7,0x80,0x8e,0x17,0x68,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x8b,0xce,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x18,0x8c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3c,0x28,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80, 0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xd3,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbf,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x34,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1b,0xa,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x2d,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8, 0x71,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x68,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x46,0x31,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e, 0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7c,0x2b,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa2,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x38,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1b,0x4,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2d,0x70,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x33, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0x17,0x68,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xef,0xd0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x26,0xd6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xd3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd7,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xd9,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xd6,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xcb,0xdb,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfa,0xd8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x15,0xb3,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe9,0x80,0x8e,0x17,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8,0xd3,0x33,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0x17,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x54,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba, 0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xe4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc3,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcd,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x45,0x6a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x54,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x12, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xaa,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa0,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97, 0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x53,0x1b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa6,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x79,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80, 0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xce,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xe0,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x80,0x6a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff, 0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbe,0x1a,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x60,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdf,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xb0,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xbc, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x79,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x47,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x99,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xf0,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0xa,0x68, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf6,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3f,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80, 0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb1,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xbd,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x49,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e, 0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7d,0xe9,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xf2,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0x22,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x99,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xb0, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xef,0x75,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1, 0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x19,0xa7,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d, 0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0xb0,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x43,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdc,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xed,0xf2,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xde,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xe0,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53, 0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x59,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e, 0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbe,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0xfc,0x4b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd9,0x43,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xbd, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x58,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1, 0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac, 0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xb0,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x32,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x43,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9f,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xc8,0x58,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xe9,0x51,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41, 0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xda,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x73,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa5,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xea,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xf6,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xbc,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x87,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb4,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xa7,0x42,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0xb0,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xe5,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa0,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8a,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80, 0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xe9,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xc8,0x5e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa6,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe0,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x86,0x4f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0xe5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xab,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa1,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf1,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xf8,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x1a,0x6b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x79,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1a,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xc8,0x5e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82, 0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xc9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xec,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e, 0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x91,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbd,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xb0,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x27,0x2e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa7,0x22,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1, 0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x93,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0xe0,0x1b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x1a,0x6b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x85,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd7,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xc8,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf2,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x89,0xfa,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xd8,0x5b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7, 0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8d,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9b,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdd,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xe5,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0xbd, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8f,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x48,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x3e,0x5b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xbc,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xac,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x37,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x11,0xa2,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcb,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xe5,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xbc,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4, 0xfc,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa1,0xa,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xef,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x96,0x4c,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xbc, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x73,0xe8,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x53,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xce,0x13, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3e,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x69,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd4,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0xce,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xce,0x13,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55, 0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x60,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x33,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x5,0x60,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xae,0x10,0x23,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1, 0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x68,0x5,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97, 0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0xc3,0x50,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xce,0x13, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xdc,0x80,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2e,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa1,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,0xf0,0x50,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x1a,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3, 0xfe,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x71,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x67,0x5,0x55,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b, 0xf,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x78,0x87,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xb6, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x63,0x32,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xae,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x78,0x87,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x8c,0x43, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfb,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5e,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf,0x48,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xe3,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa1,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0xe7,0x4f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25, 0x23,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x94,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9f,0x1e,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb0,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x59,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x27,0x75,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xb5, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6f,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x65,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xb6,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x17,0x62, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb2,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa8,0xe5,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe4,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xb,0x5b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x63,0x1c,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e, 0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x64,0xe3,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x97,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x39,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x48,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1d,0xf0,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc2,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xef,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xd7,0x52,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf6,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xe3,0x74, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa4,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x64,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xef,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0xf0,0x50,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x4d,0x6a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0, 0x5a,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6e,0x14,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x14,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x48,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x72,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb2,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xa4,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xad,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x12,0x62,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0x6a,0x84, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x42,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7e,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0xad,0x41,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xbc,0x3,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb,0xd4,0x52,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e, 0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc6,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x48,0x5e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x89, 0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x19,0x80,0x8e,0xa1,0xe5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x40,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9d,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x4a,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xef,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x45,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf8,0x88,0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfe,0x80, 0x8e,0xa1,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xd5,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x74,0x70,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc, 0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x28,0x5c,0x3f,0x33,0x33,0x73,0x3f,0x66, 0x66,0x66,0x3f,0xc,0xd,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc,0x0,0x0,0x0,0x5f,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x61,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x63,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x65,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x67,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x69,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6b,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6d,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6f,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x71,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x73,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x75,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x89,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8d,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8f,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x91,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x94,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x96,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc4,0x45,0x1f,0x8b };
2,692,799
69.385279
80
h
null
ceph-main/src/test/crimson/gtest_seastar.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <cstdlib> #include <iostream> #include "include/ceph_assert.h" #include "gtest_seastar.h" #include "common/ceph_argparse.h" #include "crimson/common/config_proxy.h" #include "crimson/common/perf_counters_collection.h" SeastarRunner seastar_test_suite_t::seastar_env; int main(int argc, char **argv) { // preprocess args std::vector<const char*> args; bool global_log_level_is_set = false; const char* prefix_log_level = "--default-log-level"; for (int i = 0; i < argc; ++i) { if (std::strncmp(argv[i], prefix_log_level, std::strlen(prefix_log_level)) == 0) { global_log_level_is_set = true; } args.push_back(argv[i]); } // HACK: differentiate between the `make check` bot and human user // for the sake of log flooding if (!global_log_level_is_set && !std::getenv("FOR_MAKE_CHECK")) { std::cout << "WARNING: set default seastar log level to debug" << std::endl; ++argc; args.push_back("--default-log-level=debug"); } auto app_argv = const_cast<char**>(args.data()); auto app_argc = static_cast<int>(args.size()); ::testing::InitGoogleTest(&app_argc, app_argv); int ret = seastar_test_suite_t::seastar_env.init(app_argc, app_argv); if (ret != 0) { seastar_test_suite_t::seastar_env.stop(); return ret; } seastar_test_suite_t::seastar_env.run([] { return crimson::common::sharded_conf().start( EntityName{}, std::string_view{"ceph"} ).then([] { return crimson::common::sharded_perf_coll().start(); }); }); ret = RUN_ALL_TESTS(); seastar_test_suite_t::seastar_env.run([] { return crimson::common::sharded_perf_coll().stop().then([] { return crimson::common::sharded_conf().stop(); }); }); seastar_test_suite_t::seastar_env.stop(); return ret; }
1,903
27.848485
80
cc
null
ceph-main/src/test/crimson/gtest_seastar.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #pragma once #include "gtest/gtest.h" #include "seastar_runner.h" struct seastar_test_suite_t : public ::testing::Test { static SeastarRunner seastar_env; template <typename Func> void run(Func &&func) { return seastar_env.run(std::forward<Func>(func)); } template <typename Func> void run_async(Func &&func) { run( [func=std::forward<Func>(func)]() mutable { return seastar::async(std::forward<Func>(func)); }); } virtual seastar::future<> set_up_fut() { return seastar::now(); } void SetUp() final { return run([this] { return set_up_fut(); }); } virtual seastar::future<> tear_down_fut() { return seastar::now(); } void TearDown() final { return run([this] { return tear_down_fut(); }); } };
856
22.805556
70
h
null
ceph-main/src/test/crimson/seastar_runner.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #pragma once #include <stdio.h> #include <signal.h> #include <thread> #include <seastar/core/app-template.hh> #include <seastar/core/future-util.hh> #include <seastar/core/reactor.hh> #include <seastar/core/alien.hh> #include <seastar/core/thread.hh> struct SeastarRunner { static constexpr eventfd_t APP_RUNNING = 1; static constexpr eventfd_t APP_NOT_RUN = 2; seastar::app_template app; seastar::file_desc begin_fd; std::unique_ptr<seastar::readable_eventfd> on_end; std::thread thread; bool begin_signaled = false; SeastarRunner() : begin_fd{seastar::file_desc::eventfd(0, 0)} {} ~SeastarRunner() {} bool is_running() const { return !!on_end; } int init(int argc, char **argv) { thread = std::thread([argc, argv, this] { reactor(argc, argv); }); eventfd_t result; if (int r = ::eventfd_read(begin_fd.get(), &result); r < 0) { std::cerr << "unable to eventfd_read():" << errno << std::endl; return r; } assert(begin_signaled == true); if (result == APP_RUNNING) { assert(is_running()); return 0; } else { assert(result == APP_NOT_RUN); assert(!is_running()); return 1; } } void stop() { if (is_running()) { run([this] { on_end->write_side().signal(1); return seastar::now(); }); } thread.join(); } void reactor(int argc, char **argv) { auto ret = app.run(argc, argv, [this] { on_end.reset(new seastar::readable_eventfd); return seastar::now().then([this] { begin_signaled = true; [[maybe_unused]] auto r = ::eventfd_write(begin_fd.get(), APP_RUNNING); assert(r == 0); return seastar::now(); }).then([this] { return on_end->wait().then([](size_t){}); }).handle_exception([](auto ep) { std::cerr << "Error: " << ep << std::endl; }).finally([this] { on_end.reset(); }); }); if (ret != 0) { std::cerr << "Seastar app returns " << ret << std::endl; } if (!begin_signaled) { begin_signaled = true; ::eventfd_write(begin_fd.get(), APP_NOT_RUN); } } template <typename Func> void run(Func &&func) { assert(is_running()); auto fut = seastar::alien::submit_to(app.alien(), 0, std::forward<Func>(func)); fut.get(); } };
2,398
22.291262
72
h
null
ceph-main/src/test/crimson/test_alien_echo.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- #include "auth/Auth.h" #include "messages/MPing.h" #include "common/ceph_argparse.h" #include "crimson/auth/DummyAuth.h" #include "crimson/common/throttle.h" #include "crimson/net/Connection.h" #include "crimson/net/Dispatcher.h" #include "crimson/net/Messenger.h" #include <seastar/core/alien.hh> #include <seastar/core/app-template.hh> #include <seastar/core/future-util.hh> #include <seastar/core/internal/pollable_fd.hh> #include <seastar/core/posix.hh> #include <seastar/core/reactor.hh> using crimson::common::local_conf; enum class echo_role { as_server, as_client, }; namespace seastar_pingpong { struct DummyAuthAuthorizer : public AuthAuthorizer { DummyAuthAuthorizer() : AuthAuthorizer(CEPH_AUTH_CEPHX) {} bool verify_reply(bufferlist::const_iterator&, std::string *connection_secret) override { return true; } bool add_challenge(CephContext*, const bufferlist&) override { return true; } }; struct Server { crimson::common::Throttle byte_throttler; crimson::net::MessengerRef msgr; crimson::auth::DummyAuthClientServer dummy_auth; struct ServerDispatcher final : crimson::net::Dispatcher { unsigned count = 0; seastar::condition_variable on_reply; std::optional<seastar::future<>> ms_dispatch(crimson::net::ConnectionRef c, MessageRef m) final { std::cout << "server got ping " << *m << std::endl; // reply with a pong return c->send(crimson::make_message<MPing>()).then([this] { ++count; on_reply.signal(); return seastar::now(); }); } } dispatcher; Server(crimson::net::MessengerRef msgr) : byte_throttler(local_conf()->osd_client_message_size_cap), msgr{msgr} { } }; struct Client { crimson::common::Throttle byte_throttler; crimson::net::MessengerRef msgr; crimson::auth::DummyAuthClientServer dummy_auth; struct ClientDispatcher final : crimson::net::Dispatcher { unsigned count = 0; seastar::condition_variable on_reply; std::optional<seastar::future<>> ms_dispatch(crimson::net::ConnectionRef c, MessageRef m) final { std::cout << "client got pong " << *m << std::endl; ++count; on_reply.signal(); return seastar::now(); } } dispatcher; Client(crimson::net::MessengerRef msgr) : byte_throttler(local_conf()->osd_client_message_size_cap), msgr{msgr} { } }; } // namespace seastar_pingpong class SeastarContext { int begin_fd; seastar::file_desc on_end; public: SeastarContext() : begin_fd{eventfd(0, 0)}, on_end{seastar::file_desc::eventfd(0, 0)} {} template<class Func> std::thread with_seastar(Func&& func) { return std::thread{[this, on_end = on_end.get(), func = std::forward<Func>(func)] { // alien: are you ready? wait_for_seastar(); // alien: could you help me apply(func)? func(); // alien: i've sent my request. have you replied it? // wait_for_seastar(); // alien: you are free to go! ::eventfd_write(on_end, 1); }}; } void run(seastar::app_template& app, int argc, char** argv) { app.run(argc, argv, [this] { std::vector<const char*> args; std::string cluster; std::string conf_file_list; auto init_params = ceph_argparse_early_args(args, CEPH_ENTITY_TYPE_CLIENT, &cluster, &conf_file_list); return crimson::common::sharded_conf().start(init_params.name, cluster) .then([conf_file_list] { return local_conf().parse_config_files(conf_file_list); }).then([this] { return set_seastar_ready(); }).then([on_end = std::move(on_end)] () mutable { // seastar: let me know once i am free to leave. return seastar::do_with(seastar::pollable_fd(std::move(on_end)), [] (seastar::pollable_fd& on_end_fds) { return on_end_fds.readable().then([&on_end_fds] { eventfd_t result = 0; on_end_fds.get_file_desc().read(&result, sizeof(result)); return seastar::make_ready_future<>(); }); }); }).then([]() { return crimson::common::sharded_conf().stop(); }).handle_exception([](auto ep) { std::cerr << "Error: " << ep << std::endl; }).finally([] { seastar::engine().exit(0); }); }); } seastar::future<> set_seastar_ready() { // seastar: i am ready to serve! ::eventfd_write(begin_fd, 1); return seastar::now(); } private: void wait_for_seastar() { eventfd_t result = 0; if (int r = ::eventfd_read(begin_fd, &result); r < 0) { std::cerr << "unable to eventfd_read():" << errno << std::endl; } } }; static seastar::future<> seastar_echo(const entity_addr_t addr, echo_role role, unsigned count) { std::cout << "seastar/"; if (role == echo_role::as_server) { return seastar::do_with( seastar_pingpong::Server{crimson::net::Messenger::create( entity_name_t::OSD(0), "server", addr.get_nonce(), true)}, [addr, count](auto& server) mutable { std::cout << "server listening at " << addr << std::endl; // bind the server server.msgr->set_default_policy(crimson::net::SocketPolicy::stateless_server(0)); server.msgr->set_policy_throttler(entity_name_t::TYPE_OSD, &server.byte_throttler); server.msgr->set_auth_client(&server.dummy_auth); server.msgr->set_auth_server(&server.dummy_auth); return server.msgr->bind(entity_addrvec_t{addr} ).safe_then([&server] { return server.msgr->start({&server.dispatcher}); }, crimson::net::Messenger::bind_ertr::all_same_way([](auto& e) { ceph_abort_msg("bind failed"); })).then([&dispatcher=server.dispatcher, count] { return dispatcher.on_reply.wait([&dispatcher, count] { return dispatcher.count >= count; }); }).finally([&server] { std::cout << "server shutting down" << std::endl; server.msgr->stop(); return server.msgr->shutdown(); }); }); } else { return seastar::do_with( seastar_pingpong::Client{crimson::net::Messenger::create( entity_name_t::OSD(1), "client", addr.get_nonce(), true)}, [addr, count](auto& client) { std::cout << "client sending to " << addr << std::endl; client.msgr->set_default_policy(crimson::net::SocketPolicy::lossy_client(0)); client.msgr->set_policy_throttler(entity_name_t::TYPE_OSD, &client.byte_throttler); client.msgr->set_auth_client(&client.dummy_auth); client.msgr->set_auth_server(&client.dummy_auth); return client.msgr->start({&client.dispatcher}).then( [addr, &client, &disp=client.dispatcher, count] { auto conn = client.msgr->connect(addr, entity_name_t::TYPE_OSD); return seastar::do_until( [&disp,count] { return disp.count >= count; }, [&disp,conn] { return conn->send(crimson::make_message<MPing>()).then([&] { return disp.on_reply.wait(); }); } ); }).finally([&client] { std::cout << "client shutting down" << std::endl; client.msgr->stop(); return client.msgr->shutdown(); }); }); } } int main(int argc, char** argv) { namespace po = boost::program_options; po::options_description desc{"Allowed options"}; desc.add_options() ("help,h", "show help message") ("role", po::value<std::string>()->default_value("pong"), "role to play (ping | pong)") ("port", po::value<uint16_t>()->default_value(9010), "port #") ("nonce", po::value<uint32_t>()->default_value(42), "a unique number to identify the pong server") ("count", po::value<unsigned>()->default_value(10), "stop after sending/echoing <count> MPing messages"); po::variables_map vm; std::vector<std::string> unrecognized_options; try { auto parsed = po::command_line_parser(argc, argv) .options(desc) .allow_unregistered() .run(); po::store(parsed, vm); if (vm.count("help")) { std::cout << desc << std::endl; return 0; } po::notify(vm); unrecognized_options = po::collect_unrecognized(parsed.options, po::include_positional); } catch(const po::error& e) { std::cerr << "error: " << e.what() << std::endl; return 1; } entity_addr_t addr; addr.set_type(entity_addr_t::TYPE_MSGR2); addr.set_family(AF_INET); addr.set_port(vm["port"].as<std::uint16_t>()); addr.set_nonce(vm["nonce"].as<std::uint32_t>()); echo_role role = echo_role::as_server; if (vm["role"].as<std::string>() == "ping") { role = echo_role::as_client; } auto count = vm["count"].as<unsigned>(); seastar::app_template app; SeastarContext sc; auto job = sc.with_seastar([&] { auto fut = seastar::alien::submit_to(app.alien(), 0, [addr, role, count] { return seastar_echo(addr, role, count); }); fut.wait(); }); std::vector<char*> av{argv[0]}; std::transform(begin(unrecognized_options), end(unrecognized_options), std::back_inserter(av), [](auto& s) { return const_cast<char*>(s.c_str()); }); sc.run(app, av.size(), av.data()); job.join(); } /* * Local Variables: * compile-command: "make -j4 \ * -C ../../../build \ * unittest_seastar_echo" * End: */
9,806
32.244068
92
cc
null
ceph-main/src/test/crimson/test_alienstore_thread_pool.cc
#include <chrono> #include <iostream> #include <numeric> #include <seastar/core/app-template.hh> #include "common/ceph_argparse.h" #include "crimson/common/config_proxy.h" #include "crimson/os/alienstore/thread_pool.h" #include "include/msgr.h" using namespace std::chrono_literals; using ThreadPool = crimson::os::ThreadPool; using crimson::common::local_conf; seastar::future<> test_accumulate(ThreadPool& tp) { static constexpr auto N = 5; static constexpr auto M = 1; auto slow_plus = [&tp](int i) { return tp.submit(::rand() % 2, [=] { std::this_thread::sleep_for(10ns); return i + M; }); }; return seastar::map_reduce( boost::irange(0, N), slow_plus, 0, std::plus{}).then([] (int sum) { auto r = boost::irange(0 + M, N + M); if (sum != std::accumulate(r.begin(), r.end(), 0)) { throw std::runtime_error("test_accumulate failed"); } }); } seastar::future<> test_void_return(ThreadPool& tp) { return tp.submit(::rand() % 2, [=] { std::this_thread::sleep_for(10ns); }); } int main(int argc, char** argv) { seastar::app_template app; return app.run(argc, argv, [] { std::vector<const char*> args; std::string cluster; std::string conf_file_list; auto init_params = ceph_argparse_early_args(args, CEPH_ENTITY_TYPE_CLIENT, &cluster, &conf_file_list); return crimson::common::sharded_conf().start(init_params.name, cluster) .then([conf_file_list] { return local_conf().parse_config_files(conf_file_list); }).then([] { return seastar::do_with(std::make_unique<crimson::os::ThreadPool>(2, 128, seastar::resource::cpuset{0}), [](auto& tp) { return tp->start().then([&tp] { return test_accumulate(*tp); }).then([&tp] { return test_void_return(*tp); }).finally([&tp] { return tp->stop(); }); }); }).finally([] { return crimson::common::sharded_conf().stop(); }).handle_exception([](auto e) { std::cerr << "Error: " << e << std::endl; seastar::engine().exit(1); }); }); } /* * Local Variables: * compile-command: "make -j4 \ * -C ../../../build \ * unittest_seastar_thread_pool" * End: */
2,373
29.050633
110
cc
null
ceph-main/src/test/crimson/test_async_echo.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- #include <boost/program_options/variables_map.hpp> #include <boost/program_options/parsers.hpp> #include "auth/Auth.h" #include "global/global_init.h" #include "messages/MPing.h" #include "msg/Dispatcher.h" #include "msg/Messenger.h" #include "auth/DummyAuth.h" enum class echo_role { as_server, as_client, }; namespace native_pingpong { constexpr int CEPH_OSD_PROTOCOL = 10; struct Server { Server(CephContext* cct, const entity_inst_t& entity) : dummy_auth(cct), dispatcher(cct) { msgr.reset(Messenger::create(cct, "async", entity.name, "pong", entity.addr.get_nonce())); dummy_auth.auth_registry.refresh_config(); msgr->set_cluster_protocol(CEPH_OSD_PROTOCOL); msgr->set_default_policy(Messenger::Policy::stateless_server(0)); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); } DummyAuthClientServer dummy_auth; std::unique_ptr<Messenger> msgr; struct ServerDispatcher : Dispatcher { std::mutex mutex; std::condition_variable on_reply; bool replied = false; ServerDispatcher(CephContext* cct) : Dispatcher(cct) {} bool ms_can_fast_dispatch_any() const override { return true; } bool ms_can_fast_dispatch(const Message* m) const override { return m->get_type() == CEPH_MSG_PING; } void ms_fast_dispatch(Message* m) override { m->get_connection()->send_message(new MPing); m->put(); { std::lock_guard lock{mutex}; replied = true; } on_reply.notify_one(); } bool ms_dispatch(Message*) override { ceph_abort(); } bool ms_handle_reset(Connection*) override { return true; } void ms_handle_remote_reset(Connection*) override { } bool ms_handle_refused(Connection*) override { return true; } void echo() { replied = false; std::unique_lock lock{mutex}; return on_reply.wait(lock, [this] { return replied; }); } } dispatcher; void echo() { dispatcher.echo(); } }; struct Client { std::unique_ptr<Messenger> msgr; Client(CephContext *cct) : dummy_auth(cct), dispatcher(cct) { msgr.reset(Messenger::create(cct, "async", entity_name_t::CLIENT(-1), "ping", getpid())); dummy_auth.auth_registry.refresh_config(); msgr->set_cluster_protocol(CEPH_OSD_PROTOCOL); msgr->set_default_policy(Messenger::Policy::lossy_client(0)); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); } DummyAuthClientServer dummy_auth; struct ClientDispatcher : Dispatcher { std::mutex mutex; std::condition_variable on_reply; bool replied = false; ClientDispatcher(CephContext* cct) : Dispatcher(cct) {} bool ms_can_fast_dispatch_any() const override { return true; } bool ms_can_fast_dispatch(const Message* m) const override { return m->get_type() == CEPH_MSG_PING; } void ms_fast_dispatch(Message* m) override { m->put(); { std::lock_guard lock{mutex}; replied = true; } on_reply.notify_one(); } bool ms_dispatch(Message*) override { ceph_abort(); } bool ms_handle_reset(Connection *) override { return true; } void ms_handle_remote_reset(Connection*) override { } bool ms_handle_refused(Connection*) override { return true; } bool ping(Messenger* msgr, const entity_inst_t& peer) { using namespace std::chrono_literals; auto conn = msgr->connect_to(peer.name.type(), entity_addrvec_t{peer.addr}); replied = false; conn->send_message(new MPing); std::unique_lock lock{mutex}; return on_reply.wait_for(lock, 500ms, [&] { return replied; }); } } dispatcher; void ping(const entity_inst_t& peer) { dispatcher.ping(msgr.get(), peer); } }; } // namespace native_pingpong static void ceph_echo(CephContext* cct, entity_addr_t addr, echo_role role, unsigned count) { std::cout << "ceph/"; entity_inst_t entity{entity_name_t::OSD(0), addr}; if (role == echo_role::as_server) { std::cout << "server listening at " << addr << std::endl; native_pingpong::Server server{cct, entity}; server.msgr->bind(addr); server.msgr->add_dispatcher_head(&server.dispatcher); server.msgr->start(); for (unsigned i = 0; i < count; i++) { server.echo(); } server.msgr->shutdown(); server.msgr->wait(); } else { std::cout << "client sending to " << addr << std::endl; native_pingpong::Client client{cct}; client.msgr->add_dispatcher_head(&client.dispatcher); client.msgr->start(); auto conn = client.msgr->connect_to(entity.name.type(), entity_addrvec_t{entity.addr}); for (unsigned i = 0; i < count; i++) { std::cout << "seq=" << i << std::endl; client.ping(entity); } client.msgr->shutdown(); client.msgr->wait(); } } int main(int argc, char** argv) { namespace po = boost::program_options; po::options_description desc{"Allowed options"}; desc.add_options() ("help,h", "show help message") ("role", po::value<std::string>()->default_value("pong"), "role to play (ping | pong)") ("port", po::value<uint16_t>()->default_value(9010), "port #") ("nonce", po::value<uint32_t>()->default_value(42), "a unique number to identify the pong server") ("count", po::value<unsigned>()->default_value(10), "stop after sending/echoing <count> MPing messages") ("v2", po::value<bool>()->default_value(false), "using msgr v2 protocol"); po::variables_map vm; std::vector<std::string> unrecognized_options; try { auto parsed = po::command_line_parser(argc, argv) .options(desc) .allow_unregistered() .run(); po::store(parsed, vm); if (vm.count("help")) { std::cout << desc << std::endl; return 0; } po::notify(vm); unrecognized_options = po::collect_unrecognized(parsed.options, po::include_positional); } catch(const po::error& e) { std::cerr << "error: " << e.what() << std::endl; return 1; } entity_addr_t addr; if (vm["v2"].as<bool>()) { addr.set_type(entity_addr_t::TYPE_MSGR2); } else { addr.set_type(entity_addr_t::TYPE_LEGACY); } addr.set_family(AF_INET); addr.set_port(vm["port"].as<std::uint16_t>()); addr.set_nonce(vm["nonce"].as<std::uint32_t>()); echo_role role = echo_role::as_server; if (vm["role"].as<std::string>() == "ping") { role = echo_role::as_client; } auto count = vm["count"].as<unsigned>(); std::vector<const char*> args(argv, argv + argc); auto cct = global_init(nullptr, args, CEPH_ENTITY_TYPE_CLIENT, CODE_ENVIRONMENT_UTILITY, CINIT_FLAG_NO_MON_CONFIG); common_init_finish(cct.get()); ceph_echo(cct.get(), addr, role, count); }
7,051
29.008511
94
cc
null
ceph-main/src/test/crimson/test_backfill.cc
#include <algorithm> #include <cstdlib> #include <deque> #include <functional> #include <initializer_list> #include <iostream> #include <iterator> #include <limits> #include <map> #include <set> #include <string> #include <boost/statechart/event_base.hpp> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "common/hobject.h" #include "crimson/osd/backfill_state.h" #include "osd/recovery_types.h" // The sole purpose is to convert from the string representation. // An alternative approach could use boost::range in FakeStore's // constructor. struct improved_hobject_t : hobject_t { improved_hobject_t(const char parsable_name[]) { this->parse(parsable_name); } improved_hobject_t(const hobject_t& obj) : hobject_t(obj) { } bool operator==(const improved_hobject_t& rhs) const { return static_cast<const hobject_t&>(*this) == \ static_cast<const hobject_t&>(rhs); } }; struct FakeStore { using objs_t = std::map<improved_hobject_t, eversion_t>; objs_t objs; void push(const hobject_t& obj, eversion_t version) { objs[obj] = version; } void drop(const hobject_t& obj, const eversion_t version) { auto it = objs.find(obj); ceph_assert(it != std::end(objs)); ceph_assert(it->second == version); objs.erase(it); } template <class Func> hobject_t list(const hobject_t& start, Func&& per_entry) const { auto it = objs.lower_bound(start); for (auto max = std::numeric_limits<std::uint64_t>::max(); it != std::end(objs) && max > 0; ++it, --max) { per_entry(*it); } return it != std::end(objs) ? static_cast<const hobject_t&>(it->first) : hobject_t::get_max(); } bool operator==(const FakeStore& rhs) const { return std::size(objs) == std::size(rhs.objs) && \ std::equal(std::begin(objs), std::end(objs), std::begin(rhs.objs)); } bool operator!=(const FakeStore& rhs) const { return !(*this == rhs); } }; struct FakeReplica { FakeStore store; hobject_t last_backfill; FakeReplica(FakeStore&& store) : store(std::move(store)) { } }; struct FakePrimary { FakeStore store; eversion_t last_update; eversion_t projected_last_update; eversion_t log_tail; FakePrimary(FakeStore&& store) : store(std::move(store)) { } }; class BackfillFixture : public crimson::osd::BackfillState::BackfillListener { friend class BackfillFixtureBuilder; FakePrimary backfill_source; std::map<pg_shard_t, FakeReplica> backfill_targets; std::map<pg_shard_t, std::vector<std::pair<hobject_t, eversion_t>>> enqueued_drops; std::deque< boost::intrusive_ptr< const boost::statechart::event_base>> events_to_dispatch; crimson::osd::BackfillState backfill_state; BackfillFixture(FakePrimary&& backfill_source, std::map<pg_shard_t, FakeReplica>&& backfill_targets); template <class EventT> void schedule_event(const EventT& event) { events_to_dispatch.emplace_back(event.intrusive_from_this()); } // BackfillListener { void request_replica_scan( const pg_shard_t& target, const hobject_t& begin, const hobject_t& end) override; void request_primary_scan( const hobject_t& begin) override; void enqueue_push( const hobject_t& obj, const eversion_t& v) override; void enqueue_drop( const pg_shard_t& target, const hobject_t& obj, const eversion_t& v) override; void maybe_flush() override; void update_peers_last_backfill( const hobject_t& new_last_backfill) override; bool budget_available() const override; public: MOCK_METHOD(void, backfilled, (), (override)); // } void next_round(std::size_t how_many=1) { ceph_assert(events_to_dispatch.size() >= how_many); while (how_many-- > 0) { backfill_state.process_event(std::move(events_to_dispatch.front())); events_to_dispatch.pop_front(); } } void next_till_done() { while (!events_to_dispatch.empty()) { next_round(); } } bool all_stores_look_like(const FakeStore& reference) const { const bool all_replica_match = std::all_of( std::begin(backfill_targets), std::end(backfill_targets), [&reference] (const auto kv) { return kv.second.store == reference; }); return backfill_source.store == reference && all_replica_match; } struct PeeringFacade; struct PGFacade; }; struct BackfillFixture::PeeringFacade : public crimson::osd::BackfillState::PeeringFacade { FakePrimary& backfill_source; std::map<pg_shard_t, FakeReplica>& backfill_targets; // sorry, this is duplicative but that's the interface std::set<pg_shard_t> backfill_targets_as_set; PeeringFacade(FakePrimary& backfill_source, std::map<pg_shard_t, FakeReplica>& backfill_targets) : backfill_source(backfill_source), backfill_targets(backfill_targets) { std::transform( std::begin(backfill_targets), std::end(backfill_targets), std::inserter(backfill_targets_as_set, std::end(backfill_targets_as_set)), [](auto pair) { return pair.first; }); } hobject_t earliest_backfill() const override { hobject_t e = hobject_t::get_max(); for (const auto& kv : backfill_targets) { e = std::min(kv.second.last_backfill, e); } return e; } const std::set<pg_shard_t>& get_backfill_targets() const override { return backfill_targets_as_set; } const hobject_t& get_peer_last_backfill(pg_shard_t peer) const override { return backfill_targets.at(peer).last_backfill; } const eversion_t& get_last_update() const override { return backfill_source.last_update; } const eversion_t& get_log_tail() const override { return backfill_source.log_tail; } void scan_log_after(eversion_t, scan_log_func_t) const override { /* NOP */ } bool is_backfill_target(pg_shard_t peer) const override { return backfill_targets.count(peer) == 1; } void update_complete_backfill_object_stats(const hobject_t &hoid, const pg_stat_t &stats) override { } bool is_backfilling() const override { return true; } }; struct BackfillFixture::PGFacade : public crimson::osd::BackfillState::PGFacade { FakePrimary& backfill_source; PGFacade(FakePrimary& backfill_source) : backfill_source(backfill_source) { } const eversion_t& get_projected_last_update() const override { return backfill_source.projected_last_update; } }; BackfillFixture::BackfillFixture( FakePrimary&& backfill_source, std::map<pg_shard_t, FakeReplica>&& backfill_targets) : backfill_source(std::move(backfill_source)), backfill_targets(std::move(backfill_targets)), backfill_state(*this, std::make_unique<PeeringFacade>(this->backfill_source, this->backfill_targets), std::make_unique<PGFacade>(this->backfill_source)) { backfill_state.process_event(crimson::osd::BackfillState::Triggered{}.intrusive_from_this()); } void BackfillFixture::request_replica_scan( const pg_shard_t& target, const hobject_t& begin, const hobject_t& end) { BackfillInterval bi; bi.end = backfill_targets.at(target).store.list(begin, [&bi](auto kv) { bi.objects.insert(std::move(kv)); }); bi.begin = begin; bi.version = backfill_source.last_update; schedule_event(crimson::osd::BackfillState::ReplicaScanned{ target, std::move(bi) }); } void BackfillFixture::request_primary_scan( const hobject_t& begin) { BackfillInterval bi; bi.end = backfill_source.store.list(begin, [&bi](auto kv) { bi.objects.insert(std::move(kv)); }); bi.begin = begin; bi.version = backfill_source.last_update; schedule_event(crimson::osd::BackfillState::PrimaryScanned{ std::move(bi) }); } void BackfillFixture::enqueue_push( const hobject_t& obj, const eversion_t& v) { for (auto& [ _, bt ] : backfill_targets) { bt.store.push(obj, v); } schedule_event(crimson::osd::BackfillState::ObjectPushed{ obj }); } void BackfillFixture::enqueue_drop( const pg_shard_t& target, const hobject_t& obj, const eversion_t& v) { enqueued_drops[target].emplace_back(obj, v); } void BackfillFixture::maybe_flush() { for (const auto& [target, versioned_objs] : enqueued_drops) { for (const auto& [obj, v] : versioned_objs) { backfill_targets.at(target).store.drop(obj, v); } } enqueued_drops.clear(); } void BackfillFixture::update_peers_last_backfill( const hobject_t& new_last_backfill) { } bool BackfillFixture::budget_available() const { return true; } struct BackfillFixtureBuilder { FakeStore backfill_source; std::map<pg_shard_t, FakeReplica> backfill_targets; static BackfillFixtureBuilder add_source(FakeStore::objs_t objs) { BackfillFixtureBuilder bfb; bfb.backfill_source = FakeStore{ std::move(objs) }; return bfb; } BackfillFixtureBuilder&& add_target(FakeStore::objs_t objs) && { const auto new_osd_num = std::size(backfill_targets); const auto [ _, inserted ] = backfill_targets.emplace( new_osd_num, FakeReplica{ FakeStore{std::move(objs)} }); ceph_assert(inserted); return std::move(*this); } BackfillFixture get_result() && { return BackfillFixture{ std::move(backfill_source), std::move(backfill_targets) }; } }; // The straightest case: single primary, single replica. All have the same // content in their object stores, so the entire backfill boils into just // `request_primary_scan()` and `request_replica_scan()`. TEST(backfill, same_primary_same_replica) { const auto reference_store = FakeStore{ { { "1:00058bcc:::rbd_data.1018ac3e755.00000000000000d5:head", {10, 234} }, { "1:00ed7f8e:::rbd_data.1018ac3e755.00000000000000af:head", {10, 196} }, { "1:01483aea:::rbd_data.1018ac3e755.0000000000000095:head", {10, 169} }, }}; auto cluster_fixture = BackfillFixtureBuilder::add_source( reference_store.objs ).add_target( reference_store.objs ).get_result(); cluster_fixture.next_round(); EXPECT_CALL(cluster_fixture, backfilled); cluster_fixture.next_round(); EXPECT_TRUE(cluster_fixture.all_stores_look_like(reference_store)); } TEST(backfill, one_empty_replica) { const auto reference_store = FakeStore{ { { "1:00058bcc:::rbd_data.1018ac3e755.00000000000000d5:head", {10, 234} }, { "1:00ed7f8e:::rbd_data.1018ac3e755.00000000000000af:head", {10, 196} }, { "1:01483aea:::rbd_data.1018ac3e755.0000000000000095:head", {10, 169} }, }}; auto cluster_fixture = BackfillFixtureBuilder::add_source( reference_store.objs ).add_target( { /* nothing */ } ).get_result(); cluster_fixture.next_round(); cluster_fixture.next_round(); cluster_fixture.next_round(2); EXPECT_CALL(cluster_fixture, backfilled); cluster_fixture.next_round(); EXPECT_TRUE(cluster_fixture.all_stores_look_like(reference_store)); } TEST(backfill, two_empty_replicas) { const auto reference_store = FakeStore{ { { "1:00058bcc:::rbd_data.1018ac3e755.00000000000000d5:head", {10, 234} }, { "1:00ed7f8e:::rbd_data.1018ac3e755.00000000000000af:head", {10, 196} }, { "1:01483aea:::rbd_data.1018ac3e755.0000000000000095:head", {10, 169} }, }}; auto cluster_fixture = BackfillFixtureBuilder::add_source( reference_store.objs ).add_target( { /* nothing 1 */ } ).add_target( { /* nothing 2 */ } ).get_result(); EXPECT_CALL(cluster_fixture, backfilled); cluster_fixture.next_till_done(); EXPECT_TRUE(cluster_fixture.all_stores_look_like(reference_store)); } namespace StoreRandomizer { // FIXME: copied & pasted from test/test_snap_mapper.cc. We need to // find a way to avoid code duplication in test. A static library? std::string random_string(std::size_t size) { std::string name; for (size_t j = 0; j < size; ++j) { name.push_back('a' + (std::rand() % 26)); } return name; } hobject_t random_hobject() { uint32_t mask{0}; uint32_t bits{0}; return hobject_t( random_string(1+(std::rand() % 16)), random_string(1+(std::rand() % 16)), snapid_t(std::rand() % 1000), (std::rand() & ((~0)<<bits)) | (mask & ~((~0)<<bits)), 0, random_string(std::rand() % 16)); } eversion_t random_eversion() { return eversion_t{ std::rand() % 512U, std::rand() % 256UL }; } FakeStore create() { FakeStore store; for (std::size_t i = std::rand() % 2048; i > 0; --i) { store.push(random_hobject(), random_eversion()); } return store; } template <class... Args> void execute_random(Args&&... args) { std::array<std::function<void()>, sizeof...(Args)> funcs = { std::forward<Args>(args)... }; return std::move(funcs[std::rand() % std::size(funcs)])(); } FakeStore mutate(const FakeStore& source_store) { FakeStore mutated_store; source_store.list(hobject_t{}, [&] (const auto& kv) { const auto &oid = kv.first; const auto &version = kv.second; execute_random( [] { /* just drop the entry */ }, [&] { mutated_store.push(oid, version); }, [&] { mutated_store.push(oid, random_eversion()); }, [&] { mutated_store.push(random_hobject(), version); }, [&] { for (auto how_many = std::rand() % 8; how_many > 0; --how_many) { mutated_store.push(random_hobject(), random_eversion()); } } ); }); return mutated_store; } } // The name might suggest randomness is involved here. Well, that's true // but till we know the seed the test still is repeatable. TEST(backfill, one_pseudorandomized_replica) { const auto reference_store = StoreRandomizer::create(); auto cluster_fixture = BackfillFixtureBuilder::add_source( reference_store.objs ).add_target( StoreRandomizer::mutate(reference_store).objs ).get_result(); EXPECT_CALL(cluster_fixture, backfilled); cluster_fixture.next_till_done(); EXPECT_TRUE(cluster_fixture.all_stores_look_like(reference_store)); } TEST(backfill, two_pseudorandomized_replicas) { const auto reference_store = StoreRandomizer::create(); auto cluster_fixture = BackfillFixtureBuilder::add_source( reference_store.objs ).add_target( StoreRandomizer::mutate(reference_store).objs ).add_target( StoreRandomizer::mutate(reference_store).objs ).get_result(); EXPECT_CALL(cluster_fixture, backfilled); cluster_fixture.next_till_done(); EXPECT_TRUE(cluster_fixture.all_stores_look_like(reference_store)); }
14,609
28.103586
95
cc
null
ceph-main/src/test/crimson/test_buffer.cc
#include <iostream> #include <seastar/core/app-template.hh> #include <seastar/core/future-util.hh> #include <seastar/core/reactor.hh> #include "include/buffer.h" // allocate a foreign buffer on each cpu, collect them all into a bufferlist, // and destruct it on this cpu seastar::future<> test_foreign_bufferlist() { auto make_foreign_buffer = [] (unsigned cpu) { return seastar::smp::submit_to(cpu, [=] { bufferlist bl; seastar::temporary_buffer<char> buf("abcd", 4); bl.append(buffer::create(std::move(buf))); return bl; }); }; auto reduce = [] (bufferlist&& lhs, bufferlist&& rhs) { bufferlist bl; bl.claim_append(lhs); bl.claim_append(rhs); return bl; }; return seastar::map_reduce(seastar::smp::all_cpus(), make_foreign_buffer, bufferlist(), reduce).then( [] (bufferlist&& bl) { if (bl.length() != 4 * seastar::smp::count) { auto e = std::make_exception_ptr(std::runtime_error("wrong buffer size")); return seastar::make_exception_future<>(e); } bl.clear(); return seastar::make_ready_future<>(); }); } int main(int argc, char** argv) { seastar::app_template app; return app.run(argc, argv, [] { return seastar::now().then( &test_foreign_bufferlist ).then([] { std::cout << "All tests succeeded" << std::endl; }).handle_exception([] (auto eptr) { std::cout << "Test failure" << std::endl; return seastar::make_exception_future<>(eptr); }); }); }
1,534
29.098039
82
cc
null
ceph-main/src/test/crimson/test_config.cc
#include <chrono> #include <string> #include <numeric> #include <seastar/core/app-template.hh> #include <seastar/core/sharded.hh> #include "common/ceph_argparse.h" #include "common/config_obs.h" #include "crimson/common/config_proxy.h" using namespace std::literals; using Config = crimson::common::ConfigProxy; const std::string test_uint_option = "osd_max_pgls"; const uint64_t INVALID_VALUE = (uint64_t)(-1); const uint64_t EXPECTED_VALUE = 42; class ConfigObs : public ceph::md_config_obs_impl<Config> { uint64_t last_change = INVALID_VALUE; uint64_t num_changes = 0; const char** get_tracked_conf_keys() const override { static const char* keys[] = { test_uint_option.c_str(), nullptr, }; return keys; } void handle_conf_change(const Config& conf, const std::set <std::string> &changes) override{ if (changes.count(test_uint_option)) { last_change = conf.get_val<uint64_t>(test_uint_option); num_changes += 1; } } public: ConfigObs() { crimson::common::local_conf().add_observer(this); } uint64_t get_last_change() const { return last_change; } uint64_t get_num_changes() const { return num_changes; } seastar::future<> stop() { crimson::common::local_conf().remove_observer(this); return seastar::make_ready_future<>(); } }; seastar::sharded<ConfigObs> sharded_cobs; static seastar::future<> test_config() { return crimson::common::sharded_conf().start(EntityName{}, "ceph"sv).then([] { std::vector<const char*> args; std::string cluster; std::string conf_file_list; auto init_params = ceph_argparse_early_args(args, CEPH_ENTITY_TYPE_CLIENT, &cluster, &conf_file_list); auto& conf = crimson::common::local_conf(); conf->name = init_params.name; conf->cluster = cluster; return conf.parse_config_files(conf_file_list); }).then([] { return crimson::common::sharded_conf().invoke_on(0, &Config::start); }).then([] { return sharded_cobs.start(); }).then([] { auto& conf = crimson::common::local_conf(); return conf.set_val(test_uint_option, std::to_string(EXPECTED_VALUE)); }).then([] { return crimson::common::sharded_conf().invoke_on_all([](Config& config) { if (config.get_val<uint64_t>(test_uint_option) != EXPECTED_VALUE) { throw std::runtime_error("configurations don't match"); } if (sharded_cobs.local().get_last_change() != EXPECTED_VALUE) { throw std::runtime_error("last applied changes don't match the latest config"); } if (sharded_cobs.local().get_num_changes() != 1) { throw std::runtime_error("num changes don't match actual changes"); } }); }).finally([] { return sharded_cobs.stop(); }).finally([] { return crimson::common::sharded_conf().stop(); }); } int main(int argc, char** argv) { seastar::app_template app; return app.run(argc, argv, [&] { return test_config().then([] { std::cout << "All tests succeeded" << std::endl; }).handle_exception([] (auto eptr) { std::cout << "Test failure" << std::endl; return seastar::make_exception_future<>(eptr); }); }); } /* * Local Variables: * compile-command: "make -j4 \ * -C ../../../build \ * unittest_seastar_config" * End: */
3,436
30.245455
87
cc
null
ceph-main/src/test/crimson/test_denc.cc
#include <string> #include <seastar/core/temporary_buffer.hh> #include <gtest/gtest.h> #include "include/denc.h" #include "common/buffer_seastar.h" using temporary_buffer = seastar::temporary_buffer<char>; using buffer_iterator = seastar_buffer_iterator; using const_buffer_iterator = const_seastar_buffer_iterator; template<typename T> void test_denc(T v) { // estimate size_t s = 0; denc(v, s); ASSERT_NE(s, 0u); // encode temporary_buffer buf{s}; buffer_iterator enc{buf}; denc(v, enc); size_t len = enc.get() - buf.begin(); ASSERT_LE(len, s); // decode T out; temporary_buffer encoded = buf.share(); encoded.trim(len); const_buffer_iterator dec{encoded}; denc(out, dec); ASSERT_EQ(v, out); ASSERT_EQ(dec.get(), enc.get()); } TEST(denc, simple) { test_denc((uint8_t)4); test_denc((int8_t)-5); test_denc((uint16_t)6); test_denc((int16_t)-7); test_denc((uint32_t)8); test_denc((int32_t)-9); test_denc((uint64_t)10); test_denc((int64_t)-11); } TEST(denc, string) { std::string a, b("hi"), c("multi\nline\n"); test_denc(a); test_denc(b); test_denc(c); }
1,119
19.740741
60
cc