diff --git a/CMakeLists.txt b/CMakeLists.txt index 304f6eb..5278567 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -129,6 +129,30 @@ if(BUILD_TREE_VIS) endif() if(BUILD_TESTING) + + # corpus tests, which are tests curated by libfuzzer. The goal is to get broad + # coverage with a small number of tests. + + file(GLOB CORPUS_TESTS ${CMAKE_SOURCE_DIR}/corpus/*) + + if(NOT APPLE) + # libfuzzer target, to generate/manage corpus + set(FUZZ_FLAGS "-fsanitize=fuzzer-no-link,address,undefined") + include(CheckCXXCompilerFlag) + cmake_push_check_state() + set(CMAKE_REQUIRED_LINK_OPTIONS -fsanitize=fuzzer-no-link) + check_cxx_compiler_flag(-fsanitize=fuzzer-no-link HAS_LIB_FUZZER) + cmake_pop_check_state() + + if(HAS_LIB_FUZZER) + add_executable(facade_fuzz FacadeFuzz.cpp) + target_link_libraries(facade_fuzz PRIVATE ${PROJECT_NAME}) + target_compile_options(facade_fuzz PRIVATE ${FUZZ_FLAGS} ${TEST_FLAGS}) + target_link_options(facade_fuzz PRIVATE ${FUZZ_FLAGS} -fsanitize=fuzzer) + + endif() + endif() + add_executable(rootset_test RootSet.cpp) target_compile_definitions(rootset_test PRIVATE ENABLE_ROOTSET_TESTS) target_compile_options(rootset_test PRIVATE -fsanitize=address,undefined @@ -156,11 +180,14 @@ if(BUILD_TESTING) ${TEST_FLAGS}) target_link_options(facade_test PRIVATE -fsanitize=address,undefined) - add_executable(facade_fuzz FacadeFuzz.cpp) - target_link_libraries(facade_fuzz PRIVATE ${PROJECT_NAME}) - target_compile_options(facade_fuzz PRIVATE -fsanitize=address,undefined,fuzzer - ${TEST_FLAGS}) - target_link_options(facade_fuzz PRIVATE -fsanitize=address,undefined,fuzzer) + # blackbox tests + add_executable(driver TestDriver.cpp FacadeFuzz.cpp) + target_compile_options(driver PRIVATE ${TEST_FLAGS}) + target_link_libraries(driver PRIVATE ${PROJECT_NAME}) + foreach(TEST ${CORPUS_TESTS}) + get_filename_component(hash ${TEST} NAME) + add_test(NAME versioned_map_blackbox_${hash} COMMAND driver ${TEST}) + endforeach() # symbol visibility tests if(NOT CMAKE_BUILD_TYPE STREQUAL Debug) diff --git a/TestDriver.cpp b/TestDriver.cpp new file mode 100644 index 0000000..b3b2081 --- /dev/null +++ b/TestDriver.cpp @@ -0,0 +1,16 @@ +#include +#include +#include + +extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); + +int main(int argc, char **argv) { + for (int i = 1; i < argc; ++i) { + std::ifstream t(argv[i], std::ios::binary); + std::stringstream buffer; + buffer << t.rdbuf(); + auto str = buffer.str(); + LLVMFuzzerTestOneInput(reinterpret_cast(str.data()), + str.size()); + } +} diff --git a/corpus/00072a3faa2f726909bab6a130ed356bf57d4cf3 b/corpus/00072a3faa2f726909bab6a130ed356bf57d4cf3 new file mode 100644 index 0000000..b191fcd Binary files /dev/null and b/corpus/00072a3faa2f726909bab6a130ed356bf57d4cf3 differ diff --git a/corpus/0184fae6b334a782d05077d5b16a3ebe9a234a60 b/corpus/0184fae6b334a782d05077d5b16a3ebe9a234a60 new file mode 100644 index 0000000..3fda379 Binary files /dev/null and b/corpus/0184fae6b334a782d05077d5b16a3ebe9a234a60 differ diff --git a/corpus/02ac957a7e36cbb4d00adff225b0b56b6b2f1309 b/corpus/02ac957a7e36cbb4d00adff225b0b56b6b2f1309 new file mode 100644 index 0000000..92075c4 Binary files /dev/null and b/corpus/02ac957a7e36cbb4d00adff225b0b56b6b2f1309 differ diff --git a/corpus/04185d9d98e9580cdcd3a3f73d6bb8a27352d466 b/corpus/04185d9d98e9580cdcd3a3f73d6bb8a27352d466 new file mode 100644 index 0000000..b1e79e0 Binary files /dev/null and b/corpus/04185d9d98e9580cdcd3a3f73d6bb8a27352d466 differ diff --git a/corpus/0676faa1578d46207bef2f75e9f9e238329eb25f b/corpus/0676faa1578d46207bef2f75e9f9e238329eb25f new file mode 100644 index 0000000..911a040 Binary files /dev/null and b/corpus/0676faa1578d46207bef2f75e9f9e238329eb25f differ diff --git a/corpus/07dc668a844b01c660ffe4ef4dcb8af3b6a1dfe1 b/corpus/07dc668a844b01c660ffe4ef4dcb8af3b6a1dfe1 new file mode 100644 index 0000000..e24c933 Binary files /dev/null and b/corpus/07dc668a844b01c660ffe4ef4dcb8af3b6a1dfe1 differ diff --git a/corpus/085143b40570520cceafb030949c4c218e4785fa b/corpus/085143b40570520cceafb030949c4c218e4785fa new file mode 100644 index 0000000..0409840 Binary files /dev/null and b/corpus/085143b40570520cceafb030949c4c218e4785fa differ diff --git a/corpus/0a7cc112d23dd451d84b658175a505e06872341f b/corpus/0a7cc112d23dd451d84b658175a505e06872341f new file mode 100644 index 0000000..3bfea67 Binary files /dev/null and b/corpus/0a7cc112d23dd451d84b658175a505e06872341f differ diff --git a/corpus/0bf8840d82ad46387d47721b008761ba6ef9e4f2 b/corpus/0bf8840d82ad46387d47721b008761ba6ef9e4f2 new file mode 100644 index 0000000..be1e1ae Binary files /dev/null and b/corpus/0bf8840d82ad46387d47721b008761ba6ef9e4f2 differ diff --git a/corpus/0c294827aa6e73287c64ef85e27f1ef6cd0ff5f4 b/corpus/0c294827aa6e73287c64ef85e27f1ef6cd0ff5f4 new file mode 100644 index 0000000..8b8265a Binary files /dev/null and b/corpus/0c294827aa6e73287c64ef85e27f1ef6cd0ff5f4 differ diff --git a/corpus/0dd0f0e533ccb1dad7debfd5057033521b766883 b/corpus/0dd0f0e533ccb1dad7debfd5057033521b766883 new file mode 100644 index 0000000..24bd771 Binary files /dev/null and b/corpus/0dd0f0e533ccb1dad7debfd5057033521b766883 differ diff --git a/corpus/0e315f698aecdc3e0823681a8b0f2d613eefc378 b/corpus/0e315f698aecdc3e0823681a8b0f2d613eefc378 new file mode 100644 index 0000000..3315aeb Binary files /dev/null and b/corpus/0e315f698aecdc3e0823681a8b0f2d613eefc378 differ diff --git a/corpus/0f18efc25b846a5b8f33728055c12c4eb2868650 b/corpus/0f18efc25b846a5b8f33728055c12c4eb2868650 new file mode 100644 index 0000000..ea2308a Binary files /dev/null and b/corpus/0f18efc25b846a5b8f33728055c12c4eb2868650 differ diff --git a/corpus/14ee793dd4e4b487b919aacc50ce844dee13e612 b/corpus/14ee793dd4e4b487b919aacc50ce844dee13e612 new file mode 100644 index 0000000..9faa35d Binary files /dev/null and b/corpus/14ee793dd4e4b487b919aacc50ce844dee13e612 differ diff --git a/corpus/160cfb69d37796e4877977753b24f67e88d7b258 b/corpus/160cfb69d37796e4877977753b24f67e88d7b258 new file mode 100644 index 0000000..0d7486a Binary files /dev/null and b/corpus/160cfb69d37796e4877977753b24f67e88d7b258 differ diff --git a/corpus/1685744123540db161a79d0146450c3214afec62 b/corpus/1685744123540db161a79d0146450c3214afec62 new file mode 100644 index 0000000..ed8909c --- /dev/null +++ b/corpus/1685744123540db161a79d0146450c3214afec62 @@ -0,0 +1 @@ +}ääää˙˙Ö˙ ˙ ˙`'h˙˙ \ No newline at end of file diff --git a/corpus/1d0b4de049e04894a7ea50904c1d568d96c49df3 b/corpus/1d0b4de049e04894a7ea50904c1d568d96c49df3 new file mode 100644 index 0000000..8e3cdef Binary files /dev/null and b/corpus/1d0b4de049e04894a7ea50904c1d568d96c49df3 differ diff --git a/corpus/1e1bef183324a3121e0020be3000c530c455d146 b/corpus/1e1bef183324a3121e0020be3000c530c455d146 new file mode 100644 index 0000000..71b5dd5 Binary files /dev/null and b/corpus/1e1bef183324a3121e0020be3000c530c455d146 differ diff --git a/corpus/21db8b14dd5d691ec36274594672c01024c32b6e b/corpus/21db8b14dd5d691ec36274594672c01024c32b6e new file mode 100644 index 0000000..403d567 Binary files /dev/null and b/corpus/21db8b14dd5d691ec36274594672c01024c32b6e differ diff --git a/corpus/22094920a590a434dfe77472413c1604801a676d b/corpus/22094920a590a434dfe77472413c1604801a676d new file mode 100644 index 0000000..c7c913d Binary files /dev/null and b/corpus/22094920a590a434dfe77472413c1604801a676d differ diff --git a/corpus/23b82ece357b367303e43b628b2d50b55a8a993c b/corpus/23b82ece357b367303e43b628b2d50b55a8a993c new file mode 100644 index 0000000..3da63d5 Binary files /dev/null and b/corpus/23b82ece357b367303e43b628b2d50b55a8a993c differ diff --git a/corpus/252709d8dc1aa74e765036c67fb6bc2acaaa6024 b/corpus/252709d8dc1aa74e765036c67fb6bc2acaaa6024 new file mode 100644 index 0000000..dd3de9c Binary files /dev/null and b/corpus/252709d8dc1aa74e765036c67fb6bc2acaaa6024 differ diff --git a/corpus/254b4d2e3508376ecd6d3358ffa35315cbb9b740 b/corpus/254b4d2e3508376ecd6d3358ffa35315cbb9b740 new file mode 100644 index 0000000..c19b6e3 Binary files /dev/null and b/corpus/254b4d2e3508376ecd6d3358ffa35315cbb9b740 differ diff --git a/corpus/257f5cffcb9e78af1ea7b6f4be9c369d8c7fa2bf b/corpus/257f5cffcb9e78af1ea7b6f4be9c369d8c7fa2bf new file mode 100644 index 0000000..4dad8f1 --- /dev/null +++ b/corpus/257f5cffcb9e78af1ea7b6f4be9c369d8c7fa2bf @@ -0,0 +1 @@ +'*9 diff --git a/corpus/27d09453912d03f18650b916066247065680d50b b/corpus/27d09453912d03f18650b916066247065680d50b new file mode 100644 index 0000000..a9c1370 --- /dev/null +++ b/corpus/27d09453912d03f18650b916066247065680d50b @@ -0,0 +1 @@ +kűÖ˙ ˙˙˙ý˙ Ó'ƒ'*˙ \ No newline at end of file diff --git a/corpus/27d9c801b9275dbc9875b2319c42dc3676c25ace b/corpus/27d9c801b9275dbc9875b2319c42dc3676c25ace new file mode 100644 index 0000000..967250d --- /dev/null +++ b/corpus/27d9c801b9275dbc9875b2319c42dc3676c25ace @@ -0,0 +1 @@ +k˙˙˙˙˙k˙˙˙˙˙˙˙S˙S˙˙˙S˙S˙ \ No newline at end of file diff --git a/corpus/29513315d2e6fa0dbde9eb6f3f3045f37bf5370c b/corpus/29513315d2e6fa0dbde9eb6f3f3045f37bf5370c new file mode 100644 index 0000000..09b0052 Binary files /dev/null and b/corpus/29513315d2e6fa0dbde9eb6f3f3045f37bf5370c differ diff --git a/corpus/2ac82d6ff123ba79b008b777c7a71a0bc9baaa28 b/corpus/2ac82d6ff123ba79b008b777c7a71a0bc9baaa28 new file mode 100644 index 0000000..f694d74 Binary files /dev/null and b/corpus/2ac82d6ff123ba79b008b777c7a71a0bc9baaa28 differ diff --git a/corpus/2b3e3193adb72c18f6cbe72ce5780ebd58fa8373 b/corpus/2b3e3193adb72c18f6cbe72ce5780ebd58fa8373 new file mode 100644 index 0000000..63d6397 Binary files /dev/null and b/corpus/2b3e3193adb72c18f6cbe72ce5780ebd58fa8373 differ diff --git a/corpus/2fd96a33418b81b25d1d74ee551453957a534542 b/corpus/2fd96a33418b81b25d1d74ee551453957a534542 new file mode 100644 index 0000000..fc275de Binary files /dev/null and b/corpus/2fd96a33418b81b25d1d74ee551453957a534542 differ diff --git a/corpus/311d85446640e6de993ab11b440163fcd3d13588 b/corpus/311d85446640e6de993ab11b440163fcd3d13588 new file mode 100644 index 0000000..20b7e98 Binary files /dev/null and b/corpus/311d85446640e6de993ab11b440163fcd3d13588 differ diff --git a/corpus/31a73816ec1fdf4948cb684cbadb35484d3fe933 b/corpus/31a73816ec1fdf4948cb684cbadb35484d3fe933 new file mode 100644 index 0000000..71f69e3 Binary files /dev/null and b/corpus/31a73816ec1fdf4948cb684cbadb35484d3fe933 differ diff --git a/corpus/31ab5cdff2ae9dd413bc20c598b1adb35cfdc015 b/corpus/31ab5cdff2ae9dd413bc20c598b1adb35cfdc015 new file mode 100644 index 0000000..7c931d4 Binary files /dev/null and b/corpus/31ab5cdff2ae9dd413bc20c598b1adb35cfdc015 differ diff --git a/corpus/31cfc030d3408e55a94ecf785652f0a2ed2ad415 b/corpus/31cfc030d3408e55a94ecf785652f0a2ed2ad415 new file mode 100644 index 0000000..da6d065 Binary files /dev/null and b/corpus/31cfc030d3408e55a94ecf785652f0a2ed2ad415 differ diff --git a/corpus/3246050a0d6208540db290ddea1da41620901c13 b/corpus/3246050a0d6208540db290ddea1da41620901c13 new file mode 100644 index 0000000..204b654 Binary files /dev/null and b/corpus/3246050a0d6208540db290ddea1da41620901c13 differ diff --git a/corpus/34e13ee0d4308f3d3b39788cd0c213af0165e92b b/corpus/34e13ee0d4308f3d3b39788cd0c213af0165e92b new file mode 100644 index 0000000..9123925 --- /dev/null +++ b/corpus/34e13ee0d4308f3d3b39788cd0c213af0165e92b @@ -0,0 +1,2 @@ +~0ââ +ââůůů˙,ůůůůůůůůůůůůůůŕůůůůů˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙ůů                                                          ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ÷˙˙˙ˆˆˆˆˆˆˆˆˆˆˆˆˆˆ˙˙˙˙˙˙˙˙ůů                                                          ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ      ˙)0÷)))))A˙˙˙˙˙â \ No newline at end of file diff --git a/corpus/36e3bf98ce4b829c5094fa162198e14bf68b248e b/corpus/36e3bf98ce4b829c5094fa162198e14bf68b248e new file mode 100644 index 0000000..7b138ed Binary files /dev/null and b/corpus/36e3bf98ce4b829c5094fa162198e14bf68b248e differ diff --git a/corpus/381342f90eb92ae0cbbcdd736e08c0d4059c082e b/corpus/381342f90eb92ae0cbbcdd736e08c0d4059c082e new file mode 100644 index 0000000..d810008 Binary files /dev/null and b/corpus/381342f90eb92ae0cbbcdd736e08c0d4059c082e differ diff --git a/corpus/38409eae93c69d0fbfb0111e3536d5a845524ca2 b/corpus/38409eae93c69d0fbfb0111e3536d5a845524ca2 new file mode 100644 index 0000000..5b68cca Binary files /dev/null and b/corpus/38409eae93c69d0fbfb0111e3536d5a845524ca2 differ diff --git a/corpus/38fa4fc9f02832d584c44bf0b6f02cf14129ca6e b/corpus/38fa4fc9f02832d584c44bf0b6f02cf14129ca6e new file mode 100644 index 0000000..f3b5379 Binary files /dev/null and b/corpus/38fa4fc9f02832d584c44bf0b6f02cf14129ca6e differ diff --git a/corpus/3b24e7ce6c24c392dc918f35e80bbab7e38bd96a b/corpus/3b24e7ce6c24c392dc918f35e80bbab7e38bd96a new file mode 100644 index 0000000..812794a Binary files /dev/null and b/corpus/3b24e7ce6c24c392dc918f35e80bbab7e38bd96a differ diff --git a/corpus/3ba2b4673107eaab9ad1e8c387e11e4bb806ab41 b/corpus/3ba2b4673107eaab9ad1e8c387e11e4bb806ab41 new file mode 100644 index 0000000..22af644 Binary files /dev/null and b/corpus/3ba2b4673107eaab9ad1e8c387e11e4bb806ab41 differ diff --git a/corpus/3d9abaa6baf82b0cbb59f70413fd8faa117406ca b/corpus/3d9abaa6baf82b0cbb59f70413fd8faa117406ca new file mode 100644 index 0000000..d81c1fc Binary files /dev/null and b/corpus/3d9abaa6baf82b0cbb59f70413fd8faa117406ca differ diff --git a/corpus/41e3f8716482c9d407eb95fdbc0c4669e6ee88f2 b/corpus/41e3f8716482c9d407eb95fdbc0c4669e6ee88f2 new file mode 100644 index 0000000..df42d05 Binary files /dev/null and b/corpus/41e3f8716482c9d407eb95fdbc0c4669e6ee88f2 differ diff --git a/corpus/4399691219ed3093e5cfe12adc91f8c93601fa2f b/corpus/4399691219ed3093e5cfe12adc91f8c93601fa2f new file mode 100644 index 0000000..9071afe Binary files /dev/null and b/corpus/4399691219ed3093e5cfe12adc91f8c93601fa2f differ diff --git a/corpus/4449b52e0cf817b9119407955a13357be9e913c9 b/corpus/4449b52e0cf817b9119407955a13357be9e913c9 new file mode 100644 index 0000000..59a35f8 Binary files /dev/null and b/corpus/4449b52e0cf817b9119407955a13357be9e913c9 differ diff --git a/corpus/45d69c24c35bfa7eb17efe327c21ba3daef90473 b/corpus/45d69c24c35bfa7eb17efe327c21ba3daef90473 new file mode 100644 index 0000000..44b2a4d Binary files /dev/null and b/corpus/45d69c24c35bfa7eb17efe327c21ba3daef90473 differ diff --git a/corpus/45fd925e60f2f786db159884ce823360ba0e04d0 b/corpus/45fd925e60f2f786db159884ce823360ba0e04d0 new file mode 100644 index 0000000..6702ebd Binary files /dev/null and b/corpus/45fd925e60f2f786db159884ce823360ba0e04d0 differ diff --git a/corpus/47eed5a9a6f0ab69128a199b1b8b8192812980bf b/corpus/47eed5a9a6f0ab69128a199b1b8b8192812980bf new file mode 100644 index 0000000..98d2bc6 Binary files /dev/null and b/corpus/47eed5a9a6f0ab69128a199b1b8b8192812980bf differ diff --git a/corpus/496207c529614e098a6ec9246e1460db9ffb7d77 b/corpus/496207c529614e098a6ec9246e1460db9ffb7d77 new file mode 100644 index 0000000..11f2936 Binary files /dev/null and b/corpus/496207c529614e098a6ec9246e1460db9ffb7d77 differ diff --git a/corpus/4982ebc9ec7dc97db3470fbfb80bf6d8889f932d b/corpus/4982ebc9ec7dc97db3470fbfb80bf6d8889f932d new file mode 100644 index 0000000..f776da0 Binary files /dev/null and b/corpus/4982ebc9ec7dc97db3470fbfb80bf6d8889f932d differ diff --git a/corpus/49b305018029301560da118b7eb4e528e4d365f3 b/corpus/49b305018029301560da118b7eb4e528e4d365f3 new file mode 100644 index 0000000..d026b7e Binary files /dev/null and b/corpus/49b305018029301560da118b7eb4e528e4d365f3 differ diff --git a/corpus/49fc54c08e7b69b6b15a8d63f523de08de432c95 b/corpus/49fc54c08e7b69b6b15a8d63f523de08de432c95 new file mode 100644 index 0000000..1d6c6c6 Binary files /dev/null and b/corpus/49fc54c08e7b69b6b15a8d63f523de08de432c95 differ diff --git a/corpus/4cfcb62cbcb213d121222e686896f8e9f9dcbecc b/corpus/4cfcb62cbcb213d121222e686896f8e9f9dcbecc new file mode 100644 index 0000000..67131d6 Binary files /dev/null and b/corpus/4cfcb62cbcb213d121222e686896f8e9f9dcbecc differ diff --git a/corpus/4cff57084360775ba88bcf4d39d45ba537abf1ab b/corpus/4cff57084360775ba88bcf4d39d45ba537abf1ab new file mode 100644 index 0000000..d5069a0 Binary files /dev/null and b/corpus/4cff57084360775ba88bcf4d39d45ba537abf1ab differ diff --git a/corpus/4ec427c6956cc1bf036086c990df48b626bb1ec6 b/corpus/4ec427c6956cc1bf036086c990df48b626bb1ec6 new file mode 100644 index 0000000..3d821c7 Binary files /dev/null and b/corpus/4ec427c6956cc1bf036086c990df48b626bb1ec6 differ diff --git a/corpus/50e87636368db5c90351f2a6dd85c3fbde28aa65 b/corpus/50e87636368db5c90351f2a6dd85c3fbde28aa65 new file mode 100644 index 0000000..832661a Binary files /dev/null and b/corpus/50e87636368db5c90351f2a6dd85c3fbde28aa65 differ diff --git a/corpus/52b083665d25c28ed0189a3e08709f9526dcfd94 b/corpus/52b083665d25c28ed0189a3e08709f9526dcfd94 new file mode 100644 index 0000000..2a67f46 Binary files /dev/null and b/corpus/52b083665d25c28ed0189a3e08709f9526dcfd94 differ diff --git a/corpus/5cbc807c269e97ef2ebd26e933133fe8573455a1 b/corpus/5cbc807c269e97ef2ebd26e933133fe8573455a1 new file mode 100644 index 0000000..e0cab67 Binary files /dev/null and b/corpus/5cbc807c269e97ef2ebd26e933133fe8573455a1 differ diff --git a/corpus/5eac43184260aaf793d526f8eb9cc2be98756986 b/corpus/5eac43184260aaf793d526f8eb9cc2be98756986 new file mode 100644 index 0000000..dd23872 Binary files /dev/null and b/corpus/5eac43184260aaf793d526f8eb9cc2be98756986 differ diff --git a/corpus/60e716e96855f67a486c2cda2b905cc294e29c1b b/corpus/60e716e96855f67a486c2cda2b905cc294e29c1b new file mode 100644 index 0000000..4b4b6f7 Binary files /dev/null and b/corpus/60e716e96855f67a486c2cda2b905cc294e29c1b differ diff --git a/corpus/61a143b5ac70679052f7269c93cd033cb414550a b/corpus/61a143b5ac70679052f7269c93cd033cb414550a new file mode 100644 index 0000000..87d1f1c Binary files /dev/null and b/corpus/61a143b5ac70679052f7269c93cd033cb414550a differ diff --git a/corpus/61efe1927e91e3ce6f8c832bdc61541ad4945ec5 b/corpus/61efe1927e91e3ce6f8c832bdc61541ad4945ec5 new file mode 100644 index 0000000..defb97f Binary files /dev/null and b/corpus/61efe1927e91e3ce6f8c832bdc61541ad4945ec5 differ diff --git a/corpus/636933d595ebc98dc1e247d9ab7e39e9070ae34f b/corpus/636933d595ebc98dc1e247d9ab7e39e9070ae34f new file mode 100644 index 0000000..5e2c8dc Binary files /dev/null and b/corpus/636933d595ebc98dc1e247d9ab7e39e9070ae34f differ diff --git a/corpus/63de9a6da942ed4735eed93bab7c5f05d50224e1 b/corpus/63de9a6da942ed4735eed93bab7c5f05d50224e1 new file mode 100644 index 0000000..5c7d186 Binary files /dev/null and b/corpus/63de9a6da942ed4735eed93bab7c5f05d50224e1 differ diff --git a/corpus/655b80aa2a9a379c3a9972aaaaa24062fd2a5c58 b/corpus/655b80aa2a9a379c3a9972aaaaa24062fd2a5c58 new file mode 100644 index 0000000..1dc4a03 Binary files /dev/null and b/corpus/655b80aa2a9a379c3a9972aaaaa24062fd2a5c58 differ diff --git a/corpus/66678e0f87b24bf99ede875ba242a6c9658a7ca5 b/corpus/66678e0f87b24bf99ede875ba242a6c9658a7ca5 new file mode 100644 index 0000000..d977975 Binary files /dev/null and b/corpus/66678e0f87b24bf99ede875ba242a6c9658a7ca5 differ diff --git a/corpus/68395e2ff513f5724cdde8abd5da08f9bbc5d9d8 b/corpus/68395e2ff513f5724cdde8abd5da08f9bbc5d9d8 new file mode 100644 index 0000000..b53e3a6 Binary files /dev/null and b/corpus/68395e2ff513f5724cdde8abd5da08f9bbc5d9d8 differ diff --git a/corpus/6888f2185e2c80b87e8a3a297366708f655cbaa5 b/corpus/6888f2185e2c80b87e8a3a297366708f655cbaa5 new file mode 100644 index 0000000..fe2327c Binary files /dev/null and b/corpus/6888f2185e2c80b87e8a3a297366708f655cbaa5 differ diff --git a/corpus/6891799e62cf5526f9497d45d024035bb2a4dd30 b/corpus/6891799e62cf5526f9497d45d024035bb2a4dd30 new file mode 100644 index 0000000..cbf8aaa Binary files /dev/null and b/corpus/6891799e62cf5526f9497d45d024035bb2a4dd30 differ diff --git a/corpus/69e004ee0b90e02fe17c6da4481b4ff99cb0430f b/corpus/69e004ee0b90e02fe17c6da4481b4ff99cb0430f new file mode 100644 index 0000000..7bbc60c Binary files /dev/null and b/corpus/69e004ee0b90e02fe17c6da4481b4ff99cb0430f differ diff --git a/corpus/6c9d1565f44cc9e9163527d7531f30157784376d b/corpus/6c9d1565f44cc9e9163527d7531f30157784376d new file mode 100644 index 0000000..bce5439 Binary files /dev/null and b/corpus/6c9d1565f44cc9e9163527d7531f30157784376d differ diff --git a/corpus/6da0bf90a8d039ad8bdc7bec14b66e1acc8116be b/corpus/6da0bf90a8d039ad8bdc7bec14b66e1acc8116be new file mode 100644 index 0000000..528df80 Binary files /dev/null and b/corpus/6da0bf90a8d039ad8bdc7bec14b66e1acc8116be differ diff --git a/corpus/6dd7a87eeaf392e27ee08982495caa1a22164a22 b/corpus/6dd7a87eeaf392e27ee08982495caa1a22164a22 new file mode 100644 index 0000000..a574b8c Binary files /dev/null and b/corpus/6dd7a87eeaf392e27ee08982495caa1a22164a22 differ diff --git a/corpus/6f0e903d3f10affe5ed8d721e75e8d548938a5ce b/corpus/6f0e903d3f10affe5ed8d721e75e8d548938a5ce new file mode 100644 index 0000000..c2b65b6 Binary files /dev/null and b/corpus/6f0e903d3f10affe5ed8d721e75e8d548938a5ce differ diff --git a/corpus/756d1da5e46f8e7a6195d67cd0cb6d53352a85bf b/corpus/756d1da5e46f8e7a6195d67cd0cb6d53352a85bf new file mode 100644 index 0000000..eb42036 Binary files /dev/null and b/corpus/756d1da5e46f8e7a6195d67cd0cb6d53352a85bf differ diff --git a/corpus/7921d8d38962cda9b762c89bcb8b591350285a29 b/corpus/7921d8d38962cda9b762c89bcb8b591350285a29 new file mode 100644 index 0000000..b66c0a5 Binary files /dev/null and b/corpus/7921d8d38962cda9b762c89bcb8b591350285a29 differ diff --git a/corpus/7a337d71dd228eb6054aa9d419e9a21b1dfa1a67 b/corpus/7a337d71dd228eb6054aa9d419e9a21b1dfa1a67 new file mode 100644 index 0000000..574f50a Binary files /dev/null and b/corpus/7a337d71dd228eb6054aa9d419e9a21b1dfa1a67 differ diff --git a/corpus/865ffb667413f7f292414fccb0dcd51284eefcd9 b/corpus/865ffb667413f7f292414fccb0dcd51284eefcd9 new file mode 100644 index 0000000..b38be2c Binary files /dev/null and b/corpus/865ffb667413f7f292414fccb0dcd51284eefcd9 differ diff --git a/corpus/897c0d2be79825506983e2177dcc46126206e71f b/corpus/897c0d2be79825506983e2177dcc46126206e71f new file mode 100644 index 0000000..de15f8b Binary files /dev/null and b/corpus/897c0d2be79825506983e2177dcc46126206e71f differ diff --git a/corpus/8b75b662017405bd86147fe782aff0ceff0566c6 b/corpus/8b75b662017405bd86147fe782aff0ceff0566c6 new file mode 100644 index 0000000..30ece4f --- /dev/null +++ b/corpus/8b75b662017405bd86147fe782aff0ceff0566c6 @@ -0,0 +1 @@ +* ˙˙˙˙˙˙˙˙ˆ'~ˆ@ď˙* ˆ˙2˙ ˙= ˙˙˙j??˙ ˙˙SS \ No newline at end of file diff --git a/corpus/8b82307b79111129fe6668c6777040ccef25ef4d b/corpus/8b82307b79111129fe6668c6777040ccef25ef4d new file mode 100644 index 0000000..da37939 Binary files /dev/null and b/corpus/8b82307b79111129fe6668c6777040ccef25ef4d differ diff --git a/corpus/8c58c20356e2d12ebd1e9a26beab57d502c2323f b/corpus/8c58c20356e2d12ebd1e9a26beab57d502c2323f new file mode 100644 index 0000000..bdcf37b Binary files /dev/null and b/corpus/8c58c20356e2d12ebd1e9a26beab57d502c2323f differ diff --git a/corpus/8e9f237928a5b7b16694e17205aa032137b8ebe7 b/corpus/8e9f237928a5b7b16694e17205aa032137b8ebe7 new file mode 100644 index 0000000..4d72201 Binary files /dev/null and b/corpus/8e9f237928a5b7b16694e17205aa032137b8ebe7 differ diff --git a/corpus/8f6a237b908a4b313227f324692d48f11fdae75c b/corpus/8f6a237b908a4b313227f324692d48f11fdae75c new file mode 100644 index 0000000..273d2ca Binary files /dev/null and b/corpus/8f6a237b908a4b313227f324692d48f11fdae75c differ diff --git a/corpus/8f9ab7db890509c10cbb5db2f801e350816e459c b/corpus/8f9ab7db890509c10cbb5db2f801e350816e459c new file mode 100644 index 0000000..e122574 Binary files /dev/null and b/corpus/8f9ab7db890509c10cbb5db2f801e350816e459c differ diff --git a/corpus/90c5c35cc6b35740b229714ba0b002c885f6a1ad b/corpus/90c5c35cc6b35740b229714ba0b002c885f6a1ad new file mode 100644 index 0000000..3a24949 Binary files /dev/null and b/corpus/90c5c35cc6b35740b229714ba0b002c885f6a1ad differ diff --git a/corpus/94f6bfa6cdc2c610017c417da73ec7a2b3da5e11 b/corpus/94f6bfa6cdc2c610017c417da73ec7a2b3da5e11 new file mode 100644 index 0000000..4d844ae Binary files /dev/null and b/corpus/94f6bfa6cdc2c610017c417da73ec7a2b3da5e11 differ diff --git a/corpus/97d1eb967c56f0182e89068449a9fcee4043f2f6 b/corpus/97d1eb967c56f0182e89068449a9fcee4043f2f6 new file mode 100644 index 0000000..6ffd62c Binary files /dev/null and b/corpus/97d1eb967c56f0182e89068449a9fcee4043f2f6 differ diff --git a/corpus/98b6c845ba4aefbc09d56e495bad5600c02a037f b/corpus/98b6c845ba4aefbc09d56e495bad5600c02a037f new file mode 100644 index 0000000..ca076cd Binary files /dev/null and b/corpus/98b6c845ba4aefbc09d56e495bad5600c02a037f differ diff --git a/corpus/9c979ae6ba00d36e0597b568f8dbf47e96df7d8d b/corpus/9c979ae6ba00d36e0597b568f8dbf47e96df7d8d new file mode 100644 index 0000000..7134594 Binary files /dev/null and b/corpus/9c979ae6ba00d36e0597b568f8dbf47e96df7d8d differ diff --git a/corpus/9d9a75d53a0b31381d7f84397a2d4e5daecc7815 b/corpus/9d9a75d53a0b31381d7f84397a2d4e5daecc7815 new file mode 100644 index 0000000..94c1f3b Binary files /dev/null and b/corpus/9d9a75d53a0b31381d7f84397a2d4e5daecc7815 differ diff --git a/corpus/a013cbf0326eb9214177b4bac8da3e7467411b6e b/corpus/a013cbf0326eb9214177b4bac8da3e7467411b6e new file mode 100644 index 0000000..7fed96c Binary files /dev/null and b/corpus/a013cbf0326eb9214177b4bac8da3e7467411b6e differ diff --git a/corpus/a242a234d0f8990210754ad54f3e2ff342133483 b/corpus/a242a234d0f8990210754ad54f3e2ff342133483 new file mode 100644 index 0000000..457d497 Binary files /dev/null and b/corpus/a242a234d0f8990210754ad54f3e2ff342133483 differ diff --git a/corpus/a4b393f095daa98d7cfc100e6da8394de60baf80 b/corpus/a4b393f095daa98d7cfc100e6da8394de60baf80 new file mode 100644 index 0000000..df373bb Binary files /dev/null and b/corpus/a4b393f095daa98d7cfc100e6da8394de60baf80 differ diff --git a/corpus/a55cb5c23065fc9974bc123cd500bc7797e910e2 b/corpus/a55cb5c23065fc9974bc123cd500bc7797e910e2 new file mode 100644 index 0000000..1350318 Binary files /dev/null and b/corpus/a55cb5c23065fc9974bc123cd500bc7797e910e2 differ diff --git a/corpus/a777881a80a2d34d586e100af32d8347cdf8738a b/corpus/a777881a80a2d34d586e100af32d8347cdf8738a new file mode 100644 index 0000000..eae76a9 Binary files /dev/null and b/corpus/a777881a80a2d34d586e100af32d8347cdf8738a differ diff --git a/corpus/a8335193c28101ffc4e16daa94be51e5f6fd13f9 b/corpus/a8335193c28101ffc4e16daa94be51e5f6fd13f9 new file mode 100644 index 0000000..aed5b52 Binary files /dev/null and b/corpus/a8335193c28101ffc4e16daa94be51e5f6fd13f9 differ diff --git a/corpus/ad23e9a7718617987f9449ae20e9406161b19be8 b/corpus/ad23e9a7718617987f9449ae20e9406161b19be8 new file mode 100644 index 0000000..d102bb1 Binary files /dev/null and b/corpus/ad23e9a7718617987f9449ae20e9406161b19be8 differ diff --git a/corpus/ad74408f5fb052e970376b7d1715ba5c9a2646c0 b/corpus/ad74408f5fb052e970376b7d1715ba5c9a2646c0 new file mode 100644 index 0000000..907046a Binary files /dev/null and b/corpus/ad74408f5fb052e970376b7d1715ba5c9a2646c0 differ diff --git a/corpus/adc83b19e793491b1c6ea0fd8b46cd9f32e592fc b/corpus/adc83b19e793491b1c6ea0fd8b46cd9f32e592fc new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/corpus/adc83b19e793491b1c6ea0fd8b46cd9f32e592fc @@ -0,0 +1 @@ + diff --git a/corpus/af55974e127bc62430ea57a7ff916b1a958947bf b/corpus/af55974e127bc62430ea57a7ff916b1a958947bf new file mode 100644 index 0000000..b8bb748 Binary files /dev/null and b/corpus/af55974e127bc62430ea57a7ff916b1a958947bf differ diff --git a/corpus/b2da1bd85dfcabba19107da580a1bd94a59a753c b/corpus/b2da1bd85dfcabba19107da580a1bd94a59a753c new file mode 100644 index 0000000..961e0da Binary files /dev/null and b/corpus/b2da1bd85dfcabba19107da580a1bd94a59a753c differ diff --git a/corpus/b90d4376882bef443be621d7e4a92174eae053ab b/corpus/b90d4376882bef443be621d7e4a92174eae053ab new file mode 100644 index 0000000..a237814 Binary files /dev/null and b/corpus/b90d4376882bef443be621d7e4a92174eae053ab differ diff --git a/corpus/bdded5c2d8d1a4e05dfa60b7cc19ad78edd5a1d7 b/corpus/bdded5c2d8d1a4e05dfa60b7cc19ad78edd5a1d7 new file mode 100644 index 0000000..b6ce4a6 Binary files /dev/null and b/corpus/bdded5c2d8d1a4e05dfa60b7cc19ad78edd5a1d7 differ diff --git a/corpus/bec45772ff98005386899b2a857b0cd4b7c917b4 b/corpus/bec45772ff98005386899b2a857b0cd4b7c917b4 new file mode 100644 index 0000000..e0c3a98 --- /dev/null +++ b/corpus/bec45772ff98005386899b2a857b0cd4b7c917b4 @@ -0,0 +1 @@ +*š˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙) \ No newline at end of file diff --git a/corpus/c283267f2e652cc01f170c6f08997dec016a943c b/corpus/c283267f2e652cc01f170c6f08997dec016a943c new file mode 100644 index 0000000..afcab1c --- /dev/null +++ b/corpus/c283267f2e652cc01f170c6f08997dec016a943c @@ -0,0 +1 @@ +›˙˙˙×˙0) [Őz'**˙ \ No newline at end of file diff --git a/corpus/c2ba3fbfb2e08a2e72ea1c41012051737c78b7bc b/corpus/c2ba3fbfb2e08a2e72ea1c41012051737c78b7bc new file mode 100644 index 0000000..d8167a4 Binary files /dev/null and b/corpus/c2ba3fbfb2e08a2e72ea1c41012051737c78b7bc differ diff --git a/corpus/c354c118d45cfc6cc499ed6b5acedca0a20f111d b/corpus/c354c118d45cfc6cc499ed6b5acedca0a20f111d new file mode 100644 index 0000000..3de0f44 Binary files /dev/null and b/corpus/c354c118d45cfc6cc499ed6b5acedca0a20f111d differ diff --git a/corpus/c41135abf998b5a2865fee3f4f979f3ba78124e1 b/corpus/c41135abf998b5a2865fee3f4f979f3ba78124e1 new file mode 100644 index 0000000..040290b Binary files /dev/null and b/corpus/c41135abf998b5a2865fee3f4f979f3ba78124e1 differ diff --git a/corpus/c505c836445f50ea98229dac1e6b8beb631803d4 b/corpus/c505c836445f50ea98229dac1e6b8beb631803d4 new file mode 100644 index 0000000..f519be0 Binary files /dev/null and b/corpus/c505c836445f50ea98229dac1e6b8beb631803d4 differ diff --git a/corpus/c59706d8ed6a21504e8f955ce6bcb2dd588801ad b/corpus/c59706d8ed6a21504e8f955ce6bcb2dd588801ad new file mode 100644 index 0000000..d5a1525 Binary files /dev/null and b/corpus/c59706d8ed6a21504e8f955ce6bcb2dd588801ad differ diff --git a/corpus/c83352adf10523110d5abc18ebf2ed96165c77b8 b/corpus/c83352adf10523110d5abc18ebf2ed96165c77b8 new file mode 100644 index 0000000..4444fba Binary files /dev/null and b/corpus/c83352adf10523110d5abc18ebf2ed96165c77b8 differ diff --git a/corpus/cafd98346c0b6a5c6a01830eb543ad5c8b1aadd3 b/corpus/cafd98346c0b6a5c6a01830eb543ad5c8b1aadd3 new file mode 100644 index 0000000..31528c0 Binary files /dev/null and b/corpus/cafd98346c0b6a5c6a01830eb543ad5c8b1aadd3 differ diff --git a/corpus/cc74c007282f59604ff307cf3927447cff2346b9 b/corpus/cc74c007282f59604ff307cf3927447cff2346b9 new file mode 100644 index 0000000..ffb4517 Binary files /dev/null and b/corpus/cc74c007282f59604ff307cf3927447cff2346b9 differ diff --git a/corpus/d3a57871526ff19095e97a354f8001bca3ae4410 b/corpus/d3a57871526ff19095e97a354f8001bca3ae4410 new file mode 100644 index 0000000..6c6d7a7 Binary files /dev/null and b/corpus/d3a57871526ff19095e97a354f8001bca3ae4410 differ diff --git a/corpus/d52bc4fa4a1f4e96412046a18125931c8e13a078 b/corpus/d52bc4fa4a1f4e96412046a18125931c8e13a078 new file mode 100644 index 0000000..873c0aa Binary files /dev/null and b/corpus/d52bc4fa4a1f4e96412046a18125931c8e13a078 differ diff --git a/corpus/d54de0905415e9e150d313dcf777270dde944ab3 b/corpus/d54de0905415e9e150d313dcf777270dde944ab3 new file mode 100644 index 0000000..c27cef9 Binary files /dev/null and b/corpus/d54de0905415e9e150d313dcf777270dde944ab3 differ diff --git a/corpus/d64691241294a08462685f9987176de1aabde97a b/corpus/d64691241294a08462685f9987176de1aabde97a new file mode 100644 index 0000000..f265251 --- /dev/null +++ b/corpus/d64691241294a08462685f9987176de1aabde97a @@ -0,0 +1 @@ +˙˙˙˙˙˙˙2˙ľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľľ˙˙ \ No newline at end of file diff --git a/corpus/d6663d0e08c72e16376eab073de19fa7b446f9f1 b/corpus/d6663d0e08c72e16376eab073de19fa7b446f9f1 new file mode 100644 index 0000000..7142d71 Binary files /dev/null and b/corpus/d6663d0e08c72e16376eab073de19fa7b446f9f1 differ diff --git a/corpus/d6ac70bce60059ca2b73095f58b84019e433ed02 b/corpus/d6ac70bce60059ca2b73095f58b84019e433ed02 new file mode 100644 index 0000000..b4bdb5f Binary files /dev/null and b/corpus/d6ac70bce60059ca2b73095f58b84019e433ed02 differ diff --git a/corpus/d79a194c88125647e9e3b56537825e5c7e1f98bb b/corpus/d79a194c88125647e9e3b56537825e5c7e1f98bb new file mode 100644 index 0000000..cd00227 --- /dev/null +++ b/corpus/d79a194c88125647e9e3b56537825e5c7e1f98bb @@ -0,0 +1,2 @@ +~0ââ +ââůůůůůůůůůůůůůůůůůůůůůůů˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙ůů                                                                    ˙) \ No newline at end of file diff --git a/corpus/d7b187ea99b77d959fc850104cf49807996c2ce2 b/corpus/d7b187ea99b77d959fc850104cf49807996c2ce2 new file mode 100644 index 0000000..d41b1eb Binary files /dev/null and b/corpus/d7b187ea99b77d959fc850104cf49807996c2ce2 differ diff --git a/corpus/d9467365481120def690c764941e4229b6e12ed1 b/corpus/d9467365481120def690c764941e4229b6e12ed1 new file mode 100644 index 0000000..056b19e Binary files /dev/null and b/corpus/d9467365481120def690c764941e4229b6e12ed1 differ diff --git a/corpus/da237093db02556c60b084cb533817cbfd70b73a b/corpus/da237093db02556c60b084cb533817cbfd70b73a new file mode 100644 index 0000000..f9ae5d5 Binary files /dev/null and b/corpus/da237093db02556c60b084cb533817cbfd70b73a differ diff --git a/corpus/dbfdc58e888d97438cc751de53797996441216e1 b/corpus/dbfdc58e888d97438cc751de53797996441216e1 new file mode 100644 index 0000000..89c57e4 Binary files /dev/null and b/corpus/dbfdc58e888d97438cc751de53797996441216e1 differ diff --git a/corpus/ddd634794dd467c9f94d44d08d7e2887d1585982 b/corpus/ddd634794dd467c9f94d44d08d7e2887d1585982 new file mode 100644 index 0000000..913c309 Binary files /dev/null and b/corpus/ddd634794dd467c9f94d44d08d7e2887d1585982 differ diff --git a/corpus/e3b2ba9751f704c22c7961b2e95bd350cd49456b b/corpus/e3b2ba9751f704c22c7961b2e95bd350cd49456b new file mode 100644 index 0000000..e887edf Binary files /dev/null and b/corpus/e3b2ba9751f704c22c7961b2e95bd350cd49456b differ diff --git a/corpus/e43bb64ce2b050136e8fe79b3befc00131e5568a b/corpus/e43bb64ce2b050136e8fe79b3befc00131e5568a new file mode 100644 index 0000000..b2eae4d Binary files /dev/null and b/corpus/e43bb64ce2b050136e8fe79b3befc00131e5568a differ diff --git a/corpus/e53e4bea8d263ca3288bde87a5cb950d579620f7 b/corpus/e53e4bea8d263ca3288bde87a5cb950d579620f7 new file mode 100644 index 0000000..c77edc9 Binary files /dev/null and b/corpus/e53e4bea8d263ca3288bde87a5cb950d579620f7 differ diff --git a/corpus/e5ebfb0a96533f088649f308daa352b966893577 b/corpus/e5ebfb0a96533f088649f308daa352b966893577 new file mode 100644 index 0000000..e3bd12c Binary files /dev/null and b/corpus/e5ebfb0a96533f088649f308daa352b966893577 differ diff --git a/corpus/e6dba04362a8c824e3e87a74f792b3076b64776d b/corpus/e6dba04362a8c824e3e87a74f792b3076b64776d new file mode 100644 index 0000000..bc08220 Binary files /dev/null and b/corpus/e6dba04362a8c824e3e87a74f792b3076b64776d differ diff --git a/corpus/e993d1ad914bfb3b8bec87b0067476961dfd8a53 b/corpus/e993d1ad914bfb3b8bec87b0067476961dfd8a53 new file mode 100644 index 0000000..a3578b7 Binary files /dev/null and b/corpus/e993d1ad914bfb3b8bec87b0067476961dfd8a53 differ diff --git a/corpus/e9dc9801374dfc695a301c1903e5f0eaaa42f8fc b/corpus/e9dc9801374dfc695a301c1903e5f0eaaa42f8fc new file mode 100644 index 0000000..df5b4f9 Binary files /dev/null and b/corpus/e9dc9801374dfc695a301c1903e5f0eaaa42f8fc differ diff --git a/corpus/ebeeffb95f0ea54e6bccf33777ef4689d786c254 b/corpus/ebeeffb95f0ea54e6bccf33777ef4689d786c254 new file mode 100644 index 0000000..62409a2 --- /dev/null +++ b/corpus/ebeeffb95f0ea54e6bccf33777ef4689d786c254 @@ -0,0 +1 @@ +~0â˙üââůůńůůůůůůůůŐ˙˙˙ůůůůůůůů˙˙˙                             ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙                                                                           ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ…ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ)A˙˙˙˙˙â \ No newline at end of file diff --git a/corpus/f0732bf2af07227214ea847e197695fe3ccc2a2f b/corpus/f0732bf2af07227214ea847e197695fe3ccc2a2f new file mode 100644 index 0000000..48481bd Binary files /dev/null and b/corpus/f0732bf2af07227214ea847e197695fe3ccc2a2f differ diff --git a/corpus/f1b3efd9582cd9dae04767ec70a9c804005110b1 b/corpus/f1b3efd9582cd9dae04767ec70a9c804005110b1 new file mode 100644 index 0000000..e87945f Binary files /dev/null and b/corpus/f1b3efd9582cd9dae04767ec70a9c804005110b1 differ diff --git a/corpus/f735777d78852f47f2b14c2d7edd4210c64900aa b/corpus/f735777d78852f47f2b14c2d7edd4210c64900aa new file mode 100644 index 0000000..c4c5aa7 Binary files /dev/null and b/corpus/f735777d78852f47f2b14c2d7edd4210c64900aa differ diff --git a/corpus/fab0cc04f2a459bc18a7e37c87967f95a8027e94 b/corpus/fab0cc04f2a459bc18a7e37c87967f95a8027e94 new file mode 100644 index 0000000..b898612 Binary files /dev/null and b/corpus/fab0cc04f2a459bc18a7e37c87967f95a8027e94 differ diff --git a/corpus/fb0dcb41141d324dd517505a9de3355f0bb7cd26 b/corpus/fb0dcb41141d324dd517505a9de3355f0bb7cd26 new file mode 100644 index 0000000..a91a53f --- /dev/null +++ b/corpus/fb0dcb41141d324dd517505a9de3355f0bb7cd26 @@ -0,0 +1 @@ +z˙˙zrzzzÉÝ?? ˙˙zrzz \ No newline at end of file diff --git a/corpus/fb22ed4dc8acb4e50faa9249d60f150efc50fcce b/corpus/fb22ed4dc8acb4e50faa9249d60f150efc50fcce new file mode 100644 index 0000000..b184e9a Binary files /dev/null and b/corpus/fb22ed4dc8acb4e50faa9249d60f150efc50fcce differ diff --git a/corpus/fc87dda8d5e82e43ceb469ac4473f9411a67b055 b/corpus/fc87dda8d5e82e43ceb469ac4473f9411a67b055 new file mode 100644 index 0000000..58c62ae Binary files /dev/null and b/corpus/fc87dda8d5e82e43ceb469ac4473f9411a67b055 differ diff --git a/corpus/fca3450dca1160e7757d00518783506ee551b7c7 b/corpus/fca3450dca1160e7757d00518783506ee551b7c7 new file mode 100644 index 0000000..269effc Binary files /dev/null and b/corpus/fca3450dca1160e7757d00518783506ee551b7c7 differ