From 6f1c9cdd463a2b46c5ba43f434c38ae3fea793dd Mon Sep 17 00:00:00 2001 From: Chandra Pratap Date: Sun, 13 Apr 2025 13:04:00 +0000 Subject: [PATCH 1/2] fuzz-tests: Add fuzz target for closing_sig Changelog-None: 'closing_signed' and 'closing_sig' are channel closing negotiation messages defined in BOLT #2. While 'closing_signed' has a wire fuzz test, 'closing_sig' does not. Add a test to perform a round-trip encoding check (towire -> fromwire) similar to the other wire fuzzers. --- tests/fuzz/fuzz-wire-closing_sig.c | 52 ++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 tests/fuzz/fuzz-wire-closing_sig.c diff --git a/tests/fuzz/fuzz-wire-closing_sig.c b/tests/fuzz/fuzz-wire-closing_sig.c new file mode 100644 index 000000000000..e578a7c892cf --- /dev/null +++ b/tests/fuzz/fuzz-wire-closing_sig.c @@ -0,0 +1,52 @@ +#include "config.h" +#include +#include +#include +#include +#include + +struct closing_sig { + struct channel_id channel_id; + u32 locktime; + struct amount_sat fee_satoshis; + u8 *closer_scriptpubkey, *closee_scriptpubkey; + struct tlv_closing_tlvs *tlvs; +}; + +static void *encode(const tal_t *ctx, const struct closing_sig *s) +{ + return towire_closing_sig(ctx, &s->channel_id, s->closer_scriptpubkey, + s->closee_scriptpubkey, s->fee_satoshis, s->locktime, s->tlvs); +} + +static struct closing_sig *decode(const tal_t *ctx, const void *p) +{ + struct closing_sig *s = tal(ctx, struct closing_sig); + + if (fromwire_closing_sig(s, p, &s->channel_id, &s->closer_scriptpubkey, + &s->closee_scriptpubkey, &s->fee_satoshis, &s->locktime, &s->tlvs)) + return s; + return tal_free(s); +} + +static bool equal(const struct closing_sig *x, + const struct closing_sig *y) +{ + assert(memcmp(&x->channel_id, &y->channel_id, sizeof(x->channel_id)) == 0); + assert(x->locktime == y->locktime); + assert(memcmp(&x->fee_satoshis, &y->fee_satoshis, sizeof(x->fee_satoshis)) == 0); + + assert(tal_arr_eq(x->closer_scriptpubkey, y->closer_scriptpubkey)); + assert(tal_arr_eq(x->closee_scriptpubkey, y->closee_scriptpubkey)); + + assert(x->tlvs && y->tlvs); + assert(tal_arr_eq(x->tlvs->closer_output_only, y->tlvs->closer_output_only)); + assert(tal_arr_eq(x->tlvs->closee_output_only, y->tlvs->closee_output_only)); + + return tal_arr_eq(x->tlvs->closer_and_closee_outputs, y->tlvs->closer_and_closee_outputs); +} + +void run(const u8 *data, size_t size) +{ + test_decode_encode(data, size, WIRE_CLOSING_SIG, struct closing_sig); +} From 149cdfe98831313708242164842e20f33be46b14 Mon Sep 17 00:00:00 2001 From: Chandra Pratap Date: Wed, 23 Apr 2025 14:58:42 +0000 Subject: [PATCH 2/2] fuzz-tests: Add a seed corpus for the new test Add a minimal input set as a seed corpus for the newly introduced test. This leads to discovery of interesting code paths faster. --- .../0020ea091d729bbb65935a1cd0541e24262b8b85 | Bin 0 -> 314 bytes .../010a82652ca4b74a7c1d4bfda58a1bdaaa735a79 | Bin 0 -> 155 bytes .../01e73663d90a18c3c2a567531ad1eabb7184a20a | Bin 0 -> 262 bytes .../0324e41b8067c51409f2a8125a6a730bfb00750c | Bin 0 -> 278 bytes .../0331971240dd23ff977da1d21438d8e7f645d9df | Bin 0 -> 258 bytes .../03f758a06447c3fc94e7171a26e7c0a5eb2b19d9 | Bin 0 -> 53 bytes .../04247c2c10e829e71b8539b5d243bb9125eb83d5 | Bin 0 -> 298 bytes .../04650b50b3690de1f509223bcf7e30336206d8eb | Bin 0 -> 180 bytes .../068f216828b21442eaaf8699c22139e28a1f1840 | Bin 0 -> 48 bytes .../07e4a1ebb29d53105f2443ded3672ed9b09b94e0 | Bin 0 -> 55 bytes .../08012e45dcfe71aeb273f7599c9dcfdac6fcd958 | Bin 0 -> 114 bytes .../08504f9f5c882bd0cc7ebde166acc566a37ade1f | Bin 0 -> 116 bytes .../0ac3273d47c5e126683a16350d62cad30825cd59 | Bin 0 -> 59 bytes .../0acf9a9dade9918635c975b802eaf068e423a7d7 | Bin 0 -> 143 bytes .../0b0666eeb04d822907ee0a63138f6250def457bc | Bin 0 -> 44 bytes .../0ca50e237ecc7cc5a8c6942a81bd1fcb90936a10 | Bin 0 -> 122 bytes .../0cc6ffa072765f5e27d12adb85fef0082312674a | Bin 0 -> 88 bytes .../0ccbefc70d7832b049357bd49cf507187a9136c4 | Bin 0 -> 222 bytes .../0d7889b506304f6f97fe695eb749c8cb08af7e94 | Bin 0 -> 44 bytes .../1037ec56ca14214a1458b298dc2179f35e6a988a | Bin 0 -> 73 bytes .../14b13cddf73c748b7eb6a7785dae31354fec5c4c | Bin 0 -> 71 bytes .../157a51d53e7d16426077a5deaf39280f4b002c58 | Bin 0 -> 76 bytes .../17c1ec11ee70481899d7956c2f70078349e84001 | Bin 0 -> 39 bytes .../17ddaddc6603e7da38c1de21161d418a1b9fb153 | 3 +++ .../1966334026e44430e184076dc282de97b079e100 | Bin 0 -> 217 bytes .../1a58b5c11d3497fa3881959f3a70104847b5b412 | Bin 0 -> 52 bytes .../1ad7c762bf1e0d488f08a7030bbe9d96adbe327f | Bin 0 -> 120 bytes .../1cc36c8ff9eb8d5240c07507703154802d0a87c9 | Bin 0 -> 60 bytes .../1d22da4f9bf06d0738816af0d8c7f99dcb3bed67 | Bin 0 -> 152 bytes .../1f09059fc14c9f1d889d31a56642bc71ab6d65af | Bin 0 -> 57 bytes .../1f7b87102c0c9ba3bc95ac5b5477d18f7be61993 | Bin 0 -> 49 bytes .../1fa68adf83e49ab765eb67db01800962d2e53312 | Bin 0 -> 52 bytes .../211e7314600399a01decaa452880626ef07e39e5 | Bin 0 -> 57 bytes .../23bde1c417164c3105bd41674afecd1787b496bf | Bin 0 -> 143 bytes .../2426c46a13f780c06d94a54e0b7edc152f6e8179 | Bin 0 -> 114 bytes .../2675b57567e1b8a5acd3ecf982be9087175bdc11 | Bin 0 -> 60 bytes .../28a2b32e1424a50a80df78c1c64301b9ab697499 | Bin 0 -> 157 bytes .../2a52f81197bae301ad4000e7b3e65eb51f8de10f | 3 +++ .../2bd6cc16921fdcfdd24c90bb3ff2ccad6ceaacea | Bin 0 -> 117 bytes .../2bda4761b4053b8d332dcf9046fe1fcb13032706 | Bin 0 -> 59 bytes .../3038bcc954246afafbbde8c3237ecd5c70bca914 | Bin 0 -> 49 bytes .../31f1d524ad47f9fd0bd8244cafcd23bed41b01a6 | Bin 0 -> 58 bytes .../35d2f441cafa59bb925bc9cf3bfd091b9a17e7f0 | Bin 0 -> 116 bytes .../3604e9eb1fa928ea9f60651c4b3ab056709426ef | Bin 0 -> 50 bytes .../3998857f4f4d2d5ee770ebc56dd4d4f3f0ee72fe | Bin 0 -> 56 bytes .../3a1ecdd72da71851f26230bf495c76adb710bf71 | Bin 0 -> 78 bytes .../3a44d07fc5e88d5f2ee2a2e8669a9438cb69fc97 | Bin 0 -> 51 bytes .../3ab3630e0e5e9f3aadc443ceedd330ed7cf0d5fd | Bin 0 -> 192 bytes .../3b98479511a64f15c3eeaeafcdbd15d8060b1358 | Bin 0 -> 53 bytes .../3c1204f2eb2cedf5b9d7c988a4084fb4612fcf75 | Bin 0 -> 159 bytes .../3cbdebf179fcdc62c6f47a6e4ff1b870f349b83e | Bin 0 -> 63 bytes .../3edc55a1e458762d50bfeef36392cbcf5adc8d6a | Bin 0 -> 58 bytes .../3f6b126a2375739891075f524e3570c672b00d11 | Bin 0 -> 34 bytes .../3f6fe601a1022a12d8873abc99ba8bd02e4a8b91 | Bin 0 -> 49 bytes .../3fe5a8a26d0005fbdc88ca3ab6ac85d4e57db909 | Bin 0 -> 115 bytes .../409cf0de54f15a4b29e5d8aae28cfdc6b21b85ec | Bin 0 -> 57 bytes .../40a4c0ea81da19f964330c946c6091b4a2a3b639 | Bin 0 -> 285 bytes .../40ded3810bb0e6a669522095a11f82054aa64e07 | Bin 0 -> 52 bytes .../411ed4a5674bbfa681d0f4261e486f4b737acd32 | Bin 0 -> 251 bytes .../42727bdabe4f74b2f46f3a3a1611025a7ae7955e | Bin 0 -> 52 bytes .../4382146558fde7a9280b8620668e81f165d68caa | Bin 0 -> 121 bytes .../46881ed78069ff7f0c9e3e5081055f4e61d9c7a9 | Bin 0 -> 53 bytes .../46b586251e089f077819cb535fe4a4595f40449b | Bin 0 -> 78 bytes .../46ef97111bd529393bcb7a27e9947f70e54b32f1 | Bin 0 -> 48 bytes .../48c65b7ecc47bb606925e9b87d90b518580f8d6b | Bin 0 -> 66 bytes .../48dccbcc2532418e8eb013c1ca68c41ca0ec7715 | Bin 0 -> 116 bytes .../49a40c822a63c8f0fe3ab25c3f0eb9ec1f3f524d | Bin 0 -> 51 bytes .../4cbf5a3c91b096febb391c9156f522aa0a6bca81 | Bin 0 -> 49 bytes .../50440f6eda8300085503aede600c365c5f066796 | Bin 0 -> 53 bytes .../505a633e6e7c0f7d49fa640a75ce629929e35cad | Bin 0 -> 54 bytes .../5547e5168de4839d2f11d9f2e579e40c853fa4b8 | Bin 0 -> 53 bytes .../5622a923799f35ac6fa2b4ce2b4944e6617b8b88 | Bin 0 -> 50 bytes .../57c04d7bca827eb1f78f663026e2701870df1227 | Bin 0 -> 164 bytes .../5acbc7c5ffd0cf4b1665ca5258afdc3609204093 | Bin 0 -> 36 bytes .../5ec3e1b0e57f94f47bb2a60352903675abde14a0 | Bin 0 -> 36 bytes .../5f99f11ba22d500afa53e1b1428e35f7903de8d7 | Bin 0 -> 55 bytes .../600987c909568ee0e3b4a944536b35ae2b297e18 | Bin 0 -> 65 bytes .../61e1be5ea69a692829ee4a1f36eb25df521ad5a6 | Bin 0 -> 36 bytes .../61ebfbc530cc5f1e8f73d26ebe354b31522330a4 | Bin 0 -> 36 bytes .../62694a37f638997b92cb915603120897e0b9aec4 | Bin 0 -> 48 bytes .../66d6ab2c4201b600a8e72788a21c34c7722f2402 | Bin 0 -> 122 bytes .../6780d4c061b0055bf23a36e5358637fe8f09c0c1 | Bin 0 -> 50 bytes .../68cd832454031da1af760b78d6a86c39983c11d6 | Bin 0 -> 49 bytes .../692ffbe082ca11e6837b980a8624fdf655fa6b46 | Bin 0 -> 84 bytes .../694cb798450cbaa3af321567a21df9232960211c | Bin 0 -> 115 bytes .../6bca1ffad6338f6c1bbca16c267d48e6adb59395 | Bin 0 -> 66 bytes .../6c30fe5d3add7f6b2fa4ff60e9ac90992ffcd4e6 | Bin 0 -> 116 bytes .../6e22f9f6648193c8416b7cd97d9dbb229fbb8274 | Bin 0 -> 52 bytes .../70d1191f4d06a11312865e381dfe205dc28c2791 | Bin 0 -> 51 bytes .../713de07e300db5379c3117f81497f383f52c186a | Bin 0 -> 114 bytes .../72094440a6a2cf9aabbcf1ba7c2cce89c96026dc | Bin 0 -> 127 bytes .../7538bf10ba20a06a557891c08d17027e48aec3d1 | Bin 0 -> 54 bytes .../76f89f19a146c43c095e0ddccd839fb865b3a259 | Bin 0 -> 50 bytes .../7717ab59278b2659b1724eae1be91d6345db027c | Bin 0 -> 50 bytes .../798f039c784503caba402629f7b41b909e9d6dac | Bin 0 -> 53 bytes .../7b7d276b82043af13cea0aad8cc802ca18d7ff1e | Bin 0 -> 36 bytes .../7ca61a38cd26dc012828d71ac17db49e403aacae | Bin 0 -> 106 bytes .../7cfa67fb66971a169844401fe886a5ddfe26db92 | Bin 0 -> 147 bytes .../80427399ca3d218066c9b1acb8247ae0dbe8872e | Bin 0 -> 40 bytes .../81ab1eaa916e0a2f4629911d3e649372f6e209ba | Bin 0 -> 50 bytes .../81b9acecac66579ec5adb9959ee942f07155d6f0 | Bin 0 -> 225 bytes .../85355302bfd1006a96bdfb34cdd0eb029e8108e7 | Bin 0 -> 64 bytes .../859478fd94135057c41cd60fc4eae78f443d6309 | Bin 0 -> 67 bytes .../8704378410eeba5d9f29f0eaaa9bc9e494352ced | Bin 0 -> 49 bytes .../876b0b881b778a1dc72262ef46c296eacdbf9303 | Bin 0 -> 51 bytes .../87a2d70f7a1e1ec8a90ac1a8821bb28aeba0f194 | Bin 0 -> 51 bytes .../87df04a3147818c38688a455b14ad6e3f0c8983b | Bin 0 -> 114 bytes .../88b71235ecf8f15645b41461be76d13aad8790a1 | Bin 0 -> 118 bytes .../8a7c1c5582592837f13efab172de2a9c68e4055b | Bin 0 -> 546 bytes .../8c9b91f46ec5012f2fdfa62c32b62c0cb724be20 | Bin 0 -> 54 bytes .../8dc4732e8dc00da3496e3c492200e72404d7bacb | Bin 0 -> 50 bytes .../8f0835ea1466814fa544db7bbfe12044f25302dc | Bin 0 -> 131 bytes .../8f1abb85d14ab2d67bdb9a21e5e0a29ade5598a6 | Bin 0 -> 122 bytes .../906d6c2ad4e5127653a5405336f5be6da51d6f58 | Bin 0 -> 292 bytes .../9257e2ba6a253bdbcea0ce5d258734c2523c2ff6 | Bin 0 -> 97 bytes .../964cab2c84b2a5fdab299d37e5b36fa99094ed7b | Bin 0 -> 52 bytes .../97082b854f2c7a4ad91eea9e09bcb1038b26e7af | Bin 0 -> 32 bytes .../9a76fa2644f3ca8e410be42f77e491a3dedbd6b9 | Bin 0 -> 35 bytes .../9ac93cfc2352aa7e7ee276606a887c9474f6d2f6 | Bin 0 -> 51 bytes .../9bda9f9a84047990f08c5a40ee3cde3b8e3d60a3 | Bin 0 -> 58 bytes .../9c216c07629536006ea865220c527b86a48c7f2d | Bin 0 -> 51 bytes .../9d0d9e596ce73a717924d9f1be9463df34147ee2 | Bin 0 -> 473 bytes .../9e970eabb09b93863710f5807dca47d911c7d6d5 | Bin 0 -> 50 bytes .../a17202ac2787c1dcc7289dd61d4356a8ef7e0d49 | Bin 0 -> 52 bytes .../a178b376a630e1307aaa69682caf7d4acb5ae3cf | Bin 0 -> 76 bytes .../a66f8fbad4092027dedb312d2a149bf0d29ee381 | Bin 0 -> 59 bytes .../a6ca58af954a7f8c7f5a0949430f16639fdbc3a0 | Bin 0 -> 57 bytes .../a71e258c659b458e9eaa7bf7040318f549691921 | Bin 0 -> 65 bytes .../a7245e7f6f8d567677ac62cfa618d3c9eb181fee | Bin 0 -> 59 bytes .../a7a560bee8080e046e1079ffaeb1070e2620428f | Bin 0 -> 53 bytes .../a7e0add1f74048a323e5f014fd99e3c1fcff8800 | Bin 0 -> 299 bytes .../a89a6b56aa765398d6ff103555a8388e628555fe | Bin 0 -> 275 bytes .../abb7ede34f02269c6be6f89c29a5be3ab2fccdda | Bin 0 -> 61 bytes .../ac49e6fac8a82630625808aca0db039f887469d9 | Bin 0 -> 155 bytes .../b4b4d3dcfbc22d0ea3d53d9fa56d0ffe8ef5b747 | Bin 0 -> 64 bytes .../b58f2be2beac1c53980a979988e42982424d781e | Bin 0 -> 39 bytes .../b9d7f027000af2a1097bdc083a9d5ead9476bd6c | Bin 0 -> 50 bytes .../ba395524e26ca2571d41e82a478dc1c2a3cadffb | Bin 0 -> 86 bytes .../ba8116e8c7ee8e50d9517854ef666faa38b38c6b | Bin 0 -> 162 bytes .../bac0ad1268c3054422d95976ca39f9b8fb3c466f | Bin 0 -> 65 bytes .../bb4303ccf403e34afa8eb5838fad8a8cad16af2c | Bin 0 -> 226 bytes .../c19257ea2df084003ffc88a888f660cf4c3cdef8 | Bin 0 -> 114 bytes .../c2fabe244a0f3db43142f7f14a31b57e0dabe446 | Bin 0 -> 114 bytes .../c6bef67b40301954c28fb994238976664dedcc50 | Bin 0 -> 76 bytes .../c7810e319dc4b9d2b7e466c67be3e2b4063c9140 | Bin 0 -> 57 bytes .../c8190ba02718bd1d412e17580b2f54c927fadc9f | Bin 0 -> 78 bytes .../c8368915b1b24cd0ed26992b7937c57b0a53538b | Bin 0 -> 36 bytes .../c84a86cbe45d50b6979853a50c84bc5a223d71d0 | Bin 0 -> 63 bytes .../c8ae8a686be6186d1a9d2176646b79a11a4758c3 | Bin 0 -> 34 bytes .../c9075c4ee62055b07acf85ba766275e0ac965301 | Bin 0 -> 50 bytes .../c9915b882822661558aaa94c7b9825661df9206e | Bin 0 -> 49 bytes .../cc6ecc930e4b643a3bca61230256ff0ad7a5d322 | Bin 0 -> 50 bytes .../cdc478324ab107de4f16b7d76188b21358a17b5b | Bin 0 -> 115 bytes .../cf6a84258c770798d1ceb29fe0fae684d9067940 | Bin 0 -> 94 bytes .../d0254c23846451b58b98c0a781b232e63622dd71 | Bin 0 -> 211 bytes .../d05eb721bd4cd58b0b71625cd2d9dea91efbaa74 | Bin 0 -> 114 bytes .../d0c5fd068b1029ddf5117881ad3a8bcda0d14311 | Bin 0 -> 116 bytes .../d346841e57bbdd4565aa28604ad5f371cd1a96de | Bin 0 -> 81 bytes .../d34d472c49cfc9a11f435ff3af55dc6d96453a4a | Bin 0 -> 51 bytes .../d366a2957c9490f208691a7aceab3c957889c908 | Bin 0 -> 50 bytes .../d404bb1a44b41fd2a3bb9cf5089c6ee841705143 | Bin 0 -> 250 bytes .../d651cccdc08d4943417b1bfa96328997d0c4bf8d | Bin 0 -> 116 bytes .../d85784f3dd9c0af62f73e1cbb6bebd8b9405bf0c | Bin 0 -> 50 bytes .../d9799e4b269b8fa08ec89abe349db9b9c0581d78 | Bin 0 -> 65 bytes .../d9c5e6d4a5f4927db670c85b4c2756128752a157 | Bin 0 -> 71 bytes .../db6fb199df3fe0bd8c4444542f22cfc42e2415c6 | Bin 0 -> 130 bytes .../dc15a6a62ac52d92a13dda0e0015a3eb8ebd4565 | Bin 0 -> 65 bytes .../ddc225d5926b427db0b2dc4d4576fa179ca438ae | Bin 0 -> 52 bytes .../deb170f76ed87579fef77ae22f0726b349199b31 | Bin 0 -> 51 bytes .../df0cbddf188b2e2ba8acb97d00941c6cfc7fb678 | Bin 0 -> 128 bytes .../dfbd2e89ae2d83edf7093881b5e0c330ad4ac80a | Bin 0 -> 62 bytes .../e27cbb1de0c5afced7cb1353a6914610bb473841 | Bin 0 -> 328 bytes .../e4d60bc3c41c9a95cf1d7afdd6545c594cda2ed2 | Bin 0 -> 64 bytes .../e6e0293513dcb7814dc72e22cd40f10f07522a1f | Bin 0 -> 50 bytes .../eb87612d7320c340e2ba516331a468a83dd47fee | Bin 0 -> 84 bytes .../ec39f4dbf4879710568bba6b76af921f342047b0 | Bin 0 -> 197 bytes .../edb5b34eff171d6ad2ba65955c37fb758d6f0c76 | Bin 0 -> 50 bytes .../ef1d542976b29f5664a280909e0ef86916fe998b | Bin 0 -> 72 bytes .../ef7ac226efc1dcf7adf07fe86d86bceecfea28dc | Bin 0 -> 49 bytes .../f0e689d8f25c5a7b35c900999ae73a05dee16c14 | Bin 0 -> 92 bytes .../f1335f5f31dd6932fa9a32060617d589c4be1e66 | Bin 0 -> 152 bytes .../f1d6bb4d4fc2bd68865fd2aa80d885c40e29e50d | Bin 0 -> 57 bytes .../f1df381f51402bca7bff11a8605dc163a70f924d | Bin 0 -> 51 bytes .../f423f46893e6c1ed1480c26cc2965be513d3c9c0 | Bin 0 -> 51 bytes .../f5bc98107e0ba972ce42f20b316b4ce9600ef50a | Bin 0 -> 97 bytes .../f6a099573afd77cbc8ca4575c780d91ddf438d03 | Bin 0 -> 136 bytes .../f75db5b76eaa4b128ed2b8bf9219b2f315a0ab04 | Bin 0 -> 223 bytes .../fc362d7f2996ef61c3af4886c21be33c3297361b | Bin 0 -> 49 bytes .../fda2fadc6cf6edbf2caed12a026a15c5662e02d8 | Bin 0 -> 114 bytes .../fdeddd7a96a220b28b7ec14d7191150aa3f85640 | Bin 0 -> 116 bytes .../fe90dbcd7420038705b9f7ae2437bf93e9488cc9 | Bin 0 -> 304 bytes .../ff442d9304a3ea9647bb3d9e72d43f202bf0fe73 | Bin 0 -> 36 bytes .../fffa880bba6468de437bc37b4982443b96267456 | Bin 0 -> 223 bytes 193 files changed, 6 insertions(+) create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/0020ea091d729bbb65935a1cd0541e24262b8b85 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/010a82652ca4b74a7c1d4bfda58a1bdaaa735a79 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/01e73663d90a18c3c2a567531ad1eabb7184a20a create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/0324e41b8067c51409f2a8125a6a730bfb00750c create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/0331971240dd23ff977da1d21438d8e7f645d9df create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/03f758a06447c3fc94e7171a26e7c0a5eb2b19d9 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/04247c2c10e829e71b8539b5d243bb9125eb83d5 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/04650b50b3690de1f509223bcf7e30336206d8eb create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/068f216828b21442eaaf8699c22139e28a1f1840 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/07e4a1ebb29d53105f2443ded3672ed9b09b94e0 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/08012e45dcfe71aeb273f7599c9dcfdac6fcd958 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/08504f9f5c882bd0cc7ebde166acc566a37ade1f create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/0ac3273d47c5e126683a16350d62cad30825cd59 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/0acf9a9dade9918635c975b802eaf068e423a7d7 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/0b0666eeb04d822907ee0a63138f6250def457bc create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/0ca50e237ecc7cc5a8c6942a81bd1fcb90936a10 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/0cc6ffa072765f5e27d12adb85fef0082312674a create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/0ccbefc70d7832b049357bd49cf507187a9136c4 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/0d7889b506304f6f97fe695eb749c8cb08af7e94 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/1037ec56ca14214a1458b298dc2179f35e6a988a create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/14b13cddf73c748b7eb6a7785dae31354fec5c4c create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/157a51d53e7d16426077a5deaf39280f4b002c58 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/17c1ec11ee70481899d7956c2f70078349e84001 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/17ddaddc6603e7da38c1de21161d418a1b9fb153 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/1966334026e44430e184076dc282de97b079e100 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/1a58b5c11d3497fa3881959f3a70104847b5b412 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/1ad7c762bf1e0d488f08a7030bbe9d96adbe327f create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/1cc36c8ff9eb8d5240c07507703154802d0a87c9 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/1d22da4f9bf06d0738816af0d8c7f99dcb3bed67 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/1f09059fc14c9f1d889d31a56642bc71ab6d65af create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/1f7b87102c0c9ba3bc95ac5b5477d18f7be61993 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/1fa68adf83e49ab765eb67db01800962d2e53312 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/211e7314600399a01decaa452880626ef07e39e5 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/23bde1c417164c3105bd41674afecd1787b496bf create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/2426c46a13f780c06d94a54e0b7edc152f6e8179 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/2675b57567e1b8a5acd3ecf982be9087175bdc11 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/28a2b32e1424a50a80df78c1c64301b9ab697499 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/2a52f81197bae301ad4000e7b3e65eb51f8de10f create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/2bd6cc16921fdcfdd24c90bb3ff2ccad6ceaacea create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/2bda4761b4053b8d332dcf9046fe1fcb13032706 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3038bcc954246afafbbde8c3237ecd5c70bca914 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/31f1d524ad47f9fd0bd8244cafcd23bed41b01a6 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/35d2f441cafa59bb925bc9cf3bfd091b9a17e7f0 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3604e9eb1fa928ea9f60651c4b3ab056709426ef create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3998857f4f4d2d5ee770ebc56dd4d4f3f0ee72fe create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3a1ecdd72da71851f26230bf495c76adb710bf71 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3a44d07fc5e88d5f2ee2a2e8669a9438cb69fc97 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3ab3630e0e5e9f3aadc443ceedd330ed7cf0d5fd create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3b98479511a64f15c3eeaeafcdbd15d8060b1358 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3c1204f2eb2cedf5b9d7c988a4084fb4612fcf75 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3cbdebf179fcdc62c6f47a6e4ff1b870f349b83e create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3edc55a1e458762d50bfeef36392cbcf5adc8d6a create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3f6b126a2375739891075f524e3570c672b00d11 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3f6fe601a1022a12d8873abc99ba8bd02e4a8b91 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/3fe5a8a26d0005fbdc88ca3ab6ac85d4e57db909 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/409cf0de54f15a4b29e5d8aae28cfdc6b21b85ec create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/40a4c0ea81da19f964330c946c6091b4a2a3b639 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/40ded3810bb0e6a669522095a11f82054aa64e07 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/411ed4a5674bbfa681d0f4261e486f4b737acd32 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/42727bdabe4f74b2f46f3a3a1611025a7ae7955e create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/4382146558fde7a9280b8620668e81f165d68caa create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/46881ed78069ff7f0c9e3e5081055f4e61d9c7a9 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/46b586251e089f077819cb535fe4a4595f40449b create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/46ef97111bd529393bcb7a27e9947f70e54b32f1 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/48c65b7ecc47bb606925e9b87d90b518580f8d6b create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/48dccbcc2532418e8eb013c1ca68c41ca0ec7715 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/49a40c822a63c8f0fe3ab25c3f0eb9ec1f3f524d create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/4cbf5a3c91b096febb391c9156f522aa0a6bca81 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/50440f6eda8300085503aede600c365c5f066796 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/505a633e6e7c0f7d49fa640a75ce629929e35cad create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/5547e5168de4839d2f11d9f2e579e40c853fa4b8 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/5622a923799f35ac6fa2b4ce2b4944e6617b8b88 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/57c04d7bca827eb1f78f663026e2701870df1227 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/5acbc7c5ffd0cf4b1665ca5258afdc3609204093 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/5ec3e1b0e57f94f47bb2a60352903675abde14a0 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/5f99f11ba22d500afa53e1b1428e35f7903de8d7 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/600987c909568ee0e3b4a944536b35ae2b297e18 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/61e1be5ea69a692829ee4a1f36eb25df521ad5a6 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/61ebfbc530cc5f1e8f73d26ebe354b31522330a4 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/62694a37f638997b92cb915603120897e0b9aec4 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/66d6ab2c4201b600a8e72788a21c34c7722f2402 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/6780d4c061b0055bf23a36e5358637fe8f09c0c1 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/68cd832454031da1af760b78d6a86c39983c11d6 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/692ffbe082ca11e6837b980a8624fdf655fa6b46 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/694cb798450cbaa3af321567a21df9232960211c create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/6bca1ffad6338f6c1bbca16c267d48e6adb59395 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/6c30fe5d3add7f6b2fa4ff60e9ac90992ffcd4e6 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/6e22f9f6648193c8416b7cd97d9dbb229fbb8274 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/70d1191f4d06a11312865e381dfe205dc28c2791 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/713de07e300db5379c3117f81497f383f52c186a create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/72094440a6a2cf9aabbcf1ba7c2cce89c96026dc create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/7538bf10ba20a06a557891c08d17027e48aec3d1 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/76f89f19a146c43c095e0ddccd839fb865b3a259 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/7717ab59278b2659b1724eae1be91d6345db027c create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/798f039c784503caba402629f7b41b909e9d6dac create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/7b7d276b82043af13cea0aad8cc802ca18d7ff1e create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/7ca61a38cd26dc012828d71ac17db49e403aacae create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/7cfa67fb66971a169844401fe886a5ddfe26db92 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/80427399ca3d218066c9b1acb8247ae0dbe8872e create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/81ab1eaa916e0a2f4629911d3e649372f6e209ba create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/81b9acecac66579ec5adb9959ee942f07155d6f0 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/85355302bfd1006a96bdfb34cdd0eb029e8108e7 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/859478fd94135057c41cd60fc4eae78f443d6309 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/8704378410eeba5d9f29f0eaaa9bc9e494352ced create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/876b0b881b778a1dc72262ef46c296eacdbf9303 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/87a2d70f7a1e1ec8a90ac1a8821bb28aeba0f194 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/87df04a3147818c38688a455b14ad6e3f0c8983b create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/88b71235ecf8f15645b41461be76d13aad8790a1 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/8a7c1c5582592837f13efab172de2a9c68e4055b create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/8c9b91f46ec5012f2fdfa62c32b62c0cb724be20 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/8dc4732e8dc00da3496e3c492200e72404d7bacb create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/8f0835ea1466814fa544db7bbfe12044f25302dc create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/8f1abb85d14ab2d67bdb9a21e5e0a29ade5598a6 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/906d6c2ad4e5127653a5405336f5be6da51d6f58 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/9257e2ba6a253bdbcea0ce5d258734c2523c2ff6 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/964cab2c84b2a5fdab299d37e5b36fa99094ed7b create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/97082b854f2c7a4ad91eea9e09bcb1038b26e7af create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/9a76fa2644f3ca8e410be42f77e491a3dedbd6b9 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/9ac93cfc2352aa7e7ee276606a887c9474f6d2f6 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/9bda9f9a84047990f08c5a40ee3cde3b8e3d60a3 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/9c216c07629536006ea865220c527b86a48c7f2d create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/9d0d9e596ce73a717924d9f1be9463df34147ee2 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/9e970eabb09b93863710f5807dca47d911c7d6d5 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/a17202ac2787c1dcc7289dd61d4356a8ef7e0d49 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/a178b376a630e1307aaa69682caf7d4acb5ae3cf create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/a66f8fbad4092027dedb312d2a149bf0d29ee381 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/a6ca58af954a7f8c7f5a0949430f16639fdbc3a0 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/a71e258c659b458e9eaa7bf7040318f549691921 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/a7245e7f6f8d567677ac62cfa618d3c9eb181fee create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/a7a560bee8080e046e1079ffaeb1070e2620428f create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/a7e0add1f74048a323e5f014fd99e3c1fcff8800 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/a89a6b56aa765398d6ff103555a8388e628555fe create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/abb7ede34f02269c6be6f89c29a5be3ab2fccdda create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/ac49e6fac8a82630625808aca0db039f887469d9 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/b4b4d3dcfbc22d0ea3d53d9fa56d0ffe8ef5b747 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/b58f2be2beac1c53980a979988e42982424d781e create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/b9d7f027000af2a1097bdc083a9d5ead9476bd6c create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/ba395524e26ca2571d41e82a478dc1c2a3cadffb create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/ba8116e8c7ee8e50d9517854ef666faa38b38c6b create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/bac0ad1268c3054422d95976ca39f9b8fb3c466f create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/bb4303ccf403e34afa8eb5838fad8a8cad16af2c create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/c19257ea2df084003ffc88a888f660cf4c3cdef8 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/c2fabe244a0f3db43142f7f14a31b57e0dabe446 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/c6bef67b40301954c28fb994238976664dedcc50 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/c7810e319dc4b9d2b7e466c67be3e2b4063c9140 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/c8190ba02718bd1d412e17580b2f54c927fadc9f create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/c8368915b1b24cd0ed26992b7937c57b0a53538b create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/c84a86cbe45d50b6979853a50c84bc5a223d71d0 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/c8ae8a686be6186d1a9d2176646b79a11a4758c3 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/c9075c4ee62055b07acf85ba766275e0ac965301 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/c9915b882822661558aaa94c7b9825661df9206e create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/cc6ecc930e4b643a3bca61230256ff0ad7a5d322 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/cdc478324ab107de4f16b7d76188b21358a17b5b create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/cf6a84258c770798d1ceb29fe0fae684d9067940 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d0254c23846451b58b98c0a781b232e63622dd71 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d05eb721bd4cd58b0b71625cd2d9dea91efbaa74 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d0c5fd068b1029ddf5117881ad3a8bcda0d14311 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d346841e57bbdd4565aa28604ad5f371cd1a96de create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d34d472c49cfc9a11f435ff3af55dc6d96453a4a create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d366a2957c9490f208691a7aceab3c957889c908 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d404bb1a44b41fd2a3bb9cf5089c6ee841705143 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d651cccdc08d4943417b1bfa96328997d0c4bf8d create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d85784f3dd9c0af62f73e1cbb6bebd8b9405bf0c create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d9799e4b269b8fa08ec89abe349db9b9c0581d78 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/d9c5e6d4a5f4927db670c85b4c2756128752a157 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/db6fb199df3fe0bd8c4444542f22cfc42e2415c6 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/dc15a6a62ac52d92a13dda0e0015a3eb8ebd4565 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/ddc225d5926b427db0b2dc4d4576fa179ca438ae create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/deb170f76ed87579fef77ae22f0726b349199b31 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/df0cbddf188b2e2ba8acb97d00941c6cfc7fb678 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/dfbd2e89ae2d83edf7093881b5e0c330ad4ac80a create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/e27cbb1de0c5afced7cb1353a6914610bb473841 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/e4d60bc3c41c9a95cf1d7afdd6545c594cda2ed2 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/e6e0293513dcb7814dc72e22cd40f10f07522a1f create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/eb87612d7320c340e2ba516331a468a83dd47fee create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/ec39f4dbf4879710568bba6b76af921f342047b0 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/edb5b34eff171d6ad2ba65955c37fb758d6f0c76 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/ef1d542976b29f5664a280909e0ef86916fe998b create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/ef7ac226efc1dcf7adf07fe86d86bceecfea28dc create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/f0e689d8f25c5a7b35c900999ae73a05dee16c14 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/f1335f5f31dd6932fa9a32060617d589c4be1e66 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/f1d6bb4d4fc2bd68865fd2aa80d885c40e29e50d create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/f1df381f51402bca7bff11a8605dc163a70f924d create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/f423f46893e6c1ed1480c26cc2965be513d3c9c0 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/f5bc98107e0ba972ce42f20b316b4ce9600ef50a create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/f6a099573afd77cbc8ca4575c780d91ddf438d03 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/f75db5b76eaa4b128ed2b8bf9219b2f315a0ab04 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/fc362d7f2996ef61c3af4886c21be33c3297361b create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/fda2fadc6cf6edbf2caed12a026a15c5662e02d8 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/fdeddd7a96a220b28b7ec14d7191150aa3f85640 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/fe90dbcd7420038705b9f7ae2437bf93e9488cc9 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/ff442d9304a3ea9647bb3d9e72d43f202bf0fe73 create mode 100644 tests/fuzz/corpora/fuzz-wire-closing_sig/fffa880bba6468de437bc37b4982443b96267456 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/0020ea091d729bbb65935a1cd0541e24262b8b85 b/tests/fuzz/corpora/fuzz-wire-closing_sig/0020ea091d729bbb65935a1cd0541e24262b8b85 new file mode 100644 index 0000000000000000000000000000000000000000..fee02ffcfee3ccbaf344b6b65c7170cbf6e546b2 GIT binary patch literal 314 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5xRKnKQ7N{;g9aR*}gGr^QH-bTZ2aw_dNi{Zt z732cRD+~-v7#O^OtR+ht8=0_y{~*DCfB)$)!c2mghhi33$Pp^h2zNQiFPH$VYzf2v k|Ix@E1-S|AFic^P6bL9X*aCGi05K3i^>hCJ&jyhN0G@zWr2qf` literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/010a82652ca4b74a7c1d4bfda58a1bdaaa735a79 b/tests/fuzz/corpora/fuzz-wire-closing_sig/010a82652ca4b74a7c1d4bfda58a1bdaaa735a79 new file mode 100644 index 0000000000000000000000000000000000000000..8bfdbcae64a1274a9fd4990f815b43005516302a GIT binary patch literal 155 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5x5Wxgz+1lCy)ultJ^mMoc16(M*5d^px7|SFA>(j?nu-ti z81Pupzh9-NNvmRveosG#Y75XtYSfL1S;?R78<2p}tCY-S7U|?m!2`AjE$=yK#T3>b b*u~6jINcK!kh7+s}gCU22WE(mV0+)4SDgVvambrW`G aapi&<(dEEi-8cK3!uVanxBb547ybdJ$90vZ@N3iH5xRKnKQ7N{;g9aR*}gGr^QHzEKRNUE_BtRNRi zUSVKZ0_H4P(%8s^4g3cQ{`>onkvMa<5Hts59>PH|7Rc8i0Co)A=MXVe60Bnh&sNxVFmofl0JOWn$ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/07e4a1ebb29d53105f2443ded3672ed9b09b94e0 b/tests/fuzz/corpora/fuzz-wire-closing_sig/07e4a1ebb29d53105f2443ded3672ed9b09b94e0 new file mode 100644 index 0000000000000000000000000000000000000000..c67fd0c8d7deffb40cbf09dbb70127a46da3d22f GIT binary patch literal 55 rcmZQzU|@&_VunBe85n?wfeFL`GXH}(K)}4dS`EU2umu>{83Gvq7n%uU literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/08012e45dcfe71aeb273f7599c9dcfdac6fcd958 b/tests/fuzz/corpora/fuzz-wire-closing_sig/08012e45dcfe71aeb273f7599c9dcfdac6fcd958 new file mode 100644 index 0000000000000000000000000000000000000000..e12428da5a17da9e32639588af4a11057b4cc67b GIT binary patch literal 114 zcmZQzVEF(4KLZ4GF)*+|nE?$9%F2LAv5&%g-bFz#hw2xx$ESXo(EfqBS`We#MuA;|Ni~|-wFWoJ$90vZ@N3iH5xRKnKQ7N{=WDIHZ9%!A6Mr>8f90S6Nr_z&X$ M`}9|V|y5*msOwm<=p8W;;K2Na90XJF*~Z_NMz D6%QEn literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/0ccbefc70d7832b049357bd49cf507187a9136c4 b/tests/fuzz/corpora/fuzz-wire-closing_sig/0ccbefc70d7832b049357bd49cf507187a9136c4 new file mode 100644 index 0000000000000000000000000000000000000000..83c7b5243a64c0d22b0cd3f48ec772d5e0d0d0c2 GIT binary patch literal 222 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5xRKnKQ7N{;g9aR*}gGr^QHzEKRNUE_BtRNRi zUSVKZ0_H4P(%8s^4g3cQ{`>n+hY@57+)Yq7GB5y50l63mU^IjWwsT1%!#@Uwe?S1V IgcoQt0Gc&CD*ylh literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/0d7889b506304f6f97fe695eb749c8cb08af7e94 b/tests/fuzz/corpora/fuzz-wire-closing_sig/0d7889b506304f6f97fe695eb749c8cb08af7e94 new file mode 100644 index 0000000000000000000000000000000000000000..d596bdea6412423f8a5c9d4a4c97724cc94e0759 GIT binary patch literal 44 RcmdAhVk--+M`v3p`-$DAKe>2#C FB>;tx5^n$i literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/14b13cddf73c748b7eb6a7785dae31354fec5c4c b/tests/fuzz/corpora/fuzz-wire-closing_sig/14b13cddf73c748b7eb6a7785dae31354fec5c4c new file mode 100644 index 0000000000000000000000000000000000000000..abf64a18ce0ddb1f99bca8da9ae92c227c290835 GIT binary patch literal 71 zcmZSh|3CUa!~g#b3<3=741o*`dl?u48WAhVk--+M`v3p`-@*E9z`_7n C%Mlp> literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/157a51d53e7d16426077a5deaf39280f4b002c58 b/tests/fuzz/corpora/fuzz-wire-closing_sig/157a51d53e7d16426077a5deaf39280f4b002c58 new file mode 100644 index 0000000000000000000000000000000000000000..f17c38a141d9c1eccf18782589861ad9973147c8 GIT binary patch literal 76 zcmZSh|3CUa!~g#b3<3=741o*`dl?u48W3 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/17c1ec11ee70481899d7956c2f70078349e84001 b/tests/fuzz/corpora/fuzz-wire-closing_sig/17c1ec11ee70481899d7956c2f70078349e84001 new file mode 100644 index 0000000000000000000000000000000000000000..bfb24c2dc97e2249e1fb9f1dd73faaec48677ecc GIT binary patch literal 39 fcmY$Fg##`Ic?O0+1|Z;ymX&2>V2}l|nZfb^MC1b% literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/17ddaddc6603e7da38c1de21161d418a1b9fb153 b/tests/fuzz/corpora/fuzz-wire-closing_sig/17ddaddc6603e7da38c1de21161d418a1b9fb153 new file mode 100644 index 000000000000..05cfc9e4fbbf --- /dev/null +++ b/tests/fuzz/corpora/fuzz-wire-closing_sig/17ddaddc6603e7da38c1de21161d418a1b9fb153 @@ -0,0 +1,3 @@ + + +½½½½½½½½½½½½½m½½½½½½½½½½½½½½½½ \ No newline at end of file diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/1966334026e44430e184076dc282de97b079e100 b/tests/fuzz/corpora/fuzz-wire-closing_sig/1966334026e44430e184076dc282de97b079e100 new file mode 100644 index 0000000000000000000000000000000000000000..acac81879beaf561cbd6101f17de31d2cb09926e GIT binary patch literal 217 zcmZQzVEF(4KLZRPvw;%+8yL)f?qGq+1~f1*uLrZaK%@a9GsA;BPD~EbRv<$dp{f`d y0zoW8Am#=d2L_A`{~7k~1?vI|Gcz!t7+KB0U}-MR;1B?mBWx&MbHTm=`v(9nl{BsZ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/1a58b5c11d3497fa3881959f3a70104847b5b412 b/tests/fuzz/corpora/fuzz-wire-closing_sig/1a58b5c11d3497fa3881959f3a70104847b5b412 new file mode 100644 index 0000000000000000000000000000000000000000..c889429bf0271274ff94983e762b52339e7a08a0 GIT binary patch literal 52 hcmZSh4+IP#U=Jo08EnDy|NmTI8kIPF=r9ul0{|b)2P!u|NmTI8kMlMwFRn6cS=uhL;#4wC190HmNYgpF)=U%G%zr) RuVw-RWFx@3mNYUj005wg7ijP!u|NmTI8kMlMwFRn6PfAa3L;#4wC190HmNYgpF)=U%G%zr) ZuV%so|3O0k{{CYG(Fik8SW6li7yw|pB)$Lu literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/1f09059fc14c9f1d889d31a56642bc71ab6d65af b/tests/fuzz/corpora/fuzz-wire-closing_sig/1f09059fc14c9f1d889d31a56642bc71ab6d65af new file mode 100644 index 0000000000000000000000000000000000000000..ec97704dd3be01d0d99aa2c8c866c66fc5494aa4 GIT binary patch literal 57 kcmZSh4+IP#U=Jo08EnDy?EhR~8cKjv0f81&t?fAm0H{e2Y5)KL literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/1f7b87102c0c9ba3bc95ac5b5477d18f7be61993 b/tests/fuzz/corpora/fuzz-wire-closing_sig/1f7b87102c0c9ba3bc95ac5b5477d18f7be61993 new file mode 100644 index 0000000000000000000000000000000000000000..80637974664d147a19d65073f3a8339219bc7d6d GIT binary patch literal 49 ZcmY$Fg##{mI8#=ZivbE4Av7~g4ghMv1E>H1 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/1fa68adf83e49ab765eb67db01800962d2e53312 b/tests/fuzz/corpora/fuzz-wire-closing_sig/1fa68adf83e49ab765eb67db01800962d2e53312 new file mode 100644 index 0000000000000000000000000000000000000000..bb5e94b820fd37bb1fc6baa42c6a05779bc3b92b GIT binary patch literal 52 qcmZQzU|@&_VunBe85n>F2LAttau^vHfQT6=zP?&bfPtMMkO2VcX9y4g literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/211e7314600399a01decaa452880626ef07e39e5 b/tests/fuzz/corpora/fuzz-wire-closing_sig/211e7314600399a01decaa452880626ef07e39e5 new file mode 100644 index 0000000000000000000000000000000000000000..a7fc51e5677176187172084a5e3ab1c82491cdc4 GIT binary patch literal 57 pcmd;5P~Q7@FBsT@Nv>Qq1_THPGynhp&%hASz`(q|8ps3#D*%t|7=!=- literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/23bde1c417164c3105bd41674afecd1787b496bf b/tests/fuzz/corpora/fuzz-wire-closing_sig/23bde1c417164c3105bd41674afecd1787b496bf new file mode 100644 index 0000000000000000000000000000000000000000..919b1073fb67478025da12620821d0cf8826e332 GIT binary patch literal 143 zcmd-wP~Q7@FBsT@$y_xC5NH6C;b8JV82p6*Q%gk#hX4kKzhEg`sw~Z*svw%afhnec UfB(8cjX@R%vl(m|{{OcE0J)x1a{vGU literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/2426c46a13f780c06d94a54e0b7edc152f6e8179 b/tests/fuzz/corpora/fuzz-wire-closing_sig/2426c46a13f780c06d94a54e0b7edc152f6e8179 new file mode 100644 index 0000000000000000000000000000000000000000..8edcd599a13f69c9904b2d9bb2f5ae0e9b18981e GIT binary patch literal 114 zcmZQzVEF(4KLZ4GF)*+|nE?$9%gmQryb-6$TfGi-v@KzQ8+rAK8 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/2675b57567e1b8a5acd3ecf982be9087175bdc11 b/tests/fuzz/corpora/fuzz-wire-closing_sig/2675b57567e1b8a5acd3ecf982be9087175bdc11 new file mode 100644 index 0000000000000000000000000000000000000000..490b5c5ef387b834cfcb1cdf94bc9bb368f6e4ac GIT binary patch literal 60 scmZQzU|@&_VunBe85n>F2LAv5&%g-bFz#hw2xx$E7+4{Iogt6`05k^(UH||9 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/28a2b32e1424a50a80df78c1c64301b9ab697499 b/tests/fuzz/corpora/fuzz-wire-closing_sig/28a2b32e1424a50a80df78c1c64301b9ab697499 new file mode 100644 index 0000000000000000000000000000000000000000..c3691196cb03b2acdaa7017f3f782080abf73f51 GIT binary patch literal 157 zcmZSh4+IP#U=Jo06>P!u|NmTI8kMlMwFRn62ZBZf04r>41gp#il2;fQmVh}+mNYgp XVFUj`g8%;hV+7F%gHTvYfCd5p&AcTE literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/2a52f81197bae301ad4000e7b3e65eb51f8de10f b/tests/fuzz/corpora/fuzz-wire-closing_sig/2a52f81197bae301ad4000e7b3e65eb51f8de10f new file mode 100644 index 000000000000..c61fb75e7667 --- /dev/null +++ b/tests/fuzz/corpora/fuzz-wire-closing_sig/2a52f81197bae301ad4000e7b3e65eb51f8de10f @@ -0,0 +1,3 @@ +' + + \ No newline at end of file diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/2bd6cc16921fdcfdd24c90bb3ff2ccad6ceaacea b/tests/fuzz/corpora/fuzz-wire-closing_sig/2bd6cc16921fdcfdd24c90bb3ff2ccad6ceaacea new file mode 100644 index 0000000000000000000000000000000000000000..9dd2143c25c5c127a097ec8cd07ecfddf1a67a36 GIT binary patch literal 117 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj{s#mw;FjuVrE)!w~a>asAvB`^Db?_S%zd-sA2 df~b_01&YcRft4^YgmQryxj;jJ3?RWE3jpdD6zu>2 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/2bda4761b4053b8d332dcf9046fe1fcb13032706 b/tests/fuzz/corpora/fuzz-wire-closing_sig/2bda4761b4053b8d332dcf9046fe1fcb13032706 new file mode 100644 index 0000000000000000000000000000000000000000..3747084d82bfb72001aa35d0f9a23e30122980a9 GIT binary patch literal 59 pcmZSh|KIvQ0|?lINks-*28N`Bq@*M;R}W0Wh{J~tGlAF;8URGO3V;9r literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/3038bcc954246afafbbde8c3237ecd5c70bca914 b/tests/fuzz/corpora/fuzz-wire-closing_sig/3038bcc954246afafbbde8c3237ecd5c70bca914 new file mode 100644 index 0000000000000000000000000000000000000000..127557b52d58fbece49c6075a49a89b976ade875 GIT binary patch literal 49 WcmZQz_``q-e!u}#oDoT$F&6+YxeFWs literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/31f1d524ad47f9fd0bd8244cafcd23bed41b01a6 b/tests/fuzz/corpora/fuzz-wire-closing_sig/31f1d524ad47f9fd0bd8244cafcd23bed41b01a6 new file mode 100644 index 0000000000000000000000000000000000000000..9442269229275013164da2edb40120d1853ad54c GIT binary patch literal 58 rcmZQzWB>zZ5cwYj7#MVbOl=4kB+9^0$G~vp=#e7~|G)}BYJdm;%(NEQ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/35d2f441cafa59bb925bc9cf3bfd091b9a17e7f0 b/tests/fuzz/corpora/fuzz-wire-closing_sig/35d2f441cafa59bb925bc9cf3bfd091b9a17e7f0 new file mode 100644 index 0000000000000000000000000000000000000000..c8fb48b1034a7da5947e264ebd3170260e56a9f6 GIT binary patch literal 116 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj9s_1}Pzf#Ja&CnhJjQmef{ok-w25*w8X)&dk_ HfLH_o*~c|L literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/3604e9eb1fa928ea9f60651c4b3ab056709426ef b/tests/fuzz/corpora/fuzz-wire-closing_sig/3604e9eb1fa928ea9f60651c4b3ab056709426ef new file mode 100644 index 0000000000000000000000000000000000000000..9e719bd3c3a9d75878145b9343dd3df936d7d364 GIT binary patch literal 50 icmZSh4+I7bAaI0{ff-CQ0ENIJaDoxSVrKZy!~g(Njy|#NnfGbx`fPtOC82}E83;X~8 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/3ab3630e0e5e9f3aadc443ceedd330ed7cf0d5fd b/tests/fuzz/corpora/fuzz-wire-closing_sig/3ab3630e0e5e9f3aadc443ceedd330ed7cf0d5fd new file mode 100644 index 0000000000000000000000000000000000000000..6fe5f299374f2f88e90ec1ecec4daaf2f3c4d59b GIT binary patch literal 192 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5x5Wxgz+1lCy)ultJ^mMoc16(M*5d^qEGL4O3 q`CK4*g@IuS1A{VzZ5cwYj7#MVbOl=^J1#v*2j)CC_1Tg#qDFFaY77~U4 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/3c1204f2eb2cedf5b9d7c988a4084fb4612fcf75 b/tests/fuzz/corpora/fuzz-wire-closing_sig/3c1204f2eb2cedf5b9d7c988a4084fb4612fcf75 new file mode 100644 index 0000000000000000000000000000000000000000..643b126a68bacafbc6aceb7fc850eea3a6e1f038 GIT binary patch literal 159 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5xRKnKQ7N{;g9aR*}gGr^QHzEKRNUE_BtRNRi dUSVKZ0_H4P(%8s^4g3cQ{`>n+hY@5D0{{kZ8?^uc literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/3cbdebf179fcdc62c6f47a6e4ff1b870f349b83e b/tests/fuzz/corpora/fuzz-wire-closing_sig/3cbdebf179fcdc62c6f47a6e4ff1b870f349b83e new file mode 100644 index 0000000000000000000000000000000000000000..d8a88641d990f810d5a63122f63d12129c71a588 GIT binary patch literal 63 gcmZSh|3CUa0|?lINkW7ogDt~I@J770QK30007}5Iz6^ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/3f6fe601a1022a12d8873abc99ba8bd02e4a8b91 b/tests/fuzz/corpora/fuzz-wire-closing_sig/3f6fe601a1022a12d8873abc99ba8bd02e4a8b91 new file mode 100644 index 0000000000000000000000000000000000000000..56e32fb91b7f30c0bd4f01274530536c26a70b7c GIT binary patch literal 49 jcmey*zz|u@$Z#Nl0R$!hK_iIq|34RqLII3Gp6y=%6JZGH literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/3fe5a8a26d0005fbdc88ca3ab6ac85d4e57db909 b/tests/fuzz/corpora/fuzz-wire-closing_sig/3fe5a8a26d0005fbdc88ca3ab6ac85d4e57db909 new file mode 100644 index 0000000000000000000000000000000000000000..7cd0ac0f5c98972cd47ee28408eebd209dafa5a4 GIT binary patch literal 115 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj{s#mw;FjuVrE)!w~a>auX~fA3z~y?gh9jDe_= bmF1F`l`R4*U|?904%x}Z2$lO literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/40a4c0ea81da19f964330c946c6091b4a2a3b639 b/tests/fuzz/corpora/fuzz-wire-closing_sig/40a4c0ea81da19f964330c946c6091b4a2a3b639 new file mode 100644 index 0000000000000000000000000000000000000000..05048d6867a834c4d04bc876349b74b14e39f895 GIT binary patch literal 285 zcmZ{f%MHRX5Jbl-At9;=N*z{8fG+kFBu-qjy|^UWNy5&WSP&_57|(wEWMg%K8p5w# zPPk7vKOa%kq@|p*@9FnYZ3DEH8g=2sEas#88z?~UsT4E0iJas|$pJ$90vNt<6y|~XsD!PpEl^#$9*QU{bG17}5U7NSi3uk5 zAIN6<_xGO;V|sccGT;KKZfpeW$z=ekVq$_RW(0BIiX9t4PJ{!f_$Ih>;W8+UMxaMf N1mGO70ZV{30{}WWWWxXe literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/42727bdabe4f74b2f46f3a3a1611025a7ae7955e b/tests/fuzz/corpora/fuzz-wire-closing_sig/42727bdabe4f74b2f46f3a3a1611025a7ae7955e new file mode 100644 index 0000000000000000000000000000000000000000..a0fc5fe0edaacbcd188ba42db41c72aa8bb76845 GIT binary patch literal 52 gcmZSh4+IP#U=Jo06>P!u|NmTI8kMlMwFRmJ036Q;xBvhE literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/4382146558fde7a9280b8620668e81f165d68caa b/tests/fuzz/corpora/fuzz-wire-closing_sig/4382146558fde7a9280b8620668e81f165d68caa new file mode 100644 index 0000000000000000000000000000000000000000..fa19638b288e616df3f242d57b388008a9ccb6be GIT binary patch literal 121 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj{s#mw;FjuVrE)!w~a>asAvB@br(-@Dg#@7}#2 c!yu|(rb;QxOH1_0=34+a1L literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/46b586251e089f077819cb535fe4a4595f40449b b/tests/fuzz/corpora/fuzz-wire-closing_sig/46b586251e089f077819cb535fe4a4595f40449b new file mode 100644 index 0000000000000000000000000000000000000000..8dc06fe3a7df6c81fcc11777e5b365062423bdf3 GIT binary patch literal 78 qcmZSh|3CUa0|?lINeF>W3?ie*V9W3ysNp{d07;N$&j0_}AhG~{5fbbG literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/46ef97111bd529393bcb7a27e9947f70e54b32f1 b/tests/fuzz/corpora/fuzz-wire-closing_sig/46ef97111bd529393bcb7a27e9947f70e54b32f1 new file mode 100644 index 0000000000000000000000000000000000000000..c2829c9e084dbbb5d96bf5138c71d458dfa1e018 GIT binary patch literal 48 dcmd;5P~Q7@FBsT@Nv>Qq1_THPGylVZ6#(tR6^H-; literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/48c65b7ecc47bb606925e9b87d90b518580f8d6b b/tests/fuzz/corpora/fuzz-wire-closing_sig/48c65b7ecc47bb606925e9b87d90b518580f8d6b new file mode 100644 index 0000000000000000000000000000000000000000..c173da5a698b1d6c6af9653f8e9ab3d690ccd47f GIT binary patch literal 66 jcmdP=2Rp7 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/49a40c822a63c8f0fe3ab25c3f0eb9ec1f3f524d b/tests/fuzz/corpora/fuzz-wire-closing_sig/49a40c822a63c8f0fe3ab25c3f0eb9ec1f3f524d new file mode 100644 index 0000000000000000000000000000000000000000..a1f2009745eb8f6023d1d57add48f947a9b87418 GIT binary patch literal 51 hcmZQz_``qzk=2Y02Lc!ven0_22F&{Z|Nmcx{{Tu651Rl0 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/4cbf5a3c91b096febb391c9156f522aa0a6bca81 b/tests/fuzz/corpora/fuzz-wire-closing_sig/4cbf5a3c91b096febb391c9156f522aa0a6bca81 new file mode 100644 index 0000000000000000000000000000000000000000..6c590404f384c15e7a365c37037ff3c575fe14d5 GIT binary patch literal 49 bcmZQzzySaMGcW*=08D}r!uW3sq?wfgUg`vK literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/50440f6eda8300085503aede600c365c5f066796 b/tests/fuzz/corpora/fuzz-wire-closing_sig/50440f6eda8300085503aede600c365c5f066796 new file mode 100644 index 0000000000000000000000000000000000000000..688e72663f6399b1d73a730564fd4d77f61b9d9b GIT binary patch literal 53 qcmd;5P~Q7@FA)6SyVn*(@8!x>V*mklFbN~V!HoY_|Nj5~Zv_A%=@IMz literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/505a633e6e7c0f7d49fa640a75ce629929e35cad b/tests/fuzz/corpora/fuzz-wire-closing_sig/505a633e6e7c0f7d49fa640a75ce629929e35cad new file mode 100644 index 0000000000000000000000000000000000000000..3ffbcac796b54b94529d6c6fc4d0fbe578c023e9 GIT binary patch literal 54 jcmZQzfPo_n|NsAoaTo+ZEMx&7mywf!;V;Agzro4?^au(_ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/5547e5168de4839d2f11d9f2e579e40c853fa4b8 b/tests/fuzz/corpora/fuzz-wire-closing_sig/5547e5168de4839d2f11d9f2e579e40c853fa4b8 new file mode 100644 index 0000000000000000000000000000000000000000..0b4924851e12f9549cb3c0d1d7479485e8bd8190 GIT binary patch literal 53 hcmd;LfPq{f;|c@Ak|j&PA}|^v4U+u#?;j9@_yE_m3Wopy literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/5622a923799f35ac6fa2b4ce2b4944e6617b8b88 b/tests/fuzz/corpora/fuzz-wire-closing_sig/5622a923799f35ac6fa2b4ce2b4944e6617b8b88 new file mode 100644 index 0000000000000000000000000000000000000000..e9469403d672693dd85801ba7eb02b53e49f8a47 GIT binary patch literal 50 bcmZQzfPo_n|NsAoaUe8YfDtDCmzeg0ssO50VV(d literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/61ebfbc530cc5f1e8f73d26ebe354b31522330a4 b/tests/fuzz/corpora/fuzz-wire-closing_sig/61ebfbc530cc5f1e8f73d26ebe354b31522330a4 new file mode 100644 index 0000000000000000000000000000000000000000..d35b6226cb82e3ec22d5de0839b7a2b418257bb3 GIT binary patch literal 36 Kcmd;LAPfKji~tJ& literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/62694a37f638997b92cb915603120897e0b9aec4 b/tests/fuzz/corpora/fuzz-wire-closing_sig/62694a37f638997b92cb915603120897e0b9aec4 new file mode 100644 index 0000000000000000000000000000000000000000..5f0d149a4c7d90b3ed91027210df75a9cbf7da59 GIT binary patch literal 48 PcmZQz_`^Uv*pUkWFI55} literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/66d6ab2c4201b600a8e72788a21c34c7722f2402 b/tests/fuzz/corpora/fuzz-wire-closing_sig/66d6ab2c4201b600a8e72788a21c34c7722f2402 new file mode 100644 index 0000000000000000000000000000000000000000..bd6bb2e33b3e724f61c11b8fdaeb580938fdbe34 GIT binary patch literal 122 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj{s#mw;FjuVrE)!w~a>auXaB@br)-@Dg#@7}#2 c(;&)aWkE7UU`YmsP%bbd7ibcY0VEh?0X%yZegFUf literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/6780d4c061b0055bf23a36e5358637fe8f09c0c1 b/tests/fuzz/corpora/fuzz-wire-closing_sig/6780d4c061b0055bf23a36e5358637fe8f09c0c1 new file mode 100644 index 0000000000000000000000000000000000000000..d77ebf026dae59cbc66c32e279d9556ae5b71cc8 GIT binary patch literal 50 jcmZQzVEF(4KLZHBXfOv%{Dv^OK$IaP1H*$mPD~5{8p8=P literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/68cd832454031da1af760b78d6a86c39983c11d6 b/tests/fuzz/corpora/fuzz-wire-closing_sig/68cd832454031da1af760b78d6a86c39983c11d6 new file mode 100644 index 0000000000000000000000000000000000000000..ebc550a6db10a207294fb4f72d0764c147ef9c70 GIT binary patch literal 49 ZcmZShj|>>#;J?~`7@HBoU!cQ05gP&cxE Rhz<~`iC{9=gDipB0ss~k8rT2; literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/6bca1ffad6338f6c1bbca16c267d48e6adb59395 b/tests/fuzz/corpora/fuzz-wire-closing_sig/6bca1ffad6338f6c1bbca16c267d48e6adb59395 new file mode 100644 index 0000000000000000000000000000000000000000..520d6aa4b99753fd96cebec7654d24f79c4e8ca3 GIT binary patch literal 66 vcmZSh4+IP#U=PHMV3s0-trD2=|34RqJ^~23FbRXm{|O+10Yu;dK)s9( La2xh=G2{XOw0kwX literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/6e22f9f6648193c8416b7cd97d9dbb229fbb8274 b/tests/fuzz/corpora/fuzz-wire-closing_sig/6e22f9f6648193c8416b7cd97d9dbb229fbb8274 new file mode 100644 index 0000000000000000000000000000000000000000..590e361b528b8a6b43fa62858983d11fcfb75132 GIT binary patch literal 52 ccmZQzfPo_n|NsAoaUe9B03%TJF9WkO0NTn2;{X5v literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/70d1191f4d06a11312865e381dfe205dc28c2791 b/tests/fuzz/corpora/fuzz-wire-closing_sig/70d1191f4d06a11312865e381dfe205dc28c2791 new file mode 100644 index 0000000000000000000000000000000000000000..17eed1c48d259b2bde51f466d67612a9af955dac GIT binary patch literal 51 mcmZSh|DWMM1TZlG0gwv<}d5FU^V0j&&wnUw(?rw>>F literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/713de07e300db5379c3117f81497f383f52c186a b/tests/fuzz/corpora/fuzz-wire-closing_sig/713de07e300db5379c3117f81497f383f52c186a new file mode 100644 index 0000000000000000000000000000000000000000..b54aa8bb37cae0ed9739c7aa8b3d41c06671df31 GIT binary patch literal 114 zcmZQz00Krv5Qzl-|NjrKQPBe0tRlZDc10_+Td3;+c* BFFF7K literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/72094440a6a2cf9aabbcf1ba7c2cce89c96026dc b/tests/fuzz/corpora/fuzz-wire-closing_sig/72094440a6a2cf9aabbcf1ba7c2cce89c96026dc new file mode 100644 index 0000000000000000000000000000000000000000..ee6bde6ab0d890b0ef5cfea78d5fee354b8aa816 GIT binary patch literal 127 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj9cWyr|P@ZgRUlY`aXz5n;_wcWdSFGwpRLrX83sZC literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/76f89f19a146c43c095e0ddccd839fb865b3a259 b/tests/fuzz/corpora/fuzz-wire-closing_sig/76f89f19a146c43c095e0ddccd839fb865b3a259 new file mode 100644 index 0000000000000000000000000000000000000000..75ee096677baf9f40e5bc28ba5c9313621647698 GIT binary patch literal 50 UcmZQzV6bIC1OIXInHiWF05?klLI3~& literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/7717ab59278b2659b1724eae1be91d6345db027c b/tests/fuzz/corpora/fuzz-wire-closing_sig/7717ab59278b2659b1724eae1be91d6345db027c new file mode 100644 index 0000000000000000000000000000000000000000..2779eed454d04896622da6fb0dae0d2fe5dbd185 GIT binary patch literal 50 ccmZQzWB>zZ5cwYjz+7zz56ot$gHTXu01#LWp#T5? literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/798f039c784503caba402629f7b41b909e9d6dac b/tests/fuzz/corpora/fuzz-wire-closing_sig/798f039c784503caba402629f7b41b909e9d6dac new file mode 100644 index 0000000000000000000000000000000000000000..91a16319f65dcad04748b7151b5ebbdd74a984d9 GIT binary patch literal 53 wcmZQz;Adc9WMKdS#wrGeXb|Jie+C91VqgMs7#P7M0|WE=YBd1{c7{L(0EJ$9Y=NBgbOwgM5E-xpn6R}4OBtl6r#CV%7FkE3^ XU_yZZK<2-{{}|KLLAbGzVM!wZH6RuF literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/7cfa67fb66971a169844401fe886a5ddfe26db92 b/tests/fuzz/corpora/fuzz-wire-closing_sig/7cfa67fb66971a169844401fe886a5ddfe26db92 new file mode 100644 index 0000000000000000000000000000000000000000..4645d17742cc868635b3fc4fa58125988435a58d GIT binary patch literal 147 ucmZQz00Krv5Qzl-|Njr0LDqqRfq@w;Cqr33{4 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/81ab1eaa916e0a2f4629911d3e649372f6e209ba b/tests/fuzz/corpora/fuzz-wire-closing_sig/81ab1eaa916e0a2f4629911d3e649372f6e209ba new file mode 100644 index 0000000000000000000000000000000000000000..fbf5b0d5184d5ebd2ba88da53c6852b35cccb7f4 GIT binary patch literal 50 kcmZQz00Kq^+r4|?jJ^ZzW@LL literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/81b9acecac66579ec5adb9959ee942f07155d6f0 b/tests/fuzz/corpora/fuzz-wire-closing_sig/81b9acecac66579ec5adb9959ee942f07155d6f0 new file mode 100644 index 0000000000000000000000000000000000000000..5e781337b71f9fca768dfa123da7ce58c695cf11 GIT binary patch literal 225 zcmZ`zu?>JQ40DBq1Yd9f4nE?$9%KrKK$U~LZx0Eh`Fihx1@ D8sIg$ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/8a7c1c5582592837f13efab172de2a9c68e4055b b/tests/fuzz/corpora/fuzz-wire-closing_sig/8a7c1c5582592837f13efab172de2a9c68e4055b new file mode 100644 index 0000000000000000000000000000000000000000..4c10cf44a5c815531306baab08c21a79bb578103 GIT binary patch literal 546 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5xRKnKQ7N{;g9aR*}gGr^QHzEKRNUE_BtRNRi zUSVKZ0_H4P(%8tv#LR>N{)0sR{r#uIh+IdEc literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/8dc4732e8dc00da3496e3c492200e72404d7bacb b/tests/fuzz/corpora/fuzz-wire-closing_sig/8dc4732e8dc00da3496e3c492200e72404d7bacb new file mode 100644 index 0000000000000000000000000000000000000000..07665b7418dde85a36d1cddf394cd48ca8c72a4b GIT binary patch literal 50 hcmey*@c;jR1`x0ZlZp(sVEX@mE-;NuFakNY3;+n32H*ey literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/8f0835ea1466814fa544db7bbfe12044f25302dc b/tests/fuzz/corpora/fuzz-wire-closing_sig/8f0835ea1466814fa544db7bbfe12044f25302dc new file mode 100644 index 0000000000000000000000000000000000000000..2a0bef9d1dd33ad190275e8610b140cfa0096fba GIT binary patch literal 131 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj{s#mw;FjuVrE)!w~a|M%{--Me=$NH0{95oih+ az)T7RF$^I*m>f_skQoiJ&YmF`A`1YFSSDit literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/8f1abb85d14ab2d67bdb9a21e5e0a29ade5598a6 b/tests/fuzz/corpora/fuzz-wire-closing_sig/8f1abb85d14ab2d67bdb9a21e5e0a29ade5598a6 new file mode 100644 index 0000000000000000000000000000000000000000..eb998c69a95afe4659b748241992cd3b7ca2fb87 GIT binary patch literal 122 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj9cWyr|P@ZgRUlY`aXz5n;_wcWdSFGwpRNbb-7 de;`vp0K^4>KoDUFBES|PB-dA~2{5n&J$90vZ@N3iH5x5Wxgz+1lCy)upGy1>g*rOnQ1F2ylTU8XLjV zxj^y?1H%$9XUUSrMkaqIOzr7&-~ov;^n}07vOk7ytkO literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/9257e2ba6a253bdbcea0ce5d258734c2523c2ff6 b/tests/fuzz/corpora/fuzz-wire-closing_sig/9257e2ba6a253bdbcea0ce5d258734c2523c2ff6 new file mode 100644 index 0000000000000000000000000000000000000000..3a14863c9863c4932c805351683662958017ecc2 GIT binary patch literal 97 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5xRKnKQ7N{;=GaXeJ%!A6Mr>8dp`5+$9%ti(P D$np&7 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/964cab2c84b2a5fdab299d37e5b36fa99094ed7b b/tests/fuzz/corpora/fuzz-wire-closing_sig/964cab2c84b2a5fdab299d37e5b36fa99094ed7b new file mode 100644 index 0000000000000000000000000000000000000000..e577f3573075887cc714b2dd7f64d73f90a61467 GIT binary patch literal 52 vcmZRuG*@JB2w(t$|Ns93NoF7e#A^T%j35FCsu>sz85k89l=uGKyEhjA@|X%U literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/97082b854f2c7a4ad91eea9e09bcb1038b26e7af b/tests/fuzz/corpora/fuzz-wire-closing_sig/97082b854f2c7a4ad91eea9e09bcb1038b26e7af new file mode 100644 index 0000000000000000000000000000000000000000..328da98b7fad89f13e3365050d2749c7ba1bb457 GIT binary patch literal 32 Qcmd;LVE7LP3|N680H5LpCIA2c literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/9a76fa2644f3ca8e410be42f77e491a3dedbd6b9 b/tests/fuzz/corpora/fuzz-wire-closing_sig/9a76fa2644f3ca8e410be42f77e491a3dedbd6b9 new file mode 100644 index 0000000000000000000000000000000000000000..833beae3e730f6e48317aa2a889486c87c96272a GIT binary patch literal 35 bcmY$Fg@9ODSuS~5*&;BHfgzL&Dh{LoQ)vWo literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/9ac93cfc2352aa7e7ee276606a887c9474f6d2f6 b/tests/fuzz/corpora/fuzz-wire-closing_sig/9ac93cfc2352aa7e7ee276606a887c9474f6d2f6 new file mode 100644 index 0000000000000000000000000000000000000000..6c014c19e0920e3b1c6b6220f71b27343038d9d7 GIT binary patch literal 51 hcmey*z@W%r%g6u&5Dq7p`yVRE1(Rf8`1jA20RV8r1qlEE literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/9bda9f9a84047990f08c5a40ee3cde3b8e3d60a3 b/tests/fuzz/corpora/fuzz-wire-closing_sig/9bda9f9a84047990f08c5a40ee3cde3b8e3d60a3 new file mode 100644 index 0000000000000000000000000000000000000000..2cfa05dbb9ddc2be5b9ebf4d4a43dc26e1434170 GIT binary patch literal 58 ycmZQz00IXf{_`Kg-~mzrdl?!S|H}bcFz|l3oGmY|9}7gX8-^b%M7dl literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/9c216c07629536006ea865220c527b86a48c7f2d b/tests/fuzz/corpora/fuzz-wire-closing_sig/9c216c07629536006ea865220c527b86a48c7f2d new file mode 100644 index 0000000000000000000000000000000000000000..53165d9ff37b496722e494e8ea78e65193f2df56 GIT binary patch literal 51 icmZSh4+IP#U=Jo08EnDy|NmTI8kw-QwPk2$U;qFUn+M2ltQI_S|0=;y) zUw1JxBBBY^xna$9h5U76vOpDyg#E5pK+S~|p{R$-wt}KL?Xg9Tmgtk*%bP5rmRK`m mB82IZxm86`8L!ctk)D!CxYF#tp}($(zi4(K6?)S1YySa5^qipp literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/9e970eabb09b93863710f5807dca47d911c7d6d5 b/tests/fuzz/corpora/fuzz-wire-closing_sig/9e970eabb09b93863710f5807dca47d911c7d6d5 new file mode 100644 index 0000000000000000000000000000000000000000..a73abecd34e6562364a399c4eccb30ad98efefe3 GIT binary patch literal 50 lcmZQz00Krv5Qzl-|NjrIxENRf literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/a66f8fbad4092027dedb312d2a149bf0d29ee381 b/tests/fuzz/corpora/fuzz-wire-closing_sig/a66f8fbad4092027dedb312d2a149bf0d29ee381 new file mode 100644 index 0000000000000000000000000000000000000000..0f2f4eaf65e6e756046226f737923b23fece291d GIT binary patch literal 59 ccmZQz_``q-ejou<8HWG=|K9}>|3TtA03;U`D*ylh literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/a6ca58af954a7f8c7f5a0949430f16639fdbc3a0 b/tests/fuzz/corpora/fuzz-wire-closing_sig/a6ca58af954a7f8c7f5a0949430f16639fdbc3a0 new file mode 100644 index 0000000000000000000000000000000000000000..f9e5ef98fb71ac3615a0e426d6294cf4f5c2f4c7 GIT binary patch literal 57 dcmZQz_`|^P9|Rciga7~4{{R0AL||n*asiOv4>te+ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/a71e258c659b458e9eaa7bf7040318f549691921 b/tests/fuzz/corpora/fuzz-wire-closing_sig/a71e258c659b458e9eaa7bf7040318f549691921 new file mode 100644 index 0000000000000000000000000000000000000000..3347a7d0b863ed6b08bcbcc5f6c6d8912d9d2bc2 GIT binary patch literal 65 wcmZQzfCJwDK&Ar&0|$@_*vrts2;nj?Ft4vx6JTHk0tm_a9}HMo*%<;E0Pyw;9{>OV literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/a7245e7f6f8d567677ac62cfa618d3c9eb181fee b/tests/fuzz/corpora/fuzz-wire-closing_sig/a7245e7f6f8d567677ac62cfa618d3c9eb181fee new file mode 100644 index 0000000000000000000000000000000000000000..ca35c973e8f96dfdb5151cf4c03c865758474a94 GIT binary patch literal 59 vcmZQz00IXf{_`Kg-~mzrdl?!S|H}bcaKOaCyuMmZgn<2n4bqz!gaS|NkFII)DZC+U^Abu3R+%26mvjTmaCZ3UvSg literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/a7e0add1f74048a323e5f014fd99e3c1fcff8800 b/tests/fuzz/corpora/fuzz-wire-closing_sig/a7e0add1f74048a323e5f014fd99e3c1fcff8800 new file mode 100644 index 0000000000000000000000000000000000000000..1ce36ff3703b4fe2db616bef63dc51d531dfc9a2 GIT binary patch literal 299 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5xRKnKQ7N{;g9aR*}gGr^QHzEKRNUE_BtRNRi zUSVKZ0_H4P(%8s^4g3cQ{`>onkur1O#(<1NxCh1pc^U-3Zh?CoB8EJ$90vZ@N3iH5xRKnKQ7N{;g9aR*}gGr^QHzEKRNUE_BtRNRi zUSVKZ0_H4P(%8s^4g3cQ{`>n+hY@5@7FaPlfy;bGhQI&@=4yAKdV=ONg6shs&n83Gvq_`C-N literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/b58f2be2beac1c53980a979988e42982424d781e b/tests/fuzz/corpora/fuzz-wire-closing_sig/b58f2be2beac1c53980a979988e42982424d781e new file mode 100644 index 0000000000000000000000000000000000000000..f96b071729e26b39ab15d481ff028ec07cc15437 GIT binary patch literal 39 fcmY$Fg##{m7?UenR+f>0L6!jsm}O;G$jSl$Q^5o` literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/b9d7f027000af2a1097bdc083a9d5ead9476bd6c b/tests/fuzz/corpora/fuzz-wire-closing_sig/b9d7f027000af2a1097bdc083a9d5ead9476bd6c new file mode 100644 index 0000000000000000000000000000000000000000..107f5df95c515b738282d9481c7a317aa3d21f57 GIT binary patch literal 50 gcmZSh|3CUa0|?lINks-*F#Z2O7nnvRY;A2-0P8pg*#H0l literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/ba395524e26ca2571d41e82a478dc1c2a3cadffb b/tests/fuzz/corpora/fuzz-wire-closing_sig/ba395524e26ca2571d41e82a478dc1c2a3cadffb new file mode 100644 index 0000000000000000000000000000000000000000..d898b0696fdefbcec16805676f1aaa34fac9a047 GIT binary patch literal 86 zcmZQz00VY=2+a@;0U+N0=>Ojt7+4sfQjSm+3=E14whaIOgSd(+5Y~SX0E$J|Gca=g Hw`KqUZwnNQ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/ba8116e8c7ee8e50d9517854ef666faa38b38c6b b/tests/fuzz/corpora/fuzz-wire-closing_sig/ba8116e8c7ee8e50d9517854ef666faa38b38c6b new file mode 100644 index 0000000000000000000000000000000000000000..ff9ee94ec7c83329143a6479f9c517b4915bd1cf GIT binary patch literal 162 zcmd-wP~Q7@FBsT@$y_xC1PBK+|AWC_2(UC)WN-*zVEBt)l^IkOMAJ7g#qF4tW3lU|?{7a0B)-G%$jg0t~Dm@E;6VS=ku^831#r4XgkF literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/bb4303ccf403e34afa8eb5838fad8a8cad16af2c b/tests/fuzz/corpora/fuzz-wire-closing_sig/bb4303ccf403e34afa8eb5838fad8a8cad16af2c new file mode 100644 index 0000000000000000000000000000000000000000..18a400881a7f6aae252ebdeeb9437cb5242654ba GIT binary patch literal 226 zcmZSh4+IP#V9($HBo!5G85sf^7&r?5|Br@AfTR(?9>IjN6d7z8K&F7q`VS;Q8uKtz zF)-NL+5)XfXJTUd_xB$}8R!51Yz&QHzy;FL2u2LK42%qc0SwI5?m)36OBx%2dZ3`O TaTCM^K&L`1#9|X%LXiOgPIoiJ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/c19257ea2df084003ffc88a888f660cf4c3cdef8 b/tests/fuzz/corpora/fuzz-wire-closing_sig/c19257ea2df084003ffc88a888f660cf4c3cdef8 new file mode 100644 index 0000000000000000000000000000000000000000..20fe7fffe606df4347fa2393be7c046214c7d266 GIT binary patch literal 114 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj9cWx&YH@ZgRUlS8x>NDCuW9Roukh-C=jas$l* W14f4b414#2H3DUrL9$?RAPoSkzZw_- literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/c2fabe244a0f3db43142f7f14a31b57e0dabe446 b/tests/fuzz/corpora/fuzz-wire-closing_sig/c2fabe244a0f3db43142f7f14a31b57e0dabe446 new file mode 100644 index 0000000000000000000000000000000000000000..0b1424f8ccfd70370bd59e802ac4331459bfe1de GIT binary patch literal 114 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj9cWx&YH@ZgRUvqQ8MNDCuW9Roukh-C=jas$l* W14f4b414#2H3DUrL9$?RAPoSl0U8+q literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/c6bef67b40301954c28fb994238976664dedcc50 b/tests/fuzz/corpora/fuzz-wire-closing_sig/c6bef67b40301954c28fb994238976664dedcc50 new file mode 100644 index 0000000000000000000000000000000000000000..6526a814f60d19b3106c214b0b433c877dcef5e2 GIT binary patch literal 76 ocmZSh|3CUa0|?lINd$q;XJAldux0oURQw+VfFwjCm;=@Z02~Ptf&c&j literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/c7810e319dc4b9d2b7e466c67be3e2b4063c9140 b/tests/fuzz/corpora/fuzz-wire-closing_sig/c7810e319dc4b9d2b7e466c67be3e2b4063c9140 new file mode 100644 index 0000000000000000000000000000000000000000..051372d48d0e80cd2a090bbfc898b58f61047124 GIT binary patch literal 57 gcmd;LzyuQ}v`uK700ay!$dcawK>#F@%fO%r0O}eG8UO$Q literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/c8190ba02718bd1d412e17580b2f54c927fadc9f b/tests/fuzz/corpora/fuzz-wire-closing_sig/c8190ba02718bd1d412e17580b2f54c927fadc9f new file mode 100644 index 0000000000000000000000000000000000000000..ccc85a24c95e3b01e2f1900ffb58372e6c0a8710 GIT binary patch literal 78 ucmZSh|3CUa0|?lINeBTH`;IOKkx^u@W%v)&@E-(#Bv3OW=l}m~5Lp1RKNI8t literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/c8368915b1b24cd0ed26992b7937c57b0a53538b b/tests/fuzz/corpora/fuzz-wire-closing_sig/c8368915b1b24cd0ed26992b7937c57b0a53538b new file mode 100644 index 0000000000000000000000000000000000000000..af4e8dcfd3ea603e300a4b42537622f7b1cbd485 GIT binary patch literal 36 Xcmd;5*b4==Ao@Soe~XO_2>UT c2DlM{AQ3|l0X7+EIMn?0)oKC^>WjDbOs!It4aQ1So&2-bg~0K^E+|Nq&*x`9GazyJVXdLcXj literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/d0254c23846451b58b98c0a781b232e63622dd71 b/tests/fuzz/corpora/fuzz-wire-closing_sig/d0254c23846451b58b98c0a781b232e63622dd71 new file mode 100644 index 0000000000000000000000000000000000000000..73dec74ee9d5f5584edff3a712de838abfb06bf6 GIT binary patch literal 211 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj{s#mw;FjuVrE)!w~a|M%{--Me=$NH0VZNCAzB z1}Vg%6C}(FA{c@M!5t?i2dlk%xqw<28SEj#ju1)~M9DHJ fGS~tQ1hExWY=HtGHc&N?`u{(=o`I3~zcm8@0I(ZX literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/d346841e57bbdd4565aa28604ad5f371cd1a96de b/tests/fuzz/corpora/fuzz-wire-closing_sig/d346841e57bbdd4565aa28604ad5f371cd1a96de new file mode 100644 index 0000000000000000000000000000000000000000..83a23bc4d9b7d83bff7b10a3eb99ef528b471169 GIT binary patch literal 81 wcmey*00Q=45<>is{tsp#i$P=*8EhH;1110e{~!AwNJcZm08j)7_5(2k06YU0wg3PC literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/d34d472c49cfc9a11f435ff3af55dc6d96453a4a b/tests/fuzz/corpora/fuzz-wire-closing_sig/d34d472c49cfc9a11f435ff3af55dc6d96453a4a new file mode 100644 index 0000000000000000000000000000000000000000..2414f9983242a546e317561e396d0776e96303e0 GIT binary patch literal 51 fcmZSh4+IP#U=Jo0!Q}t{TwofNu(h=Xsbpx literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/d366a2957c9490f208691a7aceab3c957889c908 b/tests/fuzz/corpora/fuzz-wire-closing_sig/d366a2957c9490f208691a7aceab3c957889c908 new file mode 100644 index 0000000000000000000000000000000000000000..a801be2baf00c9fb4ca46a0f19e5843d80c284ab GIT binary patch literal 50 ecmZSh4+IP#U=Jo0!Q}t{TwofNu(h=XssaE9n+IC} literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/d404bb1a44b41fd2a3bb9cf5089c6ee841705143 b/tests/fuzz/corpora/fuzz-wire-closing_sig/d404bb1a44b41fd2a3bb9cf5089c6ee841705143 new file mode 100644 index 0000000000000000000000000000000000000000..e60cee9be0a94ca61678ea2d86e7ee30514b6151 GIT binary patch literal 250 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5x5Wxgz+1lCy)ultJ^mMoc16(M*5d^qEGL4O3 s`CK4*g@IuS1A{Vr2mk;8 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/d651cccdc08d4943417b1bfa96328997d0c4bf8d b/tests/fuzz/corpora/fuzz-wire-closing_sig/d651cccdc08d4943417b1bfa96328997d0c4bf8d new file mode 100644 index 0000000000000000000000000000000000000000..7c629a80be8326fbed330857ecef99f625812c5c GIT binary patch literal 116 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj9cWyr|D@ZgRUlatlnz5n;_wcWdSFIX#3HwZwr ZF$99u!gwGWA`c`P8U8cu-OI(03jorNBz^z@ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/d85784f3dd9c0af62f73e1cbb6bebd8b9405bf0c b/tests/fuzz/corpora/fuzz-wire-closing_sig/d85784f3dd9c0af62f73e1cbb6bebd8b9405bf0c new file mode 100644 index 0000000000000000000000000000000000000000..f0755c2cc59ddefeef42da803603d2b1f44bbdb2 GIT binary patch literal 50 YcmZQzfP?@4|HIip1{#+UBFC%@0Jg0LA^-pY literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/d9799e4b269b8fa08ec89abe349db9b9c0581d78 b/tests/fuzz/corpora/fuzz-wire-closing_sig/d9799e4b269b8fa08ec89abe349db9b9c0581d78 new file mode 100644 index 0000000000000000000000000000000000000000..5ce5e9e3b4678bf301a20fa0adaf4d9a028ae546 GIT binary patch literal 65 jcmZSh|3CUa0|?lINn}D3nFD1jGT1Ww2Wt2a0w6H}CY%cx literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/d9c5e6d4a5f4927db670c85b4c2756128752a157 b/tests/fuzz/corpora/fuzz-wire-closing_sig/d9c5e6d4a5f4927db670c85b4c2756128752a157 new file mode 100644 index 0000000000000000000000000000000000000000..4f678539094f5c21abacbb354da10430252346cc GIT binary patch literal 71 kcmZSh|3CUa0|?lINeF>W3?ie*V9W3ysNp{d07*ZQC>NNK3p5YN01^zc0QZF&U;qFB literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/dfbd2e89ae2d83edf7093881b5e0c330ad4ac80a b/tests/fuzz/corpora/fuzz-wire-closing_sig/dfbd2e89ae2d83edf7093881b5e0c330ad4ac80a new file mode 100644 index 0000000000000000000000000000000000000000..9cb29a846fc98804d295ae6d293fc8b0096699b8 GIT binary patch literal 62 lcmZQzILiPBoSb!>aKI1<7iVDj{sS%!W+-!Za&qp-1pu8F24VmJ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/e27cbb1de0c5afced7cb1353a6914610bb473841 b/tests/fuzz/corpora/fuzz-wire-closing_sig/e27cbb1de0c5afced7cb1353a6914610bb473841 new file mode 100644 index 0000000000000000000000000000000000000000..e8c6d294143a0c8bd0a2223955fb5f7fd32f966e GIT binary patch literal 328 zcmY*Vu?+%24D&&Qn1Yumk(eMtRJ6|&SAj%LgLke%DVUSdzS(tyWYm)!Y4WjDbOs!It4aQ1O2d0Foe$od5r`f%Sj|Au<4CR~+I1 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/ec39f4dbf4879710568bba6b76af921f342047b0 b/tests/fuzz/corpora/fuzz-wire-closing_sig/ec39f4dbf4879710568bba6b76af921f342047b0 new file mode 100644 index 0000000000000000000000000000000000000000..2fe86c212ca2d89362b72f76ba8468c913251241 GIT binary patch literal 197 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5xRKnKQ7N{;g9a)qeq!C3TluH%_>X21|*#G}G zB82`&|NqXw&ww(#p9v_Sp~zqh)C!V0J6{yD2Fi@0KYv5EdT%j literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/ef1d542976b29f5664a280909e0ef86916fe998b b/tests/fuzz/corpora/fuzz-wire-closing_sig/ef1d542976b29f5664a280909e0ef86916fe998b new file mode 100644 index 0000000000000000000000000000000000000000..bdd46c1b5b9e79414397cee20ccf56548ea1848b GIT binary patch literal 72 zcmZSh|3CUa!~g#b3<3=741o*`dl?u48WAhVk--+M`v3p`-$DAK8EnAf E0BnE}bN~PV literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/ef7ac226efc1dcf7adf07fe86d86bceecfea28dc b/tests/fuzz/corpora/fuzz-wire-closing_sig/ef7ac226efc1dcf7adf07fe86d86bceecfea28dc new file mode 100644 index 0000000000000000000000000000000000000000..d306987a2ea8e2217347a387965008b0eb1cdc3c GIT binary patch literal 49 UcmZQzzyf$dVq91x40hxK00i&>Z2$lO literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/f0e689d8f25c5a7b35c900999ae73a05dee16c14 b/tests/fuzz/corpora/fuzz-wire-closing_sig/f0e689d8f25c5a7b35c900999ae73a05dee16c14 new file mode 100644 index 0000000000000000000000000000000000000000..0c1ce680e4acfdb3826fb6082bbddabadcd54979 GIT binary patch literal 92 zcmd-wP~Q7@FBsT@$y_xC1PBK+|AWC_2(UC)WN-*zV1RPJfoZ0HP%eV{|KAD#t_V6i literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/f1335f5f31dd6932fa9a32060617d589c4be1e66 b/tests/fuzz/corpora/fuzz-wire-closing_sig/f1335f5f31dd6932fa9a32060617d589c4be1e66 new file mode 100644 index 0000000000000000000000000000000000000000..4360ed22c0ab3f3c39e86c5d94232b41344cef33 GIT binary patch literal 152 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj{s#mw;FjuVrE)!x1T_wKdbyLT^0D^!jVXb2d< g33?V$298fWk84a<`o*@^e7E0TLWMNJL0QEI0lmGw# literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/f1d6bb4d4fc2bd68865fd2aa80d885c40e29e50d b/tests/fuzz/corpora/fuzz-wire-closing_sig/f1d6bb4d4fc2bd68865fd2aa80d885c40e29e50d new file mode 100644 index 0000000000000000000000000000000000000000..15e1cc4d4144474c86b420563390072c41ca6b57 GIT binary patch literal 57 jcmZQzWB>zZ5cwYjz+7zz56ot$V_-M}0Sy1ZNis{tsp#i$P=*8EhH;1110e{~!AwNJ11casv4X01*fC_X9}=0D2%M A@Bjb+ literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/f6a099573afd77cbc8ca4575c780d91ddf438d03 b/tests/fuzz/corpora/fuzz-wire-closing_sig/f6a099573afd77cbc8ca4575c780d91ddf438d03 new file mode 100644 index 0000000000000000000000000000000000000000..64d93dac87ed6115c193a520f915782f0fc8fe42 GIT binary patch literal 136 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj9cWyr|P@ZgRUlY`aXz5n;_wcWdSFGwpRLMK92O7(1OW{U%REhy2&cMJ06!-@K!9@n6 literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/fda2fadc6cf6edbf2caed12a026a15c5662e02d8 b/tests/fuzz/corpora/fuzz-wire-closing_sig/fda2fadc6cf6edbf2caed12a026a15c5662e02d8 new file mode 100644 index 0000000000000000000000000000000000000000..93807f27c02c4e16210fe5efd6e8b7bf19146244 GIT binary patch literal 114 zcmZQzVEF(4KLZ@FKv@9|49x4RAsj}SERezMV6}HI*Z;kHZTIfo3(^ab1X4g_q9F#^ YGpNf#K&-4RmpqV}3p4>p0SN|K0RKuBivR!s literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/fdeddd7a96a220b28b7ec14d7191150aa3f85640 b/tests/fuzz/corpora/fuzz-wire-closing_sig/fdeddd7a96a220b28b7ec14d7191150aa3f85640 new file mode 100644 index 0000000000000000000000000000000000000000..c08f2b1e00d5ad83eb8a42d0f88a47ac4d6a0cee GIT binary patch literal 116 zcmZQzVEF(4KLZp*Rx>gj2mo;c8W@<@S3`ukK$IaP1H*$mPE1aF_x|6z*LLsTy&#=c YK+RwPQ3)~&8vyDBN&$(zd$|~L0dUkFKi!ok_|+}=VEMVmP;!}&3KL;_U!1J9yhlSkbsM4DXDgAFp|@EI)z24=v6JH o6f$+D&!s<{IWGW?2jNZs;E1Ne*R>{?U4MVUo}o}XvrU@c;k- literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/ff442d9304a3ea9647bb3d9e72d43f202bf0fe73 b/tests/fuzz/corpora/fuzz-wire-closing_sig/ff442d9304a3ea9647bb3d9e72d43f202bf0fe73 new file mode 100644 index 0000000000000000000000000000000000000000..0678bd410b9ec013fdc5f58ba6684c2db2599f01 GIT binary patch literal 36 Xcmd;5*oy?Xa)BIOr~m^HfS6VQhZht( literal 0 HcmV?d00001 diff --git a/tests/fuzz/corpora/fuzz-wire-closing_sig/fffa880bba6468de437bc37b4982443b96267456 b/tests/fuzz/corpora/fuzz-wire-closing_sig/fffa880bba6468de437bc37b4982443b96267456 new file mode 100644 index 0000000000000000000000000000000000000000..2eaa630732a1f7496df11f47088d5ac93510a797 GIT binary patch literal 223 zcmZSh4+IP#U=Jo06>J$90vZ@N3iH5x5Wxgz+1lCy)ultJ^mMoc16(M*5d^qEGL4O3 q`CK4*g@IuS1A{V