diff --git a/common/gossip_store.c b/common/gossip_store.c index e209eedeaf02..10f4dabe4972 100644 --- a/common/gossip_store.c +++ b/common/gossip_store.c @@ -30,6 +30,8 @@ bool gossip_store_readhdr(int gossip_store_fd, size_t off, r = pread(gossip_store_fd, &buf, HDR_AND_TYPE_SIZE, off); if (r != HDR_AND_TYPE_SIZE) return false; + if (!(buf.hdr.flags & CPU_TO_BE16(GOSSIP_STORE_COMPLETED_BIT))) + return false; *len = be16_to_cpu(buf.hdr.len); if (flags) *flags = be16_to_cpu(buf.hdr.flags); diff --git a/common/gossip_store.h b/common/gossip_store.h index 9da13b521a01..013f8003a2e1 100644 --- a/common/gossip_store.h +++ b/common/gossip_store.h @@ -15,7 +15,7 @@ struct gossip_rcvd_filter; /* First byte of file is the version. * * Top three bits mean incompatible change. - * As of this writing, major == 0, minor == 13. + * As of this writing, major == 0, minor == 15. */ #define GOSSIP_STORE_MAJOR_VERSION_MASK 0xE0 #define GOSSIP_STORE_MINOR_VERSION_MASK 0x1F @@ -30,9 +30,9 @@ struct gossip_rcvd_filter; #define GOSSIP_STORE_DELETED_BIT 0x8000U /** - * Bit of flags we use to mark an important record. + * Bit of flags indicating record has been written. */ -#define GOSSIP_STORE_PUSH_BIT 0x4000U +#define GOSSIP_STORE_COMPLETED_BIT 0x2000U /** * Bit of flags used to mark a channel announcement closed (not deleted for 12 blocks) diff --git a/common/gossmap.c b/common/gossmap.c index 1fbd72f9497d..1f3c5c017df0 100644 --- a/common/gossmap.c +++ b/common/gossmap.c @@ -694,10 +694,15 @@ static bool map_catchup(struct gossmap *map, bool must_be_clean, bool *changed) reclen = msglen + sizeof(ghdr); flags = be16_to_cpu(ghdr.flags); + + /* Not finished, this can happen. */ + if (!(flags & GOSSIP_STORE_COMPLETED_BIT)) + break; + if (flags & GOSSIP_STORE_DELETED_BIT) continue; - /* Partial write, this can happen. */ + /* Partial write, should not happen with completed records. */ if (map->map_end + reclen > map->map_size) break; @@ -706,8 +711,10 @@ static bool map_catchup(struct gossmap *map, bool must_be_clean, bool *changed) map->logcb(map->cbarg, LOG_BROKEN, "Truncated gossmap record @%"PRIu64 - "/%"PRIu64" (len %zu): waiting", - map->map_end, map->map_size, msglen); + "/%"PRIu64" (len %zu): waiting%s", + map->map_end, map->map_size, msglen, + gossmap_has_mmap(map) ? " and disabling mmap" : ""); + gossmap_disable_mmap(map); if (must_be_clean) return false; break; @@ -725,10 +732,12 @@ static bool map_catchup(struct gossmap *map, bool must_be_clean, bool *changed) map->logcb(map->cbarg, LOG_BROKEN, "Bad checksum on gossmap record @%"PRIu64 - "/%"PRIu64" should be %u (%s): waiting", + "/%"PRIu64" should be %u (%s): waiting%s", map->map_end, map->map_size, be32_to_cpu(ghdr.crc), - tal_hexstr(tmpctx, msgbuf, msglen)); + tal_hexstr(tmpctx, msgbuf, msglen), + gossmap_has_mmap(map) ? " and disabling mmap" : ""); + gossmap_disable_mmap(map); if (must_be_clean) return false; break; @@ -779,12 +788,9 @@ static bool load_gossip_store(struct gossmap *map, bool must_be_clean) map->local_announces = NULL; map->local_updates = NULL; - /* gossipd uses pwritev(), which is not consistent with mmap on OpenBSD! */ -#ifndef __OpenBSD__ /* If this fails, we fall back to read */ map->mmap = mmap(NULL, map->map_size, PROT_READ, MAP_SHARED, map->fd, 0); if (map->mmap == MAP_FAILED) -#endif /* __OpenBSD__ */ map->mmap = NULL; /* We only support major version 0 */ @@ -1211,20 +1217,19 @@ bool gossmap_refresh(struct gossmap *map) /* You must remove local modifications before this. */ assert(!map->local_announces); - /* If file has gotten larger, try rereading */ + /* If file has gotten larger, remap */ len = lseek(map->fd, 0, SEEK_END); - if (len == map->map_size) - return false; + if (len != map->map_size) { + if (map->mmap) + munmap(map->mmap, map->map_size); + map->map_size = len; - if (map->mmap) - munmap(map->mmap, map->map_size); - map->map_size = len; - /* gossipd uses pwritev(), which is not consistent with mmap on OpenBSD! */ -#ifndef __OpenBSD__ - map->mmap = mmap(NULL, map->map_size, PROT_READ, MAP_SHARED, map->fd, 0); - if (map->mmap == MAP_FAILED) -#endif /* __OpenBSD__ */ - map->mmap = NULL; + if (map->mmap) { + map->mmap = mmap(NULL, map->map_size, PROT_READ, MAP_SHARED, map->fd, 0); + if (map->mmap == MAP_FAILED) + map->mmap = NULL; + } + } map_catchup(map, false, &changed); return changed; @@ -1857,16 +1862,14 @@ int gossmap_fd(const struct gossmap *map) return map->fd; } -const u8 *gossmap_fetch_tail(const tal_t *ctx, const struct gossmap *map) +bool gossmap_has_mmap(const struct gossmap *map) { - size_t len; - u8 *p; + return map->mmap != NULL; +} - /* Shouldn't happen... */ - if (map->map_end > map->map_size) - return NULL; - len = map->map_size - map->map_end; - p = tal_arr(ctx, u8, len); - map_copy(map, map->map_size, p, len); - return p; +void gossmap_disable_mmap(struct gossmap *map) +{ + if (map->mmap) + munmap(map->mmap, map->map_size); + map->mmap = NULL; } diff --git a/common/gossmap.h b/common/gossmap.h index 14a17a047a7d..ef3b71a6dc41 100644 --- a/common/gossmap.h +++ b/common/gossmap.h @@ -70,6 +70,10 @@ struct gossmap *gossmap_load_(const tal_t *ctx, ...), void *cb_arg); +/* Disable mmap. Noop if already disabled. */ +void gossmap_disable_mmap(struct gossmap *map); +bool gossmap_has_mmap(const struct gossmap *map); + /* Call this before using to ensure it's up-to-date. Returns true if something * was updated. Note: this can scramble node and chan indexes! */ bool gossmap_refresh(struct gossmap *map); @@ -304,7 +308,4 @@ u64 gossmap_lengths(const struct gossmap *map, u64 *total); /* Debugging: connectd wants to enumerate fds */ int gossmap_fd(const struct gossmap *map); - -/* Fetch unprocessed part of gossmap */ -const u8 *gossmap_fetch_tail(const tal_t *ctx, const struct gossmap *map); #endif /* LIGHTNING_COMMON_GOSSMAP_H */ diff --git a/common/test/run-gossmap_canned.c b/common/test/run-gossmap_canned.c index c373248d96ca..fd5af5e00163 100644 --- a/common/test/run-gossmap_canned.c +++ b/common/test/run-gossmap_canned.c @@ -35,180 +35,123 @@ void towire_channel_id(u8 **pptr UNNEEDED, const struct channel_id *channel_id U * $> od -tx1 -Anone -v < /tmp/ltests-rtchpzh1/test_gossip_store_compact_noappend_1/lightning-2/regtest/gossip_store | sed 's/ / 0x/g'| cut -c2- | sed -e 's/ /,/g' -e 's/$/,/' */ static u8 canned_map[] = { - 0x0c,0x80,0x00,0x01,0xbc,0x09,0x8b,0x67,0xe6,0x00,0x00,0x00,0x00,0x10,0x08,0x00, - 0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x01,0xb0,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x6e, + 0x0f,0x20,0x00,0x01,0xb0,0x6e,0x30,0x94,0x60,0x65,0x55,0xb3,0x60,0x01,0x00,0x00, + 0x33,0x57,0x33,0xf5,0x94,0x2d,0xf5,0xd9,0x50,0xeb,0x87,0x66,0xde,0xe3,0xa9,0xd6, + 0x62,0x69,0x22,0x84,0x4e,0xd6,0xae,0x7a,0x11,0x0d,0xd7,0xe7,0xed,0xc3,0x2e,0x3f, + 0x6f,0x3d,0x9a,0xc5,0xcd,0xea,0x23,0xce,0x25,0xbb,0x8d,0xbf,0x76,0x1f,0xd3,0xd5, + 0xfc,0x56,0xc0,0x5b,0x68,0x56,0x31,0x6d,0x12,0xe9,0xd3,0x2c,0xa0,0xf0,0x8c,0x69, + 0xca,0x03,0x06,0xfe,0x71,0x6e,0x7b,0x51,0x51,0x31,0x7d,0x64,0x40,0xb7,0x37,0x3d, + 0x9f,0xbc,0x64,0x6e,0xad,0x48,0xf2,0x16,0x3f,0x2b,0x6d,0x51,0x1a,0xfe,0x6a,0x79, + 0xc7,0x55,0x51,0xc2,0x62,0x0f,0xc8,0x09,0x74,0xf2,0xf8,0x64,0x32,0x9d,0x97,0x78, + 0xa0,0x8c,0xdf,0xbc,0x9f,0x2c,0x9c,0x13,0x44,0xc4,0x32,0x70,0x2c,0x66,0x80,0x7c, + 0xfb,0x4d,0xb6,0x9b,0x80,0xfa,0xe8,0xc3,0x3c,0x70,0x14,0x3d,0x94,0x8b,0x36,0x61, + 0x4d,0x62,0x08,0x91,0xbe,0xe2,0xdf,0x99,0xc8,0x6b,0xc6,0x22,0x07,0xc1,0x7e,0x3b, + 0x91,0x86,0x21,0x4c,0x0c,0xcf,0xf2,0xde,0xd5,0x59,0x8a,0xcc,0xc9,0x0e,0xb1,0xd5, + 0xb2,0xf7,0xa8,0x3c,0xd7,0xf6,0x8d,0x71,0x2e,0xa0,0x47,0xd8,0x01,0x9f,0x34,0x30, + 0x63,0xb0,0xa2,0x36,0x35,0x6a,0x38,0x71,0x46,0xf5,0x8f,0xa8,0x32,0xdd,0xc1,0x3c, + 0x47,0x14,0x52,0x2c,0xbb,0x50,0x3f,0x5f,0x3c,0xa8,0xfc,0xec,0x66,0x02,0xbe,0x24, + 0x38,0xad,0x3f,0x98,0xfa,0x0c,0xee,0xd5,0x8f,0xe3,0xa0,0x66,0xd3,0x85,0xfc,0xac, + 0xd9,0x8c,0x70,0x4b,0x2a,0x8e,0x98,0xa3,0xe2,0x0b,0xf7,0x6b,0x35,0xb7,0x36,0x00, + 0x00,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b, + 0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91, + 0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59, + 0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22, + 0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x03,0x5d,0x2b,0x11,0x92,0xdf, + 0xba,0x13,0x4e,0x10,0xe5,0x40,0x87,0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa, + 0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c,0x3a,0x5d,0x88,0x5d,0x02,0x90,0x53,0x52,0x1d, + 0x6e,0xa7,0xa5,0x2c,0xdd,0x55,0xf7,0x33,0xd0,0xfb,0x2d,0x07,0x7c,0x03,0x73,0xb0, + 0x05,0x3b,0x5b,0x81,0x0d,0x92,0x72,0x44,0x06,0x1b,0x75,0x73,0x02,0xd6,0x06,0x3d, + 0x02,0x26,0x91,0xb2,0x49,0x0a,0xb4,0x54,0xde,0xe7,0x3a,0x57,0xc6,0xff,0x5d,0x30, + 0x83,0x52,0xb4,0x61,0xec,0xe6,0x9f,0x3c,0x28,0x4f,0x2c,0x24,0x12,0x20,0x00,0x00, + 0x0a,0x91,0x11,0x83,0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00, + 0x0f,0x42,0x40,0xa0,0x00,0x00,0x8a,0xc5,0x33,0xff,0x38,0x65,0x55,0xb3,0x60,0x01, + 0x02,0x2f,0xd9,0x23,0x60,0x1e,0x1c,0xa0,0xac,0xe5,0x06,0x8c,0xe4,0x8e,0x14,0xf3, + 0xcd,0x31,0x44,0x16,0xc4,0x0d,0x2e,0x14,0x8c,0xa1,0xc8,0x4f,0xa6,0xa8,0xe4,0x64, + 0x9b,0x45,0x79,0xd1,0xb5,0x2f,0x04,0x19,0x86,0xe5,0x5c,0x99,0x43,0xf1,0xd0,0xf3, + 0x6f,0x52,0xd6,0x88,0xf0,0x9b,0x9c,0x58,0x98,0x69,0x0d,0x4e,0x76,0x3e,0xbd,0x6e, + 0x95,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b, + 0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91, + 0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x60,0x01,0x00,0x00, + 0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, + 0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x95,0x97,0xd7,0xa4, + 0x39,0x65,0x55,0xb3,0x65,0x01,0x01,0x36,0x59,0x20,0x77,0x0e,0xf4,0x73,0x10,0xd7, + 0xb6,0x59,0x5a,0x7c,0xbe,0xd0,0x56,0x51,0x3d,0x97,0xbe,0x84,0xb7,0x02,0xb5,0x89, + 0x72,0xbd,0xb3,0x19,0x2a,0x54,0x5f,0x57,0x52,0x09,0x1d,0xff,0x0f,0xe6,0x70,0x1e, + 0x71,0x23,0xaa,0x3f,0x98,0x89,0x86,0x35,0x87,0xc2,0x66,0xd9,0x99,0xbd,0xa2,0x7e, + 0x16,0x12,0xd9,0x6b,0xc4,0xd3,0x0c,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2, + 0x65,0x55,0xb3,0x65,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac, + 0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c, + 0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x2d,0x22,0x53,0x49,0x4c,0x45,0x4e,0x54,0x41,0x52, + 0x54,0x49,0x53,0x54,0x2d,0x31,0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36, + 0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00,0xa0,0x00,0x00,0x8a,0xd0,0xde, + 0x20,0xc6,0x65,0x55,0xb3,0x60,0x01,0x02,0x11,0xd6,0x4b,0xc5,0x88,0x33,0x4b,0x6c, + 0x1e,0x0c,0x4c,0x5c,0x65,0x69,0x35,0x66,0x45,0x80,0xbc,0x4b,0x56,0x3d,0x98,0x2c, + 0xb3,0x45,0xef,0x22,0x44,0x6e,0xca,0x6c,0x1f,0xe9,0x2a,0xf2,0x4a,0xe1,0x26,0xdb, + 0x15,0x6f,0x7e,0x3b,0xdd,0xd3,0x40,0x54,0xb2,0xc7,0x07,0xfe,0x67,0xb0,0xf3,0x35, + 0x56,0x25,0xc6,0x53,0xfd,0x54,0x56,0x5e,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59, + 0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f, + 0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00, + 0x65,0x55,0xb3,0x60,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80, + 0x20,0x00,0x00,0x95,0x87,0xf8,0x92,0xf3,0x65,0x55,0xb3,0x65,0x01,0x01,0x32,0x6c, + 0xde,0x4a,0xc5,0xe8,0xd4,0xa0,0xed,0xbc,0x2c,0x13,0x5e,0xb9,0x1e,0xc3,0xc3,0x86, + 0xcb,0x75,0xeb,0x6f,0xce,0xc5,0xc5,0x57,0x01,0x1c,0x9c,0xb7,0x32,0x17,0x01,0x10, + 0x8c,0xdd,0x04,0x31,0x78,0xae,0xb4,0x88,0x8d,0xf8,0xe8,0x35,0x90,0x69,0x91,0x84, + 0xd0,0x16,0xd8,0x44,0xbc,0xde,0x37,0xe8,0x4e,0x1a,0x95,0xb6,0xa6,0x73,0x00,0x07, + 0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65,0x55,0xb3,0x65,0x03,0x5d,0x2b,0x11,0x92, + 0xdf,0xba,0x13,0x4e,0x10,0xe5,0x40,0x87,0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5, + 0xaa,0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c,0x3a,0x5d,0x88,0x5d,0x03,0x5d,0x2b,0x48, + 0x4f,0x50,0x50,0x49,0x4e,0x47,0x46,0x49,0x52,0x45,0x2d,0x63,0x31,0x2d,0x31,0x2d, + 0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00, + 0x00,0x20,0x00,0x00,0x8a,0xcb,0xd4,0xc7,0xa1,0x65,0x55,0xb3,0x65,0x01,0x02,0x1d, + 0x3f,0x42,0x7f,0x3d,0xdb,0x58,0x2b,0xcb,0x78,0x5d,0x24,0xf1,0x67,0xc6,0xc7,0xd8, + 0x6e,0x6c,0x5b,0xf8,0xfb,0x27,0x17,0x58,0xaa,0x7e,0x46,0x86,0x49,0x66,0x21,0x47, + 0x76,0xbd,0xf2,0x2d,0xae,0x29,0xf0,0x6f,0x17,0x6e,0xf2,0x7f,0x01,0xda,0x16,0xa9, + 0x1d,0x6a,0x61,0x4c,0x41,0x71,0x19,0x4d,0x37,0xac,0x8a,0x28,0xd8,0x62,0xfb,0x06, + 0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28, + 0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00, + 0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x65,0x01,0x00,0x00,0x06,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00, + 0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x8a,0xbf,0x0d,0x7a,0xbc,0x65, + 0x55,0xb3,0x6f,0x01,0x02,0x59,0xc9,0x36,0x84,0xaa,0x13,0x70,0x73,0x7d,0xa7,0xe6, + 0x8a,0x72,0x05,0x15,0xa9,0x06,0x69,0xe0,0xc0,0x0d,0x15,0x6d,0x22,0x5c,0xd6,0x1a, + 0x3e,0x56,0xaa,0x9d,0x98,0x68,0x5a,0x3c,0xdc,0x38,0x71,0xee,0x0d,0x02,0x3e,0x2f, + 0xd0,0x97,0xd7,0xab,0xe2,0x0d,0xdf,0xf5,0xa6,0xd1,0x9c,0xb6,0xb9,0x30,0xd6,0xdd, + 0x10,0xa7,0xa3,0xce,0x5e,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, + 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, + 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3, + 0x6f,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x01, + 0xb0,0xb8,0x17,0x71,0xe9,0x65,0x55,0xb3,0x71,0x01,0x00,0x0d,0xef,0xc0,0x12,0x4f, + 0xd4,0xe4,0x1c,0xce,0xc3,0xf4,0x83,0x17,0x21,0x7e,0x33,0x11,0x5a,0x8f,0x8c,0x39, + 0xae,0xbb,0x06,0x2b,0x4e,0x73,0xa6,0x52,0xee,0x0e,0x61,0x03,0xf9,0xf1,0x16,0x7b, + 0x22,0xbd,0xcb,0x92,0xcf,0x82,0x2d,0x0f,0xcc,0x26,0xcb,0x11,0x9f,0x0a,0xf5,0x23, + 0xf4,0x26,0x97,0x86,0x7e,0x21,0x51,0x85,0x16,0x3a,0x0e,0x4b,0x1f,0x64,0xf3,0x62, + 0xf4,0x2f,0x13,0x54,0x5c,0x9a,0xed,0xd6,0x9d,0x5d,0xf5,0x17,0x85,0xcc,0x5d,0x53, + 0xa4,0x84,0x36,0x9b,0xe9,0xa7,0x4a,0x04,0x1f,0x8c,0x1c,0x28,0xc7,0x1e,0xab,0xb3, + 0xf2,0x53,0x3d,0xf8,0xb6,0xcd,0xd8,0x45,0x6e,0xc3,0x77,0xdb,0xb1,0x2b,0xa5,0xdd, + 0xc9,0xbf,0x69,0xa7,0xdf,0x98,0x2c,0x54,0xa7,0xa8,0xf5,0x4f,0xc3,0xd1,0x57,0x81, + 0x98,0x60,0xa0,0xb6,0x32,0x83,0x08,0x65,0x1e,0x79,0x24,0xf4,0xbe,0xfe,0x14,0xa6, + 0xfd,0x31,0x9b,0xfa,0x15,0x6f,0x1b,0xab,0x64,0x8b,0x69,0x48,0xb4,0x2e,0x99,0xca, + 0xd7,0x46,0x97,0x57,0x17,0x1d,0x5d,0x53,0xe5,0xde,0xae,0xbb,0x2d,0x74,0x86,0xa5, + 0xe5,0x8e,0x02,0x5c,0x2c,0x8d,0x0d,0x78,0xdc,0xf1,0xa0,0x05,0xb8,0xbd,0x64,0x7d, + 0x51,0x47,0x5e,0x39,0xaa,0x08,0x2d,0xf2,0xd0,0x1a,0x96,0x59,0xab,0x88,0x94,0xa2, + 0xf7,0x2e,0x09,0x3b,0xd0,0xed,0xfc,0xb4,0x1b,0xaa,0xba,0x34,0xf8,0x7b,0x11,0x51, + 0x36,0x7b,0x13,0x84,0x6f,0xc9,0x4a,0x58,0x92,0x3c,0x0c,0xa2,0x4c,0x8f,0xc5,0x78, + 0xb4,0x4a,0xad,0x98,0x08,0x4e,0x4a,0xf3,0x7a,0x28,0x80,0x00,0x00,0x06,0x22,0x6e, 0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f, - 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67, + 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e, 0x00,0x00,0x01,0x00,0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7, 0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1, - 0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x03,0x5d,0x2b,0x11,0x92,0xdf,0xba,0x13,0x4e,0x10, - 0xe5,0x40,0x87,0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa,0x76,0x6b,0x80,0xc0, - 0x90,0xb3,0x9c,0x3a,0x5d,0x88,0x5d,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64,0x40, - 0x99,0x5d,0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19,0xff, - 0x9c,0x17,0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64, - 0x40,0x99,0x5d,0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19, - 0xff,0x9c,0x17,0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x00,0x00,0x01,0xb0,0x6e,0x30,0x94, - 0x60,0x65,0x55,0xb3,0x60,0x01,0x00,0x00,0x33,0x57,0x33,0xf5,0x94,0x2d,0xf5,0xd9, - 0x50,0xeb,0x87,0x66,0xde,0xe3,0xa9,0xd6,0x62,0x69,0x22,0x84,0x4e,0xd6,0xae,0x7a, - 0x11,0x0d,0xd7,0xe7,0xed,0xc3,0x2e,0x3f,0x6f,0x3d,0x9a,0xc5,0xcd,0xea,0x23,0xce, - 0x25,0xbb,0x8d,0xbf,0x76,0x1f,0xd3,0xd5,0xfc,0x56,0xc0,0x5b,0x68,0x56,0x31,0x6d, - 0x12,0xe9,0xd3,0x2c,0xa0,0xf0,0x8c,0x69,0xca,0x03,0x06,0xfe,0x71,0x6e,0x7b,0x51, - 0x51,0x31,0x7d,0x64,0x40,0xb7,0x37,0x3d,0x9f,0xbc,0x64,0x6e,0xad,0x48,0xf2,0x16, - 0x3f,0x2b,0x6d,0x51,0x1a,0xfe,0x6a,0x79,0xc7,0x55,0x51,0xc2,0x62,0x0f,0xc8,0x09, - 0x74,0xf2,0xf8,0x64,0x32,0x9d,0x97,0x78,0xa0,0x8c,0xdf,0xbc,0x9f,0x2c,0x9c,0x13, - 0x44,0xc4,0x32,0x70,0x2c,0x66,0x80,0x7c,0xfb,0x4d,0xb6,0x9b,0x80,0xfa,0xe8,0xc3, - 0x3c,0x70,0x14,0x3d,0x94,0x8b,0x36,0x61,0x4d,0x62,0x08,0x91,0xbe,0xe2,0xdf,0x99, - 0xc8,0x6b,0xc6,0x22,0x07,0xc1,0x7e,0x3b,0x91,0x86,0x21,0x4c,0x0c,0xcf,0xf2,0xde, - 0xd5,0x59,0x8a,0xcc,0xc9,0x0e,0xb1,0xd5,0xb2,0xf7,0xa8,0x3c,0xd7,0xf6,0x8d,0x71, - 0x2e,0xa0,0x47,0xd8,0x01,0x9f,0x34,0x30,0x63,0xb0,0xa2,0x36,0x35,0x6a,0x38,0x71, - 0x46,0xf5,0x8f,0xa8,0x32,0xdd,0xc1,0x3c,0x47,0x14,0x52,0x2c,0xbb,0x50,0x3f,0x5f, - 0x3c,0xa8,0xfc,0xec,0x66,0x02,0xbe,0x24,0x38,0xad,0x3f,0x98,0xfa,0x0c,0xee,0xd5, - 0x8f,0xe3,0xa0,0x66,0xd3,0x85,0xfc,0xac,0xd9,0x8c,0x70,0x4b,0x2a,0x8e,0x98,0xa3, - 0xe2,0x0b,0xf7,0x6b,0x35,0xb7,0x36,0x00,0x00,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00, - 0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85, - 0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3, - 0x1d,0x59,0x03,0x5d,0x2b,0x11,0x92,0xdf,0xba,0x13,0x4e,0x10,0xe5,0x40,0x87,0x5d, - 0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa,0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c,0x3a, - 0x5d,0x88,0x5d,0x02,0x90,0x53,0x52,0x1d,0x6e,0xa7,0xa5,0x2c,0xdd,0x55,0xf7,0x33, - 0xd0,0xfb,0x2d,0x07,0x7c,0x03,0x73,0xb0,0x05,0x3b,0x5b,0x81,0x0d,0x92,0x72,0x44, - 0x06,0x1b,0x75,0x73,0x02,0xd6,0x06,0x3d,0x02,0x26,0x91,0xb2,0x49,0x0a,0xb4,0x54, - 0xde,0xe7,0x3a,0x57,0xc6,0xff,0x5d,0x30,0x83,0x52,0xb4,0x61,0xec,0xe6,0x9f,0x3c, - 0x28,0x4f,0x2c,0x24,0x12,0x00,0x00,0x00,0x0a,0x91,0x11,0x83,0xf6,0x00,0x00,0x00, - 0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x80,0x00,0x00,0x8a,0xc5, - 0x33,0xff,0x38,0x65,0x55,0xb3,0x60,0x01,0x02,0x2f,0xd9,0x23,0x60,0x1e,0x1c,0xa0, - 0xac,0xe5,0x06,0x8c,0xe4,0x8e,0x14,0xf3,0xcd,0x31,0x44,0x16,0xc4,0x0d,0x2e,0x14, - 0x8c,0xa1,0xc8,0x4f,0xa6,0xa8,0xe4,0x64,0x9b,0x45,0x79,0xd1,0xb5,0x2f,0x04,0x19, - 0x86,0xe5,0x5c,0x99,0x43,0xf1,0xd0,0xf3,0x6f,0x52,0xd6,0x88,0xf0,0x9b,0x9c,0x58, - 0x98,0x69,0x0d,0x4e,0x76,0x3e,0xbd,0x6e,0x95,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00, - 0x00,0x65,0x55,0xb3,0x60,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33, - 0x80,0x00,0x00,0x00,0x95,0x97,0xd7,0xa4,0x39,0x65,0x55,0xb3,0x65,0x01,0x01,0x36, - 0x59,0x20,0x77,0x0e,0xf4,0x73,0x10,0xd7,0xb6,0x59,0x5a,0x7c,0xbe,0xd0,0x56,0x51, - 0x3d,0x97,0xbe,0x84,0xb7,0x02,0xb5,0x89,0x72,0xbd,0xb3,0x19,0x2a,0x54,0x5f,0x57, - 0x52,0x09,0x1d,0xff,0x0f,0xe6,0x70,0x1e,0x71,0x23,0xaa,0x3f,0x98,0x89,0x86,0x35, - 0x87,0xc2,0x66,0xd9,0x99,0xbd,0xa2,0x7e,0x16,0x12,0xd9,0x6b,0xc4,0xd3,0x0c,0x00, - 0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65,0x55,0xb3,0x65,0x02,0x2d,0x22,0x36, - 0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5, - 0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x2d,0x22, - 0x53,0x49,0x4c,0x45,0x4e,0x54,0x41,0x52,0x54,0x49,0x53,0x54,0x2d,0x31,0x2d,0x31, - 0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64, - 0x00,0x00,0x80,0x00,0x00,0x8a,0xd0,0xde,0x20,0xc6,0x65,0x55,0xb3,0x60,0x01,0x02, - 0x11,0xd6,0x4b,0xc5,0x88,0x33,0x4b,0x6c,0x1e,0x0c,0x4c,0x5c,0x65,0x69,0x35,0x66, - 0x45,0x80,0xbc,0x4b,0x56,0x3d,0x98,0x2c,0xb3,0x45,0xef,0x22,0x44,0x6e,0xca,0x6c, - 0x1f,0xe9,0x2a,0xf2,0x4a,0xe1,0x26,0xdb,0x15,0x6f,0x7e,0x3b,0xdd,0xd3,0x40,0x54, - 0xb2,0xc7,0x07,0xfe,0x67,0xb0,0xf3,0x35,0x56,0x25,0xc6,0x53,0xfd,0x54,0x56,0x5e, - 0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf, - 0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f, - 0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x60,0x01,0x01,0x00,0x06, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a, - 0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x00,0x95,0x87,0xf8,0x92,0xf3, - 0x65,0x55,0xb3,0x65,0x01,0x01,0x32,0x6c,0xde,0x4a,0xc5,0xe8,0xd4,0xa0,0xed,0xbc, - 0x2c,0x13,0x5e,0xb9,0x1e,0xc3,0xc3,0x86,0xcb,0x75,0xeb,0x6f,0xce,0xc5,0xc5,0x57, - 0x01,0x1c,0x9c,0xb7,0x32,0x17,0x01,0x10,0x8c,0xdd,0x04,0x31,0x78,0xae,0xb4,0x88, - 0x8d,0xf8,0xe8,0x35,0x90,0x69,0x91,0x84,0xd0,0x16,0xd8,0x44,0xbc,0xde,0x37,0xe8, - 0x4e,0x1a,0x95,0xb6,0xa6,0x73,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65, - 0x55,0xb3,0x65,0x03,0x5d,0x2b,0x11,0x92,0xdf,0xba,0x13,0x4e,0x10,0xe5,0x40,0x87, - 0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa,0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c, - 0x3a,0x5d,0x88,0x5d,0x03,0x5d,0x2b,0x48,0x4f,0x50,0x50,0x49,0x4e,0x47,0x46,0x49, - 0x52,0x45,0x2d,0x63,0x31,0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38, - 0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00,0x00,0x00,0x00,0x8a,0xcb,0xd4,0xc7, - 0xa1,0x65,0x55,0xb3,0x65,0x01,0x02,0x1d,0x3f,0x42,0x7f,0x3d,0xdb,0x58,0x2b,0xcb, - 0x78,0x5d,0x24,0xf1,0x67,0xc6,0xc7,0xd8,0x6e,0x6c,0x5b,0xf8,0xfb,0x27,0x17,0x58, - 0xaa,0x7e,0x46,0x86,0x49,0x66,0x21,0x47,0x76,0xbd,0xf2,0x2d,0xae,0x29,0xf0,0x6f, - 0x17,0x6e,0xf2,0x7f,0x01,0xda,0x16,0xa9,0x1d,0x6a,0x61,0x4c,0x41,0x71,0x19,0x4d, - 0x37,0xac,0x8a,0x28,0xd8,0x62,0xfb,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca, - 0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7, - 0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65, - 0x55,0xb3,0x65,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x80, - 0x00,0x01,0xbc,0x39,0xdb,0xc7,0xdf,0x00,0x00,0x00,0x00,0x10,0x08,0x00,0x00,0x00, - 0x00,0x00,0x0f,0x42,0x40,0x01,0xb0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x6e,0x46,0x11, - 0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e, - 0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00, - 0x01,0x00,0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44, - 0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e, - 0x3c,0xa3,0x1d,0x59,0x02,0x66,0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57,0x2a,0x84, - 0x88,0x83,0x0b,0x60,0xf7,0xe7,0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9,0x32,0x83, - 0xb3,0x15,0xc0,0x35,0x18,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64,0x40,0x99,0x5d, - 0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19,0xff,0x9c,0x17, - 0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64,0x40,0x99, - 0x5d,0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19,0xff,0x9c, - 0x17,0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x80,0x00,0x00,0x8e,0x85,0x67,0x9b,0xcf,0x00, - 0x00,0x00,0x00,0x10,0x06,0x00,0x8a,0x01,0x02,0x27,0x9e,0x4e,0x43,0x39,0xa6,0x92, - 0x19,0x35,0x50,0x19,0xbb,0x51,0x5b,0xf9,0xac,0xdb,0xda,0x9c,0xde,0x81,0x8b,0x56, - 0x2e,0x0a,0x3d,0xd5,0xb0,0x5f,0x10,0x2e,0x6c,0x22,0x55,0x7e,0x07,0xc2,0x5f,0x4b, - 0x9c,0xc1,0x21,0x6e,0x07,0x66,0x41,0x60,0xde,0x3e,0xe2,0x24,0xa5,0x9e,0xec,0xaf, - 0xd7,0xcc,0x3f,0x87,0x7c,0x32,0x29,0xca,0xe7,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00, - 0x00,0x65,0x55,0xb3,0x6c,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33, - 0x80,0x80,0x00,0x00,0x8e,0xca,0xa4,0x8e,0x70,0x00,0x00,0x00,0x00,0x10,0x06,0x00, - 0x8a,0x01,0x02,0x4e,0x3f,0x3b,0x6d,0xda,0xcc,0xd3,0xef,0x5f,0xaf,0x26,0x76,0x16, - 0x64,0xa2,0x82,0x97,0xe8,0xb4,0xe4,0xb1,0x2d,0xec,0xa1,0x9e,0x91,0x69,0xd3,0xde, - 0xe9,0x58,0xc7,0x19,0x06,0x90,0x42,0x86,0x97,0xf3,0x88,0xca,0x35,0xd5,0xec,0x79, - 0x5e,0x59,0x33,0x31,0xf4,0x0c,0xdb,0x55,0x5d,0x78,0xd7,0x22,0x59,0xa2,0xe5,0x8d, - 0xeb,0x65,0x41,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, - 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, - 0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x6c,0x01, - 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, - 0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x00,0x8a,0xbf, - 0x0d,0x7a,0xbc,0x65,0x55,0xb3,0x6f,0x01,0x02,0x59,0xc9,0x36,0x84,0xaa,0x13,0x70, - 0x73,0x7d,0xa7,0xe6,0x8a,0x72,0x05,0x15,0xa9,0x06,0x69,0xe0,0xc0,0x0d,0x15,0x6d, - 0x22,0x5c,0xd6,0x1a,0x3e,0x56,0xaa,0x9d,0x98,0x68,0x5a,0x3c,0xdc,0x38,0x71,0xee, - 0x0d,0x02,0x3e,0x2f,0xd0,0x97,0xd7,0xab,0xe2,0x0d,0xdf,0xf5,0xa6,0xd1,0x9c,0xb6, - 0xb9,0x30,0xd6,0xdd,0x10,0xa7,0xa3,0xce,0x5e,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00, - 0x00,0x65,0x55,0xb3,0x6f,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33, - 0x80,0x80,0x00,0x00,0x8e,0x80,0x00,0x75,0xd3,0x00,0x00,0x00,0x00,0x10,0x06,0x00, - 0x8a,0x01,0x02,0x26,0x62,0x25,0x68,0x2d,0x27,0x06,0x9a,0x3b,0xaa,0x1a,0x43,0x93, - 0xac,0xb5,0x05,0x14,0x1c,0x09,0x22,0x8d,0xfb,0x54,0x43,0x73,0x3a,0x88,0xaa,0xa3, - 0x18,0xc8,0xd8,0x0d,0x36,0xd4,0x26,0x10,0xe9,0x82,0xa6,0x3c,0xb4,0x38,0x24,0xaf, - 0xdc,0x06,0xd5,0x3d,0xe3,0x7a,0xe8,0x39,0xdd,0xd4,0x5f,0xd8,0x92,0xf5,0x4b,0xe7, - 0x8d,0xf7,0xab,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, - 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, - 0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01, - 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00, - 0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x80,0x00,0x00,0x8e,0xdc, - 0x5e,0x38,0x7a,0x00,0x00,0x00,0x00,0x10,0x06,0x00,0x8a,0x01,0x02,0x5d,0xf9,0x14, + 0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x66,0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57, + 0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7,0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9, + 0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x03,0xbb,0xee,0x60,0xc3,0x95,0x05,0x6b,0x8a, + 0x12,0x01,0xe0,0x6e,0xd7,0x9e,0x29,0x14,0xc1,0x1a,0x61,0xd7,0xb1,0xaa,0x78,0x18, + 0x46,0x46,0x8d,0x02,0x48,0x9d,0xba,0x69,0x02,0x32,0x42,0x66,0xde,0x84,0x03,0xb3, + 0xab,0x15,0x7a,0x09,0xf1,0xf7,0x84,0xd5,0x87,0xaf,0x61,0x83,0x1c,0x99,0x8c,0x15, + 0x1b,0xcc,0x21,0xbb,0x74,0xc2,0xb2,0x31,0x4b,0x20,0x00,0x00,0x0a,0x91,0x11,0x83, + 0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x20, + 0x00,0x00,0x8a,0xe1,0x31,0x6b,0x76,0x65,0x55,0xb3,0x71,0x01,0x02,0x5d,0xf9,0x14, 0xa0,0xd1,0x46,0x69,0x9a,0x2a,0x97,0xf7,0xb3,0x83,0xf0,0x30,0x73,0x48,0x5e,0x7b, 0x3e,0x6c,0x45,0xd3,0xf1,0x51,0xf8,0xbc,0x4b,0xd7,0xae,0x02,0xd9,0x57,0x51,0x73, 0x8f,0x0f,0xd0,0xdd,0x38,0x36,0x48,0xcd,0xda,0xea,0x01,0x24,0x16,0x3d,0x14,0x7e, @@ -217,65 +160,26 @@ static u8 canned_map[] = { 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e, 0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01,0x00,0x00,0x06,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00, - 0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x01,0xb0,0xb8,0x17,0x71,0xe9,0x65,0x55,0xb3, - 0x71,0x01,0x00,0x0d,0xef,0xc0,0x12,0x4f,0xd4,0xe4,0x1c,0xce,0xc3,0xf4,0x83,0x17, - 0x21,0x7e,0x33,0x11,0x5a,0x8f,0x8c,0x39,0xae,0xbb,0x06,0x2b,0x4e,0x73,0xa6,0x52, - 0xee,0x0e,0x61,0x03,0xf9,0xf1,0x16,0x7b,0x22,0xbd,0xcb,0x92,0xcf,0x82,0x2d,0x0f, - 0xcc,0x26,0xcb,0x11,0x9f,0x0a,0xf5,0x23,0xf4,0x26,0x97,0x86,0x7e,0x21,0x51,0x85, - 0x16,0x3a,0x0e,0x4b,0x1f,0x64,0xf3,0x62,0xf4,0x2f,0x13,0x54,0x5c,0x9a,0xed,0xd6, - 0x9d,0x5d,0xf5,0x17,0x85,0xcc,0x5d,0x53,0xa4,0x84,0x36,0x9b,0xe9,0xa7,0x4a,0x04, - 0x1f,0x8c,0x1c,0x28,0xc7,0x1e,0xab,0xb3,0xf2,0x53,0x3d,0xf8,0xb6,0xcd,0xd8,0x45, - 0x6e,0xc3,0x77,0xdb,0xb1,0x2b,0xa5,0xdd,0xc9,0xbf,0x69,0xa7,0xdf,0x98,0x2c,0x54, - 0xa7,0xa8,0xf5,0x4f,0xc3,0xd1,0x57,0x81,0x98,0x60,0xa0,0xb6,0x32,0x83,0x08,0x65, - 0x1e,0x79,0x24,0xf4,0xbe,0xfe,0x14,0xa6,0xfd,0x31,0x9b,0xfa,0x15,0x6f,0x1b,0xab, - 0x64,0x8b,0x69,0x48,0xb4,0x2e,0x99,0xca,0xd7,0x46,0x97,0x57,0x17,0x1d,0x5d,0x53, - 0xe5,0xde,0xae,0xbb,0x2d,0x74,0x86,0xa5,0xe5,0x8e,0x02,0x5c,0x2c,0x8d,0x0d,0x78, - 0xdc,0xf1,0xa0,0x05,0xb8,0xbd,0x64,0x7d,0x51,0x47,0x5e,0x39,0xaa,0x08,0x2d,0xf2, - 0xd0,0x1a,0x96,0x59,0xab,0x88,0x94,0xa2,0xf7,0x2e,0x09,0x3b,0xd0,0xed,0xfc,0xb4, - 0x1b,0xaa,0xba,0x34,0xf8,0x7b,0x11,0x51,0x36,0x7b,0x13,0x84,0x6f,0xc9,0x4a,0x58, - 0x92,0x3c,0x0c,0xa2,0x4c,0x8f,0xc5,0x78,0xb4,0x4a,0xad,0x98,0x08,0x4e,0x4a,0xf3, - 0x7a,0x28,0x80,0x00,0x00,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, - 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, - 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x02,0x2d,0x22, - 0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d, - 0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x66, - 0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57,0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7, - 0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9,0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x03, - 0xbb,0xee,0x60,0xc3,0x95,0x05,0x6b,0x8a,0x12,0x01,0xe0,0x6e,0xd7,0x9e,0x29,0x14, - 0xc1,0x1a,0x61,0xd7,0xb1,0xaa,0x78,0x18,0x46,0x46,0x8d,0x02,0x48,0x9d,0xba,0x69, - 0x02,0x32,0x42,0x66,0xde,0x84,0x03,0xb3,0xab,0x15,0x7a,0x09,0xf1,0xf7,0x84,0xd5, - 0x87,0xaf,0x61,0x83,0x1c,0x99,0x8c,0x15,0x1b,0xcc,0x21,0xbb,0x74,0xc2,0xb2,0x31, - 0x4b,0x00,0x00,0x00,0x0a,0x91,0x11,0x83,0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00, - 0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x00,0x00,0x00,0x8a,0xe1,0x31,0x6b,0x76,0x65, - 0x55,0xb3,0x71,0x01,0x02,0x5d,0xf9,0x14,0xa0,0xd1,0x46,0x69,0x9a,0x2a,0x97,0xf7, - 0xb3,0x83,0xf0,0x30,0x73,0x48,0x5e,0x7b,0x3e,0x6c,0x45,0xd3,0xf1,0x51,0xf8,0xbc, - 0x4b,0xd7,0xae,0x02,0xd9,0x57,0x51,0x73,0x8f,0x0f,0xd0,0xdd,0x38,0x36,0x48,0xcd, - 0xda,0xea,0x01,0x24,0x16,0x3d,0x14,0x7e,0x5a,0x9e,0xac,0xcd,0x81,0xd1,0x96,0x30, - 0xd9,0xbc,0xa6,0xe4,0xe8,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, - 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, - 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3, - 0x71,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x00, - 0x8a,0xbd,0x6f,0x26,0xdf,0x65,0x55,0xb3,0x71,0x01,0x02,0x26,0x62,0x25,0x68,0x2d, - 0x27,0x06,0x9a,0x3b,0xaa,0x1a,0x43,0x93,0xac,0xb5,0x05,0x14,0x1c,0x09,0x22,0x8d, - 0xfb,0x54,0x43,0x73,0x3a,0x88,0xaa,0xa3,0x18,0xc8,0xd8,0x0d,0x36,0xd4,0x26,0x10, - 0xe9,0x82,0xa6,0x3c,0xb4,0x38,0x24,0xaf,0xdc,0x06,0xd5,0x3d,0xe3,0x7a,0xe8,0x39, - 0xdd,0xd4,0x5f,0xd8,0x92,0xf5,0x4b,0xe7,0x8d,0xf7,0xab,0x06,0x22,0x6e,0x46,0x11, - 0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e, - 0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00, - 0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b, - 0x02,0x33,0x80,0x00,0x00,0x00,0x95,0xf6,0xd7,0x24,0x69,0x65,0x55,0xb3,0x79,0x01, - 0x01,0x42,0x62,0x2b,0xf0,0x0a,0x44,0xc3,0xe0,0x78,0x3c,0xa7,0x08,0x5a,0xa0,0xaa, - 0x9d,0xb2,0xdc,0x2e,0xa7,0x29,0x0a,0x39,0x3d,0x01,0x57,0xbf,0x34,0x23,0x0f,0xb9, - 0x19,0x33,0x6f,0xc2,0xfb,0x9f,0x25,0xac,0xc4,0xc9,0x47,0xb7,0x41,0x92,0xdb,0x2f, - 0xd5,0xf0,0x1f,0x24,0x32,0xdf,0x38,0x30,0x89,0x93,0xeb,0xc9,0xec,0xf1,0x09,0x51, - 0xbb,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65,0x55,0xb3,0x79,0x02,0x66, - 0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57,0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7, - 0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9,0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x02, - 0x66,0xe4,0x4a,0x55,0x4e,0x49,0x4f,0x52,0x42,0x45,0x41,0x4d,0x2d,0x72,0x63,0x31, - 0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64, - 0x65,0x64,0x00,0x00, + 0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x8a,0xbd,0x6f,0x26,0xdf,0x65,0x55,0xb3, + 0x71,0x01,0x02,0x26,0x62,0x25,0x68,0x2d,0x27,0x06,0x9a,0x3b,0xaa,0x1a,0x43,0x93, + 0xac,0xb5,0x05,0x14,0x1c,0x09,0x22,0x8d,0xfb,0x54,0x43,0x73,0x3a,0x88,0xaa,0xa3, + 0x18,0xc8,0xd8,0x0d,0x36,0xd4,0x26,0x10,0xe9,0x82,0xa6,0x3c,0xb4,0x38,0x24,0xaf, + 0xdc,0x06,0xd5,0x3d,0xe3,0x7a,0xe8,0x39,0xdd,0xd4,0x5f,0xd8,0x92,0xf5,0x4b,0xe7, + 0x8d,0xf7,0xab,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, + 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, + 0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01, + 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00, + 0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x95,0xf6, + 0xd7,0x24,0x69,0x65,0x55,0xb3,0x79,0x01,0x01,0x42,0x62,0x2b,0xf0,0x0a,0x44,0xc3, + 0xe0,0x78,0x3c,0xa7,0x08,0x5a,0xa0,0xaa,0x9d,0xb2,0xdc,0x2e,0xa7,0x29,0x0a,0x39, + 0x3d,0x01,0x57,0xbf,0x34,0x23,0x0f,0xb9,0x19,0x33,0x6f,0xc2,0xfb,0x9f,0x25,0xac, + 0xc4,0xc9,0x47,0xb7,0x41,0x92,0xdb,0x2f,0xd5,0xf0,0x1f,0x24,0x32,0xdf,0x38,0x30, + 0x89,0x93,0xeb,0xc9,0xec,0xf1,0x09,0x51,0xbb,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a, + 0x69,0xa2,0x65,0x55,0xb3,0x79,0x02,0x66,0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57, + 0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7,0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9, + 0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x02,0x66,0xe4,0x4a,0x55,0x4e,0x49,0x4f,0x52, + 0x42,0x45,0x41,0x4d,0x2d,0x72,0x63,0x31,0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34, + 0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00, }; static void check_cannounce(const u8 *cannounce, diff --git a/common/test/run-gossmap_local.c b/common/test/run-gossmap_local.c index a2f226874b1b..b425710ac9b8 100644 --- a/common/test/run-gossmap_local.c +++ b/common/test/run-gossmap_local.c @@ -35,180 +35,123 @@ void towire_channel_id(u8 **pptr UNNEEDED, const struct channel_id *channel_id U * $> od -tx1 -Anone -v < /tmp/ltests-rtchpzh1/test_gossip_store_compact_noappend_1/lightning-2/regtest/gossip_store | sed 's/ / 0x/g'| cut -c2- | sed -e 's/ /,/g' -e 's/$/,/' */ static u8 canned_map[] = { - 0x0c,0x80,0x00,0x01,0xbc,0x09,0x8b,0x67,0xe6,0x00,0x00,0x00,0x00,0x10,0x08,0x00, - 0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x01,0xb0,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x6e, + 0x0f,0x20,0x00,0x01,0xb0,0x6e,0x30,0x94,0x60,0x65,0x55,0xb3,0x60,0x01,0x00,0x00, + 0x33,0x57,0x33,0xf5,0x94,0x2d,0xf5,0xd9,0x50,0xeb,0x87,0x66,0xde,0xe3,0xa9,0xd6, + 0x62,0x69,0x22,0x84,0x4e,0xd6,0xae,0x7a,0x11,0x0d,0xd7,0xe7,0xed,0xc3,0x2e,0x3f, + 0x6f,0x3d,0x9a,0xc5,0xcd,0xea,0x23,0xce,0x25,0xbb,0x8d,0xbf,0x76,0x1f,0xd3,0xd5, + 0xfc,0x56,0xc0,0x5b,0x68,0x56,0x31,0x6d,0x12,0xe9,0xd3,0x2c,0xa0,0xf0,0x8c,0x69, + 0xca,0x03,0x06,0xfe,0x71,0x6e,0x7b,0x51,0x51,0x31,0x7d,0x64,0x40,0xb7,0x37,0x3d, + 0x9f,0xbc,0x64,0x6e,0xad,0x48,0xf2,0x16,0x3f,0x2b,0x6d,0x51,0x1a,0xfe,0x6a,0x79, + 0xc7,0x55,0x51,0xc2,0x62,0x0f,0xc8,0x09,0x74,0xf2,0xf8,0x64,0x32,0x9d,0x97,0x78, + 0xa0,0x8c,0xdf,0xbc,0x9f,0x2c,0x9c,0x13,0x44,0xc4,0x32,0x70,0x2c,0x66,0x80,0x7c, + 0xfb,0x4d,0xb6,0x9b,0x80,0xfa,0xe8,0xc3,0x3c,0x70,0x14,0x3d,0x94,0x8b,0x36,0x61, + 0x4d,0x62,0x08,0x91,0xbe,0xe2,0xdf,0x99,0xc8,0x6b,0xc6,0x22,0x07,0xc1,0x7e,0x3b, + 0x91,0x86,0x21,0x4c,0x0c,0xcf,0xf2,0xde,0xd5,0x59,0x8a,0xcc,0xc9,0x0e,0xb1,0xd5, + 0xb2,0xf7,0xa8,0x3c,0xd7,0xf6,0x8d,0x71,0x2e,0xa0,0x47,0xd8,0x01,0x9f,0x34,0x30, + 0x63,0xb0,0xa2,0x36,0x35,0x6a,0x38,0x71,0x46,0xf5,0x8f,0xa8,0x32,0xdd,0xc1,0x3c, + 0x47,0x14,0x52,0x2c,0xbb,0x50,0x3f,0x5f,0x3c,0xa8,0xfc,0xec,0x66,0x02,0xbe,0x24, + 0x38,0xad,0x3f,0x98,0xfa,0x0c,0xee,0xd5,0x8f,0xe3,0xa0,0x66,0xd3,0x85,0xfc,0xac, + 0xd9,0x8c,0x70,0x4b,0x2a,0x8e,0x98,0xa3,0xe2,0x0b,0xf7,0x6b,0x35,0xb7,0x36,0x00, + 0x00,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b, + 0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91, + 0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59, + 0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22, + 0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x03,0x5d,0x2b,0x11,0x92,0xdf, + 0xba,0x13,0x4e,0x10,0xe5,0x40,0x87,0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa, + 0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c,0x3a,0x5d,0x88,0x5d,0x02,0x90,0x53,0x52,0x1d, + 0x6e,0xa7,0xa5,0x2c,0xdd,0x55,0xf7,0x33,0xd0,0xfb,0x2d,0x07,0x7c,0x03,0x73,0xb0, + 0x05,0x3b,0x5b,0x81,0x0d,0x92,0x72,0x44,0x06,0x1b,0x75,0x73,0x02,0xd6,0x06,0x3d, + 0x02,0x26,0x91,0xb2,0x49,0x0a,0xb4,0x54,0xde,0xe7,0x3a,0x57,0xc6,0xff,0x5d,0x30, + 0x83,0x52,0xb4,0x61,0xec,0xe6,0x9f,0x3c,0x28,0x4f,0x2c,0x24,0x12,0x20,0x00,0x00, + 0x0a,0x91,0x11,0x83,0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00, + 0x0f,0x42,0x40,0xa0,0x00,0x00,0x8a,0xc5,0x33,0xff,0x38,0x65,0x55,0xb3,0x60,0x01, + 0x02,0x2f,0xd9,0x23,0x60,0x1e,0x1c,0xa0,0xac,0xe5,0x06,0x8c,0xe4,0x8e,0x14,0xf3, + 0xcd,0x31,0x44,0x16,0xc4,0x0d,0x2e,0x14,0x8c,0xa1,0xc8,0x4f,0xa6,0xa8,0xe4,0x64, + 0x9b,0x45,0x79,0xd1,0xb5,0x2f,0x04,0x19,0x86,0xe5,0x5c,0x99,0x43,0xf1,0xd0,0xf3, + 0x6f,0x52,0xd6,0x88,0xf0,0x9b,0x9c,0x58,0x98,0x69,0x0d,0x4e,0x76,0x3e,0xbd,0x6e, + 0x95,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b, + 0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91, + 0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x60,0x01,0x00,0x00, + 0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, + 0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x95,0x97,0xd7,0xa4, + 0x39,0x65,0x55,0xb3,0x65,0x01,0x01,0x36,0x59,0x20,0x77,0x0e,0xf4,0x73,0x10,0xd7, + 0xb6,0x59,0x5a,0x7c,0xbe,0xd0,0x56,0x51,0x3d,0x97,0xbe,0x84,0xb7,0x02,0xb5,0x89, + 0x72,0xbd,0xb3,0x19,0x2a,0x54,0x5f,0x57,0x52,0x09,0x1d,0xff,0x0f,0xe6,0x70,0x1e, + 0x71,0x23,0xaa,0x3f,0x98,0x89,0x86,0x35,0x87,0xc2,0x66,0xd9,0x99,0xbd,0xa2,0x7e, + 0x16,0x12,0xd9,0x6b,0xc4,0xd3,0x0c,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2, + 0x65,0x55,0xb3,0x65,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac, + 0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c, + 0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x2d,0x22,0x53,0x49,0x4c,0x45,0x4e,0x54,0x41,0x52, + 0x54,0x49,0x53,0x54,0x2d,0x31,0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36, + 0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00,0xa0,0x00,0x00,0x8a,0xd0,0xde, + 0x20,0xc6,0x65,0x55,0xb3,0x60,0x01,0x02,0x11,0xd6,0x4b,0xc5,0x88,0x33,0x4b,0x6c, + 0x1e,0x0c,0x4c,0x5c,0x65,0x69,0x35,0x66,0x45,0x80,0xbc,0x4b,0x56,0x3d,0x98,0x2c, + 0xb3,0x45,0xef,0x22,0x44,0x6e,0xca,0x6c,0x1f,0xe9,0x2a,0xf2,0x4a,0xe1,0x26,0xdb, + 0x15,0x6f,0x7e,0x3b,0xdd,0xd3,0x40,0x54,0xb2,0xc7,0x07,0xfe,0x67,0xb0,0xf3,0x35, + 0x56,0x25,0xc6,0x53,0xfd,0x54,0x56,0x5e,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59, + 0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f, + 0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00, + 0x65,0x55,0xb3,0x60,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80, + 0x20,0x00,0x00,0x95,0x87,0xf8,0x92,0xf3,0x65,0x55,0xb3,0x65,0x01,0x01,0x32,0x6c, + 0xde,0x4a,0xc5,0xe8,0xd4,0xa0,0xed,0xbc,0x2c,0x13,0x5e,0xb9,0x1e,0xc3,0xc3,0x86, + 0xcb,0x75,0xeb,0x6f,0xce,0xc5,0xc5,0x57,0x01,0x1c,0x9c,0xb7,0x32,0x17,0x01,0x10, + 0x8c,0xdd,0x04,0x31,0x78,0xae,0xb4,0x88,0x8d,0xf8,0xe8,0x35,0x90,0x69,0x91,0x84, + 0xd0,0x16,0xd8,0x44,0xbc,0xde,0x37,0xe8,0x4e,0x1a,0x95,0xb6,0xa6,0x73,0x00,0x07, + 0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65,0x55,0xb3,0x65,0x03,0x5d,0x2b,0x11,0x92, + 0xdf,0xba,0x13,0x4e,0x10,0xe5,0x40,0x87,0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5, + 0xaa,0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c,0x3a,0x5d,0x88,0x5d,0x03,0x5d,0x2b,0x48, + 0x4f,0x50,0x50,0x49,0x4e,0x47,0x46,0x49,0x52,0x45,0x2d,0x63,0x31,0x2d,0x31,0x2d, + 0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00, + 0x00,0x20,0x00,0x00,0x8a,0xcb,0xd4,0xc7,0xa1,0x65,0x55,0xb3,0x65,0x01,0x02,0x1d, + 0x3f,0x42,0x7f,0x3d,0xdb,0x58,0x2b,0xcb,0x78,0x5d,0x24,0xf1,0x67,0xc6,0xc7,0xd8, + 0x6e,0x6c,0x5b,0xf8,0xfb,0x27,0x17,0x58,0xaa,0x7e,0x46,0x86,0x49,0x66,0x21,0x47, + 0x76,0xbd,0xf2,0x2d,0xae,0x29,0xf0,0x6f,0x17,0x6e,0xf2,0x7f,0x01,0xda,0x16,0xa9, + 0x1d,0x6a,0x61,0x4c,0x41,0x71,0x19,0x4d,0x37,0xac,0x8a,0x28,0xd8,0x62,0xfb,0x06, + 0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28, + 0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00, + 0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x65,0x01,0x00,0x00,0x06,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00, + 0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x8a,0xbf,0x0d,0x7a,0xbc,0x65, + 0x55,0xb3,0x6f,0x01,0x02,0x59,0xc9,0x36,0x84,0xaa,0x13,0x70,0x73,0x7d,0xa7,0xe6, + 0x8a,0x72,0x05,0x15,0xa9,0x06,0x69,0xe0,0xc0,0x0d,0x15,0x6d,0x22,0x5c,0xd6,0x1a, + 0x3e,0x56,0xaa,0x9d,0x98,0x68,0x5a,0x3c,0xdc,0x38,0x71,0xee,0x0d,0x02,0x3e,0x2f, + 0xd0,0x97,0xd7,0xab,0xe2,0x0d,0xdf,0xf5,0xa6,0xd1,0x9c,0xb6,0xb9,0x30,0xd6,0xdd, + 0x10,0xa7,0xa3,0xce,0x5e,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, + 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, + 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3, + 0x6f,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x01, + 0xb0,0xb8,0x17,0x71,0xe9,0x65,0x55,0xb3,0x71,0x01,0x00,0x0d,0xef,0xc0,0x12,0x4f, + 0xd4,0xe4,0x1c,0xce,0xc3,0xf4,0x83,0x17,0x21,0x7e,0x33,0x11,0x5a,0x8f,0x8c,0x39, + 0xae,0xbb,0x06,0x2b,0x4e,0x73,0xa6,0x52,0xee,0x0e,0x61,0x03,0xf9,0xf1,0x16,0x7b, + 0x22,0xbd,0xcb,0x92,0xcf,0x82,0x2d,0x0f,0xcc,0x26,0xcb,0x11,0x9f,0x0a,0xf5,0x23, + 0xf4,0x26,0x97,0x86,0x7e,0x21,0x51,0x85,0x16,0x3a,0x0e,0x4b,0x1f,0x64,0xf3,0x62, + 0xf4,0x2f,0x13,0x54,0x5c,0x9a,0xed,0xd6,0x9d,0x5d,0xf5,0x17,0x85,0xcc,0x5d,0x53, + 0xa4,0x84,0x36,0x9b,0xe9,0xa7,0x4a,0x04,0x1f,0x8c,0x1c,0x28,0xc7,0x1e,0xab,0xb3, + 0xf2,0x53,0x3d,0xf8,0xb6,0xcd,0xd8,0x45,0x6e,0xc3,0x77,0xdb,0xb1,0x2b,0xa5,0xdd, + 0xc9,0xbf,0x69,0xa7,0xdf,0x98,0x2c,0x54,0xa7,0xa8,0xf5,0x4f,0xc3,0xd1,0x57,0x81, + 0x98,0x60,0xa0,0xb6,0x32,0x83,0x08,0x65,0x1e,0x79,0x24,0xf4,0xbe,0xfe,0x14,0xa6, + 0xfd,0x31,0x9b,0xfa,0x15,0x6f,0x1b,0xab,0x64,0x8b,0x69,0x48,0xb4,0x2e,0x99,0xca, + 0xd7,0x46,0x97,0x57,0x17,0x1d,0x5d,0x53,0xe5,0xde,0xae,0xbb,0x2d,0x74,0x86,0xa5, + 0xe5,0x8e,0x02,0x5c,0x2c,0x8d,0x0d,0x78,0xdc,0xf1,0xa0,0x05,0xb8,0xbd,0x64,0x7d, + 0x51,0x47,0x5e,0x39,0xaa,0x08,0x2d,0xf2,0xd0,0x1a,0x96,0x59,0xab,0x88,0x94,0xa2, + 0xf7,0x2e,0x09,0x3b,0xd0,0xed,0xfc,0xb4,0x1b,0xaa,0xba,0x34,0xf8,0x7b,0x11,0x51, + 0x36,0x7b,0x13,0x84,0x6f,0xc9,0x4a,0x58,0x92,0x3c,0x0c,0xa2,0x4c,0x8f,0xc5,0x78, + 0xb4,0x4a,0xad,0x98,0x08,0x4e,0x4a,0xf3,0x7a,0x28,0x80,0x00,0x00,0x06,0x22,0x6e, 0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f, - 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67, + 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e, 0x00,0x00,0x01,0x00,0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7, 0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1, - 0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x03,0x5d,0x2b,0x11,0x92,0xdf,0xba,0x13,0x4e,0x10, - 0xe5,0x40,0x87,0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa,0x76,0x6b,0x80,0xc0, - 0x90,0xb3,0x9c,0x3a,0x5d,0x88,0x5d,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64,0x40, - 0x99,0x5d,0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19,0xff, - 0x9c,0x17,0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64, - 0x40,0x99,0x5d,0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19, - 0xff,0x9c,0x17,0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x00,0x00,0x01,0xb0,0x6e,0x30,0x94, - 0x60,0x65,0x55,0xb3,0x60,0x01,0x00,0x00,0x33,0x57,0x33,0xf5,0x94,0x2d,0xf5,0xd9, - 0x50,0xeb,0x87,0x66,0xde,0xe3,0xa9,0xd6,0x62,0x69,0x22,0x84,0x4e,0xd6,0xae,0x7a, - 0x11,0x0d,0xd7,0xe7,0xed,0xc3,0x2e,0x3f,0x6f,0x3d,0x9a,0xc5,0xcd,0xea,0x23,0xce, - 0x25,0xbb,0x8d,0xbf,0x76,0x1f,0xd3,0xd5,0xfc,0x56,0xc0,0x5b,0x68,0x56,0x31,0x6d, - 0x12,0xe9,0xd3,0x2c,0xa0,0xf0,0x8c,0x69,0xca,0x03,0x06,0xfe,0x71,0x6e,0x7b,0x51, - 0x51,0x31,0x7d,0x64,0x40,0xb7,0x37,0x3d,0x9f,0xbc,0x64,0x6e,0xad,0x48,0xf2,0x16, - 0x3f,0x2b,0x6d,0x51,0x1a,0xfe,0x6a,0x79,0xc7,0x55,0x51,0xc2,0x62,0x0f,0xc8,0x09, - 0x74,0xf2,0xf8,0x64,0x32,0x9d,0x97,0x78,0xa0,0x8c,0xdf,0xbc,0x9f,0x2c,0x9c,0x13, - 0x44,0xc4,0x32,0x70,0x2c,0x66,0x80,0x7c,0xfb,0x4d,0xb6,0x9b,0x80,0xfa,0xe8,0xc3, - 0x3c,0x70,0x14,0x3d,0x94,0x8b,0x36,0x61,0x4d,0x62,0x08,0x91,0xbe,0xe2,0xdf,0x99, - 0xc8,0x6b,0xc6,0x22,0x07,0xc1,0x7e,0x3b,0x91,0x86,0x21,0x4c,0x0c,0xcf,0xf2,0xde, - 0xd5,0x59,0x8a,0xcc,0xc9,0x0e,0xb1,0xd5,0xb2,0xf7,0xa8,0x3c,0xd7,0xf6,0x8d,0x71, - 0x2e,0xa0,0x47,0xd8,0x01,0x9f,0x34,0x30,0x63,0xb0,0xa2,0x36,0x35,0x6a,0x38,0x71, - 0x46,0xf5,0x8f,0xa8,0x32,0xdd,0xc1,0x3c,0x47,0x14,0x52,0x2c,0xbb,0x50,0x3f,0x5f, - 0x3c,0xa8,0xfc,0xec,0x66,0x02,0xbe,0x24,0x38,0xad,0x3f,0x98,0xfa,0x0c,0xee,0xd5, - 0x8f,0xe3,0xa0,0x66,0xd3,0x85,0xfc,0xac,0xd9,0x8c,0x70,0x4b,0x2a,0x8e,0x98,0xa3, - 0xe2,0x0b,0xf7,0x6b,0x35,0xb7,0x36,0x00,0x00,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00, - 0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85, - 0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3, - 0x1d,0x59,0x03,0x5d,0x2b,0x11,0x92,0xdf,0xba,0x13,0x4e,0x10,0xe5,0x40,0x87,0x5d, - 0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa,0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c,0x3a, - 0x5d,0x88,0x5d,0x02,0x90,0x53,0x52,0x1d,0x6e,0xa7,0xa5,0x2c,0xdd,0x55,0xf7,0x33, - 0xd0,0xfb,0x2d,0x07,0x7c,0x03,0x73,0xb0,0x05,0x3b,0x5b,0x81,0x0d,0x92,0x72,0x44, - 0x06,0x1b,0x75,0x73,0x02,0xd6,0x06,0x3d,0x02,0x26,0x91,0xb2,0x49,0x0a,0xb4,0x54, - 0xde,0xe7,0x3a,0x57,0xc6,0xff,0x5d,0x30,0x83,0x52,0xb4,0x61,0xec,0xe6,0x9f,0x3c, - 0x28,0x4f,0x2c,0x24,0x12,0x00,0x00,0x00,0x0a,0x91,0x11,0x83,0xf6,0x00,0x00,0x00, - 0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x80,0x00,0x00,0x8a,0xc5, - 0x33,0xff,0x38,0x65,0x55,0xb3,0x60,0x01,0x02,0x2f,0xd9,0x23,0x60,0x1e,0x1c,0xa0, - 0xac,0xe5,0x06,0x8c,0xe4,0x8e,0x14,0xf3,0xcd,0x31,0x44,0x16,0xc4,0x0d,0x2e,0x14, - 0x8c,0xa1,0xc8,0x4f,0xa6,0xa8,0xe4,0x64,0x9b,0x45,0x79,0xd1,0xb5,0x2f,0x04,0x19, - 0x86,0xe5,0x5c,0x99,0x43,0xf1,0xd0,0xf3,0x6f,0x52,0xd6,0x88,0xf0,0x9b,0x9c,0x58, - 0x98,0x69,0x0d,0x4e,0x76,0x3e,0xbd,0x6e,0x95,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00, - 0x00,0x65,0x55,0xb3,0x60,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33, - 0x80,0x00,0x00,0x00,0x95,0x97,0xd7,0xa4,0x39,0x65,0x55,0xb3,0x65,0x01,0x01,0x36, - 0x59,0x20,0x77,0x0e,0xf4,0x73,0x10,0xd7,0xb6,0x59,0x5a,0x7c,0xbe,0xd0,0x56,0x51, - 0x3d,0x97,0xbe,0x84,0xb7,0x02,0xb5,0x89,0x72,0xbd,0xb3,0x19,0x2a,0x54,0x5f,0x57, - 0x52,0x09,0x1d,0xff,0x0f,0xe6,0x70,0x1e,0x71,0x23,0xaa,0x3f,0x98,0x89,0x86,0x35, - 0x87,0xc2,0x66,0xd9,0x99,0xbd,0xa2,0x7e,0x16,0x12,0xd9,0x6b,0xc4,0xd3,0x0c,0x00, - 0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65,0x55,0xb3,0x65,0x02,0x2d,0x22,0x36, - 0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5, - 0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x2d,0x22, - 0x53,0x49,0x4c,0x45,0x4e,0x54,0x41,0x52,0x54,0x49,0x53,0x54,0x2d,0x31,0x2d,0x31, - 0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64, - 0x00,0x00,0x80,0x00,0x00,0x8a,0xd0,0xde,0x20,0xc6,0x65,0x55,0xb3,0x60,0x01,0x02, - 0x11,0xd6,0x4b,0xc5,0x88,0x33,0x4b,0x6c,0x1e,0x0c,0x4c,0x5c,0x65,0x69,0x35,0x66, - 0x45,0x80,0xbc,0x4b,0x56,0x3d,0x98,0x2c,0xb3,0x45,0xef,0x22,0x44,0x6e,0xca,0x6c, - 0x1f,0xe9,0x2a,0xf2,0x4a,0xe1,0x26,0xdb,0x15,0x6f,0x7e,0x3b,0xdd,0xd3,0x40,0x54, - 0xb2,0xc7,0x07,0xfe,0x67,0xb0,0xf3,0x35,0x56,0x25,0xc6,0x53,0xfd,0x54,0x56,0x5e, - 0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf, - 0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f, - 0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x60,0x01,0x01,0x00,0x06, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a, - 0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x00,0x95,0x87,0xf8,0x92,0xf3, - 0x65,0x55,0xb3,0x65,0x01,0x01,0x32,0x6c,0xde,0x4a,0xc5,0xe8,0xd4,0xa0,0xed,0xbc, - 0x2c,0x13,0x5e,0xb9,0x1e,0xc3,0xc3,0x86,0xcb,0x75,0xeb,0x6f,0xce,0xc5,0xc5,0x57, - 0x01,0x1c,0x9c,0xb7,0x32,0x17,0x01,0x10,0x8c,0xdd,0x04,0x31,0x78,0xae,0xb4,0x88, - 0x8d,0xf8,0xe8,0x35,0x90,0x69,0x91,0x84,0xd0,0x16,0xd8,0x44,0xbc,0xde,0x37,0xe8, - 0x4e,0x1a,0x95,0xb6,0xa6,0x73,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65, - 0x55,0xb3,0x65,0x03,0x5d,0x2b,0x11,0x92,0xdf,0xba,0x13,0x4e,0x10,0xe5,0x40,0x87, - 0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa,0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c, - 0x3a,0x5d,0x88,0x5d,0x03,0x5d,0x2b,0x48,0x4f,0x50,0x50,0x49,0x4e,0x47,0x46,0x49, - 0x52,0x45,0x2d,0x63,0x31,0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38, - 0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00,0x00,0x00,0x00,0x8a,0xcb,0xd4,0xc7, - 0xa1,0x65,0x55,0xb3,0x65,0x01,0x02,0x1d,0x3f,0x42,0x7f,0x3d,0xdb,0x58,0x2b,0xcb, - 0x78,0x5d,0x24,0xf1,0x67,0xc6,0xc7,0xd8,0x6e,0x6c,0x5b,0xf8,0xfb,0x27,0x17,0x58, - 0xaa,0x7e,0x46,0x86,0x49,0x66,0x21,0x47,0x76,0xbd,0xf2,0x2d,0xae,0x29,0xf0,0x6f, - 0x17,0x6e,0xf2,0x7f,0x01,0xda,0x16,0xa9,0x1d,0x6a,0x61,0x4c,0x41,0x71,0x19,0x4d, - 0x37,0xac,0x8a,0x28,0xd8,0x62,0xfb,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca, - 0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7, - 0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65, - 0x55,0xb3,0x65,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x80, - 0x00,0x01,0xbc,0x39,0xdb,0xc7,0xdf,0x00,0x00,0x00,0x00,0x10,0x08,0x00,0x00,0x00, - 0x00,0x00,0x0f,0x42,0x40,0x01,0xb0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x6e,0x46,0x11, - 0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e, - 0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00, - 0x01,0x00,0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44, - 0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e, - 0x3c,0xa3,0x1d,0x59,0x02,0x66,0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57,0x2a,0x84, - 0x88,0x83,0x0b,0x60,0xf7,0xe7,0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9,0x32,0x83, - 0xb3,0x15,0xc0,0x35,0x18,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64,0x40,0x99,0x5d, - 0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19,0xff,0x9c,0x17, - 0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64,0x40,0x99, - 0x5d,0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19,0xff,0x9c, - 0x17,0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x80,0x00,0x00,0x8e,0x85,0x67,0x9b,0xcf,0x00, - 0x00,0x00,0x00,0x10,0x06,0x00,0x8a,0x01,0x02,0x27,0x9e,0x4e,0x43,0x39,0xa6,0x92, - 0x19,0x35,0x50,0x19,0xbb,0x51,0x5b,0xf9,0xac,0xdb,0xda,0x9c,0xde,0x81,0x8b,0x56, - 0x2e,0x0a,0x3d,0xd5,0xb0,0x5f,0x10,0x2e,0x6c,0x22,0x55,0x7e,0x07,0xc2,0x5f,0x4b, - 0x9c,0xc1,0x21,0x6e,0x07,0x66,0x41,0x60,0xde,0x3e,0xe2,0x24,0xa5,0x9e,0xec,0xaf, - 0xd7,0xcc,0x3f,0x87,0x7c,0x32,0x29,0xca,0xe7,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00, - 0x00,0x65,0x55,0xb3,0x6c,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33, - 0x80,0x80,0x00,0x00,0x8e,0xca,0xa4,0x8e,0x70,0x00,0x00,0x00,0x00,0x10,0x06,0x00, - 0x8a,0x01,0x02,0x4e,0x3f,0x3b,0x6d,0xda,0xcc,0xd3,0xef,0x5f,0xaf,0x26,0x76,0x16, - 0x64,0xa2,0x82,0x97,0xe8,0xb4,0xe4,0xb1,0x2d,0xec,0xa1,0x9e,0x91,0x69,0xd3,0xde, - 0xe9,0x58,0xc7,0x19,0x06,0x90,0x42,0x86,0x97,0xf3,0x88,0xca,0x35,0xd5,0xec,0x79, - 0x5e,0x59,0x33,0x31,0xf4,0x0c,0xdb,0x55,0x5d,0x78,0xd7,0x22,0x59,0xa2,0xe5,0x8d, - 0xeb,0x65,0x41,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, - 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, - 0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x6c,0x01, - 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, - 0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x00,0x8a,0xbf, - 0x0d,0x7a,0xbc,0x65,0x55,0xb3,0x6f,0x01,0x02,0x59,0xc9,0x36,0x84,0xaa,0x13,0x70, - 0x73,0x7d,0xa7,0xe6,0x8a,0x72,0x05,0x15,0xa9,0x06,0x69,0xe0,0xc0,0x0d,0x15,0x6d, - 0x22,0x5c,0xd6,0x1a,0x3e,0x56,0xaa,0x9d,0x98,0x68,0x5a,0x3c,0xdc,0x38,0x71,0xee, - 0x0d,0x02,0x3e,0x2f,0xd0,0x97,0xd7,0xab,0xe2,0x0d,0xdf,0xf5,0xa6,0xd1,0x9c,0xb6, - 0xb9,0x30,0xd6,0xdd,0x10,0xa7,0xa3,0xce,0x5e,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00, - 0x00,0x65,0x55,0xb3,0x6f,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33, - 0x80,0x80,0x00,0x00,0x8e,0x80,0x00,0x75,0xd3,0x00,0x00,0x00,0x00,0x10,0x06,0x00, - 0x8a,0x01,0x02,0x26,0x62,0x25,0x68,0x2d,0x27,0x06,0x9a,0x3b,0xaa,0x1a,0x43,0x93, - 0xac,0xb5,0x05,0x14,0x1c,0x09,0x22,0x8d,0xfb,0x54,0x43,0x73,0x3a,0x88,0xaa,0xa3, - 0x18,0xc8,0xd8,0x0d,0x36,0xd4,0x26,0x10,0xe9,0x82,0xa6,0x3c,0xb4,0x38,0x24,0xaf, - 0xdc,0x06,0xd5,0x3d,0xe3,0x7a,0xe8,0x39,0xdd,0xd4,0x5f,0xd8,0x92,0xf5,0x4b,0xe7, - 0x8d,0xf7,0xab,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, - 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, - 0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01, - 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00, - 0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x80,0x00,0x00,0x8e,0xdc, - 0x5e,0x38,0x7a,0x00,0x00,0x00,0x00,0x10,0x06,0x00,0x8a,0x01,0x02,0x5d,0xf9,0x14, + 0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x66,0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57, + 0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7,0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9, + 0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x03,0xbb,0xee,0x60,0xc3,0x95,0x05,0x6b,0x8a, + 0x12,0x01,0xe0,0x6e,0xd7,0x9e,0x29,0x14,0xc1,0x1a,0x61,0xd7,0xb1,0xaa,0x78,0x18, + 0x46,0x46,0x8d,0x02,0x48,0x9d,0xba,0x69,0x02,0x32,0x42,0x66,0xde,0x84,0x03,0xb3, + 0xab,0x15,0x7a,0x09,0xf1,0xf7,0x84,0xd5,0x87,0xaf,0x61,0x83,0x1c,0x99,0x8c,0x15, + 0x1b,0xcc,0x21,0xbb,0x74,0xc2,0xb2,0x31,0x4b,0x20,0x00,0x00,0x0a,0x91,0x11,0x83, + 0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x20, + 0x00,0x00,0x8a,0xe1,0x31,0x6b,0x76,0x65,0x55,0xb3,0x71,0x01,0x02,0x5d,0xf9,0x14, 0xa0,0xd1,0x46,0x69,0x9a,0x2a,0x97,0xf7,0xb3,0x83,0xf0,0x30,0x73,0x48,0x5e,0x7b, 0x3e,0x6c,0x45,0xd3,0xf1,0x51,0xf8,0xbc,0x4b,0xd7,0xae,0x02,0xd9,0x57,0x51,0x73, 0x8f,0x0f,0xd0,0xdd,0x38,0x36,0x48,0xcd,0xda,0xea,0x01,0x24,0x16,0x3d,0x14,0x7e, @@ -217,65 +160,26 @@ static u8 canned_map[] = { 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e, 0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01,0x00,0x00,0x06,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00, - 0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x01,0xb0,0xb8,0x17,0x71,0xe9,0x65,0x55,0xb3, - 0x71,0x01,0x00,0x0d,0xef,0xc0,0x12,0x4f,0xd4,0xe4,0x1c,0xce,0xc3,0xf4,0x83,0x17, - 0x21,0x7e,0x33,0x11,0x5a,0x8f,0x8c,0x39,0xae,0xbb,0x06,0x2b,0x4e,0x73,0xa6,0x52, - 0xee,0x0e,0x61,0x03,0xf9,0xf1,0x16,0x7b,0x22,0xbd,0xcb,0x92,0xcf,0x82,0x2d,0x0f, - 0xcc,0x26,0xcb,0x11,0x9f,0x0a,0xf5,0x23,0xf4,0x26,0x97,0x86,0x7e,0x21,0x51,0x85, - 0x16,0x3a,0x0e,0x4b,0x1f,0x64,0xf3,0x62,0xf4,0x2f,0x13,0x54,0x5c,0x9a,0xed,0xd6, - 0x9d,0x5d,0xf5,0x17,0x85,0xcc,0x5d,0x53,0xa4,0x84,0x36,0x9b,0xe9,0xa7,0x4a,0x04, - 0x1f,0x8c,0x1c,0x28,0xc7,0x1e,0xab,0xb3,0xf2,0x53,0x3d,0xf8,0xb6,0xcd,0xd8,0x45, - 0x6e,0xc3,0x77,0xdb,0xb1,0x2b,0xa5,0xdd,0xc9,0xbf,0x69,0xa7,0xdf,0x98,0x2c,0x54, - 0xa7,0xa8,0xf5,0x4f,0xc3,0xd1,0x57,0x81,0x98,0x60,0xa0,0xb6,0x32,0x83,0x08,0x65, - 0x1e,0x79,0x24,0xf4,0xbe,0xfe,0x14,0xa6,0xfd,0x31,0x9b,0xfa,0x15,0x6f,0x1b,0xab, - 0x64,0x8b,0x69,0x48,0xb4,0x2e,0x99,0xca,0xd7,0x46,0x97,0x57,0x17,0x1d,0x5d,0x53, - 0xe5,0xde,0xae,0xbb,0x2d,0x74,0x86,0xa5,0xe5,0x8e,0x02,0x5c,0x2c,0x8d,0x0d,0x78, - 0xdc,0xf1,0xa0,0x05,0xb8,0xbd,0x64,0x7d,0x51,0x47,0x5e,0x39,0xaa,0x08,0x2d,0xf2, - 0xd0,0x1a,0x96,0x59,0xab,0x88,0x94,0xa2,0xf7,0x2e,0x09,0x3b,0xd0,0xed,0xfc,0xb4, - 0x1b,0xaa,0xba,0x34,0xf8,0x7b,0x11,0x51,0x36,0x7b,0x13,0x84,0x6f,0xc9,0x4a,0x58, - 0x92,0x3c,0x0c,0xa2,0x4c,0x8f,0xc5,0x78,0xb4,0x4a,0xad,0x98,0x08,0x4e,0x4a,0xf3, - 0x7a,0x28,0x80,0x00,0x00,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, - 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, - 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x02,0x2d,0x22, - 0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d, - 0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x66, - 0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57,0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7, - 0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9,0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x03, - 0xbb,0xee,0x60,0xc3,0x95,0x05,0x6b,0x8a,0x12,0x01,0xe0,0x6e,0xd7,0x9e,0x29,0x14, - 0xc1,0x1a,0x61,0xd7,0xb1,0xaa,0x78,0x18,0x46,0x46,0x8d,0x02,0x48,0x9d,0xba,0x69, - 0x02,0x32,0x42,0x66,0xde,0x84,0x03,0xb3,0xab,0x15,0x7a,0x09,0xf1,0xf7,0x84,0xd5, - 0x87,0xaf,0x61,0x83,0x1c,0x99,0x8c,0x15,0x1b,0xcc,0x21,0xbb,0x74,0xc2,0xb2,0x31, - 0x4b,0x00,0x00,0x00,0x0a,0x91,0x11,0x83,0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00, - 0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x00,0x00,0x00,0x8a,0xe1,0x31,0x6b,0x76,0x65, - 0x55,0xb3,0x71,0x01,0x02,0x5d,0xf9,0x14,0xa0,0xd1,0x46,0x69,0x9a,0x2a,0x97,0xf7, - 0xb3,0x83,0xf0,0x30,0x73,0x48,0x5e,0x7b,0x3e,0x6c,0x45,0xd3,0xf1,0x51,0xf8,0xbc, - 0x4b,0xd7,0xae,0x02,0xd9,0x57,0x51,0x73,0x8f,0x0f,0xd0,0xdd,0x38,0x36,0x48,0xcd, - 0xda,0xea,0x01,0x24,0x16,0x3d,0x14,0x7e,0x5a,0x9e,0xac,0xcd,0x81,0xd1,0x96,0x30, - 0xd9,0xbc,0xa6,0xe4,0xe8,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, - 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, - 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3, - 0x71,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x00, - 0x8a,0xbd,0x6f,0x26,0xdf,0x65,0x55,0xb3,0x71,0x01,0x02,0x26,0x62,0x25,0x68,0x2d, - 0x27,0x06,0x9a,0x3b,0xaa,0x1a,0x43,0x93,0xac,0xb5,0x05,0x14,0x1c,0x09,0x22,0x8d, - 0xfb,0x54,0x43,0x73,0x3a,0x88,0xaa,0xa3,0x18,0xc8,0xd8,0x0d,0x36,0xd4,0x26,0x10, - 0xe9,0x82,0xa6,0x3c,0xb4,0x38,0x24,0xaf,0xdc,0x06,0xd5,0x3d,0xe3,0x7a,0xe8,0x39, - 0xdd,0xd4,0x5f,0xd8,0x92,0xf5,0x4b,0xe7,0x8d,0xf7,0xab,0x06,0x22,0x6e,0x46,0x11, - 0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e, - 0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00, - 0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b, - 0x02,0x33,0x80,0x00,0x00,0x00,0x95,0xf6,0xd7,0x24,0x69,0x65,0x55,0xb3,0x79,0x01, - 0x01,0x42,0x62,0x2b,0xf0,0x0a,0x44,0xc3,0xe0,0x78,0x3c,0xa7,0x08,0x5a,0xa0,0xaa, - 0x9d,0xb2,0xdc,0x2e,0xa7,0x29,0x0a,0x39,0x3d,0x01,0x57,0xbf,0x34,0x23,0x0f,0xb9, - 0x19,0x33,0x6f,0xc2,0xfb,0x9f,0x25,0xac,0xc4,0xc9,0x47,0xb7,0x41,0x92,0xdb,0x2f, - 0xd5,0xf0,0x1f,0x24,0x32,0xdf,0x38,0x30,0x89,0x93,0xeb,0xc9,0xec,0xf1,0x09,0x51, - 0xbb,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65,0x55,0xb3,0x79,0x02,0x66, - 0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57,0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7, - 0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9,0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x02, - 0x66,0xe4,0x4a,0x55,0x4e,0x49,0x4f,0x52,0x42,0x45,0x41,0x4d,0x2d,0x72,0x63,0x31, - 0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64, - 0x65,0x64,0x00,0x00, + 0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x8a,0xbd,0x6f,0x26,0xdf,0x65,0x55,0xb3, + 0x71,0x01,0x02,0x26,0x62,0x25,0x68,0x2d,0x27,0x06,0x9a,0x3b,0xaa,0x1a,0x43,0x93, + 0xac,0xb5,0x05,0x14,0x1c,0x09,0x22,0x8d,0xfb,0x54,0x43,0x73,0x3a,0x88,0xaa,0xa3, + 0x18,0xc8,0xd8,0x0d,0x36,0xd4,0x26,0x10,0xe9,0x82,0xa6,0x3c,0xb4,0x38,0x24,0xaf, + 0xdc,0x06,0xd5,0x3d,0xe3,0x7a,0xe8,0x39,0xdd,0xd4,0x5f,0xd8,0x92,0xf5,0x4b,0xe7, + 0x8d,0xf7,0xab,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, + 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, + 0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01, + 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00, + 0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x95,0xf6, + 0xd7,0x24,0x69,0x65,0x55,0xb3,0x79,0x01,0x01,0x42,0x62,0x2b,0xf0,0x0a,0x44,0xc3, + 0xe0,0x78,0x3c,0xa7,0x08,0x5a,0xa0,0xaa,0x9d,0xb2,0xdc,0x2e,0xa7,0x29,0x0a,0x39, + 0x3d,0x01,0x57,0xbf,0x34,0x23,0x0f,0xb9,0x19,0x33,0x6f,0xc2,0xfb,0x9f,0x25,0xac, + 0xc4,0xc9,0x47,0xb7,0x41,0x92,0xdb,0x2f,0xd5,0xf0,0x1f,0x24,0x32,0xdf,0x38,0x30, + 0x89,0x93,0xeb,0xc9,0xec,0xf1,0x09,0x51,0xbb,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a, + 0x69,0xa2,0x65,0x55,0xb3,0x79,0x02,0x66,0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57, + 0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7,0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9, + 0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x02,0x66,0xe4,0x4a,0x55,0x4e,0x49,0x4f,0x52, + 0x42,0x45,0x41,0x4d,0x2d,0x72,0x63,0x31,0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34, + 0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00, }; static void check_cannounce(const u8 *cannounce, diff --git a/common/test/run-route-specific.c b/common/test/run-route-specific.c index d661d85b488a..93f23de72c19 100644 --- a/common/test/run-route-specific.c +++ b/common/test/run-route-specific.c @@ -57,7 +57,7 @@ static void write_to_store(int store_fd, const u8 *msg) { struct gossip_hdr hdr; - hdr.flags = cpu_to_be16(0); + hdr.flags = cpu_to_be16(GOSSIP_STORE_COMPLETED_BIT); hdr.len = cpu_to_be16(tal_count(msg)); hdr.timestamp = 0; hdr.crc = cpu_to_be32(crc32c(be32_to_cpu(hdr.timestamp), msg, tal_count(msg))); diff --git a/common/test/run-route.c b/common/test/run-route.c index 9175bbac760c..6b06dab66143 100644 --- a/common/test/run-route.c +++ b/common/test/run-route.c @@ -50,7 +50,7 @@ static void write_to_store(int store_fd, const u8 *msg) { struct gossip_hdr hdr; - hdr.flags = cpu_to_be16(0); + hdr.flags = cpu_to_be16(GOSSIP_STORE_COMPLETED_BIT); hdr.len = cpu_to_be16(tal_count(msg)); hdr.timestamp = 0; hdr.crc = cpu_to_be32(crc32c(be32_to_cpu(hdr.timestamp), msg, tal_count(msg))); diff --git a/configure b/configure index ebfe22afc08a..7375b3d4f912 100755 --- a/configure +++ b/configure @@ -488,29 +488,6 @@ code= #error "Not modern GCC" #endif /*END*/ -var=HAVE_PWRITEV -desc=pwritev() defined -style=DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE -code= -#include -#include -#include -#include - -int main(void) -{ - struct iovec iov[2]; - int fd = open("/dev/null", O_WRONLY); - - iov[0].iov_base = "hello"; - iov[0].iov_len = 5; - iov[1].iov_base = " world"; - iov[1].iov_len = 6; - if (pwritev(fd, iov, 2, 0) == 11) - return 0; - return 1; -} -/*END*/ EOF if check_command 'python3-mako' python3 -c 'import mako'; then diff --git a/contrib/pyln-client/pyln/client/gossmap.py b/contrib/pyln-client/pyln/client/gossmap.py index 876b255a3c51..b797f20290ea 100755 --- a/contrib/pyln-client/pyln/client/gossmap.py +++ b/contrib/pyln-client/pyln/client/gossmap.py @@ -16,6 +16,7 @@ GOSSIP_STORE_MAJOR_VERSION_MASK = 0xE0 GOSSIP_STORE_LEN_DELETED_BIT = 0x8000 GOSSIP_STORE_LEN_PUSH_BIT = 0x4000 +GOSSIP_STORE_LEN_COMPLETE_BIT = 0x2000 # These duplicate constants in lightning/gossipd/gossip_store_wiregen.h WIRE_GOSSIP_STORE_PRIVATE_CHANNEL = 4104 @@ -391,8 +392,7 @@ class Gossmap(object): def __init__(self, store_filename: str = "gossip_store"): self.store_filename = store_filename self.store_file = open(store_filename, "rb") - self.store_buf = bytes() - self.bytes_read = 0 + self.bytes_read = 1 self.nodes: Dict[GossmapNodeId, GossmapNode] = {} self.channels: Dict[ShortChannelId, GossmapChannel] = {} self._last_scid: Optional[str] = None @@ -591,24 +591,24 @@ def _remove_channel_by_deletemsg(self, rec: bytes): if scid in self.channels: self._del_channel(scid) - def _pull_bytes(self, length: int) -> bool: - """Pull bytes from file into our internal buffer""" - if len(self.store_buf) < length: - self.store_buf += self.store_file.read(length - len(self.store_buf)) - self.bytes_read += len(self.store_buf) - return len(self.store_buf) >= length - def _read_record(self) -> Optional[bytes]: - """If a whole record is not in the file, returns None. - If deleted, returns empty.""" - off = self.bytes_read + 1 - if not self._pull_bytes(12): + """If a whole record is not in the file, returns None, None.""" + prev_off = self.bytes_read + hdr = self.store_file.read(12) + if len(hdr) != 12: + self.store_file.seek(prev_off) + return None, None + hdr = GossipStoreMsgHeader(hdr, prev_off) + rec = self.store_file.read(hdr.length) + if len(rec) != hdr.length: + self.store_file.seek(prev_off) return None, None - hdr = GossipStoreMsgHeader(self.store_buf[:12], off) - if not self._pull_bytes(12 + hdr.length): - return None, hdr - rec = self.store_buf[12:] - self.store_buf = bytes() + if (hdr.flags & GOSSIP_STORE_LEN_COMPLETE_BIT) == 0: + self.store_file.seek(prev_off) + return None, None + + # Ok, we're digesting this one, so increment bytes_read. + self.bytes_read += 12 + hdr.length return rec, hdr def refresh(self): diff --git a/contrib/pyln-client/tests/data/gossip_store-part1.xz b/contrib/pyln-client/tests/data/gossip_store-part1.xz index f63971a8671a..d8d8c2a7ade9 100644 Binary files a/contrib/pyln-client/tests/data/gossip_store-part1.xz and b/contrib/pyln-client/tests/data/gossip_store-part1.xz differ diff --git a/contrib/pyln-client/tests/data/gossip_store-part2.xz b/contrib/pyln-client/tests/data/gossip_store-part2.xz index 7bf94f3c0510..d1783b03c763 100644 Binary files a/contrib/pyln-client/tests/data/gossip_store-part2.xz and b/contrib/pyln-client/tests/data/gossip_store-part2.xz differ diff --git a/contrib/pyln-client/tests/data/gossip_store.mesh-3x3.xz b/contrib/pyln-client/tests/data/gossip_store.mesh-3x3.xz index 1ed9a48cc233..ffd80aa48ea6 100644 Binary files a/contrib/pyln-client/tests/data/gossip_store.mesh-3x3.xz and b/contrib/pyln-client/tests/data/gossip_store.mesh-3x3.xz differ diff --git a/contrib/pyln-client/tests/data/gossip_store.simple.xz b/contrib/pyln-client/tests/data/gossip_store.simple.xz index 23981fad988e..2b4a3baa6cc8 100644 Binary files a/contrib/pyln-client/tests/data/gossip_store.simple.xz and b/contrib/pyln-client/tests/data/gossip_store.simple.xz differ diff --git a/contrib/pyln-client/tests/test_gossmap.py b/contrib/pyln-client/tests/test_gossmap.py index 3c93302d71f3..dbb15fd74deb 100644 --- a/contrib/pyln-client/tests/test_gossmap.py +++ b/contrib/pyln-client/tests/test_gossmap.py @@ -50,7 +50,7 @@ def test_gossmap(tmp_path): def test_gossmap_halfchannel(tmp_path): - """ this test a simple [l1->l2] gossip store that was created by the pyln-testing framework """ + """ this test a simple [l1->l2] gossip store that was created by the pyln-testing framework (tests/test_gossip.py::test_announce_address) """ sfile = unxz_data_tmp("gossip_store.simple.xz", tmp_path, "gossip_store", "xb") g = Gossmap(sfile) @@ -64,13 +64,13 @@ def test_gossmap_halfchannel(tmp_path): assert n1 assert n2 - chan = g.get_channel("103x1x1") + chan = g.get_channel("103x1x0") assert chan assert chan.node1 == n1 assert chan.node2 == n2 half0 = chan.get_direction(0) - half1 = g.get_halfchannel("103x1x1", 1) + half1 = g.get_halfchannel("103x1x0", 1) assert half0 assert half1 assert half0.direction == 0 @@ -83,8 +83,8 @@ def test_gossmap_halfchannel(tmp_path): assert half1.destination == n1 # check metadata - assert half0.timestamp == 1631005020 - assert half1.timestamp == 1631005020 + assert half0.timestamp == 1759208366 + assert half1.timestamp == 1759208366 assert half0.cltv_expiry_delta == 6 assert half1.cltv_expiry_delta == 6 assert half0.htlc_minimum_msat == 0 diff --git a/devtools/Makefile b/devtools/Makefile index a80ebe4ab631..606279146942 100644 --- a/devtools/Makefile +++ b/devtools/Makefile @@ -1,4 +1,4 @@ -DEVTOOLS := devtools/bolt11-cli devtools/decodemsg devtools/onion devtools/dump-gossipstore devtools/gossipwith devtools/create-gossipstore devtools/mkcommit devtools/mkfunding devtools/mkclose devtools/mkgossip devtools/mkencoded devtools/mkquery devtools/lightning-checkmessage devtools/topology devtools/route devtools/bolt12-cli devtools/encodeaddr devtools/features devtools/fp16 devtools/rune devtools/gossmap-compress devtools/bip137-verifysignature +DEVTOOLS := devtools/bolt11-cli devtools/decodemsg devtools/onion devtools/dump-gossipstore devtools/gossipwith devtools/create-gossipstore devtools/mkcommit devtools/mkfunding devtools/mkclose devtools/mkgossip devtools/mkencoded devtools/mkquery devtools/lightning-checkmessage devtools/topology devtools/route devtools/bolt12-cli devtools/encodeaddr devtools/features devtools/fp16 devtools/rune devtools/gossmap-compress devtools/bip137-verifysignature devtools/convert-gossmap ifeq ($(HAVE_SQLITE3),1) DEVTOOLS += devtools/checkchannels endif @@ -72,6 +72,9 @@ devtools/dump-gossipstore: $(DEVTOOLS_COMMON_OBJS) $(JSMN_OBJS) $(BITCOIN_OBJS) devtools/dump-gossipstore.o: gossipd/gossip_store_wiregen.h +devtools/convert-gossmap: $(DEVTOOLS_COMMON_OBJS) $(JSMN_OBJS) $(BITCOIN_OBJS) wire/fromwire.o wire/towire.o devtools/convert-gossmap.o +devtools/convert-gossmap.o: gossipd/gossip_store_wiregen.h + devtools/create-gossipstore: $(DEVTOOLS_COMMON_OBJS) $(JSMN_OBJS) $(BITCOIN_OBJS) wire/fromwire.o wire/towire.o devtools/create-gossipstore.o gossipd/gossip_store_wiregen.o devtools/create-gossipstore.o: gossipd/gossip_store_wiregen.h diff --git a/devtools/convert-gossmap.c b/devtools/convert-gossmap.c new file mode 100644 index 000000000000..dee2b1f1e6af --- /dev/null +++ b/devtools/convert-gossmap.c @@ -0,0 +1,97 @@ +/* Tool we can use to convert our testing gossip_store files */ +#include "config.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* Current versions we support */ +#define GSTORE_MAJOR 0 +#define GSTORE_MINOR 15 + +/* Obsolete ZOMBIE bit */ +#define GOSSIP_STORE_ZOMBIE_BIT_V13 0x1000U + +static bool upgrade_field(u8 oldversion, + be16 *hdr_flags, + u8 **msg) +{ + int type = fromwire_peektype(*msg); + + switch (oldversion) { + case 10: + /* Remove old channel_update with no htlc_maximum_msat */ + if (type == WIRE_CHANNEL_UPDATE + && tal_bytelen(*msg) == 130) { + *msg = tal_free(*msg); + return true; + } + /* fall thru */ + case 11: + case 12: + /* Remove private entries */ + if (type == WIRE_GOSSIP_STORE_PRIVATE_CHANNEL_OBS) { + *msg = tal_free(*msg); + return true; + } else if (type == WIRE_GOSSIP_STORE_PRIVATE_UPDATE_OBS) { + *msg = tal_free(*msg); + return true; + } + /* fall thru */ + case 13: + /* Discard any zombies */ + if (be16_to_cpu(*hdr_flags) & GOSSIP_STORE_ZOMBIE_BIT_V13) { + *msg = tal_free(*msg); + return true; + } + case 14: + /* Add completed field */ + *hdr_flags |= CPU_TO_BE16(GOSSIP_STORE_COMPLETED_BIT); + /* fall thru */ + case 15: + /* Noop */ + return true; + } + + return false; +} + +int main(int argc, char *argv[]) +{ + u8 oldversion, version; + struct gossip_hdr hdr; + + setup_locale(); + if (!read_all(STDIN_FILENO, &oldversion, sizeof(oldversion))) + errx(1, "Empty file"); + + if (GOSSIP_STORE_MAJOR_VERSION(oldversion) != GSTORE_MAJOR) + errx(1, "Unsupported major gossip_version %u (expected %u)", + GOSSIP_STORE_MAJOR_VERSION(oldversion), GSTORE_MAJOR); + + version = ((GSTORE_MAJOR << 5) | GSTORE_MINOR); + if (!write_all(STDOUT_FILENO, &version, sizeof(version))) + err(1, "Write error"); + + while (read_all(STDIN_FILENO, &hdr, sizeof(hdr))) { + u8 *msg; + msg = tal_arr(NULL, u8, be16_to_cpu(hdr.len)); + if (!read_all(STDIN_FILENO, msg, tal_bytelen(msg))) + err(1, "truncated file"); + if (!upgrade_field(oldversion, &hdr.flags, &msg)) + errx(1, "Cannot upgrade from version %u", oldversion); + if (msg) { + if (!write_all(STDOUT_FILENO, &hdr, sizeof(hdr)) + || !write_all(STDOUT_FILENO, msg, tal_bytelen(msg))) + err(1, "Write error"); + tal_free(msg); + } + } + return 0; +} diff --git a/devtools/create-gossipstore.c b/devtools/create-gossipstore.c index bcab2c4daadd..b9376f4742ff 100644 --- a/devtools/create-gossipstore.c +++ b/devtools/create-gossipstore.c @@ -47,7 +47,8 @@ static void write_outmsg(int outfd, const u8 *outmsg, u32 timestamp) { struct gossip_hdr hdr; - hdr.len = cpu_to_be32(tal_count(outmsg)); + hdr.flags = CPU_TO_BE16(GOSSIP_STORE_COMPLETED_BIT); + hdr.len = cpu_to_be16(tal_count(outmsg)); hdr.crc = cpu_to_be32(crc32c(timestamp, outmsg, tal_count(outmsg))); hdr.timestamp = cpu_to_be32(timestamp); diff --git a/devtools/dump-gossipstore.c b/devtools/dump-gossipstore.c index 6cd6d29b2d40..ced6a5a06ce0 100644 --- a/devtools/dump-gossipstore.c +++ b/devtools/dump-gossipstore.c @@ -11,7 +11,7 @@ /* Current versions we support */ #define GSTORE_MAJOR 0 -#define GSTORE_MINOR 14 +#define GSTORE_MINOR 15 int main(int argc, char *argv[]) { @@ -67,12 +67,12 @@ int main(int argc, char *argv[]) u16 flags = be16_to_cpu(hdr.flags); u16 msglen = be16_to_cpu(hdr.len); u8 *msg, *inner; - bool deleted, push, dying; + bool deleted, dying, complete; u32 blockheight; deleted = (flags & GOSSIP_STORE_DELETED_BIT); - push = (flags & GOSSIP_STORE_PUSH_BIT); dying = (flags & GOSSIP_STORE_DYING_BIT); + complete = (flags & GOSSIP_STORE_COMPLETED_BIT); msg = tal_arr(NULL, u8, msglen); if (read(fd, msg, msglen) != msglen) @@ -80,8 +80,8 @@ int main(int argc, char *argv[]) printf("%zu: %s%s%s%s", off, deleted ? "DELETED " : "", - push ? "PUSH " : "", dying ? "DYING " : "", + complete ? "" : "**INCOMPLETE** ", be32_to_cpu(hdr.crc) != crc32c(be32_to_cpu(hdr.timestamp), msg, msglen) ? "**BAD CHECKSUM** " : ""); if (print_timestamp) diff --git a/gossipd/gossip_store.c b/gossipd/gossip_store.c index 906b6c10f22e..15cae6bdecc9 100644 --- a/gossipd/gossip_store.c +++ b/gossipd/gossip_store.c @@ -23,7 +23,7 @@ #define GOSSIP_STORE_TEMP_FILENAME "gossip_store.tmp" /* We write it as major version 0, minor version 14 */ -#define GOSSIP_STORE_VER ((0 << 5) | 14) +#define GOSSIP_STORE_VER ((0 << 5) | 15) struct gossip_store { /* Back pointer. */ @@ -44,28 +44,11 @@ static void gossip_store_destroy(struct gossip_store *gs) close(gs->fd); } -#if HAVE_PWRITEV -/* One fewer syscall for the win! */ -static ssize_t gossip_pwritev(int fd, const struct iovec *iov, int iovcnt, - off_t offset) +static bool append_msg(int fd, const u8 *msg, u32 timestamp, u64 *len, + const u8 ***msgs) { - return pwritev(fd, iov, iovcnt, offset); -} -#else /* Hello MacOS! */ -static ssize_t gossip_pwritev(int fd, const struct iovec *iov, int iovcnt, - off_t offset) -{ - if (lseek(fd, offset, SEEK_SET) != offset) - return -1; - return writev(fd, iov, iovcnt); -} -#endif /* !HAVE_PWRITEV */ - -static bool append_msg(int fd, const u8 *msg, u32 timestamp, u64 *len) -{ - struct gossip_hdr hdr; + struct gossip_hdr *hdr; u32 msglen; - struct iovec iov[2]; /* Don't ever overwrite the version header! */ assert(*len); @@ -75,20 +58,25 @@ static bool append_msg(int fd, const u8 *msg, u32 timestamp, u64 *len) msglen = tal_count(msg); /* All messages begin with a 16-bit type */ assert(msglen >= 2); - hdr.len = cpu_to_be16(msglen); - hdr.flags = 0; - hdr.crc = cpu_to_be32(crc32c(timestamp, msg, msglen)); - hdr.timestamp = cpu_to_be32(timestamp); - /* pwritev makes it more likely to appear at once, plus it's - * exactly what we want. */ - iov[0].iov_base = &hdr; - iov[0].iov_len = sizeof(hdr); - iov[1].iov_base = (void *)msg; - iov[1].iov_len = msglen; - if (gossip_pwritev(fd, iov, ARRAY_SIZE(iov), *len) != sizeof(hdr) + msglen) + hdr = (struct gossip_hdr *)tal_arr(tmpctx, u8, sizeof(*hdr) + msglen); + hdr->len = cpu_to_be16(msglen); + hdr->flags = 0; + hdr->crc = cpu_to_be32(crc32c(timestamp, msg, msglen)); + hdr->timestamp = cpu_to_be32(timestamp); + memcpy(hdr + 1, msg, msglen); + + if (pwrite(fd, hdr, sizeof(*hdr) + msglen, *len) != sizeof(*hdr) + msglen) return false; - *len += sizeof(hdr) + msglen; + + /* Update the hdr with the complete bit as a single-byte write */ + hdr->flags = CPU_TO_BE16(GOSSIP_STORE_COMPLETED_BIT); + if (pwrite(fd, &hdr->flags, 1, *len) != 1) + return false; + + *len += sizeof(*hdr) + msglen; + if (msgs) + tal_arr_expand(msgs, (const u8 *)tal_steal(*msgs, hdr)); return true; } @@ -98,10 +86,11 @@ static bool append_msg(int fd, const u8 *msg, u32 timestamp, u64 *len) * v12 added the zombie flag for expired channel updates * v13 removed private gossip entries * v14 removed zombie and spam flags + * v15 added the complete flag */ static bool can_upgrade(u8 oldversion) { - return oldversion >= 9 && oldversion <= 13; + return oldversion >= 9 && oldversion <= 14; } /* On upgrade, do best effort on private channels: hand them to @@ -155,7 +144,7 @@ static void give_lightningd_canned_private_update(struct daemon *daemon, static bool upgrade_field(u8 oldversion, struct daemon *daemon, - u16 hdr_flags, + be16 *hdr_flags, u8 **msg) { int type = fromwire_peektype(*msg); @@ -179,10 +168,14 @@ static bool upgrade_field(u8 oldversion, } if (oldversion <= 13) { /* Discard any zombies */ - if (hdr_flags & GOSSIP_STORE_ZOMBIE_BIT_V13) { + if (be16_to_cpu(*hdr_flags) & GOSSIP_STORE_ZOMBIE_BIT_V13) { *msg = tal_free(*msg); } } + if (oldversion <= 14) { + /* Add completed field */ + *hdr_flags |= CPU_TO_BE16(GOSSIP_STORE_COMPLETED_BIT); + } return true; } @@ -285,7 +278,7 @@ static int gossip_store_compact(struct daemon *daemon, if (oldversion != version) { if (!upgrade_field(oldversion, daemon, - be16_to_cpu(hdr.flags), &msg)) { + &hdr.flags, &msg)) { tal_free(msg); bad = "upgrade of store failed"; goto badmsg; @@ -365,7 +358,7 @@ static int gossip_store_compact(struct daemon *daemon, /* Create end marker now new file exists. */ if (old_fd != -1) { append_msg(old_fd, towire_gossip_store_ended(tmpctx, *total_len), - 0, &old_len); + 0, &old_len, NULL); close(old_fd); } @@ -415,7 +408,32 @@ void gossip_store_fsync(const struct gossip_store *gs) "gossmap fsync failed: %s", strerror(errno)); } -u64 gossip_store_add(struct gossip_store *gs, const u8 *gossip_msg, u32 timestamp) +void gossip_store_rewrite_end(struct gossip_store *gs, const u8 **msgs) +{ + u64 offset = gs->len; + + for (size_t i = 0; i < tal_count(msgs); i++) { + /* Don't overwrite version byte */ + assert(tal_bytelen(msgs[i]) < gs->len); + offset -= tal_bytelen(msgs[i]); + } + + for (size_t i = 0; i < tal_count(msgs); i++) { + if (pwrite(gs->fd, msgs[i], tal_bytelen(msgs[i]), offset) != tal_bytelen(msgs[i])) + status_failed(STATUS_FAIL_INTERNAL_ERROR, + "Failed to re-write %s at offset %"PRIu64, + tal_hex(tmpctx, msgs[i]), offset); + offset += tal_bytelen(msgs[i]); + } + + /* Hit it harder. */ + gossip_store_fsync(gs); +} + +u64 gossip_store_add(struct gossip_store *gs, + const u8 *gossip_msg, + u32 timestamp, + const u8 ***msgs) { u64 off = gs->len, filelen; @@ -435,7 +453,7 @@ u64 gossip_store_add(struct gossip_store *gs, const u8 *gossip_msg, u32 timestam filelen, off); } - if (!append_msg(gs->fd, gossip_msg, timestamp, &gs->len)) { + if (!append_msg(gs->fd, gossip_msg, timestamp, &gs->len, msgs)) { status_failed(STATUS_FAIL_INTERNAL_ERROR, "Failed writing to gossip store: %s", strerror(errno)); diff --git a/gossipd/gossip_store.h b/gossipd/gossip_store.h index c75696f08039..96ff0937f77d 100644 --- a/gossipd/gossip_store.h +++ b/gossipd/gossip_store.h @@ -49,11 +49,14 @@ void gossip_store_corrupt(void); * @gs: gossip store * @gossip_msg: the gossip message to insert. * @timestamp: the timestamp for filtering of this messsage. + * @msgs: the option pointer to a u8 *array to append the written msgs to. + * + * Returns the offset (after the gossip_hdr). */ u64 gossip_store_add(struct gossip_store *gs, const u8 *gossip_msg, - u32 timestamp); - + u32 timestamp, + const u8 ***msgs); /** * Delete the record at this offset (offset is that of @@ -106,6 +109,11 @@ u32 gossip_store_get_timestamp(struct gossip_store *gs, u64 offset); */ void gossip_store_set_timestamp(struct gossip_store *gs, u64 offset, u32 timestamp); +/** + * We've seen (ZFS on Linux) writes not show up in the gossip store. + * This lets us rewrite the last bytes. */ +void gossip_store_rewrite_end(struct gossip_store *gs, const u8 **msgs); + /** * For debugging. */ diff --git a/gossipd/gossmap_manage.c b/gossipd/gossmap_manage.c index 29b0a8db1d83..816c3f00eaa9 100644 --- a/gossipd/gossmap_manage.c +++ b/gossipd/gossmap_manage.c @@ -67,6 +67,10 @@ struct gossmap_manage { /* gossip map itself (access via gossmap_manage_get_gossmap, so it's fresh!) */ struct gossmap *raw_gossmap; + /* Last writes to gossmap since previous sync, in case it + * messes up and we need to force it. */ + const u8 **last_writes; + /* The gossip_store, which writes to the gossip_store file */ struct gossip_store *gs; @@ -266,7 +270,7 @@ static void remove_channel(struct gossmap_manage *gm, /* Put in tombstone marker. */ gossip_store_add(gm->gs, towire_gossip_store_delete_chan(tmpctx, scid), - 0); + 0, &gm->last_writes); /* Delete from store */ gossip_store_del(gm->gs, chan->cann_off, WIRE_CHANNEL_ANNOUNCEMENT); @@ -307,7 +311,7 @@ static void remove_channel(struct gossmap_manage *gm, timestamp = gossip_store_get_timestamp(gm->gs, node->nann_off); gossip_store_del(gm->gs, node->nann_off, WIRE_NODE_ANNOUNCEMENT); - offset = gossip_store_add(gm->gs, nannounce, timestamp); + offset = gossip_store_add(gm->gs, nannounce, timestamp, &gm->last_writes); } else { /* Are all remaining channels dying but we weren't? * Can happen if we removed this channel immediately @@ -467,6 +471,7 @@ static bool setup_gossmap(struct gossmap_manage *gm, gm->gs = tal_free(gm->gs); return false; } + gm->last_writes = tal_arr(gm, const u8 *, 0); return true; } @@ -617,9 +622,10 @@ const char *gossmap_manage_channel_announcement(const tal_t *ctx, */ if (known_amount) { /* Set with timestamp 0 (we will update once we have a channel_update) */ - gossip_store_add(gm->gs, announce, 0); + gossip_store_add(gm->gs, announce, 0, &gm->last_writes); gossip_store_add(gm->gs, - towire_gossip_store_channel_amount(tmpctx, *known_amount), 0); + towire_gossip_store_channel_amount(tmpctx, *known_amount), 0, + &gm->last_writes); node_announcements_not_dying(gm, gossmap, pca); tal_free(pca); @@ -743,9 +749,10 @@ void gossmap_manage_handle_get_txout_reply(struct gossmap_manage *gm, const u8 * } /* Set with timestamp 0 (we will update once we have a channel_update) */ - gossip_store_add(gm->gs, pca->channel_announcement, 0); + gossip_store_add(gm->gs, pca->channel_announcement, 0, &gm->last_writes); gossip_store_add(gm->gs, - towire_gossip_store_channel_amount(tmpctx, sat), 0); + towire_gossip_store_channel_amount(tmpctx, sat), 0, + &gm->last_writes); /* If we looking specifically for this, we no longer are. */ remove_unknown_scid(gm->daemon->seeker, &scid, true); @@ -847,7 +854,7 @@ static const char *process_channel_update(const tal_t *ctx, } /* OK, apply the new one */ - offset = gossip_store_add(gm->gs, update, timestamp); + offset = gossip_store_add(gm->gs, update, timestamp, &gm->last_writes); /* If channel is dying, make sure update is also marked dying! */ if (gossmap_chan_is_dying(gossmap, chan)) { @@ -1011,7 +1018,7 @@ static void process_node_announcement(struct gossmap_manage *gm, } /* OK, apply the new one */ - offset = gossip_store_add(gm->gs, nannounce, timestamp); + offset = gossip_store_add(gm->gs, nannounce, timestamp, &gm->last_writes); /* If all channels are dying, make sure this is marked too. */ if (all_node_channels_dying(gossmap, node, NULL)) { gossip_store_set_flag(gm->gs, offset, @@ -1347,7 +1354,7 @@ void gossmap_manage_channel_spent(struct gossmap_manage *gm, /* Save to gossip_store in case we restart */ msg = towire_gossip_store_chan_dying(tmpctx, cd.scid, cd.deadline); - cd.gossmap_offset = gossip_store_add(gm->gs, msg, 0); + cd.gossmap_offset = gossip_store_add(gm->gs, msg, 0, &gm->last_writes); tal_arr_expand(&gm->dying_channels, cd); /* Mark it dying, so we don't gossip it */ @@ -1411,6 +1418,7 @@ static const u8 *fetch_tail_fd(const tal_t *ctx, struct gossmap *gossmap_manage_get_gossmap(struct gossmap_manage *gm) { u64 map_used, map_size, written_len; + bool has_mmap = gossmap_has_mmap(gm->raw_gossmap); gossmap_refresh(gm->raw_gossmap); @@ -1419,10 +1427,12 @@ struct gossmap *gossmap_manage_get_gossmap(struct gossmap_manage *gm) written_len = gossip_store_len_written(gm->gs); if (map_size != written_len) { - status_broken("gossmap size %"PRIu64" != written size %"PRIu64, - map_size, written_len); - /* Push harder! */ - gossip_store_fsync(gm->gs); + status_broken("gossmap size %"PRIu64" != written size %"PRIu64 + ": %s mmap!", + map_size, written_len, + has_mmap + ? "disabling": "ALREADY DISABLED"); + gossmap_disable_mmap(gm->raw_gossmap); gossmap_refresh(gm->raw_gossmap); /* Sanity check that we see everything we wrote. */ @@ -1434,23 +1444,34 @@ struct gossmap *gossmap_manage_get_gossmap(struct gossmap_manage *gm) " used=%"PRIu64" seen=%"PRIu64" written=%"PRIu64, map_used, map_size, written_len); } else if (map_size != map_used) { - const u8 *remainder_fd, *remainder_mmap; + const u8 *remainder_fd; - /* Sigh. Did gossmap see something different (via mmap) - * from what we see via read? It's possible it's caught up - * now, but just in case, log BOTH */ - remainder_mmap = gossmap_fetch_tail(tmpctx, gm->raw_gossmap); remainder_fd = fetch_tail_fd(tmpctx, gossmap_fd(gm->raw_gossmap), map_used, map_size); - status_failed(STATUS_FAIL_INTERNAL_ERROR, - "Gossmap failed to process entire gossip_store: " - "at %"PRIu64" of %"PRIu64" remaining_mmap=%s remaining_fd=%s", + status_broken("Gossmap failed to process entire gossip_store, %s mmap: " + "at %"PRIu64" of %"PRIu64" remaining_fd=%s", + has_mmap + ? "disabling": "ALREADY DISABLED", map_used, map_size, - tal_hex(tmpctx, remainder_mmap), tal_hex(tmpctx, remainder_fd)); + gossmap_disable_mmap(gm->raw_gossmap); + + /* Try rewriting the last few records, syncing. */ + gossip_store_rewrite_end(gm->gs, gm->last_writes); + gossmap_refresh(gm->raw_gossmap); + + map_used = gossmap_lengths(gm->raw_gossmap, &map_size); + if (map_size != map_used) { + status_failed(STATUS_FAIL_INTERNAL_ERROR, + "Gossmap map_used %"PRIu64" of %"PRIu64" with %"PRIu64" written", + map_used, map_size, written_len); + } } + /* Free up last_writes, since we've seen it on disk */ + tal_free(gm->last_writes); + gm->last_writes = tal_arr(gm, const u8 *, 0); return gm->raw_gossmap; } diff --git a/plugins/renepay/test/common.h b/plugins/renepay/test/common.h index d0e5f9a627c1..4eea8adc613f 100644 --- a/plugins/renepay/test/common.h +++ b/plugins/renepay/test/common.h @@ -33,7 +33,7 @@ static void write_to_store(int store_fd, const u8 *msg) { struct gossip_hdr hdr; - hdr.flags = cpu_to_be16(0); + hdr.flags = cpu_to_be16(GOSSIP_STORE_COMPLETED_BIT); hdr.len = cpu_to_be16(tal_count(msg)); hdr.timestamp = 0; hdr.crc = cpu_to_be32(crc32c(be32_to_cpu(hdr.timestamp), msg, tal_count(msg))); diff --git a/plugins/renepay/test/run-mcf.c b/plugins/renepay/test/run-mcf.c index 1a95dff44220..9b9b50a24c9d 100644 --- a/plugins/renepay/test/run-mcf.c +++ b/plugins/renepay/test/run-mcf.c @@ -69,180 +69,123 @@ static void swap(int *a, int *b) * $> od -tx1 -Anone -v < /tmp/ltests-rtchpzh1/test_gossip_store_compact_noappend_1/lightning-2/regtest/gossip_store | sed 's/ / 0x/g'| cut -c2- | sed -e 's/ /,/g' -e 's/$/,/' */ static u8 canned_map[] = { - 0x0c,0x80,0x00,0x01,0xbc,0x09,0x8b,0x67,0xe6,0x00,0x00,0x00,0x00,0x10,0x08,0x00, - 0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x01,0xb0,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x6e, + 0x0f,0x20,0x00,0x01,0xb0,0x6e,0x30,0x94,0x60,0x65,0x55,0xb3,0x60,0x01,0x00,0x00, + 0x33,0x57,0x33,0xf5,0x94,0x2d,0xf5,0xd9,0x50,0xeb,0x87,0x66,0xde,0xe3,0xa9,0xd6, + 0x62,0x69,0x22,0x84,0x4e,0xd6,0xae,0x7a,0x11,0x0d,0xd7,0xe7,0xed,0xc3,0x2e,0x3f, + 0x6f,0x3d,0x9a,0xc5,0xcd,0xea,0x23,0xce,0x25,0xbb,0x8d,0xbf,0x76,0x1f,0xd3,0xd5, + 0xfc,0x56,0xc0,0x5b,0x68,0x56,0x31,0x6d,0x12,0xe9,0xd3,0x2c,0xa0,0xf0,0x8c,0x69, + 0xca,0x03,0x06,0xfe,0x71,0x6e,0x7b,0x51,0x51,0x31,0x7d,0x64,0x40,0xb7,0x37,0x3d, + 0x9f,0xbc,0x64,0x6e,0xad,0x48,0xf2,0x16,0x3f,0x2b,0x6d,0x51,0x1a,0xfe,0x6a,0x79, + 0xc7,0x55,0x51,0xc2,0x62,0x0f,0xc8,0x09,0x74,0xf2,0xf8,0x64,0x32,0x9d,0x97,0x78, + 0xa0,0x8c,0xdf,0xbc,0x9f,0x2c,0x9c,0x13,0x44,0xc4,0x32,0x70,0x2c,0x66,0x80,0x7c, + 0xfb,0x4d,0xb6,0x9b,0x80,0xfa,0xe8,0xc3,0x3c,0x70,0x14,0x3d,0x94,0x8b,0x36,0x61, + 0x4d,0x62,0x08,0x91,0xbe,0xe2,0xdf,0x99,0xc8,0x6b,0xc6,0x22,0x07,0xc1,0x7e,0x3b, + 0x91,0x86,0x21,0x4c,0x0c,0xcf,0xf2,0xde,0xd5,0x59,0x8a,0xcc,0xc9,0x0e,0xb1,0xd5, + 0xb2,0xf7,0xa8,0x3c,0xd7,0xf6,0x8d,0x71,0x2e,0xa0,0x47,0xd8,0x01,0x9f,0x34,0x30, + 0x63,0xb0,0xa2,0x36,0x35,0x6a,0x38,0x71,0x46,0xf5,0x8f,0xa8,0x32,0xdd,0xc1,0x3c, + 0x47,0x14,0x52,0x2c,0xbb,0x50,0x3f,0x5f,0x3c,0xa8,0xfc,0xec,0x66,0x02,0xbe,0x24, + 0x38,0xad,0x3f,0x98,0xfa,0x0c,0xee,0xd5,0x8f,0xe3,0xa0,0x66,0xd3,0x85,0xfc,0xac, + 0xd9,0x8c,0x70,0x4b,0x2a,0x8e,0x98,0xa3,0xe2,0x0b,0xf7,0x6b,0x35,0xb7,0x36,0x00, + 0x00,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b, + 0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91, + 0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59, + 0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22, + 0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x03,0x5d,0x2b,0x11,0x92,0xdf, + 0xba,0x13,0x4e,0x10,0xe5,0x40,0x87,0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa, + 0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c,0x3a,0x5d,0x88,0x5d,0x02,0x90,0x53,0x52,0x1d, + 0x6e,0xa7,0xa5,0x2c,0xdd,0x55,0xf7,0x33,0xd0,0xfb,0x2d,0x07,0x7c,0x03,0x73,0xb0, + 0x05,0x3b,0x5b,0x81,0x0d,0x92,0x72,0x44,0x06,0x1b,0x75,0x73,0x02,0xd6,0x06,0x3d, + 0x02,0x26,0x91,0xb2,0x49,0x0a,0xb4,0x54,0xde,0xe7,0x3a,0x57,0xc6,0xff,0x5d,0x30, + 0x83,0x52,0xb4,0x61,0xec,0xe6,0x9f,0x3c,0x28,0x4f,0x2c,0x24,0x12,0x20,0x00,0x00, + 0x0a,0x91,0x11,0x83,0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00, + 0x0f,0x42,0x40,0xa0,0x00,0x00,0x8a,0xc5,0x33,0xff,0x38,0x65,0x55,0xb3,0x60,0x01, + 0x02,0x2f,0xd9,0x23,0x60,0x1e,0x1c,0xa0,0xac,0xe5,0x06,0x8c,0xe4,0x8e,0x14,0xf3, + 0xcd,0x31,0x44,0x16,0xc4,0x0d,0x2e,0x14,0x8c,0xa1,0xc8,0x4f,0xa6,0xa8,0xe4,0x64, + 0x9b,0x45,0x79,0xd1,0xb5,0x2f,0x04,0x19,0x86,0xe5,0x5c,0x99,0x43,0xf1,0xd0,0xf3, + 0x6f,0x52,0xd6,0x88,0xf0,0x9b,0x9c,0x58,0x98,0x69,0x0d,0x4e,0x76,0x3e,0xbd,0x6e, + 0x95,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b, + 0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91, + 0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x60,0x01,0x00,0x00, + 0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, + 0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x95,0x97,0xd7,0xa4, + 0x39,0x65,0x55,0xb3,0x65,0x01,0x01,0x36,0x59,0x20,0x77,0x0e,0xf4,0x73,0x10,0xd7, + 0xb6,0x59,0x5a,0x7c,0xbe,0xd0,0x56,0x51,0x3d,0x97,0xbe,0x84,0xb7,0x02,0xb5,0x89, + 0x72,0xbd,0xb3,0x19,0x2a,0x54,0x5f,0x57,0x52,0x09,0x1d,0xff,0x0f,0xe6,0x70,0x1e, + 0x71,0x23,0xaa,0x3f,0x98,0x89,0x86,0x35,0x87,0xc2,0x66,0xd9,0x99,0xbd,0xa2,0x7e, + 0x16,0x12,0xd9,0x6b,0xc4,0xd3,0x0c,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2, + 0x65,0x55,0xb3,0x65,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac, + 0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c, + 0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x2d,0x22,0x53,0x49,0x4c,0x45,0x4e,0x54,0x41,0x52, + 0x54,0x49,0x53,0x54,0x2d,0x31,0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36, + 0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00,0xa0,0x00,0x00,0x8a,0xd0,0xde, + 0x20,0xc6,0x65,0x55,0xb3,0x60,0x01,0x02,0x11,0xd6,0x4b,0xc5,0x88,0x33,0x4b,0x6c, + 0x1e,0x0c,0x4c,0x5c,0x65,0x69,0x35,0x66,0x45,0x80,0xbc,0x4b,0x56,0x3d,0x98,0x2c, + 0xb3,0x45,0xef,0x22,0x44,0x6e,0xca,0x6c,0x1f,0xe9,0x2a,0xf2,0x4a,0xe1,0x26,0xdb, + 0x15,0x6f,0x7e,0x3b,0xdd,0xd3,0x40,0x54,0xb2,0xc7,0x07,0xfe,0x67,0xb0,0xf3,0x35, + 0x56,0x25,0xc6,0x53,0xfd,0x54,0x56,0x5e,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59, + 0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f, + 0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00, + 0x65,0x55,0xb3,0x60,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80, + 0x20,0x00,0x00,0x95,0x87,0xf8,0x92,0xf3,0x65,0x55,0xb3,0x65,0x01,0x01,0x32,0x6c, + 0xde,0x4a,0xc5,0xe8,0xd4,0xa0,0xed,0xbc,0x2c,0x13,0x5e,0xb9,0x1e,0xc3,0xc3,0x86, + 0xcb,0x75,0xeb,0x6f,0xce,0xc5,0xc5,0x57,0x01,0x1c,0x9c,0xb7,0x32,0x17,0x01,0x10, + 0x8c,0xdd,0x04,0x31,0x78,0xae,0xb4,0x88,0x8d,0xf8,0xe8,0x35,0x90,0x69,0x91,0x84, + 0xd0,0x16,0xd8,0x44,0xbc,0xde,0x37,0xe8,0x4e,0x1a,0x95,0xb6,0xa6,0x73,0x00,0x07, + 0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65,0x55,0xb3,0x65,0x03,0x5d,0x2b,0x11,0x92, + 0xdf,0xba,0x13,0x4e,0x10,0xe5,0x40,0x87,0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5, + 0xaa,0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c,0x3a,0x5d,0x88,0x5d,0x03,0x5d,0x2b,0x48, + 0x4f,0x50,0x50,0x49,0x4e,0x47,0x46,0x49,0x52,0x45,0x2d,0x63,0x31,0x2d,0x31,0x2d, + 0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00, + 0x00,0x20,0x00,0x00,0x8a,0xcb,0xd4,0xc7,0xa1,0x65,0x55,0xb3,0x65,0x01,0x02,0x1d, + 0x3f,0x42,0x7f,0x3d,0xdb,0x58,0x2b,0xcb,0x78,0x5d,0x24,0xf1,0x67,0xc6,0xc7,0xd8, + 0x6e,0x6c,0x5b,0xf8,0xfb,0x27,0x17,0x58,0xaa,0x7e,0x46,0x86,0x49,0x66,0x21,0x47, + 0x76,0xbd,0xf2,0x2d,0xae,0x29,0xf0,0x6f,0x17,0x6e,0xf2,0x7f,0x01,0xda,0x16,0xa9, + 0x1d,0x6a,0x61,0x4c,0x41,0x71,0x19,0x4d,0x37,0xac,0x8a,0x28,0xd8,0x62,0xfb,0x06, + 0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28, + 0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00, + 0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x65,0x01,0x00,0x00,0x06,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00, + 0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x8a,0xbf,0x0d,0x7a,0xbc,0x65, + 0x55,0xb3,0x6f,0x01,0x02,0x59,0xc9,0x36,0x84,0xaa,0x13,0x70,0x73,0x7d,0xa7,0xe6, + 0x8a,0x72,0x05,0x15,0xa9,0x06,0x69,0xe0,0xc0,0x0d,0x15,0x6d,0x22,0x5c,0xd6,0x1a, + 0x3e,0x56,0xaa,0x9d,0x98,0x68,0x5a,0x3c,0xdc,0x38,0x71,0xee,0x0d,0x02,0x3e,0x2f, + 0xd0,0x97,0xd7,0xab,0xe2,0x0d,0xdf,0xf5,0xa6,0xd1,0x9c,0xb6,0xb9,0x30,0xd6,0xdd, + 0x10,0xa7,0xa3,0xce,0x5e,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, + 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, + 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3, + 0x6f,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x01, + 0xb0,0xb8,0x17,0x71,0xe9,0x65,0x55,0xb3,0x71,0x01,0x00,0x0d,0xef,0xc0,0x12,0x4f, + 0xd4,0xe4,0x1c,0xce,0xc3,0xf4,0x83,0x17,0x21,0x7e,0x33,0x11,0x5a,0x8f,0x8c,0x39, + 0xae,0xbb,0x06,0x2b,0x4e,0x73,0xa6,0x52,0xee,0x0e,0x61,0x03,0xf9,0xf1,0x16,0x7b, + 0x22,0xbd,0xcb,0x92,0xcf,0x82,0x2d,0x0f,0xcc,0x26,0xcb,0x11,0x9f,0x0a,0xf5,0x23, + 0xf4,0x26,0x97,0x86,0x7e,0x21,0x51,0x85,0x16,0x3a,0x0e,0x4b,0x1f,0x64,0xf3,0x62, + 0xf4,0x2f,0x13,0x54,0x5c,0x9a,0xed,0xd6,0x9d,0x5d,0xf5,0x17,0x85,0xcc,0x5d,0x53, + 0xa4,0x84,0x36,0x9b,0xe9,0xa7,0x4a,0x04,0x1f,0x8c,0x1c,0x28,0xc7,0x1e,0xab,0xb3, + 0xf2,0x53,0x3d,0xf8,0xb6,0xcd,0xd8,0x45,0x6e,0xc3,0x77,0xdb,0xb1,0x2b,0xa5,0xdd, + 0xc9,0xbf,0x69,0xa7,0xdf,0x98,0x2c,0x54,0xa7,0xa8,0xf5,0x4f,0xc3,0xd1,0x57,0x81, + 0x98,0x60,0xa0,0xb6,0x32,0x83,0x08,0x65,0x1e,0x79,0x24,0xf4,0xbe,0xfe,0x14,0xa6, + 0xfd,0x31,0x9b,0xfa,0x15,0x6f,0x1b,0xab,0x64,0x8b,0x69,0x48,0xb4,0x2e,0x99,0xca, + 0xd7,0x46,0x97,0x57,0x17,0x1d,0x5d,0x53,0xe5,0xde,0xae,0xbb,0x2d,0x74,0x86,0xa5, + 0xe5,0x8e,0x02,0x5c,0x2c,0x8d,0x0d,0x78,0xdc,0xf1,0xa0,0x05,0xb8,0xbd,0x64,0x7d, + 0x51,0x47,0x5e,0x39,0xaa,0x08,0x2d,0xf2,0xd0,0x1a,0x96,0x59,0xab,0x88,0x94,0xa2, + 0xf7,0x2e,0x09,0x3b,0xd0,0xed,0xfc,0xb4,0x1b,0xaa,0xba,0x34,0xf8,0x7b,0x11,0x51, + 0x36,0x7b,0x13,0x84,0x6f,0xc9,0x4a,0x58,0x92,0x3c,0x0c,0xa2,0x4c,0x8f,0xc5,0x78, + 0xb4,0x4a,0xad,0x98,0x08,0x4e,0x4a,0xf3,0x7a,0x28,0x80,0x00,0x00,0x06,0x22,0x6e, 0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f, - 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67, + 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e, 0x00,0x00,0x01,0x00,0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7, 0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1, - 0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x03,0x5d,0x2b,0x11,0x92,0xdf,0xba,0x13,0x4e,0x10, - 0xe5,0x40,0x87,0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa,0x76,0x6b,0x80,0xc0, - 0x90,0xb3,0x9c,0x3a,0x5d,0x88,0x5d,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64,0x40, - 0x99,0x5d,0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19,0xff, - 0x9c,0x17,0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64, - 0x40,0x99,0x5d,0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19, - 0xff,0x9c,0x17,0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x00,0x00,0x01,0xb0,0x6e,0x30,0x94, - 0x60,0x65,0x55,0xb3,0x60,0x01,0x00,0x00,0x33,0x57,0x33,0xf5,0x94,0x2d,0xf5,0xd9, - 0x50,0xeb,0x87,0x66,0xde,0xe3,0xa9,0xd6,0x62,0x69,0x22,0x84,0x4e,0xd6,0xae,0x7a, - 0x11,0x0d,0xd7,0xe7,0xed,0xc3,0x2e,0x3f,0x6f,0x3d,0x9a,0xc5,0xcd,0xea,0x23,0xce, - 0x25,0xbb,0x8d,0xbf,0x76,0x1f,0xd3,0xd5,0xfc,0x56,0xc0,0x5b,0x68,0x56,0x31,0x6d, - 0x12,0xe9,0xd3,0x2c,0xa0,0xf0,0x8c,0x69,0xca,0x03,0x06,0xfe,0x71,0x6e,0x7b,0x51, - 0x51,0x31,0x7d,0x64,0x40,0xb7,0x37,0x3d,0x9f,0xbc,0x64,0x6e,0xad,0x48,0xf2,0x16, - 0x3f,0x2b,0x6d,0x51,0x1a,0xfe,0x6a,0x79,0xc7,0x55,0x51,0xc2,0x62,0x0f,0xc8,0x09, - 0x74,0xf2,0xf8,0x64,0x32,0x9d,0x97,0x78,0xa0,0x8c,0xdf,0xbc,0x9f,0x2c,0x9c,0x13, - 0x44,0xc4,0x32,0x70,0x2c,0x66,0x80,0x7c,0xfb,0x4d,0xb6,0x9b,0x80,0xfa,0xe8,0xc3, - 0x3c,0x70,0x14,0x3d,0x94,0x8b,0x36,0x61,0x4d,0x62,0x08,0x91,0xbe,0xe2,0xdf,0x99, - 0xc8,0x6b,0xc6,0x22,0x07,0xc1,0x7e,0x3b,0x91,0x86,0x21,0x4c,0x0c,0xcf,0xf2,0xde, - 0xd5,0x59,0x8a,0xcc,0xc9,0x0e,0xb1,0xd5,0xb2,0xf7,0xa8,0x3c,0xd7,0xf6,0x8d,0x71, - 0x2e,0xa0,0x47,0xd8,0x01,0x9f,0x34,0x30,0x63,0xb0,0xa2,0x36,0x35,0x6a,0x38,0x71, - 0x46,0xf5,0x8f,0xa8,0x32,0xdd,0xc1,0x3c,0x47,0x14,0x52,0x2c,0xbb,0x50,0x3f,0x5f, - 0x3c,0xa8,0xfc,0xec,0x66,0x02,0xbe,0x24,0x38,0xad,0x3f,0x98,0xfa,0x0c,0xee,0xd5, - 0x8f,0xe3,0xa0,0x66,0xd3,0x85,0xfc,0xac,0xd9,0x8c,0x70,0x4b,0x2a,0x8e,0x98,0xa3, - 0xe2,0x0b,0xf7,0x6b,0x35,0xb7,0x36,0x00,0x00,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00, - 0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85, - 0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3, - 0x1d,0x59,0x03,0x5d,0x2b,0x11,0x92,0xdf,0xba,0x13,0x4e,0x10,0xe5,0x40,0x87,0x5d, - 0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa,0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c,0x3a, - 0x5d,0x88,0x5d,0x02,0x90,0x53,0x52,0x1d,0x6e,0xa7,0xa5,0x2c,0xdd,0x55,0xf7,0x33, - 0xd0,0xfb,0x2d,0x07,0x7c,0x03,0x73,0xb0,0x05,0x3b,0x5b,0x81,0x0d,0x92,0x72,0x44, - 0x06,0x1b,0x75,0x73,0x02,0xd6,0x06,0x3d,0x02,0x26,0x91,0xb2,0x49,0x0a,0xb4,0x54, - 0xde,0xe7,0x3a,0x57,0xc6,0xff,0x5d,0x30,0x83,0x52,0xb4,0x61,0xec,0xe6,0x9f,0x3c, - 0x28,0x4f,0x2c,0x24,0x12,0x00,0x00,0x00,0x0a,0x91,0x11,0x83,0xf6,0x00,0x00,0x00, - 0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x80,0x00,0x00,0x8a,0xc5, - 0x33,0xff,0x38,0x65,0x55,0xb3,0x60,0x01,0x02,0x2f,0xd9,0x23,0x60,0x1e,0x1c,0xa0, - 0xac,0xe5,0x06,0x8c,0xe4,0x8e,0x14,0xf3,0xcd,0x31,0x44,0x16,0xc4,0x0d,0x2e,0x14, - 0x8c,0xa1,0xc8,0x4f,0xa6,0xa8,0xe4,0x64,0x9b,0x45,0x79,0xd1,0xb5,0x2f,0x04,0x19, - 0x86,0xe5,0x5c,0x99,0x43,0xf1,0xd0,0xf3,0x6f,0x52,0xd6,0x88,0xf0,0x9b,0x9c,0x58, - 0x98,0x69,0x0d,0x4e,0x76,0x3e,0xbd,0x6e,0x95,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00, - 0x00,0x65,0x55,0xb3,0x60,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33, - 0x80,0x00,0x00,0x00,0x95,0x97,0xd7,0xa4,0x39,0x65,0x55,0xb3,0x65,0x01,0x01,0x36, - 0x59,0x20,0x77,0x0e,0xf4,0x73,0x10,0xd7,0xb6,0x59,0x5a,0x7c,0xbe,0xd0,0x56,0x51, - 0x3d,0x97,0xbe,0x84,0xb7,0x02,0xb5,0x89,0x72,0xbd,0xb3,0x19,0x2a,0x54,0x5f,0x57, - 0x52,0x09,0x1d,0xff,0x0f,0xe6,0x70,0x1e,0x71,0x23,0xaa,0x3f,0x98,0x89,0x86,0x35, - 0x87,0xc2,0x66,0xd9,0x99,0xbd,0xa2,0x7e,0x16,0x12,0xd9,0x6b,0xc4,0xd3,0x0c,0x00, - 0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65,0x55,0xb3,0x65,0x02,0x2d,0x22,0x36, - 0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5, - 0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x2d,0x22, - 0x53,0x49,0x4c,0x45,0x4e,0x54,0x41,0x52,0x54,0x49,0x53,0x54,0x2d,0x31,0x2d,0x31, - 0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64, - 0x00,0x00,0x80,0x00,0x00,0x8a,0xd0,0xde,0x20,0xc6,0x65,0x55,0xb3,0x60,0x01,0x02, - 0x11,0xd6,0x4b,0xc5,0x88,0x33,0x4b,0x6c,0x1e,0x0c,0x4c,0x5c,0x65,0x69,0x35,0x66, - 0x45,0x80,0xbc,0x4b,0x56,0x3d,0x98,0x2c,0xb3,0x45,0xef,0x22,0x44,0x6e,0xca,0x6c, - 0x1f,0xe9,0x2a,0xf2,0x4a,0xe1,0x26,0xdb,0x15,0x6f,0x7e,0x3b,0xdd,0xd3,0x40,0x54, - 0xb2,0xc7,0x07,0xfe,0x67,0xb0,0xf3,0x35,0x56,0x25,0xc6,0x53,0xfd,0x54,0x56,0x5e, - 0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf, - 0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f, - 0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x60,0x01,0x01,0x00,0x06, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a, - 0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x00,0x95,0x87,0xf8,0x92,0xf3, - 0x65,0x55,0xb3,0x65,0x01,0x01,0x32,0x6c,0xde,0x4a,0xc5,0xe8,0xd4,0xa0,0xed,0xbc, - 0x2c,0x13,0x5e,0xb9,0x1e,0xc3,0xc3,0x86,0xcb,0x75,0xeb,0x6f,0xce,0xc5,0xc5,0x57, - 0x01,0x1c,0x9c,0xb7,0x32,0x17,0x01,0x10,0x8c,0xdd,0x04,0x31,0x78,0xae,0xb4,0x88, - 0x8d,0xf8,0xe8,0x35,0x90,0x69,0x91,0x84,0xd0,0x16,0xd8,0x44,0xbc,0xde,0x37,0xe8, - 0x4e,0x1a,0x95,0xb6,0xa6,0x73,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65, - 0x55,0xb3,0x65,0x03,0x5d,0x2b,0x11,0x92,0xdf,0xba,0x13,0x4e,0x10,0xe5,0x40,0x87, - 0x5d,0x36,0x6e,0xbc,0x8b,0xc3,0x53,0xd5,0xaa,0x76,0x6b,0x80,0xc0,0x90,0xb3,0x9c, - 0x3a,0x5d,0x88,0x5d,0x03,0x5d,0x2b,0x48,0x4f,0x50,0x50,0x49,0x4e,0x47,0x46,0x49, - 0x52,0x45,0x2d,0x63,0x31,0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38, - 0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00,0x00,0x00,0x00,0x8a,0xcb,0xd4,0xc7, - 0xa1,0x65,0x55,0xb3,0x65,0x01,0x02,0x1d,0x3f,0x42,0x7f,0x3d,0xdb,0x58,0x2b,0xcb, - 0x78,0x5d,0x24,0xf1,0x67,0xc6,0xc7,0xd8,0x6e,0x6c,0x5b,0xf8,0xfb,0x27,0x17,0x58, - 0xaa,0x7e,0x46,0x86,0x49,0x66,0x21,0x47,0x76,0xbd,0xf2,0x2d,0xae,0x29,0xf0,0x6f, - 0x17,0x6e,0xf2,0x7f,0x01,0xda,0x16,0xa9,0x1d,0x6a,0x61,0x4c,0x41,0x71,0x19,0x4d, - 0x37,0xac,0x8a,0x28,0xd8,0x62,0xfb,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca, - 0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7, - 0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00,0x00,0x65, - 0x55,0xb3,0x65,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x80, - 0x00,0x01,0xbc,0x39,0xdb,0xc7,0xdf,0x00,0x00,0x00,0x00,0x10,0x08,0x00,0x00,0x00, - 0x00,0x00,0x0f,0x42,0x40,0x01,0xb0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x6e,0x46,0x11, - 0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e, - 0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00, - 0x01,0x00,0x00,0x02,0x2d,0x22,0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44, - 0x7c,0x85,0xc4,0x6c,0x92,0x3d,0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e, - 0x3c,0xa3,0x1d,0x59,0x02,0x66,0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57,0x2a,0x84, - 0x88,0x83,0x0b,0x60,0xf7,0xe7,0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9,0x32,0x83, - 0xb3,0x15,0xc0,0x35,0x18,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64,0x40,0x99,0x5d, - 0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19,0xff,0x9c,0x17, - 0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x03,0x1b,0x84,0xc5,0x56,0x7b,0x12,0x64,0x40,0x99, - 0x5d,0x3e,0xd5,0xaa,0xba,0x05,0x65,0xd7,0x1e,0x18,0x34,0x60,0x48,0x19,0xff,0x9c, - 0x17,0xf5,0xe9,0xd5,0xdd,0x07,0x8f,0x80,0x00,0x00,0x8e,0x85,0x67,0x9b,0xcf,0x00, - 0x00,0x00,0x00,0x10,0x06,0x00,0x8a,0x01,0x02,0x27,0x9e,0x4e,0x43,0x39,0xa6,0x92, - 0x19,0x35,0x50,0x19,0xbb,0x51,0x5b,0xf9,0xac,0xdb,0xda,0x9c,0xde,0x81,0x8b,0x56, - 0x2e,0x0a,0x3d,0xd5,0xb0,0x5f,0x10,0x2e,0x6c,0x22,0x55,0x7e,0x07,0xc2,0x5f,0x4b, - 0x9c,0xc1,0x21,0x6e,0x07,0x66,0x41,0x60,0xde,0x3e,0xe2,0x24,0xa5,0x9e,0xec,0xaf, - 0xd7,0xcc,0x3f,0x87,0x7c,0x32,0x29,0xca,0xe7,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00, - 0x00,0x65,0x55,0xb3,0x6c,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33, - 0x80,0x80,0x00,0x00,0x8e,0xca,0xa4,0x8e,0x70,0x00,0x00,0x00,0x00,0x10,0x06,0x00, - 0x8a,0x01,0x02,0x4e,0x3f,0x3b,0x6d,0xda,0xcc,0xd3,0xef,0x5f,0xaf,0x26,0x76,0x16, - 0x64,0xa2,0x82,0x97,0xe8,0xb4,0xe4,0xb1,0x2d,0xec,0xa1,0x9e,0x91,0x69,0xd3,0xde, - 0xe9,0x58,0xc7,0x19,0x06,0x90,0x42,0x86,0x97,0xf3,0x88,0xca,0x35,0xd5,0xec,0x79, - 0x5e,0x59,0x33,0x31,0xf4,0x0c,0xdb,0x55,0x5d,0x78,0xd7,0x22,0x59,0xa2,0xe5,0x8d, - 0xeb,0x65,0x41,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, - 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, - 0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x6c,0x01, - 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, - 0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x00,0x8a,0xbf, - 0x0d,0x7a,0xbc,0x65,0x55,0xb3,0x6f,0x01,0x02,0x59,0xc9,0x36,0x84,0xaa,0x13,0x70, - 0x73,0x7d,0xa7,0xe6,0x8a,0x72,0x05,0x15,0xa9,0x06,0x69,0xe0,0xc0,0x0d,0x15,0x6d, - 0x22,0x5c,0xd6,0x1a,0x3e,0x56,0xaa,0x9d,0x98,0x68,0x5a,0x3c,0xdc,0x38,0x71,0xee, - 0x0d,0x02,0x3e,0x2f,0xd0,0x97,0xd7,0xab,0xe2,0x0d,0xdf,0xf5,0xa6,0xd1,0x9c,0xb6, - 0xb9,0x30,0xd6,0xdd,0x10,0xa7,0xa3,0xce,0x5e,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, - 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, - 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x67,0x00,0x00,0x01,0x00, - 0x00,0x65,0x55,0xb3,0x6f,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33, - 0x80,0x80,0x00,0x00,0x8e,0x80,0x00,0x75,0xd3,0x00,0x00,0x00,0x00,0x10,0x06,0x00, - 0x8a,0x01,0x02,0x26,0x62,0x25,0x68,0x2d,0x27,0x06,0x9a,0x3b,0xaa,0x1a,0x43,0x93, - 0xac,0xb5,0x05,0x14,0x1c,0x09,0x22,0x8d,0xfb,0x54,0x43,0x73,0x3a,0x88,0xaa,0xa3, - 0x18,0xc8,0xd8,0x0d,0x36,0xd4,0x26,0x10,0xe9,0x82,0xa6,0x3c,0xb4,0x38,0x24,0xaf, - 0xdc,0x06,0xd5,0x3d,0xe3,0x7a,0xe8,0x39,0xdd,0xd4,0x5f,0xd8,0x92,0xf5,0x4b,0xe7, - 0x8d,0xf7,0xab,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, - 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, - 0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01, - 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00, - 0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x80,0x00,0x00,0x8e,0xdc, - 0x5e,0x38,0x7a,0x00,0x00,0x00,0x00,0x10,0x06,0x00,0x8a,0x01,0x02,0x5d,0xf9,0x14, + 0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x66,0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57, + 0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7,0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9, + 0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x03,0xbb,0xee,0x60,0xc3,0x95,0x05,0x6b,0x8a, + 0x12,0x01,0xe0,0x6e,0xd7,0x9e,0x29,0x14,0xc1,0x1a,0x61,0xd7,0xb1,0xaa,0x78,0x18, + 0x46,0x46,0x8d,0x02,0x48,0x9d,0xba,0x69,0x02,0x32,0x42,0x66,0xde,0x84,0x03,0xb3, + 0xab,0x15,0x7a,0x09,0xf1,0xf7,0x84,0xd5,0x87,0xaf,0x61,0x83,0x1c,0x99,0x8c,0x15, + 0x1b,0xcc,0x21,0xbb,0x74,0xc2,0xb2,0x31,0x4b,0x20,0x00,0x00,0x0a,0x91,0x11,0x83, + 0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x20, + 0x00,0x00,0x8a,0xe1,0x31,0x6b,0x76,0x65,0x55,0xb3,0x71,0x01,0x02,0x5d,0xf9,0x14, 0xa0,0xd1,0x46,0x69,0x9a,0x2a,0x97,0xf7,0xb3,0x83,0xf0,0x30,0x73,0x48,0x5e,0x7b, 0x3e,0x6c,0x45,0xd3,0xf1,0x51,0xf8,0xbc,0x4b,0xd7,0xae,0x02,0xd9,0x57,0x51,0x73, 0x8f,0x0f,0xd0,0xdd,0x38,0x36,0x48,0xcd,0xda,0xea,0x01,0x24,0x16,0x3d,0x14,0x7e, @@ -251,65 +194,26 @@ static u8 canned_map[] = { 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e, 0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01,0x00,0x00,0x06,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00, - 0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x01,0xb0,0xb8,0x17,0x71,0xe9,0x65,0x55,0xb3, - 0x71,0x01,0x00,0x0d,0xef,0xc0,0x12,0x4f,0xd4,0xe4,0x1c,0xce,0xc3,0xf4,0x83,0x17, - 0x21,0x7e,0x33,0x11,0x5a,0x8f,0x8c,0x39,0xae,0xbb,0x06,0x2b,0x4e,0x73,0xa6,0x52, - 0xee,0x0e,0x61,0x03,0xf9,0xf1,0x16,0x7b,0x22,0xbd,0xcb,0x92,0xcf,0x82,0x2d,0x0f, - 0xcc,0x26,0xcb,0x11,0x9f,0x0a,0xf5,0x23,0xf4,0x26,0x97,0x86,0x7e,0x21,0x51,0x85, - 0x16,0x3a,0x0e,0x4b,0x1f,0x64,0xf3,0x62,0xf4,0x2f,0x13,0x54,0x5c,0x9a,0xed,0xd6, - 0x9d,0x5d,0xf5,0x17,0x85,0xcc,0x5d,0x53,0xa4,0x84,0x36,0x9b,0xe9,0xa7,0x4a,0x04, - 0x1f,0x8c,0x1c,0x28,0xc7,0x1e,0xab,0xb3,0xf2,0x53,0x3d,0xf8,0xb6,0xcd,0xd8,0x45, - 0x6e,0xc3,0x77,0xdb,0xb1,0x2b,0xa5,0xdd,0xc9,0xbf,0x69,0xa7,0xdf,0x98,0x2c,0x54, - 0xa7,0xa8,0xf5,0x4f,0xc3,0xd1,0x57,0x81,0x98,0x60,0xa0,0xb6,0x32,0x83,0x08,0x65, - 0x1e,0x79,0x24,0xf4,0xbe,0xfe,0x14,0xa6,0xfd,0x31,0x9b,0xfa,0x15,0x6f,0x1b,0xab, - 0x64,0x8b,0x69,0x48,0xb4,0x2e,0x99,0xca,0xd7,0x46,0x97,0x57,0x17,0x1d,0x5d,0x53, - 0xe5,0xde,0xae,0xbb,0x2d,0x74,0x86,0xa5,0xe5,0x8e,0x02,0x5c,0x2c,0x8d,0x0d,0x78, - 0xdc,0xf1,0xa0,0x05,0xb8,0xbd,0x64,0x7d,0x51,0x47,0x5e,0x39,0xaa,0x08,0x2d,0xf2, - 0xd0,0x1a,0x96,0x59,0xab,0x88,0x94,0xa2,0xf7,0x2e,0x09,0x3b,0xd0,0xed,0xfc,0xb4, - 0x1b,0xaa,0xba,0x34,0xf8,0x7b,0x11,0x51,0x36,0x7b,0x13,0x84,0x6f,0xc9,0x4a,0x58, - 0x92,0x3c,0x0c,0xa2,0x4c,0x8f,0xc5,0x78,0xb4,0x4a,0xad,0x98,0x08,0x4e,0x4a,0xf3, - 0x7a,0x28,0x80,0x00,0x00,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, - 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, - 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x02,0x2d,0x22, - 0x36,0x20,0xa3,0x59,0xa4,0x7f,0xf7,0xf7,0xac,0x44,0x7c,0x85,0xc4,0x6c,0x92,0x3d, - 0xa5,0x33,0x89,0x22,0x1a,0x00,0x54,0xc1,0x1c,0x1e,0x3c,0xa3,0x1d,0x59,0x02,0x66, - 0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57,0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7, - 0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9,0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x03, - 0xbb,0xee,0x60,0xc3,0x95,0x05,0x6b,0x8a,0x12,0x01,0xe0,0x6e,0xd7,0x9e,0x29,0x14, - 0xc1,0x1a,0x61,0xd7,0xb1,0xaa,0x78,0x18,0x46,0x46,0x8d,0x02,0x48,0x9d,0xba,0x69, - 0x02,0x32,0x42,0x66,0xde,0x84,0x03,0xb3,0xab,0x15,0x7a,0x09,0xf1,0xf7,0x84,0xd5, - 0x87,0xaf,0x61,0x83,0x1c,0x99,0x8c,0x15,0x1b,0xcc,0x21,0xbb,0x74,0xc2,0xb2,0x31, - 0x4b,0x00,0x00,0x00,0x0a,0x91,0x11,0x83,0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00, - 0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0x00,0x00,0x00,0x8a,0xe1,0x31,0x6b,0x76,0x65, - 0x55,0xb3,0x71,0x01,0x02,0x5d,0xf9,0x14,0xa0,0xd1,0x46,0x69,0x9a,0x2a,0x97,0xf7, - 0xb3,0x83,0xf0,0x30,0x73,0x48,0x5e,0x7b,0x3e,0x6c,0x45,0xd3,0xf1,0x51,0xf8,0xbc, - 0x4b,0xd7,0xae,0x02,0xd9,0x57,0x51,0x73,0x8f,0x0f,0xd0,0xdd,0x38,0x36,0x48,0xcd, - 0xda,0xea,0x01,0x24,0x16,0x3d,0x14,0x7e,0x5a,0x9e,0xac,0xcd,0x81,0xd1,0x96,0x30, - 0xd9,0xbc,0xa6,0xe4,0xe8,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, - 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, - 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3, - 0x71,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x00,0x00,0x00, - 0x8a,0xbd,0x6f,0x26,0xdf,0x65,0x55,0xb3,0x71,0x01,0x02,0x26,0x62,0x25,0x68,0x2d, - 0x27,0x06,0x9a,0x3b,0xaa,0x1a,0x43,0x93,0xac,0xb5,0x05,0x14,0x1c,0x09,0x22,0x8d, - 0xfb,0x54,0x43,0x73,0x3a,0x88,0xaa,0xa3,0x18,0xc8,0xd8,0x0d,0x36,0xd4,0x26,0x10, - 0xe9,0x82,0xa6,0x3c,0xb4,0x38,0x24,0xaf,0xdc,0x06,0xd5,0x3d,0xe3,0x7a,0xe8,0x39, - 0xdd,0xd4,0x5f,0xd8,0x92,0xf5,0x4b,0xe7,0x8d,0xf7,0xab,0x06,0x22,0x6e,0x46,0x11, - 0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e, - 0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00, - 0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b, - 0x02,0x33,0x80,0x00,0x00,0x00,0x95,0xf6,0xd7,0x24,0x69,0x65,0x55,0xb3,0x79,0x01, - 0x01,0x42,0x62,0x2b,0xf0,0x0a,0x44,0xc3,0xe0,0x78,0x3c,0xa7,0x08,0x5a,0xa0,0xaa, - 0x9d,0xb2,0xdc,0x2e,0xa7,0x29,0x0a,0x39,0x3d,0x01,0x57,0xbf,0x34,0x23,0x0f,0xb9, - 0x19,0x33,0x6f,0xc2,0xfb,0x9f,0x25,0xac,0xc4,0xc9,0x47,0xb7,0x41,0x92,0xdb,0x2f, - 0xd5,0xf0,0x1f,0x24,0x32,0xdf,0x38,0x30,0x89,0x93,0xeb,0xc9,0xec,0xf1,0x09,0x51, - 0xbb,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a,0x69,0xa2,0x65,0x55,0xb3,0x79,0x02,0x66, - 0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57,0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7, - 0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9,0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x02, - 0x66,0xe4,0x4a,0x55,0x4e,0x49,0x4f,0x52,0x42,0x45,0x41,0x4d,0x2d,0x72,0x63,0x31, - 0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34,0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64, - 0x65,0x64,0x00,0x00, + 0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x8a,0xbd,0x6f,0x26,0xdf,0x65,0x55,0xb3, + 0x71,0x01,0x02,0x26,0x62,0x25,0x68,0x2d,0x27,0x06,0x9a,0x3b,0xaa,0x1a,0x43,0x93, + 0xac,0xb5,0x05,0x14,0x1c,0x09,0x22,0x8d,0xfb,0x54,0x43,0x73,0x3a,0x88,0xaa,0xa3, + 0x18,0xc8,0xd8,0x0d,0x36,0xd4,0x26,0x10,0xe9,0x82,0xa6,0x3c,0xb4,0x38,0x24,0xaf, + 0xdc,0x06,0xd5,0x3d,0xe3,0x7a,0xe8,0x39,0xdd,0xd4,0x5f,0xd8,0x92,0xf5,0x4b,0xe7, + 0x8d,0xf7,0xab,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, + 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, + 0x88,0x91,0x0f,0x00,0x00,0x6e,0x00,0x00,0x01,0x00,0x00,0x65,0x55,0xb3,0x71,0x01, + 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00, + 0x00,0x03,0xe8,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x95,0xf6, + 0xd7,0x24,0x69,0x65,0x55,0xb3,0x79,0x01,0x01,0x42,0x62,0x2b,0xf0,0x0a,0x44,0xc3, + 0xe0,0x78,0x3c,0xa7,0x08,0x5a,0xa0,0xaa,0x9d,0xb2,0xdc,0x2e,0xa7,0x29,0x0a,0x39, + 0x3d,0x01,0x57,0xbf,0x34,0x23,0x0f,0xb9,0x19,0x33,0x6f,0xc2,0xfb,0x9f,0x25,0xac, + 0xc4,0xc9,0x47,0xb7,0x41,0x92,0xdb,0x2f,0xd5,0xf0,0x1f,0x24,0x32,0xdf,0x38,0x30, + 0x89,0x93,0xeb,0xc9,0xec,0xf1,0x09,0x51,0xbb,0x00,0x07,0x88,0xa0,0x00,0x0a,0x0a, + 0x69,0xa2,0x65,0x55,0xb3,0x79,0x02,0x66,0xe4,0x59,0x8d,0x1d,0x3c,0x41,0x5f,0x57, + 0x2a,0x84,0x88,0x83,0x0b,0x60,0xf7,0xe7,0x44,0xed,0x92,0x35,0xeb,0x0b,0x1b,0xa9, + 0x32,0x83,0xb3,0x15,0xc0,0x35,0x18,0x02,0x66,0xe4,0x4a,0x55,0x4e,0x49,0x4f,0x52, + 0x42,0x45,0x41,0x4d,0x2d,0x72,0x63,0x31,0x2d,0x31,0x2d,0x67,0x63,0x63,0x65,0x34, + 0x66,0x36,0x38,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00, }; /* not_mcf sets NDEBUG, so assert() is useless */ diff --git a/plugins/renepay/test/run-testflow.c b/plugins/renepay/test/run-testflow.c index 83ffe80e3766..43a2b556f253 100644 --- a/plugins/renepay/test/run-testflow.c +++ b/plugins/renepay/test/run-testflow.c @@ -59,358 +59,329 @@ bool sciddir_or_pubkey_from_node_id(struct sciddir_or_pubkey *sciddpk UNNEEDED, /* AUTOGENERATED MOCKS END */ static const u8 canned_map[] = { -0x0c, 0x80, 0x00, 0x01, 0xbc, 0x86, 0xe4, 0xbf, 0x95, 0x00, 0x00, 0x00, 0x00, 0x10, 0x08, 0x00, -0x00, 0x00, 0x00, 0x00, 0x0f, 0x42, 0x40, 0x01, 0xb0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x22, 0x6e, -0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, -0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, -0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x4f, 0x9d, 0xa0, 0xd7, 0x26, 0xad, 0xf0, 0xd9, 0xa4, 0xa3, -0xac, 0x32, 0xe3, 0x28, 0xb9, 0x3a, 0xd5, 0x27, 0xcc, 0xb9, 0xdb, 0x70, 0x77, 0xc5, 0x7a, 0x12, -0xc6, 0xf9, 0xfa, 0x9a, 0xdd, 0x74, 0x03, 0x7f, 0x97, 0xaf, 0x8e, 0x4f, 0xa6, 0x7c, 0x9b, 0x8d, -0x69, 0x70, 0x84, 0x95, 0x36, 0xf8, 0x88, 0xc3, 0x04, 0x31, 0x6d, 0x01, 0x5a, 0xf5, 0x12, 0x9e, -0x26, 0x8e, 0x01, 0x64, 0x96, 0x1b, 0x5e, 0x03, 0x1b, 0x84, 0xc5, 0x56, 0x7b, 0x12, 0x64, 0x40, -0x99, 0x5d, 0x3e, 0xd5, 0xaa, 0xba, 0x05, 0x65, 0xd7, 0x1e, 0x18, 0x34, 0x60, 0x48, 0x19, 0xff, -0x9c, 0x17, 0xf5, 0xe9, 0xd5, 0xdd, 0x07, 0x8f, 0x03, 0x1b, 0x84, 0xc5, 0x56, 0x7b, 0x12, 0x64, -0x40, 0x99, 0x5d, 0x3e, 0xd5, 0xaa, 0xba, 0x05, 0x65, 0xd7, 0x1e, 0x18, 0x34, 0x60, 0x48, 0x19, -0xff, 0x9c, 0x17, 0xf5, 0xe9, 0xd5, 0xdd, 0x07, 0x8f, 0x40, 0x00, 0x01, 0xb0, 0x24, 0x3a, 0xa3, -0x76, 0x64, 0x62, 0x19, 0xec, 0x01, 0x00, 0x66, 0x7f, 0x0f, 0xad, 0x6d, 0x9d, 0x58, 0x1b, 0x28, -0x8a, 0x67, 0x9d, 0xf8, 0xd1, 0x9d, 0x79, 0x4e, 0x67, 0xc8, 0x76, 0xbb, 0xdd, 0x4d, 0x8e, 0x45, -0x0d, 0xc9, 0x0e, 0x24, 0x76, 0xda, 0x44, 0x68, 0x7b, 0xe2, 0x14, 0xe8, 0x48, 0xfa, 0xd7, 0xc2, -0x35, 0xc5, 0x98, 0xd9, 0x7a, 0x6c, 0xcb, 0xb1, 0x4b, 0x19, 0xf9, 0xfa, 0xb2, 0x19, 0x3f, 0x87, -0xc1, 0xe9, 0x47, 0x51, 0x16, 0x64, 0x36, 0x2a, 0xeb, 0xc5, 0xaa, 0x20, 0x59, 0x4e, 0xdf, 0xae, -0x4e, 0x10, 0x38, 0x34, 0x8e, 0x06, 0x6e, 0x5d, 0x1b, 0x44, 0x30, 0xfb, 0x20, 0xed, 0xea, 0xde, -0x83, 0xcd, 0xa4, 0x8a, 0x5c, 0xad, 0x70, 0x2d, 0x8b, 0x04, 0xfb, 0xa2, 0xbd, 0x95, 0x7c, 0xdd, -0x66, 0xb5, 0x4e, 0xd6, 0xc6, 0x27, 0xdb, 0xa8, 0xe1, 0x26, 0x22, 0x81, 0x57, 0xe2, 0xaa, 0xe4, -0x82, 0xbe, 0x9e, 0x90, 0xc5, 0xc2, 0x59, 0x56, 0x9b, 0x79, 0xf3, 0xc3, 0xfe, 0x0c, 0xb3, 0x35, -0xeb, 0xba, 0xad, 0xf7, 0xd3, 0x24, 0x4e, 0x16, 0x15, 0x2d, 0x86, 0xd9, 0xe9, 0xd2, 0x38, 0x9b, -0xf9, 0xb3, 0x5f, 0x2c, 0x9b, 0xeb, 0xe0, 0x1c, 0xb3, 0xf0, 0x0f, 0xc1, 0x9d, 0x0b, 0x20, 0xa2, -0x19, 0xeb, 0x1a, 0x05, 0x8b, 0x8d, 0xb1, 0x22, 0x74, 0x7c, 0xa4, 0x39, 0x94, 0x6f, 0xfc, 0x34, -0x1b, 0xe5, 0x9f, 0x45, 0x8e, 0x12, 0x6e, 0x65, 0x73, 0x28, 0x21, 0x80, 0xfd, 0x9c, 0x0c, 0x89, -0x2b, 0xcb, 0x43, 0x2e, 0x7f, 0x47, 0xa1, 0xd7, 0x7e, 0xa9, 0xd7, 0x3e, 0xdd, 0xa0, 0xf8, 0x60, -0x9d, 0xde, 0x51, 0x3d, 0xc4, 0x21, 0x06, 0x61, 0xb3, 0x4d, 0xd8, 0x94, 0x4a, 0x3a, 0xc9, 0xb9, -0xc3, 0xcb, 0x09, 0xa3, 0x2f, 0x7b, 0x96, 0x53, 0x13, 0x1d, 0x6d, 0x7a, 0x28, 0xdd, 0xc8, 0x8d, -0xe4, 0x10, 0xad, 0x4c, 0xc6, 0xa0, 0x1b, 0x00, 0x00, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, -0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, -0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x01, 0x00, -0x01, 0x02, 0x4f, 0x9d, 0xa0, 0xd7, 0x26, 0xad, 0xf0, 0xd9, 0xa4, 0xa3, 0xac, 0x32, 0xe3, 0x28, -0xb9, 0x3a, 0xd5, 0x27, 0xcc, 0xb9, 0xdb, 0x70, 0x77, 0xc5, 0x7a, 0x12, 0xc6, 0xf9, 0xfa, 0x9a, -0xdd, 0x74, 0x03, 0x7f, 0x97, 0xaf, 0x8e, 0x4f, 0xa6, 0x7c, 0x9b, 0x8d, 0x69, 0x70, 0x84, 0x95, -0x36, 0xf8, 0x88, 0xc3, 0x04, 0x31, 0x6d, 0x01, 0x5a, 0xf5, 0x12, 0x9e, 0x26, 0x8e, 0x01, 0x64, -0x96, 0x1b, 0x5e, 0x02, 0xca, 0x1a, 0xac, 0x5f, 0x7b, 0x86, 0x3a, 0x01, 0xc8, 0x69, 0x90, 0x82, -0xdf, 0x9a, 0x4d, 0xf8, 0x14, 0x0d, 0xd6, 0xe7, 0x10, 0x59, 0xd4, 0xec, 0x7f, 0x48, 0x13, 0xb0, -0x96, 0xb4, 0xa3, 0xad, 0x02, 0x21, 0x55, 0x92, 0x46, 0x1c, 0x84, 0x3d, 0x40, 0xe6, 0x01, 0x8d, -0x3d, 0x0c, 0xb6, 0xf4, 0xe1, 0x61, 0xe2, 0x4b, 0x59, 0x41, 0xdb, 0x3b, 0x20, 0x44, 0xbc, 0x0c, -0xb2, 0x0e, 0x4d, 0x3f, 0x9b, 0x00, 0x00, 0x00, 0x0a, 0x91, 0x11, 0x83, 0xf6, 0x00, 0x00, 0x00, -0x00, 0x10, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x42, 0x40, 0xc0, 0x00, 0x00, 0x8a, 0x01, -0x3d, 0x6f, 0x9a, 0x64, 0x62, 0x19, 0xec, 0x01, 0x02, 0x4c, 0x45, 0x7e, 0x21, 0xb8, 0xd5, 0x36, -0x98, 0xcd, 0x45, 0x03, 0x78, 0xa6, 0x51, 0xf1, 0xda, 0x1a, 0xb4, 0x46, 0xed, 0xfb, 0xed, 0x86, -0xf9, 0x31, 0x85, 0x2e, 0x3d, 0x80, 0x77, 0xf2, 0x13, 0x76, 0x91, 0x08, 0xe7, 0x52, 0x3d, 0xf4, -0xe5, 0x2e, 0x3b, 0x80, 0x2a, 0xbf, 0x54, 0xf8, 0x80, 0xbb, 0x77, 0x6f, 0xc6, 0xca, 0x9e, 0x3f, -0xe8, 0x96, 0xfa, 0x54, 0x7e, 0x94, 0x78, 0x0a, 0xec, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, -0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, -0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x01, 0x00, -0x01, 0x64, 0x62, 0x19, 0xec, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x02, 0x33, -0x80, 0x40, 0x00, 0x00, 0xa4, 0x07, 0xd2, 0xf1, 0x5d, 0x64, 0x62, 0x19, 0xf1, 0x01, 0x01, 0x4d, -0xbe, 0x8a, 0xf5, 0xd8, 0x19, 0x2b, 0x99, 0xb0, 0xa0, 0xde, 0x24, 0x36, 0x32, 0x06, 0xac, 0x40, -0x4c, 0x41, 0x94, 0xc1, 0xd3, 0x85, 0xb5, 0xb8, 0x76, 0xbf, 0x98, 0xa9, 0x8e, 0xdb, 0xca, 0x43, -0x73, 0x98, 0xa0, 0xe0, 0x11, 0xa9, 0x95, 0xf3, 0xce, 0xde, 0xe5, 0x85, 0x80, 0x63, 0x8c, 0x12, -0x11, 0xee, 0xee, 0xa1, 0x3e, 0xcf, 0x4e, 0xd5, 0xae, 0x8d, 0x93, 0x22, 0xce, 0xbb, 0x02, 0x00, -0x07, 0x88, 0xa0, 0x80, 0x2a, 0x02, 0x69, 0xa2, 0x64, 0x62, 0x19, 0xf1, 0x02, 0x4f, 0x9d, 0xa0, -0xd7, 0x26, 0xad, 0xf0, 0xd9, 0xa4, 0xa3, 0xac, 0x32, 0xe3, 0x28, 0xb9, 0x3a, 0xd5, 0x27, 0xcc, -0xb9, 0xdb, 0x70, 0x77, 0xc5, 0x7a, 0x12, 0xc6, 0xf9, 0xfa, 0x9a, 0xdd, 0x74, 0x02, 0x4f, 0x9d, -0x4c, 0x4f, 0x55, 0x44, 0x54, 0x52, 0x41, 0x57, 0x4c, 0x2d, 0x2e, 0x30, 0x32, 0x2d, 0x33, 0x37, -0x2d, 0x67, 0x63, 0x39, 0x66, 0x38, 0x30, 0x33, 0x35, 0x2d, 0x6d, 0x6f, 0x64, 0x64, 0x65, 0x64, -0x00, 0x00, 0x01, 0x0d, 0x02, 0x9a, 0x00, 0x32, 0x00, 0x64, 0x00, 0x00, 0x00, 0x02, 0x4c, 0x4b, -0x40, 0xc0, 0x00, 0x00, 0x8a, 0x06, 0x22, 0xaa, 0xb5, 0x64, 0x62, 0x19, 0xec, 0x01, 0x02, 0x2b, -0x9e, 0x17, 0x25, 0x0f, 0x3d, 0x8c, 0x1c, 0x07, 0x6b, 0xb8, 0x7f, 0xdc, 0xc4, 0x30, 0xf4, 0xa7, -0xf8, 0x8b, 0x91, 0x53, 0xd6, 0xc1, 0x9d, 0x06, 0xb9, 0x18, 0xfb, 0xf0, 0x0b, 0x9a, 0x79, 0x2a, -0x56, 0x12, 0x35, 0x75, 0x4e, 0xf4, 0xb8, 0xb4, 0x2e, 0x72, 0x10, 0x3c, 0x8d, 0x76, 0x69, 0x1c, -0x67, 0xb0, 0x7f, 0x94, 0x07, 0xee, 0xb4, 0x38, 0x11, 0x0b, 0x7f, 0x62, 0x4e, 0x2a, 0x2d, 0x06, -0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, -0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, -0x00, 0x71, 0x00, 0x00, 0x01, 0x00, 0x01, 0x64, 0x62, 0x19, 0xec, 0x01, 0x01, 0x00, 0x06, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, -0x00, 0x00, 0x00, 0x3b, 0x02, 0x33, 0x80, 0x00, 0x00, 0x00, 0xa4, 0xde, 0x6a, 0x84, 0x4d, 0x64, -0x62, 0x19, 0xf1, 0x01, 0x01, 0x47, 0x72, 0x62, 0xe8, 0xc7, 0x43, 0xa8, 0x2e, 0x1c, 0x97, 0x2a, -0x06, 0xce, 0x2f, 0xa2, 0xfa, 0x27, 0x4f, 0x28, 0x7f, 0x55, 0x32, 0x19, 0x62, 0x58, 0xc6, 0x18, -0x07, 0x23, 0x5f, 0x8a, 0x59, 0x00, 0x52, 0x4d, 0xc9, 0x18, 0x22, 0x9e, 0xf7, 0x87, 0xa3, 0x36, -0x9d, 0x01, 0x73, 0x7c, 0x5b, 0xb8, 0xb4, 0x08, 0x50, 0x0f, 0x89, 0x52, 0x3f, 0x2e, 0x44, 0xa0, -0xe0, 0x32, 0x3a, 0xf7, 0x20, 0x00, 0x07, 0x88, 0xa0, 0x80, 0x2a, 0x02, 0x69, 0xa2, 0x64, 0x62, -0x19, 0xf1, 0x03, 0x7f, 0x97, 0xaf, 0x8e, 0x4f, 0xa6, 0x7c, 0x9b, 0x8d, 0x69, 0x70, 0x84, 0x95, -0x36, 0xf8, 0x88, 0xc3, 0x04, 0x31, 0x6d, 0x01, 0x5a, 0xf5, 0x12, 0x9e, 0x26, 0x8e, 0x01, 0x64, -0x96, 0x1b, 0x5e, 0x03, 0x7f, 0x97, 0x53, 0x4c, 0x49, 0x43, 0x4b, 0x45, 0x52, 0x43, 0x48, 0x49, -0x50, 0x4d, 0x55, 0x4e, 0x4b, 0x2d, 0x2d, 0x67, 0x63, 0x39, 0x66, 0x38, 0x30, 0x33, 0x35, 0x2d, -0x6d, 0x6f, 0x64, 0x64, 0x65, 0x64, 0x00, 0x00, 0x01, 0x0d, 0x02, 0x9a, 0x00, 0x32, 0x00, 0x64, -0x00, 0x00, 0x00, 0x02, 0x4c, 0x4b, 0x40, 0x00, 0x00, 0x01, 0xb0, 0x31, 0xd6, 0x97, 0xf8, 0x64, -0x62, 0x19, 0xec, 0x01, 0x00, 0x3f, 0x22, 0x04, 0x81, 0x00, 0xfb, 0xfe, 0x52, 0x4e, 0xdf, 0x7e, -0xef, 0x65, 0xff, 0x41, 0xcf, 0xfc, 0x33, 0xfc, 0x27, 0xba, 0x5b, 0x5f, 0xc5, 0x40, 0xd7, 0xff, -0x65, 0x20, 0x37, 0x3f, 0x00, 0x0d, 0x7c, 0x9b, 0xa9, 0xf1, 0x8c, 0xc6, 0xf1, 0xf7, 0x30, 0xd8, -0x1a, 0x44, 0xea, 0x6a, 0xf8, 0x95, 0xde, 0xe9, 0x35, 0x5f, 0x2b, 0x09, 0xc8, 0x5e, 0xf4, 0xa4, -0x58, 0x5a, 0xef, 0x24, 0x14, 0x1e, 0x17, 0x5b, 0xb1, 0xa7, 0xbf, 0x69, 0xb6, 0x44, 0xbe, 0xcc, -0x37, 0xb3, 0x48, 0x0a, 0x83, 0x37, 0xfa, 0xdb, 0x1d, 0x2a, 0x57, 0x83, 0x50, 0x88, 0x39, 0xd7, -0x2d, 0xa6, 0x70, 0x19, 0x94, 0x63, 0xa3, 0x09, 0x57, 0x47, 0x80, 0x47, 0xa7, 0x9b, 0xb5, 0x20, -0x4a, 0x33, 0x67, 0xf7, 0x5c, 0x5d, 0x4c, 0xa3, 0xc3, 0x05, 0x81, 0x48, 0xa7, 0x5e, 0x10, 0x13, -0x5d, 0x64, 0x4c, 0x2e, 0x53, 0x28, 0xd1, 0x82, 0xc3, 0x7d, 0xbf, 0xb2, 0xcd, 0x36, 0xcc, 0x1e, -0xc6, 0xc7, 0x42, 0x65, 0x12, 0x61, 0x82, 0x5d, 0xc7, 0x3b, 0x6a, 0xaf, 0x71, 0xd4, 0xf0, 0xe9, -0xff, 0xdd, 0x75, 0x33, 0x96, 0x3e, 0xb7, 0x92, 0xc2, 0xcd, 0x0e, 0xda, 0xec, 0x55, 0x43, 0x20, -0x07, 0xe8, 0x9e, 0xff, 0x3f, 0xea, 0x2f, 0x44, 0x64, 0x43, 0xe9, 0xfd, 0x82, 0x0a, 0xd4, 0x1d, -0xf6, 0x14, 0x02, 0x30, 0x78, 0x34, 0x02, 0x62, 0x73, 0x90, 0x41, 0x38, 0xbe, 0xc0, 0xd2, 0xac, -0x59, 0xc1, 0x82, 0xd2, 0x6f, 0x4e, 0x28, 0xd9, 0x2e, 0x3c, 0x6d, 0x4b, 0xa2, 0x25, 0xc9, 0x46, -0x42, 0x95, 0x64, 0xb9, 0x89, 0x73, 0x30, 0xce, 0xb7, 0xca, 0x1a, 0x78, 0xac, 0xa8, 0x72, 0x71, -0xe8, 0x1e, 0x48, 0xe9, 0x7c, 0xe5, 0x49, 0x78, 0x16, 0x50, 0x3e, 0x26, 0x15, 0x4f, 0xaf, 0x7f, -0x53, 0x17, 0x14, 0xeb, 0xa6, 0x00, 0x00, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, -0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, -0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x03, 0x00, 0x01, 0x02, -0x45, 0x1e, 0x9b, 0xaf, 0xf8, 0x1f, 0xaf, 0x5f, 0x41, 0x0b, 0x0b, 0xbe, 0x9e, 0x36, 0xee, 0x83, -0xbf, 0x8f, 0x79, 0x69, 0x8e, 0x66, 0x05, 0xa5, 0x1a, 0x97, 0x48, 0xbc, 0x73, 0xc7, 0xdc, 0x28, -0x03, 0x7f, 0x97, 0xaf, 0x8e, 0x4f, 0xa6, 0x7c, 0x9b, 0x8d, 0x69, 0x70, 0x84, 0x95, 0x36, 0xf8, -0x88, 0xc3, 0x04, 0x31, 0x6d, 0x01, 0x5a, 0xf5, 0x12, 0x9e, 0x26, 0x8e, 0x01, 0x64, 0x96, 0x1b, -0x5e, 0x02, 0xd0, 0xbf, 0x3d, 0xe0, 0x25, 0x7a, 0xe4, 0x02, 0x4a, 0x88, 0x2b, 0x20, 0x63, 0xb4, -0x68, 0x6b, 0x72, 0x27, 0x91, 0xc2, 0xe4, 0x7a, 0xd1, 0x75, 0x93, 0x5d, 0xf3, 0x3a, 0xbe, 0x99, -0x7b, 0x76, 0x02, 0x49, 0x4d, 0xb8, 0x75, 0x3e, 0x66, 0xc7, 0x73, 0x63, 0xec, 0xf4, 0x40, 0xa4, -0xcb, 0xe5, 0xe0, 0x3e, 0xc6, 0x28, 0x2b, 0xea, 0x8a, 0xd3, 0x3f, 0x66, 0x4b, 0xa3, 0x9b, 0x86, -0x37, 0xf7, 0x7b, 0x00, 0x00, 0x00, 0x0a, 0xea, 0x64, 0x27, 0x09, 0x00, 0x00, 0x00, 0x00, 0x10, -0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x84, 0x80, 0x80, 0x00, 0x00, 0x8a, 0x67, 0x5f, 0xf2, -0xad, 0x64, 0x62, 0x19, 0xec, 0x01, 0x02, 0x28, 0x06, 0xbe, 0x81, 0x8d, 0x13, 0xe3, 0xe9, 0x45, -0x09, 0xdd, 0x6a, 0xbe, 0x96, 0xb5, 0x08, 0xe4, 0x87, 0xca, 0xfd, 0x72, 0xc1, 0xfd, 0xa9, 0xe8, -0x32, 0x68, 0x95, 0x97, 0x06, 0x47, 0x57, 0x3a, 0x38, 0x28, 0x22, 0xa1, 0x78, 0x45, 0x22, 0xd5, -0xac, 0x0d, 0x1d, 0x2f, 0x25, 0xf0, 0x3a, 0x11, 0x85, 0x34, 0xcc, 0xae, 0xf8, 0xdd, 0x44, 0x05, -0xdd, 0xe6, 0x6d, 0xfc, 0xc2, 0xa0, 0x7e, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, -0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, -0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x03, 0x00, 0x01, 0x64, -0x62, 0x19, 0xec, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x76, 0x04, 0x67, 0x00, 0x80, -0x00, 0x00, 0x8a, 0xdc, 0x8e, 0xb4, 0xa3, 0x64, 0x62, 0x19, 0xec, 0x01, 0x02, 0x27, 0x9a, 0x87, -0xb6, 0x8b, 0xcb, 0xc9, 0x41, 0xea, 0xc3, 0x1b, 0x18, 0xf5, 0x51, 0x2f, 0x9b, 0x71, 0xe3, 0x8d, -0x24, 0x8d, 0x1e, 0x53, 0xdc, 0x83, 0x6f, 0x30, 0xfe, 0x00, 0xeb, 0xbb, 0x6b, 0x35, 0xc3, 0x20, -0xea, 0xae, 0x27, 0xb4, 0x8a, 0xdc, 0x30, 0x9f, 0xb5, 0xee, 0xbf, 0x3c, 0x16, 0x58, 0xe1, 0xa6, -0xec, 0x87, 0xfd, 0xb0, 0x43, 0x8c, 0xed, 0x4d, 0x00, 0x2d, 0x85, 0x33, 0xbe, 0x06, 0x22, 0x6e, -0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, -0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, -0x00, 0x00, 0x03, 0x00, 0x01, 0x64, 0x62, 0x19, 0xec, 0x01, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, -0x00, 0x76, 0x04, 0x67, 0x00, 0x00, 0x00, 0x00, 0xa4, 0x1e, 0xb8, 0x7e, 0x0a, 0x64, 0x62, 0x19, -0xf1, 0x01, 0x01, 0x70, 0xc5, 0x12, 0xaa, 0x59, 0xee, 0xe5, 0xb5, 0x1f, 0x4c, 0x56, 0x77, 0xa1, -0xc5, 0x3c, 0x6b, 0x03, 0x37, 0xf9, 0x8f, 0xa9, 0x50, 0xa7, 0xe3, 0x22, 0x7b, 0x6e, 0x37, 0xd5, -0x46, 0x03, 0xff, 0x12, 0x91, 0x0a, 0xb8, 0x4f, 0x35, 0x63, 0xdf, 0xda, 0x03, 0xda, 0xee, 0x86, -0xe4, 0x43, 0xef, 0xa0, 0x8a, 0x90, 0xeb, 0xa8, 0xf3, 0x7f, 0x05, 0x84, 0x8a, 0xd8, 0xb0, 0xf8, -0x1b, 0x4b, 0xcf, 0x00, 0x07, 0x88, 0xa0, 0x80, 0x2a, 0x02, 0x69, 0xa2, 0x64, 0x62, 0x19, 0xf1, -0x02, 0x45, 0x1e, 0x9b, 0xaf, 0xf8, 0x1f, 0xaf, 0x5f, 0x41, 0x0b, 0x0b, 0xbe, 0x9e, 0x36, 0xee, -0x83, 0xbf, 0x8f, 0x79, 0x69, 0x8e, 0x66, 0x05, 0xa5, 0x1a, 0x97, 0x48, 0xbc, 0x73, 0xc7, 0xdc, -0x28, 0x02, 0x45, 0x1e, 0x4c, 0x4f, 0x55, 0x44, 0x54, 0x4f, 0x54, 0x45, 0x2d, 0x33, 0x2e, 0x30, -0x32, 0x2d, 0x33, 0x37, 0x2d, 0x67, 0x63, 0x39, 0x66, 0x38, 0x30, 0x33, 0x35, 0x2d, 0x6d, 0x6f, -0x64, 0x64, 0x65, 0x64, 0x00, 0x00, 0x01, 0x0d, 0x02, 0x9a, 0x00, 0x32, 0x00, 0x64, 0x00, 0x00, -0x00, 0x02, 0x4c, 0x4b, 0x40, 0x00, 0x00, 0x01, 0xb0, 0x17, 0xe0, 0xd7, 0x83, 0x64, 0x62, 0x19, -0xed, 0x01, 0x00, 0x48, 0xa3, 0x33, 0x5f, 0x33, 0x6c, 0x33, 0x85, 0x0f, 0xc7, 0xeb, 0x46, 0x04, -0x5a, 0xe7, 0x1a, 0x2d, 0xe1, 0x37, 0xb0, 0xc3, 0x8a, 0xa7, 0x6a, 0xe0, 0xa2, 0xfd, 0x1f, 0x30, -0x9f, 0xdc, 0x8d, 0x38, 0x05, 0xf7, 0xaf, 0x0b, 0xe6, 0xb3, 0x4d, 0x62, 0xb9, 0xa4, 0x9c, 0x53, -0x7d, 0x6e, 0x59, 0x5b, 0xb2, 0x2b, 0x5c, 0xda, 0x35, 0xf9, 0x90, 0x63, 0x21, 0xa8, 0xb1, 0x53, -0xc3, 0x35, 0x7c, 0x36, 0x76, 0x21, 0x76, 0xae, 0xa3, 0xad, 0x05, 0x53, 0xa7, 0xbd, 0x9d, 0x38, -0x54, 0x03, 0xc0, 0x98, 0x1d, 0x66, 0xc1, 0x04, 0x39, 0xc1, 0x88, 0xd1, 0x1f, 0x90, 0x08, 0x96, -0xbc, 0x59, 0x54, 0x4f, 0x5f, 0xa2, 0x70, 0xcd, 0xf0, 0xda, 0x96, 0x3c, 0x51, 0x04, 0x67, 0x5c, -0x1f, 0x07, 0xed, 0xf9, 0x9e, 0x98, 0xd0, 0x3b, 0x5e, 0x51, 0xa9, 0xa6, 0x82, 0xc1, 0xed, 0x35, -0x45, 0xa1, 0xd6, 0x36, 0x3b, 0xa1, 0xe6, 0x5d, 0x1f, 0xec, 0xe2, 0xb7, 0xf8, 0xa2, 0xe4, 0x45, -0xf9, 0xb6, 0xa7, 0x07, 0x18, 0xc7, 0xb5, 0x0c, 0x08, 0xd7, 0x50, 0x36, 0x98, 0x82, 0xd3, 0xc8, -0x40, 0xc8, 0xdc, 0x64, 0x27, 0xe2, 0x14, 0x42, 0x44, 0x0a, 0xe4, 0x1d, 0x41, 0x61, 0x57, 0x88, -0xfe, 0xd2, 0x51, 0x99, 0x24, 0x55, 0x1e, 0x3b, 0xaa, 0x8d, 0xa7, 0xb4, 0xc0, 0x6e, 0xf5, 0x70, -0x8c, 0x2a, 0xe3, 0x75, 0xcc, 0x36, 0xbf, 0xbe, 0xfc, 0x3f, 0x09, 0x83, 0x5e, 0xe4, 0x20, 0x9a, -0xcc, 0x11, 0x48, 0x8e, 0x2b, 0xc8, 0x8a, 0xef, 0xc0, 0x78, 0x45, 0xee, 0x1e, 0xc7, 0xce, 0x00, -0xfc, 0x3c, 0x0e, 0x32, 0xd2, 0x8f, 0x15, 0x8c, 0x02, 0xb3, 0x7b, 0x4c, 0xa9, 0x7a, 0x9c, 0xec, -0x5e, 0x6e, 0xf2, 0xd3, 0xd9, 0x15, 0x32, 0xa3, 0x74, 0x14, 0xbf, 0x1f, 0xdd, 0x2f, 0x63, 0x3c, -0x47, 0x04, 0x6c, 0x00, 0x00, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, -0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, -0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0x45, 0x1e, -0x9b, 0xaf, 0xf8, 0x1f, 0xaf, 0x5f, 0x41, 0x0b, 0x0b, 0xbe, 0x9e, 0x36, 0xee, 0x83, 0xbf, 0x8f, -0x79, 0x69, 0x8e, 0x66, 0x05, 0xa5, 0x1a, 0x97, 0x48, 0xbc, 0x73, 0xc7, 0xdc, 0x28, 0x02, 0xd1, -0xab, 0x24, 0xfe, 0x53, 0xcf, 0xca, 0xc4, 0xa4, 0x77, 0x74, 0x52, 0x35, 0xc7, 0xac, 0x3e, 0x75, -0x16, 0x1a, 0x5b, 0xf8, 0x42, 0x6e, 0xa8, 0xe0, 0x18, 0x2a, 0xd5, 0x8c, 0xab, 0x36, 0x7f, 0x02, -0x7e, 0x2a, 0xc0, 0xec, 0x93, 0xfd, 0xb3, 0xfb, 0xe3, 0x8d, 0x7a, 0x3f, 0x5e, 0xa0, 0xa6, 0x3d, -0xdb, 0xa9, 0x8a, 0x51, 0xb7, 0x7a, 0xf5, 0x51, 0x6f, 0xe5, 0xca, 0x10, 0x10, 0xd7, 0x95, 0x34, -0x02, 0x17, 0xd5, 0xb1, 0x80, 0x7d, 0x8b, 0x95, 0x7c, 0xe1, 0x0b, 0xb0, 0xaf, 0xf3, 0xc1, 0x84, -0x81, 0xee, 0x2f, 0xed, 0x6a, 0x7b, 0x65, 0x9c, 0xbf, 0xfd, 0x48, 0x20, 0xd0, 0x9d, 0x1a, 0xfd, -0xa4, 0x00, 0x00, 0x00, 0x0a, 0x91, 0x11, 0x83, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x10, 0x05, 0x00, -0x00, 0x00, 0x00, 0x00, 0x0f, 0x42, 0x40, 0x80, 0x00, 0x00, 0x8a, 0xbd, 0x52, 0xa0, 0x78, 0x64, -0x62, 0x19, 0xed, 0x01, 0x02, 0x40, 0xf0, 0x06, 0x07, 0x97, 0xb8, 0x87, 0xef, 0x73, 0xdc, 0x1b, -0xf0, 0x20, 0x31, 0x55, 0xc9, 0xb9, 0x6f, 0xec, 0x6f, 0xad, 0x46, 0x86, 0x0a, 0xcc, 0xd9, 0x95, -0x61, 0x62, 0x15, 0x84, 0x70, 0x2a, 0x47, 0xd7, 0x68, 0xa9, 0xbc, 0x98, 0xb3, 0x1f, 0xc4, 0xbc, -0x78, 0xab, 0x5d, 0xf2, 0xf7, 0xc4, 0x97, 0x75, 0x21, 0x13, 0xcf, 0xfc, 0xd4, 0x36, 0xcd, 0xf6, -0xb4, 0x85, 0x7c, 0xad, 0x01, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, -0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, -0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x02, 0x00, 0x00, 0x64, 0x62, 0x19, -0xed, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x02, 0x33, 0x80, 0x80, 0x00, 0x00, -0x8a, 0xf5, 0x5d, 0xd1, 0x12, 0x64, 0x62, 0x19, 0xed, 0x01, 0x02, 0x08, 0x97, 0x08, 0x72, 0xbe, -0xc8, 0x1e, 0xd0, 0xb9, 0xb8, 0x4b, 0x0f, 0x63, 0x5c, 0xeb, 0x28, 0xa5, 0xf8, 0x7a, 0x3d, 0xa1, -0x6a, 0xb3, 0xb4, 0x30, 0x91, 0x31, 0x57, 0xd4, 0x5b, 0x69, 0x26, 0x4d, 0xd1, 0xbb, 0xd5, 0x49, -0x95, 0xe9, 0x75, 0x53, 0xa4, 0xae, 0x87, 0xe9, 0x88, 0xf6, 0x86, 0x1f, 0x31, 0x8f, 0x35, 0xf9, -0x15, 0xcc, 0x04, 0x0a, 0x01, 0xed, 0x6e, 0x47, 0xe0, 0xea, 0x68, 0x06, 0x22, 0x6e, 0x46, 0x11, -0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, -0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, -0x02, 0x00, 0x00, 0x64, 0x62, 0x19, 0xed, 0x01, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x3b, -0x02, 0x33, 0x80, 0x00, 0x00, 0x00, 0xa4, 0x07, 0x3d, 0xb7, 0xfe, 0x64, 0x62, 0x19, 0xf2, 0x01, -0x01, 0x29, 0x2a, 0x41, 0x8f, 0xb7, 0x24, 0xc2, 0x82, 0xc5, 0x75, 0x0e, 0x28, 0xd9, 0x8b, 0xd4, -0xad, 0xa1, 0xb1, 0x9a, 0x65, 0xa8, 0x7a, 0x78, 0xc7, 0x6c, 0xc8, 0x94, 0xcb, 0xf7, 0xb1, 0xb8, -0x3b, 0x29, 0xce, 0xbf, 0xcc, 0x47, 0x1b, 0x5a, 0xb4, 0xec, 0xab, 0xa3, 0xbe, 0xaf, 0xd1, 0xde, -0xd7, 0x0e, 0x8b, 0xcc, 0xaa, 0xdb, 0x6b, 0x88, 0x51, 0xb9, 0x7a, 0x0c, 0xcd, 0x1c, 0x9c, 0x4d, -0x5c, 0x00, 0x07, 0x88, 0xa0, 0x80, 0x2a, 0x02, 0x69, 0xa2, 0x64, 0x62, 0x19, 0xf2, 0x02, 0xd1, -0xab, 0x24, 0xfe, 0x53, 0xcf, 0xca, 0xc4, 0xa4, 0x77, 0x74, 0x52, 0x35, 0xc7, 0xac, 0x3e, 0x75, -0x16, 0x1a, 0x5b, 0xf8, 0x42, 0x6e, 0xa8, 0xe0, 0x18, 0x2a, 0xd5, 0x8c, 0xab, 0x36, 0x7f, 0x02, -0xd1, 0xab, 0x43, 0x48, 0x49, 0x4c, 0x4c, 0x59, 0x46, 0x49, 0x52, 0x45, 0x2d, 0x30, 0x32, 0x2d, -0x33, 0x37, 0x2d, 0x67, 0x63, 0x39, 0x66, 0x38, 0x30, 0x33, 0x35, 0x2d, 0x6d, 0x6f, 0x64, 0x64, -0x65, 0x64, 0x00, 0x00, 0x01, 0x0d, 0x02, 0x9a, 0x00, 0x32, 0x00, 0x64, 0x00, 0x00, 0x00, 0x02, -0x4c, 0x4b, 0x40, 0x00, 0x00, 0x01, 0xb0, 0x5f, 0xad, 0x58, 0xa1, 0x64, 0x62, 0x19, 0xed, 0x01, -0x00, 0x63, 0x42, 0xba, 0xf1, 0x21, 0xe0, 0x09, 0x57, 0x0d, 0x40, 0xa4, 0xc6, 0x05, 0x78, 0x02, -0x8e, 0x35, 0x71, 0x66, 0x7c, 0x24, 0x51, 0x3f, 0x58, 0x3a, 0xaa, 0x14, 0x65, 0x5a, 0x2b, 0xbd, -0x09, 0x5b, 0xd3, 0xa8, 0x4e, 0x73, 0x3e, 0x38, 0xd3, 0x4d, 0x19, 0x9c, 0x18, 0x04, 0x60, 0x57, -0x32, 0xd3, 0x75, 0xf5, 0x36, 0x15, 0xc4, 0x6a, 0xf1, 0x1b, 0x3d, 0xc9, 0x07, 0x89, 0x08, 0x7a, -0x37, 0x2f, 0xf1, 0x89, 0x12, 0xdb, 0xf2, 0xff, 0x04, 0xbd, 0x93, 0x23, 0x00, 0x3c, 0x10, 0x05, -0x8a, 0x58, 0x9b, 0x96, 0xf3, 0x76, 0x94, 0x16, 0x29, 0x51, 0xc8, 0x76, 0x89, 0x61, 0xc3, 0x21, -0xc0, 0x0e, 0x47, 0xac, 0xa3, 0xbe, 0xc7, 0xfd, 0xa2, 0x6b, 0xe9, 0x1d, 0xe2, 0x11, 0x1c, 0x3e, -0xfc, 0x6d, 0x4d, 0x0b, 0x85, 0xff, 0xe9, 0x8a, 0x39, 0x3a, 0xb3, 0x0e, 0x2f, 0x28, 0x96, 0x6b, -0x96, 0x59, 0x4d, 0x53, 0x71, 0xd5, 0x38, 0x23, 0xe1, 0xe0, 0xad, 0x0a, 0xbf, 0x00, 0x58, 0x15, -0xbf, 0x53, 0x07, 0xe1, 0x13, 0x06, 0x88, 0xb3, 0xf8, 0x31, 0x06, 0x72, 0x92, 0x6f, 0xd1, 0xf0, -0x9b, 0x3b, 0xf2, 0x8f, 0x9c, 0xc6, 0x73, 0xf8, 0x91, 0x3e, 0x84, 0xc0, 0xed, 0xdf, 0x92, 0x43, -0x92, 0x5f, 0x4a, 0x6b, 0x96, 0x02, 0xaf, 0xd9, 0xd9, 0xd9, 0xf9, 0x65, 0xae, 0x08, 0xd8, 0x62, -0x93, 0x2b, 0xb7, 0xd3, 0x48, 0xe3, 0x02, 0x19, 0x53, 0xf9, 0x49, 0x24, 0xfa, 0x22, 0x24, 0x87, -0xc2, 0xd2, 0x0b, 0xc0, 0x56, 0xae, 0x09, 0x5a, 0x94, 0xc3, 0x54, 0x59, 0xb5, 0xe7, 0xbe, 0xa6, -0x4a, 0x47, 0xc1, 0x79, 0x80, 0xe8, 0xc2, 0xd1, 0xc5, 0xda, 0x6b, 0x25, 0x85, 0xc6, 0x02, 0x32, -0x8b, 0x52, 0x0e, 0x7f, 0x18, 0x1c, 0x5b, 0xf6, 0xb9, 0xaf, 0x69, 0xdc, 0xc6, 0x3d, 0x93, 0xc1, -0x27, 0x00, 0x00, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, -0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, -0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x04, 0x00, 0x01, 0x02, 0xd1, 0xab, 0x24, 0xfe, -0x53, 0xcf, 0xca, 0xc4, 0xa4, 0x77, 0x74, 0x52, 0x35, 0xc7, 0xac, 0x3e, 0x75, 0x16, 0x1a, 0x5b, -0xf8, 0x42, 0x6e, 0xa8, 0xe0, 0x18, 0x2a, 0xd5, 0x8c, 0xab, 0x36, 0x7f, 0x03, 0xca, 0xec, 0x54, -0x08, 0x55, 0x08, 0xda, 0x06, 0xf1, 0x4f, 0xfb, 0x83, 0x61, 0x66, 0xca, 0x22, 0x04, 0x2d, 0x0f, -0xda, 0x69, 0x69, 0x03, 0x56, 0x23, 0x2a, 0x24, 0xb8, 0x36, 0x6c, 0x8f, 0x85, 0x03, 0xf6, 0x19, -0x62, 0x15, 0xf2, 0x5c, 0xfc, 0x5c, 0xae, 0x8c, 0xb6, 0x90, 0xa7, 0x81, 0xe0, 0x14, 0xb5, 0xc1, -0xc5, 0xda, 0xf9, 0x6d, 0x44, 0x6d, 0x1a, 0x6e, 0x24, 0x4f, 0xb6, 0x42, 0x3f, 0xdb, 0x03, 0xf9, -0x84, 0xe3, 0xec, 0xa9, 0x24, 0x5d, 0x1b, 0xba, 0xd2, 0xc7, 0xf3, 0x5a, 0x32, 0xaa, 0x6e, 0xdb, -0x21, 0xb6, 0xe8, 0xb1, 0x86, 0x5b, 0x18, 0x30, 0xe8, 0x4d, 0x23, 0xa4, 0x45, 0x23, 0x88, 0x00, -0x00, 0x00, 0x0a, 0x08, 0x85, 0x8a, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x00, -0x00, 0x00, 0x2d, 0xc6, 0xc0, 0x80, 0x00, 0x00, 0x8a, 0xe9, 0x51, 0x74, 0x9b, 0x64, 0x62, 0x19, -0xed, 0x01, 0x02, 0x4b, 0x82, 0x87, 0x3b, 0xc9, 0x03, 0x1c, 0x6e, 0xc9, 0xbe, 0x96, 0x22, 0x97, -0xf7, 0xa8, 0xb0, 0xb2, 0x7c, 0x22, 0x69, 0x23, 0x2d, 0x97, 0xfb, 0x9b, 0xc2, 0xf1, 0x1e, 0x66, -0xfb, 0xfd, 0x80, 0x5d, 0xd7, 0xf0, 0x23, 0x31, 0x47, 0xaa, 0x54, 0x8d, 0x95, 0xbb, 0xdd, 0x33, -0x13, 0x32, 0x6d, 0x91, 0xc6, 0x45, 0xd5, 0x84, 0xf4, 0x76, 0x6c, 0x74, 0xf3, 0x51, 0x45, 0x24, -0xee, 0x5b, 0xc3, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, -0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, -0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x04, 0x00, 0x01, 0x64, 0x62, 0x19, 0xed, 0x01, -0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, -0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x06, 0x9a, 0x80, 0x80, 0x00, 0x00, 0x8a, 0xd2, -0xc8, 0xd2, 0x7c, 0x64, 0x62, 0x19, 0xed, 0x01, 0x02, 0x0f, 0x90, 0xcb, 0xb6, 0xa1, 0x44, 0x65, -0x10, 0x00, 0xae, 0x2f, 0x60, 0x26, 0x2f, 0x41, 0x58, 0x5b, 0xab, 0xde, 0xff, 0x7e, 0x11, 0x44, -0xf4, 0x2e, 0x96, 0x96, 0xfa, 0x98, 0x09, 0xee, 0xb1, 0x5d, 0x43, 0xff, 0x44, 0x7b, 0xa6, 0x03, -0xf6, 0x4a, 0x07, 0x38, 0x97, 0x59, 0xee, 0x5e, 0xee, 0xcb, 0xdb, 0x77, 0x69, 0xab, 0x61, 0xd8, -0xc3, 0x42, 0xb3, 0x1f, 0x57, 0xea, 0xf3, 0xfd, 0xe2, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, -0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, -0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x04, 0x00, -0x01, 0x64, 0x62, 0x19, 0xed, 0x01, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x06, 0x9a, -0x80, 0x40, 0x00, 0x00, 0x8a, 0x64, 0xa7, 0x4f, 0x57, 0x64, 0x62, 0x19, 0xf7, 0x01, 0x02, 0x28, -0x15, 0x9f, 0xa7, 0x51, 0x3a, 0xbb, 0x33, 0xd9, 0x25, 0xaa, 0x7d, 0xe8, 0xfb, 0x3a, 0x92, 0x45, -0x41, 0xb3, 0x22, 0x9b, 0x12, 0x3b, 0xb0, 0x16, 0x47, 0xd6, 0xf7, 0x61, 0x44, 0x1d, 0xa7, 0x35, -0xfe, 0xa9, 0x7b, 0xa6, 0x42, 0x91, 0x3f, 0x5e, 0xe4, 0xca, 0x98, 0x1c, 0x0f, 0x2d, 0xed, 0x36, -0x0e, 0x2b, 0x2e, 0x08, 0x81, 0x2e, 0xcc, 0xc1, 0x76, 0x61, 0xf9, 0x1b, 0xd3, 0x44, 0x3e, 0x06, -0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, -0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, -0x00, 0x71, 0x00, 0x00, 0x01, 0x00, 0x01, 0x64, 0x62, 0x19, 0xf7, 0x01, 0x00, 0x00, 0x06, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x64, 0x00, -0x00, 0x00, 0x00, 0x3b, 0x02, 0x33, 0x80, 0x00, 0x00, 0x00, 0xa4, 0x30, 0x77, 0x80, 0xee, 0x64, -0x62, 0x19, 0xf2, 0x01, 0x01, 0x67, 0x07, 0x1d, 0x3b, 0x62, 0x2d, 0xb7, 0x1a, 0xba, 0xb8, 0x93, -0x56, 0xaa, 0xfa, 0xb1, 0x47, 0x4f, 0x0e, 0x02, 0x8b, 0x73, 0xd5, 0x5b, 0xce, 0xd6, 0x40, 0x55, -0xaf, 0xa7, 0x29, 0xd0, 0x51, 0x24, 0x5a, 0x19, 0x22, 0xc6, 0x7b, 0x6e, 0x4a, 0xae, 0x57, 0x9c, -0x16, 0x99, 0x46, 0x6c, 0xc3, 0x64, 0xd8, 0x20, 0x10, 0x44, 0x1e, 0xd0, 0x6b, 0x8d, 0x36, 0xdc, -0xae, 0x75, 0x06, 0x6e, 0xdc, 0x00, 0x07, 0x88, 0xa0, 0x80, 0x2a, 0x02, 0x69, 0xa2, 0x64, 0x62, -0x19, 0xf2, 0x03, 0xca, 0xec, 0x54, 0x08, 0x55, 0x08, 0xda, 0x06, 0xf1, 0x4f, 0xfb, 0x83, 0x61, -0x66, 0xca, 0x22, 0x04, 0x2d, 0x0f, 0xda, 0x69, 0x69, 0x03, 0x56, 0x23, 0x2a, 0x24, 0xb8, 0x36, -0x6c, 0x8f, 0x85, 0x03, 0xca, 0xec, 0x56, 0x49, 0x4f, 0x4c, 0x45, 0x54, 0x53, 0x45, 0x54, 0x2d, -0x2e, 0x30, 0x32, 0x2d, 0x33, 0x37, 0x2d, 0x67, 0x63, 0x39, 0x66, 0x38, 0x30, 0x33, 0x35, 0x2d, -0x6d, 0x6f, 0x64, 0x64, 0x65, 0x64, 0x00, 0x00, 0x01, 0x0d, 0x02, 0x9a, 0x00, 0x32, 0x00, 0x64, -0x00, 0x00, 0x00, 0x02, 0x4c, 0x4b, 0x40, 0x40, 0x00, 0x00, 0x8a, 0x07, 0xf6, 0xe8, 0x9b, 0x64, -0x62, 0x19, 0xf7, 0x01, 0x02, 0x62, 0xf7, 0xdc, 0xf1, 0xa6, 0x3c, 0xf0, 0xae, 0x64, 0x9c, 0x03, -0x62, 0x98, 0x6a, 0x18, 0x78, 0x97, 0xed, 0x8c, 0x2e, 0x3f, 0xc4, 0x1d, 0x9f, 0xa7, 0xfb, 0x58, -0x26, 0x48, 0x2e, 0x96, 0x9d, 0x33, 0x75, 0x60, 0x6e, 0x33, 0x95, 0xf7, 0x6e, 0x9f, 0x4f, 0xa2, -0xed, 0xd6, 0xa9, 0x83, 0x1b, 0x94, 0x79, 0xee, 0x4f, 0xdc, 0x20, 0xc5, 0x39, 0x74, 0x0d, 0x31, -0x52, 0xc7, 0x25, 0x36, 0x47, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, -0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, -0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x01, 0x00, 0x01, 0x64, 0x62, 0x19, -0xf7, 0x01, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x14, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x02, 0x33, 0x80, 0x00, 0x00, 0x00, -0x8a, 0x16, 0x2b, 0xff, 0x08, 0x64, 0x62, 0x19, 0xf7, 0x01, 0x02, 0x39, 0x36, 0x2a, 0x56, 0x61, -0xad, 0x48, 0x3f, 0x4e, 0x13, 0x15, 0x66, 0x43, 0x58, 0xc5, 0xc2, 0x14, 0x6e, 0xb2, 0x72, 0xfa, -0x73, 0xd7, 0xb5, 0x2d, 0x86, 0x14, 0xc2, 0xe8, 0xf7, 0x53, 0x8f, 0x38, 0xea, 0x35, 0x5c, 0xec, -0xe3, 0xc7, 0xc0, 0x46, 0x1c, 0x9f, 0x1d, 0x93, 0x94, 0x31, 0x1f, 0xf8, 0x49, 0xb1, 0x50, 0x4c, -0x2c, 0x2f, 0xc7, 0xe4, 0x0c, 0xaa, 0xd0, 0xa9, 0x53, 0x14, 0xca, 0x06, 0x22, 0x6e, 0x46, 0x11, -0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, -0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, -0x03, 0x00, 0x01, 0x64, 0x62, 0x19, 0xf7, 0x01, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x76, -0x04, 0x67, 0x00, 0x00, 0x00, 0x00, 0x8a, 0xd5, 0x4a, 0x70, 0x0c, 0x64, 0x62, 0x19, 0xf7, 0x01, -0x02, 0x54, 0x16, 0x95, 0x41, 0x4f, 0x0e, 0x0f, 0xdf, 0x49, 0xb5, 0x87, 0xdc, 0x26, 0xb4, 0xef, -0x73, 0x3c, 0xb8, 0x19, 0x96, 0x62, 0x87, 0xfa, 0x4f, 0x02, 0x53, 0xbe, 0x12, 0x53, 0x93, 0x4b, -0x57, 0x3b, 0xe9, 0xb9, 0x26, 0x46, 0xda, 0x77, 0xaa, 0xdd, 0x8d, 0xf6, 0x86, 0x22, 0xf0, 0x3f, -0xd5, 0x56, 0xdd, 0xaa, 0xa2, 0x4e, 0x4a, 0x9a, 0x70, 0x81, 0xf8, 0xf9, 0x72, 0x7b, 0xd7, 0x90, -0x48, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, -0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, -0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x03, 0x00, 0x01, 0x64, 0x62, 0x19, 0xf7, 0x01, 0x00, 0x00, -0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, -0xc8, 0x00, 0x00, 0x00, 0x00, 0x76, 0x04, 0x67, 0x00, 0x00, 0x00, 0x00, 0x8a, 0xc5, 0x6d, 0x8a, -0x5a, 0x64, 0x62, 0x19, 0xf6, 0x01, 0x02, 0x1d, 0x80, 0x09, 0x30, 0x1a, 0x4b, 0x26, 0x60, 0x6b, -0x9a, 0x54, 0x8d, 0x7f, 0x9b, 0x35, 0x78, 0x76, 0x7a, 0xc1, 0xe5, 0x22, 0xdc, 0x08, 0x77, 0xac, -0x54, 0xc7, 0xc0, 0x9b, 0x13, 0x85, 0x20, 0x2c, 0xa4, 0xa3, 0x7e, 0xc5, 0xde, 0xfd, 0x60, 0x43, -0xdb, 0x2e, 0xb0, 0x5b, 0xcc, 0x95, 0xc1, 0xf3, 0x02, 0x09, 0x8a, 0xe1, 0x55, 0x2a, 0x8a, 0x9a, -0x18, 0xe5, 0xa9, 0xee, 0xcd, 0x11, 0x27, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, -0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, -0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x02, 0x00, 0x00, 0x64, -0x62, 0x19, 0xf6, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x02, 0x33, 0x80, 0x00, -0x00, 0x00, 0x8a, 0x67, 0xa5, 0x58, 0xd4, 0x64, 0x62, 0x19, 0xf6, 0x01, 0x02, 0x5a, 0xa5, 0x3e, -0xb8, 0x73, 0xf5, 0xdf, 0xfc, 0x72, 0x16, 0x52, 0xa1, 0x07, 0x8a, 0x2b, 0xf1, 0xc3, 0x92, 0xc5, -0x87, 0xa4, 0x45, 0x07, 0x1e, 0xb3, 0x7d, 0x4c, 0x1c, 0x47, 0x41, 0x2c, 0x93, 0x14, 0x46, 0x16, -0xba, 0xe4, 0xf9, 0xc9, 0x52, 0x4c, 0x5e, 0x6c, 0x4f, 0xc9, 0xec, 0xde, 0x83, 0x15, 0xe0, 0x8e, -0x39, 0xbe, 0xa9, 0x8f, 0x9d, 0xfe, 0xcf, 0xc4, 0x12, 0x32, 0xa4, 0x17, 0x2b, 0x06, 0x22, 0x6e, -0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, -0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, -0x00, 0x00, 0x02, 0x00, 0x00, 0x64, 0x62, 0x19, 0xf6, 0x01, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, -0x00, 0x3b, 0x02, 0x33, 0x80, 0x00, 0x00, 0x00, 0x8a, 0x2f, 0x71, 0xed, 0xec, 0x64, 0x62, 0x19, -0xf6, 0x01, 0x02, 0x75, 0x4f, 0x11, 0x1c, 0x56, 0x9f, 0x4a, 0x9d, 0x6f, 0x98, 0x96, 0x1c, 0x5a, -0x9f, 0x0f, 0xb9, 0x24, 0x23, 0x82, 0x7d, 0x86, 0xcf, 0xbc, 0x41, 0x14, 0x38, 0x76, 0x2e, 0x86, -0x47, 0x96, 0xef, 0x14, 0x91, 0x2e, 0x30, 0xe2, 0x4b, 0x1c, 0x47, 0x2d, 0x4a, 0xdc, 0xf6, 0x79, -0xb6, 0x11, 0x80, 0xcc, 0x51, 0xbb, 0xc4, 0x29, 0x33, 0x60, 0xc1, 0x78, 0x1e, 0x82, 0xe3, 0x40, -0xc0, 0xf7, 0x25, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, 0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, -0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, 0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, -0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x04, 0x00, 0x01, 0x64, 0x62, 0x19, 0xf6, 0x01, -0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, -0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x06, 0x9a, 0x80, 0x00, 0x00, 0x00, 0x8a, 0xc8, -0x56, 0xb7, 0xb1, 0x64, 0x62, 0x19, 0xf6, 0x01, 0x02, 0x3c, 0x76, 0x7a, 0x28, 0x5e, 0x65, 0x30, -0xac, 0x0d, 0x0f, 0x43, 0x31, 0x02, 0x56, 0xcd, 0x14, 0x51, 0x46, 0x69, 0x33, 0xa0, 0x12, 0x61, -0x9c, 0x34, 0xc5, 0xd8, 0x9a, 0x0c, 0x81, 0x94, 0xad, 0x5e, 0x98, 0xc4, 0xd0, 0x45, 0x3d, 0x32, -0x84, 0xdd, 0xd7, 0x18, 0x2b, 0xdb, 0x13, 0xa8, 0xfc, 0xb2, 0x0d, 0xd6, 0xf6, 0x8a, 0x97, 0xc7, -0xe9, 0x7e, 0x27, 0xb7, 0x86, 0x7a, 0x3e, 0xee, 0xfa, 0x06, 0x22, 0x6e, 0x46, 0x11, 0x1a, 0x0b, -0x59, 0xca, 0xaf, 0x12, 0x60, 0x43, 0xeb, 0x5b, 0xbf, 0x28, 0xc3, 0x4f, 0x3a, 0x5e, 0x33, 0x2a, -0x1f, 0xc7, 0xb2, 0xb7, 0x3c, 0xf1, 0x88, 0x91, 0x0f, 0x00, 0x00, 0x71, 0x00, 0x00, 0x04, 0x00, -0x01, 0x64, 0x62, 0x19, 0xf6, 0x01, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x06, 0x9a, -0x80 - }; + 0x0f,0x60,0x00,0x01,0xb0,0x24,0x3a,0xa3,0x76,0x64,0x62,0x19,0xec,0x01,0x00,0x66, + 0x7f,0x0f,0xad,0x6d,0x9d,0x58,0x1b,0x28,0x8a,0x67,0x9d,0xf8,0xd1,0x9d,0x79,0x4e, + 0x67,0xc8,0x76,0xbb,0xdd,0x4d,0x8e,0x45,0x0d,0xc9,0x0e,0x24,0x76,0xda,0x44,0x68, + 0x7b,0xe2,0x14,0xe8,0x48,0xfa,0xd7,0xc2,0x35,0xc5,0x98,0xd9,0x7a,0x6c,0xcb,0xb1, + 0x4b,0x19,0xf9,0xfa,0xb2,0x19,0x3f,0x87,0xc1,0xe9,0x47,0x51,0x16,0x64,0x36,0x2a, + 0xeb,0xc5,0xaa,0x20,0x59,0x4e,0xdf,0xae,0x4e,0x10,0x38,0x34,0x8e,0x06,0x6e,0x5d, + 0x1b,0x44,0x30,0xfb,0x20,0xed,0xea,0xde,0x83,0xcd,0xa4,0x8a,0x5c,0xad,0x70,0x2d, + 0x8b,0x04,0xfb,0xa2,0xbd,0x95,0x7c,0xdd,0x66,0xb5,0x4e,0xd6,0xc6,0x27,0xdb,0xa8, + 0xe1,0x26,0x22,0x81,0x57,0xe2,0xaa,0xe4,0x82,0xbe,0x9e,0x90,0xc5,0xc2,0x59,0x56, + 0x9b,0x79,0xf3,0xc3,0xfe,0x0c,0xb3,0x35,0xeb,0xba,0xad,0xf7,0xd3,0x24,0x4e,0x16, + 0x15,0x2d,0x86,0xd9,0xe9,0xd2,0x38,0x9b,0xf9,0xb3,0x5f,0x2c,0x9b,0xeb,0xe0,0x1c, + 0xb3,0xf0,0x0f,0xc1,0x9d,0x0b,0x20,0xa2,0x19,0xeb,0x1a,0x05,0x8b,0x8d,0xb1,0x22, + 0x74,0x7c,0xa4,0x39,0x94,0x6f,0xfc,0x34,0x1b,0xe5,0x9f,0x45,0x8e,0x12,0x6e,0x65, + 0x73,0x28,0x21,0x80,0xfd,0x9c,0x0c,0x89,0x2b,0xcb,0x43,0x2e,0x7f,0x47,0xa1,0xd7, + 0x7e,0xa9,0xd7,0x3e,0xdd,0xa0,0xf8,0x60,0x9d,0xde,0x51,0x3d,0xc4,0x21,0x06,0x61, + 0xb3,0x4d,0xd8,0x94,0x4a,0x3a,0xc9,0xb9,0xc3,0xcb,0x09,0xa3,0x2f,0x7b,0x96,0x53, + 0x13,0x1d,0x6d,0x7a,0x28,0xdd,0xc8,0x8d,0xe4,0x10,0xad,0x4c,0xc6,0xa0,0x1b,0x00, + 0x00,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b, + 0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91, + 0x0f,0x00,0x00,0x71,0x00,0x00,0x01,0x00,0x01,0x02,0x4f,0x9d,0xa0,0xd7,0x26,0xad, + 0xf0,0xd9,0xa4,0xa3,0xac,0x32,0xe3,0x28,0xb9,0x3a,0xd5,0x27,0xcc,0xb9,0xdb,0x70, + 0x77,0xc5,0x7a,0x12,0xc6,0xf9,0xfa,0x9a,0xdd,0x74,0x03,0x7f,0x97,0xaf,0x8e,0x4f, + 0xa6,0x7c,0x9b,0x8d,0x69,0x70,0x84,0x95,0x36,0xf8,0x88,0xc3,0x04,0x31,0x6d,0x01, + 0x5a,0xf5,0x12,0x9e,0x26,0x8e,0x01,0x64,0x96,0x1b,0x5e,0x02,0xca,0x1a,0xac,0x5f, + 0x7b,0x86,0x3a,0x01,0xc8,0x69,0x90,0x82,0xdf,0x9a,0x4d,0xf8,0x14,0x0d,0xd6,0xe7, + 0x10,0x59,0xd4,0xec,0x7f,0x48,0x13,0xb0,0x96,0xb4,0xa3,0xad,0x02,0x21,0x55,0x92, + 0x46,0x1c,0x84,0x3d,0x40,0xe6,0x01,0x8d,0x3d,0x0c,0xb6,0xf4,0xe1,0x61,0xe2,0x4b, + 0x59,0x41,0xdb,0x3b,0x20,0x44,0xbc,0x0c,0xb2,0x0e,0x4d,0x3f,0x9b,0x20,0x00,0x00, + 0x0a,0x91,0x11,0x83,0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00, + 0x0f,0x42,0x40,0xe0,0x00,0x00,0x8a,0x01,0x3d,0x6f,0x9a,0x64,0x62,0x19,0xec,0x01, + 0x02,0x4c,0x45,0x7e,0x21,0xb8,0xd5,0x36,0x98,0xcd,0x45,0x03,0x78,0xa6,0x51,0xf1, + 0xda,0x1a,0xb4,0x46,0xed,0xfb,0xed,0x86,0xf9,0x31,0x85,0x2e,0x3d,0x80,0x77,0xf2, + 0x13,0x76,0x91,0x08,0xe7,0x52,0x3d,0xf4,0xe5,0x2e,0x3b,0x80,0x2a,0xbf,0x54,0xf8, + 0x80,0xbb,0x77,0x6f,0xc6,0xca,0x9e,0x3f,0xe8,0x96,0xfa,0x54,0x7e,0x94,0x78,0x0a, + 0xec,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b, + 0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91, + 0x0f,0x00,0x00,0x71,0x00,0x00,0x01,0x00,0x01,0x64,0x62,0x19,0xec,0x01,0x00,0x00, + 0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, + 0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x60,0x00,0x00,0xa4,0x07,0xd2,0xf1, + 0x5d,0x64,0x62,0x19,0xf1,0x01,0x01,0x4d,0xbe,0x8a,0xf5,0xd8,0x19,0x2b,0x99,0xb0, + 0xa0,0xde,0x24,0x36,0x32,0x06,0xac,0x40,0x4c,0x41,0x94,0xc1,0xd3,0x85,0xb5,0xb8, + 0x76,0xbf,0x98,0xa9,0x8e,0xdb,0xca,0x43,0x73,0x98,0xa0,0xe0,0x11,0xa9,0x95,0xf3, + 0xce,0xde,0xe5,0x85,0x80,0x63,0x8c,0x12,0x11,0xee,0xee,0xa1,0x3e,0xcf,0x4e,0xd5, + 0xae,0x8d,0x93,0x22,0xce,0xbb,0x02,0x00,0x07,0x88,0xa0,0x80,0x2a,0x02,0x69,0xa2, + 0x64,0x62,0x19,0xf1,0x02,0x4f,0x9d,0xa0,0xd7,0x26,0xad,0xf0,0xd9,0xa4,0xa3,0xac, + 0x32,0xe3,0x28,0xb9,0x3a,0xd5,0x27,0xcc,0xb9,0xdb,0x70,0x77,0xc5,0x7a,0x12,0xc6, + 0xf9,0xfa,0x9a,0xdd,0x74,0x02,0x4f,0x9d,0x4c,0x4f,0x55,0x44,0x54,0x52,0x41,0x57, + 0x4c,0x2d,0x2e,0x30,0x32,0x2d,0x33,0x37,0x2d,0x67,0x63,0x39,0x66,0x38,0x30,0x33, + 0x35,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00,0x01,0x0d,0x02,0x9a,0x00,0x32, + 0x00,0x64,0x00,0x00,0x00,0x02,0x4c,0x4b,0x40,0xe0,0x00,0x00,0x8a,0x06,0x22,0xaa, + 0xb5,0x64,0x62,0x19,0xec,0x01,0x02,0x2b,0x9e,0x17,0x25,0x0f,0x3d,0x8c,0x1c,0x07, + 0x6b,0xb8,0x7f,0xdc,0xc4,0x30,0xf4,0xa7,0xf8,0x8b,0x91,0x53,0xd6,0xc1,0x9d,0x06, + 0xb9,0x18,0xfb,0xf0,0x0b,0x9a,0x79,0x2a,0x56,0x12,0x35,0x75,0x4e,0xf4,0xb8,0xb4, + 0x2e,0x72,0x10,0x3c,0x8d,0x76,0x69,0x1c,0x67,0xb0,0x7f,0x94,0x07,0xee,0xb4,0x38, + 0x11,0x0b,0x7f,0x62,0x4e,0x2a,0x2d,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca, + 0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7, + 0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71,0x00,0x00,0x01,0x00,0x01,0x64, + 0x62,0x19,0xec,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20, + 0x00,0x00,0xa4,0xde,0x6a,0x84,0x4d,0x64,0x62,0x19,0xf1,0x01,0x01,0x47,0x72,0x62, + 0xe8,0xc7,0x43,0xa8,0x2e,0x1c,0x97,0x2a,0x06,0xce,0x2f,0xa2,0xfa,0x27,0x4f,0x28, + 0x7f,0x55,0x32,0x19,0x62,0x58,0xc6,0x18,0x07,0x23,0x5f,0x8a,0x59,0x00,0x52,0x4d, + 0xc9,0x18,0x22,0x9e,0xf7,0x87,0xa3,0x36,0x9d,0x01,0x73,0x7c,0x5b,0xb8,0xb4,0x08, + 0x50,0x0f,0x89,0x52,0x3f,0x2e,0x44,0xa0,0xe0,0x32,0x3a,0xf7,0x20,0x00,0x07,0x88, + 0xa0,0x80,0x2a,0x02,0x69,0xa2,0x64,0x62,0x19,0xf1,0x03,0x7f,0x97,0xaf,0x8e,0x4f, + 0xa6,0x7c,0x9b,0x8d,0x69,0x70,0x84,0x95,0x36,0xf8,0x88,0xc3,0x04,0x31,0x6d,0x01, + 0x5a,0xf5,0x12,0x9e,0x26,0x8e,0x01,0x64,0x96,0x1b,0x5e,0x03,0x7f,0x97,0x53,0x4c, + 0x49,0x43,0x4b,0x45,0x52,0x43,0x48,0x49,0x50,0x4d,0x55,0x4e,0x4b,0x2d,0x2d,0x67, + 0x63,0x39,0x66,0x38,0x30,0x33,0x35,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00, + 0x01,0x0d,0x02,0x9a,0x00,0x32,0x00,0x64,0x00,0x00,0x00,0x02,0x4c,0x4b,0x40,0x20, + 0x00,0x01,0xb0,0x31,0xd6,0x97,0xf8,0x64,0x62,0x19,0xec,0x01,0x00,0x3f,0x22,0x04, + 0x81,0x00,0xfb,0xfe,0x52,0x4e,0xdf,0x7e,0xef,0x65,0xff,0x41,0xcf,0xfc,0x33,0xfc, + 0x27,0xba,0x5b,0x5f,0xc5,0x40,0xd7,0xff,0x65,0x20,0x37,0x3f,0x00,0x0d,0x7c,0x9b, + 0xa9,0xf1,0x8c,0xc6,0xf1,0xf7,0x30,0xd8,0x1a,0x44,0xea,0x6a,0xf8,0x95,0xde,0xe9, + 0x35,0x5f,0x2b,0x09,0xc8,0x5e,0xf4,0xa4,0x58,0x5a,0xef,0x24,0x14,0x1e,0x17,0x5b, + 0xb1,0xa7,0xbf,0x69,0xb6,0x44,0xbe,0xcc,0x37,0xb3,0x48,0x0a,0x83,0x37,0xfa,0xdb, + 0x1d,0x2a,0x57,0x83,0x50,0x88,0x39,0xd7,0x2d,0xa6,0x70,0x19,0x94,0x63,0xa3,0x09, + 0x57,0x47,0x80,0x47,0xa7,0x9b,0xb5,0x20,0x4a,0x33,0x67,0xf7,0x5c,0x5d,0x4c,0xa3, + 0xc3,0x05,0x81,0x48,0xa7,0x5e,0x10,0x13,0x5d,0x64,0x4c,0x2e,0x53,0x28,0xd1,0x82, + 0xc3,0x7d,0xbf,0xb2,0xcd,0x36,0xcc,0x1e,0xc6,0xc7,0x42,0x65,0x12,0x61,0x82,0x5d, + 0xc7,0x3b,0x6a,0xaf,0x71,0xd4,0xf0,0xe9,0xff,0xdd,0x75,0x33,0x96,0x3e,0xb7,0x92, + 0xc2,0xcd,0x0e,0xda,0xec,0x55,0x43,0x20,0x07,0xe8,0x9e,0xff,0x3f,0xea,0x2f,0x44, + 0x64,0x43,0xe9,0xfd,0x82,0x0a,0xd4,0x1d,0xf6,0x14,0x02,0x30,0x78,0x34,0x02,0x62, + 0x73,0x90,0x41,0x38,0xbe,0xc0,0xd2,0xac,0x59,0xc1,0x82,0xd2,0x6f,0x4e,0x28,0xd9, + 0x2e,0x3c,0x6d,0x4b,0xa2,0x25,0xc9,0x46,0x42,0x95,0x64,0xb9,0x89,0x73,0x30,0xce, + 0xb7,0xca,0x1a,0x78,0xac,0xa8,0x72,0x71,0xe8,0x1e,0x48,0xe9,0x7c,0xe5,0x49,0x78, + 0x16,0x50,0x3e,0x26,0x15,0x4f,0xaf,0x7f,0x53,0x17,0x14,0xeb,0xa6,0x00,0x00,0x06, + 0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28, + 0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00, + 0x00,0x71,0x00,0x00,0x03,0x00,0x01,0x02,0x45,0x1e,0x9b,0xaf,0xf8,0x1f,0xaf,0x5f, + 0x41,0x0b,0x0b,0xbe,0x9e,0x36,0xee,0x83,0xbf,0x8f,0x79,0x69,0x8e,0x66,0x05,0xa5, + 0x1a,0x97,0x48,0xbc,0x73,0xc7,0xdc,0x28,0x03,0x7f,0x97,0xaf,0x8e,0x4f,0xa6,0x7c, + 0x9b,0x8d,0x69,0x70,0x84,0x95,0x36,0xf8,0x88,0xc3,0x04,0x31,0x6d,0x01,0x5a,0xf5, + 0x12,0x9e,0x26,0x8e,0x01,0x64,0x96,0x1b,0x5e,0x02,0xd0,0xbf,0x3d,0xe0,0x25,0x7a, + 0xe4,0x02,0x4a,0x88,0x2b,0x20,0x63,0xb4,0x68,0x6b,0x72,0x27,0x91,0xc2,0xe4,0x7a, + 0xd1,0x75,0x93,0x5d,0xf3,0x3a,0xbe,0x99,0x7b,0x76,0x02,0x49,0x4d,0xb8,0x75,0x3e, + 0x66,0xc7,0x73,0x63,0xec,0xf4,0x40,0xa4,0xcb,0xe5,0xe0,0x3e,0xc6,0x28,0x2b,0xea, + 0x8a,0xd3,0x3f,0x66,0x4b,0xa3,0x9b,0x86,0x37,0xf7,0x7b,0x20,0x00,0x00,0x0a,0xea, + 0x64,0x27,0x09,0x00,0x00,0x00,0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x1e,0x84, + 0x80,0xa0,0x00,0x00,0x8a,0x67,0x5f,0xf2,0xad,0x64,0x62,0x19,0xec,0x01,0x02,0x28, + 0x06,0xbe,0x81,0x8d,0x13,0xe3,0xe9,0x45,0x09,0xdd,0x6a,0xbe,0x96,0xb5,0x08,0xe4, + 0x87,0xca,0xfd,0x72,0xc1,0xfd,0xa9,0xe8,0x32,0x68,0x95,0x97,0x06,0x47,0x57,0x3a, + 0x38,0x28,0x22,0xa1,0x78,0x45,0x22,0xd5,0xac,0x0d,0x1d,0x2f,0x25,0xf0,0x3a,0x11, + 0x85,0x34,0xcc,0xae,0xf8,0xdd,0x44,0x05,0xdd,0xe6,0x6d,0xfc,0xc2,0xa0,0x7e,0x06, + 0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28, + 0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00, + 0x00,0x71,0x00,0x00,0x03,0x00,0x01,0x64,0x62,0x19,0xec,0x01,0x00,0x00,0x06,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00, + 0x00,0x00,0x00,0x76,0x04,0x67,0x00,0xa0,0x00,0x00,0x8a,0xdc,0x8e,0xb4,0xa3,0x64, + 0x62,0x19,0xec,0x01,0x02,0x27,0x9a,0x87,0xb6,0x8b,0xcb,0xc9,0x41,0xea,0xc3,0x1b, + 0x18,0xf5,0x51,0x2f,0x9b,0x71,0xe3,0x8d,0x24,0x8d,0x1e,0x53,0xdc,0x83,0x6f,0x30, + 0xfe,0x00,0xeb,0xbb,0x6b,0x35,0xc3,0x20,0xea,0xae,0x27,0xb4,0x8a,0xdc,0x30,0x9f, + 0xb5,0xee,0xbf,0x3c,0x16,0x58,0xe1,0xa6,0xec,0x87,0xfd,0xb0,0x43,0x8c,0xed,0x4d, + 0x00,0x2d,0x85,0x33,0xbe,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, + 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, + 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71,0x00,0x00,0x03,0x00,0x01,0x64,0x62,0x19, + 0xec,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x76,0x04,0x67,0x00,0x20,0x00,0x00, + 0xa4,0x1e,0xb8,0x7e,0x0a,0x64,0x62,0x19,0xf1,0x01,0x01,0x70,0xc5,0x12,0xaa,0x59, + 0xee,0xe5,0xb5,0x1f,0x4c,0x56,0x77,0xa1,0xc5,0x3c,0x6b,0x03,0x37,0xf9,0x8f,0xa9, + 0x50,0xa7,0xe3,0x22,0x7b,0x6e,0x37,0xd5,0x46,0x03,0xff,0x12,0x91,0x0a,0xb8,0x4f, + 0x35,0x63,0xdf,0xda,0x03,0xda,0xee,0x86,0xe4,0x43,0xef,0xa0,0x8a,0x90,0xeb,0xa8, + 0xf3,0x7f,0x05,0x84,0x8a,0xd8,0xb0,0xf8,0x1b,0x4b,0xcf,0x00,0x07,0x88,0xa0,0x80, + 0x2a,0x02,0x69,0xa2,0x64,0x62,0x19,0xf1,0x02,0x45,0x1e,0x9b,0xaf,0xf8,0x1f,0xaf, + 0x5f,0x41,0x0b,0x0b,0xbe,0x9e,0x36,0xee,0x83,0xbf,0x8f,0x79,0x69,0x8e,0x66,0x05, + 0xa5,0x1a,0x97,0x48,0xbc,0x73,0xc7,0xdc,0x28,0x02,0x45,0x1e,0x4c,0x4f,0x55,0x44, + 0x54,0x4f,0x54,0x45,0x2d,0x33,0x2e,0x30,0x32,0x2d,0x33,0x37,0x2d,0x67,0x63,0x39, + 0x66,0x38,0x30,0x33,0x35,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00,0x01,0x0d, + 0x02,0x9a,0x00,0x32,0x00,0x64,0x00,0x00,0x00,0x02,0x4c,0x4b,0x40,0x20,0x00,0x01, + 0xb0,0x17,0xe0,0xd7,0x83,0x64,0x62,0x19,0xed,0x01,0x00,0x48,0xa3,0x33,0x5f,0x33, + 0x6c,0x33,0x85,0x0f,0xc7,0xeb,0x46,0x04,0x5a,0xe7,0x1a,0x2d,0xe1,0x37,0xb0,0xc3, + 0x8a,0xa7,0x6a,0xe0,0xa2,0xfd,0x1f,0x30,0x9f,0xdc,0x8d,0x38,0x05,0xf7,0xaf,0x0b, + 0xe6,0xb3,0x4d,0x62,0xb9,0xa4,0x9c,0x53,0x7d,0x6e,0x59,0x5b,0xb2,0x2b,0x5c,0xda, + 0x35,0xf9,0x90,0x63,0x21,0xa8,0xb1,0x53,0xc3,0x35,0x7c,0x36,0x76,0x21,0x76,0xae, + 0xa3,0xad,0x05,0x53,0xa7,0xbd,0x9d,0x38,0x54,0x03,0xc0,0x98,0x1d,0x66,0xc1,0x04, + 0x39,0xc1,0x88,0xd1,0x1f,0x90,0x08,0x96,0xbc,0x59,0x54,0x4f,0x5f,0xa2,0x70,0xcd, + 0xf0,0xda,0x96,0x3c,0x51,0x04,0x67,0x5c,0x1f,0x07,0xed,0xf9,0x9e,0x98,0xd0,0x3b, + 0x5e,0x51,0xa9,0xa6,0x82,0xc1,0xed,0x35,0x45,0xa1,0xd6,0x36,0x3b,0xa1,0xe6,0x5d, + 0x1f,0xec,0xe2,0xb7,0xf8,0xa2,0xe4,0x45,0xf9,0xb6,0xa7,0x07,0x18,0xc7,0xb5,0x0c, + 0x08,0xd7,0x50,0x36,0x98,0x82,0xd3,0xc8,0x40,0xc8,0xdc,0x64,0x27,0xe2,0x14,0x42, + 0x44,0x0a,0xe4,0x1d,0x41,0x61,0x57,0x88,0xfe,0xd2,0x51,0x99,0x24,0x55,0x1e,0x3b, + 0xaa,0x8d,0xa7,0xb4,0xc0,0x6e,0xf5,0x70,0x8c,0x2a,0xe3,0x75,0xcc,0x36,0xbf,0xbe, + 0xfc,0x3f,0x09,0x83,0x5e,0xe4,0x20,0x9a,0xcc,0x11,0x48,0x8e,0x2b,0xc8,0x8a,0xef, + 0xc0,0x78,0x45,0xee,0x1e,0xc7,0xce,0x00,0xfc,0x3c,0x0e,0x32,0xd2,0x8f,0x15,0x8c, + 0x02,0xb3,0x7b,0x4c,0xa9,0x7a,0x9c,0xec,0x5e,0x6e,0xf2,0xd3,0xd9,0x15,0x32,0xa3, + 0x74,0x14,0xbf,0x1f,0xdd,0x2f,0x63,0x3c,0x47,0x04,0x6c,0x00,0x00,0x06,0x22,0x6e, + 0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f, + 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71, + 0x00,0x00,0x02,0x00,0x00,0x02,0x45,0x1e,0x9b,0xaf,0xf8,0x1f,0xaf,0x5f,0x41,0x0b, + 0x0b,0xbe,0x9e,0x36,0xee,0x83,0xbf,0x8f,0x79,0x69,0x8e,0x66,0x05,0xa5,0x1a,0x97, + 0x48,0xbc,0x73,0xc7,0xdc,0x28,0x02,0xd1,0xab,0x24,0xfe,0x53,0xcf,0xca,0xc4,0xa4, + 0x77,0x74,0x52,0x35,0xc7,0xac,0x3e,0x75,0x16,0x1a,0x5b,0xf8,0x42,0x6e,0xa8,0xe0, + 0x18,0x2a,0xd5,0x8c,0xab,0x36,0x7f,0x02,0x7e,0x2a,0xc0,0xec,0x93,0xfd,0xb3,0xfb, + 0xe3,0x8d,0x7a,0x3f,0x5e,0xa0,0xa6,0x3d,0xdb,0xa9,0x8a,0x51,0xb7,0x7a,0xf5,0x51, + 0x6f,0xe5,0xca,0x10,0x10,0xd7,0x95,0x34,0x02,0x17,0xd5,0xb1,0x80,0x7d,0x8b,0x95, + 0x7c,0xe1,0x0b,0xb0,0xaf,0xf3,0xc1,0x84,0x81,0xee,0x2f,0xed,0x6a,0x7b,0x65,0x9c, + 0xbf,0xfd,0x48,0x20,0xd0,0x9d,0x1a,0xfd,0xa4,0x20,0x00,0x00,0x0a,0x91,0x11,0x83, + 0xf6,0x00,0x00,0x00,0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x0f,0x42,0x40,0xa0, + 0x00,0x00,0x8a,0xbd,0x52,0xa0,0x78,0x64,0x62,0x19,0xed,0x01,0x02,0x40,0xf0,0x06, + 0x07,0x97,0xb8,0x87,0xef,0x73,0xdc,0x1b,0xf0,0x20,0x31,0x55,0xc9,0xb9,0x6f,0xec, + 0x6f,0xad,0x46,0x86,0x0a,0xcc,0xd9,0x95,0x61,0x62,0x15,0x84,0x70,0x2a,0x47,0xd7, + 0x68,0xa9,0xbc,0x98,0xb3,0x1f,0xc4,0xbc,0x78,0xab,0x5d,0xf2,0xf7,0xc4,0x97,0x75, + 0x21,0x13,0xcf,0xfc,0xd4,0x36,0xcd,0xf6,0xb4,0x85,0x7c,0xad,0x01,0x06,0x22,0x6e, + 0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f, + 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71, + 0x00,0x00,0x02,0x00,0x00,0x64,0x62,0x19,0xed,0x01,0x00,0x00,0x06,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00, + 0x00,0x3b,0x02,0x33,0x80,0xa0,0x00,0x00,0x8a,0xf5,0x5d,0xd1,0x12,0x64,0x62,0x19, + 0xed,0x01,0x02,0x08,0x97,0x08,0x72,0xbe,0xc8,0x1e,0xd0,0xb9,0xb8,0x4b,0x0f,0x63, + 0x5c,0xeb,0x28,0xa5,0xf8,0x7a,0x3d,0xa1,0x6a,0xb3,0xb4,0x30,0x91,0x31,0x57,0xd4, + 0x5b,0x69,0x26,0x4d,0xd1,0xbb,0xd5,0x49,0x95,0xe9,0x75,0x53,0xa4,0xae,0x87,0xe9, + 0x88,0xf6,0x86,0x1f,0x31,0x8f,0x35,0xf9,0x15,0xcc,0x04,0x0a,0x01,0xed,0x6e,0x47, + 0xe0,0xea,0x68,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, + 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, + 0x88,0x91,0x0f,0x00,0x00,0x71,0x00,0x00,0x02,0x00,0x00,0x64,0x62,0x19,0xed,0x01, + 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0xa4,0x07, + 0x3d,0xb7,0xfe,0x64,0x62,0x19,0xf2,0x01,0x01,0x29,0x2a,0x41,0x8f,0xb7,0x24,0xc2, + 0x82,0xc5,0x75,0x0e,0x28,0xd9,0x8b,0xd4,0xad,0xa1,0xb1,0x9a,0x65,0xa8,0x7a,0x78, + 0xc7,0x6c,0xc8,0x94,0xcb,0xf7,0xb1,0xb8,0x3b,0x29,0xce,0xbf,0xcc,0x47,0x1b,0x5a, + 0xb4,0xec,0xab,0xa3,0xbe,0xaf,0xd1,0xde,0xd7,0x0e,0x8b,0xcc,0xaa,0xdb,0x6b,0x88, + 0x51,0xb9,0x7a,0x0c,0xcd,0x1c,0x9c,0x4d,0x5c,0x00,0x07,0x88,0xa0,0x80,0x2a,0x02, + 0x69,0xa2,0x64,0x62,0x19,0xf2,0x02,0xd1,0xab,0x24,0xfe,0x53,0xcf,0xca,0xc4,0xa4, + 0x77,0x74,0x52,0x35,0xc7,0xac,0x3e,0x75,0x16,0x1a,0x5b,0xf8,0x42,0x6e,0xa8,0xe0, + 0x18,0x2a,0xd5,0x8c,0xab,0x36,0x7f,0x02,0xd1,0xab,0x43,0x48,0x49,0x4c,0x4c,0x59, + 0x46,0x49,0x52,0x45,0x2d,0x30,0x32,0x2d,0x33,0x37,0x2d,0x67,0x63,0x39,0x66,0x38, + 0x30,0x33,0x35,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00,0x01,0x0d,0x02,0x9a, + 0x00,0x32,0x00,0x64,0x00,0x00,0x00,0x02,0x4c,0x4b,0x40,0x20,0x00,0x01,0xb0,0x5f, + 0xad,0x58,0xa1,0x64,0x62,0x19,0xed,0x01,0x00,0x63,0x42,0xba,0xf1,0x21,0xe0,0x09, + 0x57,0x0d,0x40,0xa4,0xc6,0x05,0x78,0x02,0x8e,0x35,0x71,0x66,0x7c,0x24,0x51,0x3f, + 0x58,0x3a,0xaa,0x14,0x65,0x5a,0x2b,0xbd,0x09,0x5b,0xd3,0xa8,0x4e,0x73,0x3e,0x38, + 0xd3,0x4d,0x19,0x9c,0x18,0x04,0x60,0x57,0x32,0xd3,0x75,0xf5,0x36,0x15,0xc4,0x6a, + 0xf1,0x1b,0x3d,0xc9,0x07,0x89,0x08,0x7a,0x37,0x2f,0xf1,0x89,0x12,0xdb,0xf2,0xff, + 0x04,0xbd,0x93,0x23,0x00,0x3c,0x10,0x05,0x8a,0x58,0x9b,0x96,0xf3,0x76,0x94,0x16, + 0x29,0x51,0xc8,0x76,0x89,0x61,0xc3,0x21,0xc0,0x0e,0x47,0xac,0xa3,0xbe,0xc7,0xfd, + 0xa2,0x6b,0xe9,0x1d,0xe2,0x11,0x1c,0x3e,0xfc,0x6d,0x4d,0x0b,0x85,0xff,0xe9,0x8a, + 0x39,0x3a,0xb3,0x0e,0x2f,0x28,0x96,0x6b,0x96,0x59,0x4d,0x53,0x71,0xd5,0x38,0x23, + 0xe1,0xe0,0xad,0x0a,0xbf,0x00,0x58,0x15,0xbf,0x53,0x07,0xe1,0x13,0x06,0x88,0xb3, + 0xf8,0x31,0x06,0x72,0x92,0x6f,0xd1,0xf0,0x9b,0x3b,0xf2,0x8f,0x9c,0xc6,0x73,0xf8, + 0x91,0x3e,0x84,0xc0,0xed,0xdf,0x92,0x43,0x92,0x5f,0x4a,0x6b,0x96,0x02,0xaf,0xd9, + 0xd9,0xd9,0xf9,0x65,0xae,0x08,0xd8,0x62,0x93,0x2b,0xb7,0xd3,0x48,0xe3,0x02,0x19, + 0x53,0xf9,0x49,0x24,0xfa,0x22,0x24,0x87,0xc2,0xd2,0x0b,0xc0,0x56,0xae,0x09,0x5a, + 0x94,0xc3,0x54,0x59,0xb5,0xe7,0xbe,0xa6,0x4a,0x47,0xc1,0x79,0x80,0xe8,0xc2,0xd1, + 0xc5,0xda,0x6b,0x25,0x85,0xc6,0x02,0x32,0x8b,0x52,0x0e,0x7f,0x18,0x1c,0x5b,0xf6, + 0xb9,0xaf,0x69,0xdc,0xc6,0x3d,0x93,0xc1,0x27,0x00,0x00,0x06,0x22,0x6e,0x46,0x11, + 0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e, + 0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71,0x00,0x00, + 0x04,0x00,0x01,0x02,0xd1,0xab,0x24,0xfe,0x53,0xcf,0xca,0xc4,0xa4,0x77,0x74,0x52, + 0x35,0xc7,0xac,0x3e,0x75,0x16,0x1a,0x5b,0xf8,0x42,0x6e,0xa8,0xe0,0x18,0x2a,0xd5, + 0x8c,0xab,0x36,0x7f,0x03,0xca,0xec,0x54,0x08,0x55,0x08,0xda,0x06,0xf1,0x4f,0xfb, + 0x83,0x61,0x66,0xca,0x22,0x04,0x2d,0x0f,0xda,0x69,0x69,0x03,0x56,0x23,0x2a,0x24, + 0xb8,0x36,0x6c,0x8f,0x85,0x03,0xf6,0x19,0x62,0x15,0xf2,0x5c,0xfc,0x5c,0xae,0x8c, + 0xb6,0x90,0xa7,0x81,0xe0,0x14,0xb5,0xc1,0xc5,0xda,0xf9,0x6d,0x44,0x6d,0x1a,0x6e, + 0x24,0x4f,0xb6,0x42,0x3f,0xdb,0x03,0xf9,0x84,0xe3,0xec,0xa9,0x24,0x5d,0x1b,0xba, + 0xd2,0xc7,0xf3,0x5a,0x32,0xaa,0x6e,0xdb,0x21,0xb6,0xe8,0xb1,0x86,0x5b,0x18,0x30, + 0xe8,0x4d,0x23,0xa4,0x45,0x23,0x88,0x20,0x00,0x00,0x0a,0x08,0x85,0x8a,0xb2,0x00, + 0x00,0x00,0x00,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x2d,0xc6,0xc0,0xa0,0x00,0x00, + 0x8a,0xe9,0x51,0x74,0x9b,0x64,0x62,0x19,0xed,0x01,0x02,0x4b,0x82,0x87,0x3b,0xc9, + 0x03,0x1c,0x6e,0xc9,0xbe,0x96,0x22,0x97,0xf7,0xa8,0xb0,0xb2,0x7c,0x22,0x69,0x23, + 0x2d,0x97,0xfb,0x9b,0xc2,0xf1,0x1e,0x66,0xfb,0xfd,0x80,0x5d,0xd7,0xf0,0x23,0x31, + 0x47,0xaa,0x54,0x8d,0x95,0xbb,0xdd,0x33,0x13,0x32,0x6d,0x91,0xc6,0x45,0xd5,0x84, + 0xf4,0x76,0x6c,0x74,0xf3,0x51,0x45,0x24,0xee,0x5b,0xc3,0x06,0x22,0x6e,0x46,0x11, + 0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e, + 0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71,0x00,0x00, + 0x04,0x00,0x01,0x64,0x62,0x19,0xed,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0xb1, + 0x06,0x9a,0x80,0xa0,0x00,0x00,0x8a,0xd2,0xc8,0xd2,0x7c,0x64,0x62,0x19,0xed,0x01, + 0x02,0x0f,0x90,0xcb,0xb6,0xa1,0x44,0x65,0x10,0x00,0xae,0x2f,0x60,0x26,0x2f,0x41, + 0x58,0x5b,0xab,0xde,0xff,0x7e,0x11,0x44,0xf4,0x2e,0x96,0x96,0xfa,0x98,0x09,0xee, + 0xb1,0x5d,0x43,0xff,0x44,0x7b,0xa6,0x03,0xf6,0x4a,0x07,0x38,0x97,0x59,0xee,0x5e, + 0xee,0xcb,0xdb,0x77,0x69,0xab,0x61,0xd8,0xc3,0x42,0xb3,0x1f,0x57,0xea,0xf3,0xfd, + 0xe2,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b, + 0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91, + 0x0f,0x00,0x00,0x71,0x00,0x00,0x04,0x00,0x01,0x64,0x62,0x19,0xed,0x01,0x01,0x00, + 0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, + 0x0a,0x00,0x00,0x00,0x00,0xb1,0x06,0x9a,0x80,0x60,0x00,0x00,0x8a,0x64,0xa7,0x4f, + 0x57,0x64,0x62,0x19,0xf7,0x01,0x02,0x28,0x15,0x9f,0xa7,0x51,0x3a,0xbb,0x33,0xd9, + 0x25,0xaa,0x7d,0xe8,0xfb,0x3a,0x92,0x45,0x41,0xb3,0x22,0x9b,0x12,0x3b,0xb0,0x16, + 0x47,0xd6,0xf7,0x61,0x44,0x1d,0xa7,0x35,0xfe,0xa9,0x7b,0xa6,0x42,0x91,0x3f,0x5e, + 0xe4,0xca,0x98,0x1c,0x0f,0x2d,0xed,0x36,0x0e,0x2b,0x2e,0x08,0x81,0x2e,0xcc,0xc1, + 0x76,0x61,0xf9,0x1b,0xd3,0x44,0x3e,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca, + 0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7, + 0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71,0x00,0x00,0x01,0x00,0x01,0x64, + 0x62,0x19,0xf7,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x0a,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20, + 0x00,0x00,0xa4,0x30,0x77,0x80,0xee,0x64,0x62,0x19,0xf2,0x01,0x01,0x67,0x07,0x1d, + 0x3b,0x62,0x2d,0xb7,0x1a,0xba,0xb8,0x93,0x56,0xaa,0xfa,0xb1,0x47,0x4f,0x0e,0x02, + 0x8b,0x73,0xd5,0x5b,0xce,0xd6,0x40,0x55,0xaf,0xa7,0x29,0xd0,0x51,0x24,0x5a,0x19, + 0x22,0xc6,0x7b,0x6e,0x4a,0xae,0x57,0x9c,0x16,0x99,0x46,0x6c,0xc3,0x64,0xd8,0x20, + 0x10,0x44,0x1e,0xd0,0x6b,0x8d,0x36,0xdc,0xae,0x75,0x06,0x6e,0xdc,0x00,0x07,0x88, + 0xa0,0x80,0x2a,0x02,0x69,0xa2,0x64,0x62,0x19,0xf2,0x03,0xca,0xec,0x54,0x08,0x55, + 0x08,0xda,0x06,0xf1,0x4f,0xfb,0x83,0x61,0x66,0xca,0x22,0x04,0x2d,0x0f,0xda,0x69, + 0x69,0x03,0x56,0x23,0x2a,0x24,0xb8,0x36,0x6c,0x8f,0x85,0x03,0xca,0xec,0x56,0x49, + 0x4f,0x4c,0x45,0x54,0x53,0x45,0x54,0x2d,0x2e,0x30,0x32,0x2d,0x33,0x37,0x2d,0x67, + 0x63,0x39,0x66,0x38,0x30,0x33,0x35,0x2d,0x6d,0x6f,0x64,0x64,0x65,0x64,0x00,0x00, + 0x01,0x0d,0x02,0x9a,0x00,0x32,0x00,0x64,0x00,0x00,0x00,0x02,0x4c,0x4b,0x40,0x60, + 0x00,0x00,0x8a,0x07,0xf6,0xe8,0x9b,0x64,0x62,0x19,0xf7,0x01,0x02,0x62,0xf7,0xdc, + 0xf1,0xa6,0x3c,0xf0,0xae,0x64,0x9c,0x03,0x62,0x98,0x6a,0x18,0x78,0x97,0xed,0x8c, + 0x2e,0x3f,0xc4,0x1d,0x9f,0xa7,0xfb,0x58,0x26,0x48,0x2e,0x96,0x9d,0x33,0x75,0x60, + 0x6e,0x33,0x95,0xf7,0x6e,0x9f,0x4f,0xa2,0xed,0xd6,0xa9,0x83,0x1b,0x94,0x79,0xee, + 0x4f,0xdc,0x20,0xc5,0x39,0x74,0x0d,0x31,0x52,0xc7,0x25,0x36,0x47,0x06,0x22,0x6e, + 0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f, + 0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71, + 0x00,0x00,0x01,0x00,0x01,0x64,0x62,0x19,0xf7,0x01,0x01,0x00,0x06,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0xc8,0x00,0x00,0x00, + 0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x8a,0x16,0x2b,0xff,0x08,0x64,0x62,0x19, + 0xf7,0x01,0x02,0x39,0x36,0x2a,0x56,0x61,0xad,0x48,0x3f,0x4e,0x13,0x15,0x66,0x43, + 0x58,0xc5,0xc2,0x14,0x6e,0xb2,0x72,0xfa,0x73,0xd7,0xb5,0x2d,0x86,0x14,0xc2,0xe8, + 0xf7,0x53,0x8f,0x38,0xea,0x35,0x5c,0xec,0xe3,0xc7,0xc0,0x46,0x1c,0x9f,0x1d,0x93, + 0x94,0x31,0x1f,0xf8,0x49,0xb1,0x50,0x4c,0x2c,0x2f,0xc7,0xe4,0x0c,0xaa,0xd0,0xa9, + 0x53,0x14,0xca,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43, + 0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1, + 0x88,0x91,0x0f,0x00,0x00,0x71,0x00,0x00,0x03,0x00,0x01,0x64,0x62,0x19,0xf7,0x01, + 0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00, + 0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x76,0x04,0x67,0x00,0x20,0x00,0x00,0x8a,0xd5, + 0x4a,0x70,0x0c,0x64,0x62,0x19,0xf7,0x01,0x02,0x54,0x16,0x95,0x41,0x4f,0x0e,0x0f, + 0xdf,0x49,0xb5,0x87,0xdc,0x26,0xb4,0xef,0x73,0x3c,0xb8,0x19,0x96,0x62,0x87,0xfa, + 0x4f,0x02,0x53,0xbe,0x12,0x53,0x93,0x4b,0x57,0x3b,0xe9,0xb9,0x26,0x46,0xda,0x77, + 0xaa,0xdd,0x8d,0xf6,0x86,0x22,0xf0,0x3f,0xd5,0x56,0xdd,0xaa,0xa2,0x4e,0x4a,0x9a, + 0x70,0x81,0xf8,0xf9,0x72,0x7b,0xd7,0x90,0x48,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b, + 0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a, + 0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71,0x00,0x00,0x03,0x00, + 0x01,0x64,0x62,0x19,0xf7,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xc8,0x00,0x00,0x00,0x00,0x76,0x04,0x67, + 0x00,0x20,0x00,0x00,0x8a,0xc5,0x6d,0x8a,0x5a,0x64,0x62,0x19,0xf6,0x01,0x02,0x1d, + 0x80,0x09,0x30,0x1a,0x4b,0x26,0x60,0x6b,0x9a,0x54,0x8d,0x7f,0x9b,0x35,0x78,0x76, + 0x7a,0xc1,0xe5,0x22,0xdc,0x08,0x77,0xac,0x54,0xc7,0xc0,0x9b,0x13,0x85,0x20,0x2c, + 0xa4,0xa3,0x7e,0xc5,0xde,0xfd,0x60,0x43,0xdb,0x2e,0xb0,0x5b,0xcc,0x95,0xc1,0xf3, + 0x02,0x09,0x8a,0xe1,0x55,0x2a,0x8a,0x9a,0x18,0xe5,0xa9,0xee,0xcd,0x11,0x27,0x06, + 0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28, + 0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00, + 0x00,0x71,0x00,0x00,0x02,0x00,0x00,0x64,0x62,0x19,0xf6,0x01,0x00,0x00,0x06,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x96,0x00, + 0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00,0x8a,0x67,0xa5,0x58,0xd4,0x64, + 0x62,0x19,0xf6,0x01,0x02,0x5a,0xa5,0x3e,0xb8,0x73,0xf5,0xdf,0xfc,0x72,0x16,0x52, + 0xa1,0x07,0x8a,0x2b,0xf1,0xc3,0x92,0xc5,0x87,0xa4,0x45,0x07,0x1e,0xb3,0x7d,0x4c, + 0x1c,0x47,0x41,0x2c,0x93,0x14,0x46,0x16,0xba,0xe4,0xf9,0xc9,0x52,0x4c,0x5e,0x6c, + 0x4f,0xc9,0xec,0xde,0x83,0x15,0xe0,0x8e,0x39,0xbe,0xa9,0x8f,0x9d,0xfe,0xcf,0xc4, + 0x12,0x32,0xa4,0x17,0x2b,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12, + 0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7, + 0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71,0x00,0x00,0x02,0x00,0x00,0x64,0x62,0x19, + 0xf6,0x01,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x10,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x3b,0x02,0x33,0x80,0x20,0x00,0x00, + 0x8a,0x2f,0x71,0xed,0xec,0x64,0x62,0x19,0xf6,0x01,0x02,0x75,0x4f,0x11,0x1c,0x56, + 0x9f,0x4a,0x9d,0x6f,0x98,0x96,0x1c,0x5a,0x9f,0x0f,0xb9,0x24,0x23,0x82,0x7d,0x86, + 0xcf,0xbc,0x41,0x14,0x38,0x76,0x2e,0x86,0x47,0x96,0xef,0x14,0x91,0x2e,0x30,0xe2, + 0x4b,0x1c,0x47,0x2d,0x4a,0xdc,0xf6,0x79,0xb6,0x11,0x80,0xcc,0x51,0xbb,0xc4,0x29, + 0x33,0x60,0xc1,0x78,0x1e,0x82,0xe3,0x40,0xc0,0xf7,0x25,0x06,0x22,0x6e,0x46,0x11, + 0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b,0xbf,0x28,0xc3,0x4f,0x3a,0x5e, + 0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91,0x0f,0x00,0x00,0x71,0x00,0x00, + 0x04,0x00,0x01,0x64,0x62,0x19,0xf6,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0xc8,0x00,0x00,0x00,0x00,0xb1, + 0x06,0x9a,0x80,0x20,0x00,0x00,0x8a,0xc8,0x56,0xb7,0xb1,0x64,0x62,0x19,0xf6,0x01, + 0x02,0x3c,0x76,0x7a,0x28,0x5e,0x65,0x30,0xac,0x0d,0x0f,0x43,0x31,0x02,0x56,0xcd, + 0x14,0x51,0x46,0x69,0x33,0xa0,0x12,0x61,0x9c,0x34,0xc5,0xd8,0x9a,0x0c,0x81,0x94, + 0xad,0x5e,0x98,0xc4,0xd0,0x45,0x3d,0x32,0x84,0xdd,0xd7,0x18,0x2b,0xdb,0x13,0xa8, + 0xfc,0xb2,0x0d,0xd6,0xf6,0x8a,0x97,0xc7,0xe9,0x7e,0x27,0xb7,0x86,0x7a,0x3e,0xee, + 0xfa,0x06,0x22,0x6e,0x46,0x11,0x1a,0x0b,0x59,0xca,0xaf,0x12,0x60,0x43,0xeb,0x5b, + 0xbf,0x28,0xc3,0x4f,0x3a,0x5e,0x33,0x2a,0x1f,0xc7,0xb2,0xb7,0x3c,0xf1,0x88,0x91, + 0x0f,0x00,0x00,0x71,0x00,0x00,0x04,0x00,0x01,0x64,0x62,0x19,0xf6,0x01,0x01,0x00, + 0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x01, + 0x2c,0x00,0x00,0x00,0x00,0xb1,0x06,0x9a,0x80, +}; static void test_edge_probability(void) { diff --git a/plugins/test/run-route-calc.c b/plugins/test/run-route-calc.c index 25bb02d0706c..9f8682e03030 100644 --- a/plugins/test/run-route-calc.c +++ b/plugins/test/run-route-calc.c @@ -351,7 +351,7 @@ static void write_to_store(int store_fd, const u8 *msg) { struct gossip_hdr hdr; - hdr.flags = cpu_to_be16(0); + hdr.flags = cpu_to_be16(GOSSIP_STORE_COMPLETED_BIT); hdr.len = cpu_to_be16(tal_count(msg)); hdr.timestamp = 0; hdr.crc = cpu_to_be32(crc32c(be32_to_cpu(hdr.timestamp), msg, tal_count(msg))); diff --git a/plugins/test/run-route-overlong.c b/plugins/test/run-route-overlong.c index e5d5e69c4c28..125244227259 100644 --- a/plugins/test/run-route-overlong.c +++ b/plugins/test/run-route-overlong.c @@ -348,7 +348,7 @@ static void write_to_store(int store_fd, const u8 *msg) { struct gossip_hdr hdr; - hdr.flags = cpu_to_be16(0); + hdr.flags = cpu_to_be16(GOSSIP_STORE_COMPLETED_BIT); hdr.len = cpu_to_be16(tal_count(msg)); hdr.timestamp = 0; hdr.crc = cpu_to_be32(crc32c(be32_to_cpu(hdr.timestamp), msg, tal_count(msg))); diff --git a/tests/data/routing_gossip_store b/tests/data/routing_gossip_store index 5e04a49140d8..28d1c16fd972 100644 Binary files a/tests/data/routing_gossip_store and b/tests/data/routing_gossip_store differ