├── .cargo └── config.toml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ ├── docker.yml │ ├── format.yml │ ├── rust.yml │ ├── static.yml │ └── udeps.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .rustfmt.toml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.Docker.md ├── README.md ├── SECURITY.md ├── assets ├── backtrace.png ├── coverage_1.png ├── coverage_2.png ├── crashed.png ├── dashboard.gif ├── dashboard.png └── phink.png ├── book ├── book.toml ├── documentation │ ├── .nojekyll │ ├── 404.html │ ├── BENCHMARKS.html │ ├── CAMPAIGN.html │ ├── CNAME │ ├── CONCEPT.html │ ├── CONFIG.html │ ├── FAQ.html │ ├── FontAwesome │ │ ├── css │ │ │ └── font-awesome.css │ │ └── fonts │ │ │ ├── FontAwesome.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── INTRO.html │ ├── INVARIANTS.html │ ├── RUNTIME.html │ ├── SEEDS.html │ ├── START.html │ ├── TECH.html │ ├── TROUBLESHOTING.html │ ├── ayu-highlight.css │ ├── book.js │ ├── clipboard.min.js │ ├── css │ │ ├── chrome.css │ │ ├── general.css │ │ ├── print.css │ │ └── variables.css │ ├── elasticlunr.min.js │ ├── favicon.png │ ├── favicon.svg │ ├── fonts │ │ ├── OPEN-SANS-LICENSE.txt │ │ ├── SOURCE-CODE-PRO-LICENSE.txt │ │ ├── fonts.css │ │ ├── open-sans-v17-all-charsets-300.woff2 │ │ ├── open-sans-v17-all-charsets-300italic.woff2 │ │ ├── open-sans-v17-all-charsets-600.woff2 │ │ ├── open-sans-v17-all-charsets-600italic.woff2 │ │ ├── open-sans-v17-all-charsets-700.woff2 │ │ ├── open-sans-v17-all-charsets-700italic.woff2 │ │ ├── open-sans-v17-all-charsets-800.woff2 │ │ ├── open-sans-v17-all-charsets-800italic.woff2 │ │ ├── open-sans-v17-all-charsets-italic.woff2 │ │ ├── open-sans-v17-all-charsets-regular.woff2 │ │ └── source-code-pro-v11-all-charsets-500.woff2 │ ├── highlight.css │ ├── highlight.js │ ├── index.html │ ├── mark.min.js │ ├── print.html │ ├── searcher.js │ ├── searchindex.js │ ├── searchindex.json │ └── tomorrow-night.css └── src │ ├── BENCHMARKS.md │ ├── CAMPAIGN.md │ ├── CONCEPT.md │ ├── CONFIG.md │ ├── FAQ.md │ ├── INTRO.md │ ├── INVARIANTS.md │ ├── RUNTIME.md │ ├── SEEDS.md │ ├── START.md │ ├── SUMMARY.md │ ├── TECH.md │ └── TROUBLESHOTING.md ├── phink.toml ├── rust-toolchain.toml ├── sample ├── README.md ├── build.sh ├── clean.sh ├── cross_message_bug │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── lib.rs ├── dns │ ├── .gitignore │ ├── .vscode │ │ └── launch.json │ ├── Cargo.lock │ ├── Cargo.toml │ └── lib.rs ├── dummy │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── lib.rs ├── multi-contract-caller │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── accumulator │ │ ├── Cargo.toml │ │ └── lib.rs │ ├── adder │ │ ├── Cargo.toml │ │ └── lib.rs │ ├── build-all.sh │ ├── get_constructor.py │ ├── lib.rs │ └── subber │ │ ├── Cargo.toml │ │ └── lib.rs └── transfer │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── lib.rs ├── scripts └── clippy_fix_fmt.sh ├── src ├── cli │ ├── config.rs │ ├── env.rs │ ├── mod.rs │ ├── ui │ │ ├── chart.rs │ │ ├── configtable.rs │ │ ├── custom.rs │ │ ├── logger.rs │ │ ├── mod.rs │ │ ├── monitor │ │ │ ├── corpus.rs │ │ │ ├── logs.rs │ │ │ └── mod.rs │ │ ├── ratatui.rs │ │ └── traits.rs │ └── ziggy.rs ├── contract │ ├── custom │ │ ├── custom.rs │ │ ├── mod.rs │ │ └── preferences.rs │ ├── mod.rs │ ├── payload.rs │ ├── remote.rs │ ├── runtime.rs │ └── selectors │ │ ├── database.rs │ │ ├── mod.rs │ │ └── selector.rs ├── cover │ ├── coverage.rs │ ├── mod.rs │ ├── report.rs │ └── trace.rs ├── fuzzer │ ├── environment.rs │ ├── fuzz.rs │ ├── manager.rs │ ├── mod.rs │ └── parser.rs ├── instrumenter │ ├── instrumentation.rs │ ├── mod.rs │ ├── path.rs │ ├── seedgen │ │ ├── generator.rs │ │ ├── mod.rs │ │ └── parser.rs │ └── traits │ │ ├── mod.rs │ │ └── visitor.rs ├── lib.rs └── main.rs └── tests ├── cli_fuzz_integration_test.rs ├── cli_instrument_integration_test.rs ├── docker └── Dockerfile ├── fixtures ├── afl.log ├── corpus │ ├── id:000001,time:0,execs:0,orig:id:000096,src:000044+000041,time:17000,execs:46472,op:splice,rep:2 │ ├── id:000001,time:0,execs:0,orig:id:000113,src:000001,time:56107,execs:111570,op:quick,pos:15,+cov │ ├── id:000001,time:0,execs:0,orig:id:000121,src:000087,time:75581,execs:136642,op:havoc,rep:2 │ ├── id:000001,time:0,execs:0,orig:id:000138,src:000126+000128,time:181049,execs:254350,op:splice,rep:1 │ ├── id:000001,time:0,execs:0,orig:id:000158,src:000157,time:550980,execs:772363,op:havoc,rep:2 │ ├── id:000001,time:0,execs:0,orig:id:000159,sync:secondaryfuzzer1,src:000164 │ ├── id:000001,time:0,execs:0,orig:id:000168,src:000008+000122,time:875994,execs:1192455,op:splice,rep:1 │ ├── id:000001,time:0,execs:0,orig:id:000172,src:000117+000031,time:932717,execs:1252877,op:splice,rep:2 │ ├── id:000002,time:0,execs:0,orig:id:000095,src:000032+000024,time:13678,execs:40998,op:splice,rep:3 │ ├── id:000002,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 │ ├── id:000002,time:0,execs:0,orig:id:000120,src:000049+000115,time:74059,execs:133925,op:splice,rep:2 │ ├── id:000002,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142 │ ├── id:000002,time:0,execs:0,orig:id:000157,src:000156,time:549214,execs:770932,op:havoc,rep:8 │ ├── id:000002,time:0,execs:0,orig:id:000158,src:000157,time:550980,execs:772363,op:havoc,rep:2 │ ├── id:000002,time:0,execs:0,orig:id:000159,sync:secondaryfuzzer1,src:000164 │ ├── id:000002,time:0,execs:0,orig:id:000171,src:000166,time:881312,execs:1198663,op:havoc,rep:8 │ ├── id:000003,time:0,execs:0,orig:id:000094,src:000032+000024,time:13673,execs:40990,op:splice,rep:2 │ ├── id:000003,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 │ ├── id:000003,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 │ ├── id:000003,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134 │ ├── id:000003,time:0,execs:0,orig:id:000156,src:000068+000149,time:545506,execs:766474,op:splice,rep:5 │ ├── id:000003,time:0,execs:0,orig:id:000157,src:000156,time:549214,execs:770932,op:havoc,rep:8 │ ├── id:000003,time:0,execs:0,orig:id:000158,src:000157,time:550980,execs:772363,op:havoc,rep:2 │ ├── id:000003,time:0,execs:0,orig:id:000170,src:000164+000011,time:881002,execs:1198589,op:splice,rep:1 │ ├── id:000004,time:0,execs:0,orig:id:000093,src:000013+000005,time:13258,execs:40682,op:splice,rep:1 │ ├── id:000004,time:0,execs:0,orig:id:000097,src:000061+000076,time:17730,execs:48469,op:splice,rep:3 │ ├── id:000004,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 │ ├── id:000004,time:0,execs:0,orig:id:000135,src:000132,time:154109,execs:232096,op:havoc,rep:5 │ ├── id:000004,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162 │ ├── id:000004,time:0,execs:0,orig:id:000156,src:000068+000149,time:545506,execs:766474,op:splice,rep:5 │ ├── id:000004,time:0,execs:0,orig:id:000157,src:000156,time:549214,execs:770932,op:havoc,rep:8 │ ├── id:000004,time:0,execs:0,orig:id:000169,src:000030,time:875325,execs:1192256,op:havoc,rep:2 │ ├── id:000005,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 │ ├── id:000005,time:0,execs:0,orig:id:000096,src:000044+000041,time:17000,execs:46472,op:splice,rep:2 │ ├── id:000005,time:0,execs:0,orig:id:000117,src:000048+000003,time:64106,execs:120685,op:splice,rep:2 │ ├── id:000005,time:0,execs:0,orig:id:000134,src:000132,time:148891,execs:230611,op:havoc,rep:6 │ ├── id:000005,time:0,execs:0,orig:id:000154,src:000149+000152,time:457671,execs:637748,op:splice,rep:4 │ ├── id:000005,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162 │ ├── id:000005,time:0,execs:0,orig:id:000156,src:000068+000149,time:545506,execs:766474,op:splice,rep:5 │ ├── id:000005,time:0,execs:0,orig:id:000167,src:000148+000163,time:846923,execs:1157232,op:splice,rep:4 │ ├── id:000006,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 │ ├── id:000006,time:0,execs:0,orig:id:000095,src:000032+000024,time:13678,execs:40998,op:splice,rep:3 │ ├── id:000006,time:0,execs:0,orig:id:000116,src:000013,time:61796,execs:117802,op:quick,pos:25,+cov │ ├── id:000006,time:0,execs:0,orig:id:000133,src:000131,time:140624,execs:226104,op:havoc,rep:7 │ ├── id:000006,time:0,execs:0,orig:id:000154,src:000149+000152,time:457671,execs:637748,op:splice,rep:4 │ ├── id:000006,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162 │ ├── id:000006,time:0,execs:0,orig:id:000166,src:000018+000020,time:827609,execs:1131103,op:splice,rep:1 │ ├── id:000007,time:0,execs:0,orig:id:000055,src:000011,time:7817,execs:29226,op:havoc,rep:4,+cov │ ├── id:000007,time:0,execs:0,orig:id:000094,src:000032+000024,time:13673,execs:40990,op:splice,rep:2 │ ├── id:000007,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 │ ├── id:000007,time:0,execs:0,orig:id:000132,src:000130+000128,time:138478,execs:224874,op:splice,rep:3 │ ├── id:000007,time:0,execs:0,orig:id:000152,src:000064+000132,time:438550,execs:607708,op:splice,rep:1 │ ├── id:000007,time:0,execs:0,orig:id:000153,sync:secondaryfuzzer1,src:000161 │ ├── id:000007,time:0,execs:0,orig:id:000154,src:000149+000152,time:457671,execs:637748,op:splice,rep:4 │ ├── id:000007,time:0,execs:0,orig:id:000165,src:000164,time:731406,execs:1006124,op:havoc,rep:3 │ ├── id:000008,time:0,execs:0,orig:id:000054,src:000011,time:7737,execs:29161,op:havoc,rep:2,+cov │ ├── id:000008,time:0,execs:0,orig:id:000093,src:000013+000005,time:13258,execs:40682,op:splice,rep:1 │ ├── id:000008,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 │ ├── id:000008,time:0,execs:0,orig:id:000131,src:000130+000128,time:138343,execs:224838,op:splice,rep:4 │ ├── id:000008,time:0,execs:0,orig:id:000151,src:000082+000012,time:399138,execs:562222,op:splice,rep:13 │ ├── id:000008,time:0,execs:0,orig:id:000152,src:000064+000132,time:438550,execs:607708,op:splice,rep:1 │ ├── id:000008,time:0,execs:0,orig:id:000153,sync:secondaryfuzzer1,src:000161 │ ├── id:000008,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171 │ ├── id:000009,time:0,execs:0,orig:id:000053,src:000011,time:7719,execs:29148,op:havoc,rep:4,+cov │ ├── id:000009,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 │ ├── id:000009,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov │ ├── id:000009,time:0,execs:0,orig:id:000130,src:000127+000047,time:134662,execs:222967,op:splice,rep:3,+cov │ ├── id:000009,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158 │ ├── id:000009,time:0,execs:0,orig:id:000151,src:000082+000012,time:399138,execs:562222,op:splice,rep:13 │ ├── id:000009,time:0,execs:0,orig:id:000152,src:000064+000132,time:438550,execs:607708,op:splice,rep:1 │ ├── id:000009,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170 │ ├── id:000010,time:0,execs:0,orig:id:000052,src:000011,time:7195,execs:28757,op:quick,pos:14 │ ├── id:000010,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 │ ├── id:000010,time:0,execs:0,orig:id:000108,src:000043+000105,time:33441,execs:78403,op:splice,rep:1 │ ├── id:000010,time:0,execs:0,orig:id:000129,src:000074+000126,time:116762,execs:197072,op:splice,rep:1 │ ├── id:000010,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157 │ ├── id:000010,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158 │ ├── id:000010,time:0,execs:0,orig:id:000151,src:000082+000012,time:399138,execs:562222,op:splice,rep:13 │ ├── id:000010,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169 │ ├── id:000011,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033 │ ├── id:000011,time:0,execs:0,orig:id:000055,src:000011,time:7817,execs:29226,op:havoc,rep:4,+cov │ ├── id:000011,time:0,execs:0,orig:id:000107,src:000013+000015,time:32430,execs:75878,op:splice,rep:1 │ ├── id:000011,time:0,execs:0,orig:id:000128,src:000125,time:109936,execs:189802,op:havoc,rep:8 │ ├── id:000011,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156 │ ├── id:000011,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157 │ ├── id:000011,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158 │ ├── id:000011,time:0,execs:0,orig:id:000161,src:000036+000012,time:637885,execs:893377,op:splice,rep:3 │ ├── id:000012,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032 │ ├── id:000012,time:0,execs:0,orig:id:000054,src:000011,time:7737,execs:29161,op:havoc,rep:2,+cov │ ├── id:000012,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 │ ├── id:000012,time:0,execs:0,orig:id:000127,src:000082,time:106869,execs:185822,op:havoc,rep:2 │ ├── id:000012,time:0,execs:0,orig:id:000147,src:000144,time:366624,execs:514422,op:havoc,rep:4 │ ├── id:000012,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156 │ ├── id:000012,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157 │ ├── id:000012,time:0,execs:0,orig:id:000160,src:000015,time:629061,execs:883203,op:quick,pos:9,+cov │ ├── id:000013,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 │ ├── id:000013,time:0,execs:0,orig:id:000053,src:000011,time:7719,execs:29148,op:havoc,rep:4,+cov │ ├── id:000013,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 │ ├── id:000013,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127 │ ├── id:000013,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143 │ ├── id:000013,time:0,execs:0,orig:id:000146,src:000143,time:284372,execs:388388,op:havoc,rep:4 │ ├── id:000013,time:0,execs:0,orig:id:000147,src:000144,time:366624,execs:514422,op:havoc,rep:4 │ ├── id:000013,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156 │ ├── id:000014,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov │ ├── id:000014,time:0,execs:0,orig:id:000052,src:000011,time:7195,execs:28757,op:quick,pos:14 │ ├── id:000014,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 │ ├── id:000014,time:0,execs:0,orig:id:000125,src:000124+000043,time:102212,execs:178960,op:splice,rep:3 │ ├── id:000014,time:0,execs:0,orig:id:000138,src:000126+000128,time:181049,execs:254350,op:splice,rep:1 │ ├── id:000014,time:0,execs:0,orig:id:000145,src:000144+000085,time:278038,execs:378665,op:splice,rep:5 │ ├── id:000014,time:0,execs:0,orig:id:000146,src:000143,time:284372,execs:388388,op:havoc,rep:4 │ ├── id:000014,time:0,execs:0,orig:id:000147,src:000144,time:366624,execs:514422,op:havoc,rep:4 │ ├── id:000015,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 │ ├── id:000015,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033 │ ├── id:000015,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 │ ├── id:000015,time:0,execs:0,orig:id:000124,src:000123,time:99616,execs:176758,op:havoc,rep:1 │ ├── id:000015,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142 │ ├── id:000015,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov │ ├── id:000015,time:0,execs:0,orig:id:000145,src:000144+000085,time:278038,execs:378665,op:splice,rep:5 │ ├── id:000015,time:0,execs:0,orig:id:000146,src:000143,time:284372,execs:388388,op:havoc,rep:4 │ ├── id:000016,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov │ ├── id:000016,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032 │ ├── id:000016,time:0,execs:0,orig:id:000102,src:000041+000031,time:28444,execs:70286,op:splice,rep:12 │ ├── id:000016,time:0,execs:0,orig:id:000123,src:000098+000026,time:96774,execs:173854,op:splice,rep:1 │ ├── id:000016,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134 │ ├── id:000016,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148 │ ├── id:000016,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov │ ├── id:000016,time:0,execs:0,orig:id:000145,src:000144+000085,time:278038,execs:378665,op:splice,rep:5 │ ├── id:000017,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 │ ├── id:000017,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 │ ├── id:000017,time:0,execs:0,orig:id:000101,src:000068+000064,time:25552,execs:64717,op:splice,rep:4 │ ├── id:000017,time:0,execs:0,orig:id:000114,src:000001,time:57206,execs:112017,op:havoc,rep:2 │ ├── id:000017,time:0,execs:0,orig:id:000135,src:000132,time:154109,execs:232096,op:havoc,rep:5 │ ├── id:000017,time:0,execs:0,orig:id:000142,src:000112,time:259217,execs:349701,op:havoc,rep:1 │ ├── id:000017,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148 │ ├── id:000017,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov │ ├── id:000018,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 │ ├── id:000018,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov │ ├── id:000018,time:0,execs:0,orig:id:000100,src:000061+000093,time:24334,execs:63733,op:splice,rep:7 │ ├── id:000018,time:0,execs:0,orig:id:000113,src:000001,time:56107,execs:111570,op:quick,pos:15,+cov │ ├── id:000018,time:0,execs:0,orig:id:000134,src:000132,time:148891,execs:230611,op:havoc,rep:6 │ ├── id:000018,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147 │ ├── id:000018,time:0,execs:0,orig:id:000142,src:000112,time:259217,execs:349701,op:havoc,rep:1 │ ├── id:000018,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148 │ ├── id:000019,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov │ ├── id:000019,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 │ ├── id:000019,time:0,execs:0,orig:id:000099,src:000045+000071,time:19432,execs:53917,op:splice,rep:2,+cov │ ├── id:000019,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 │ ├── id:000019,time:0,execs:0,orig:id:000133,src:000131,time:140624,execs:226104,op:havoc,rep:7 │ ├── id:000019,time:0,execs:0,orig:id:000140,src:000125+000108,time:227546,execs:310389,op:splice,rep:3 │ ├── id:000019,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147 │ ├── id:000019,time:0,execs:0,orig:id:000142,src:000112,time:259217,execs:349701,op:havoc,rep:1 │ ├── id:000020,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 │ ├── id:000020,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov │ ├── id:000020,time:0,execs:0,orig:id:000098,src:000024+000073,time:18952,execs:52561,op:splice,rep:4 │ ├── id:000020,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 │ ├── id:000020,time:0,execs:0,orig:id:000122,src:000005,time:81494,execs:148794,op:havoc,rep:2 │ ├── id:000020,time:0,execs:0,orig:id:000132,src:000130+000128,time:138478,execs:224874,op:splice,rep:3 │ ├── id:000020,time:0,execs:0,orig:id:000140,src:000125+000108,time:227546,execs:310389,op:splice,rep:3 │ ├── id:000020,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147 │ ├── id:000021,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 │ ├── id:000021,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 │ ├── id:000021,time:0,execs:0,orig:id:000092,src:000052+000080,time:12498,execs:37731,op:splice,rep:2 │ ├── id:000021,time:0,execs:0,orig:id:000097,src:000061+000076,time:17730,execs:48469,op:splice,rep:3 │ ├── id:000021,time:0,execs:0,orig:id:000121,src:000087,time:75581,execs:136642,op:havoc,rep:2 │ ├── id:000021,time:0,execs:0,orig:id:000122,src:000005,time:81494,execs:148794,op:havoc,rep:2 │ ├── id:000021,time:0,execs:0,orig:id:000131,src:000130+000128,time:138343,execs:224838,op:splice,rep:4 │ ├── id:000021,time:0,execs:0,orig:id:000140,src:000125+000108,time:227546,execs:310389,op:splice,rep:3 │ ├── id:000022,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 │ ├── id:000022,time:0,execs:0,orig:id:000091,src:000045+000064,time:12286,execs:37245,op:splice,rep:7 │ ├── id:000022,time:0,execs:0,orig:id:000096,src:000044+000041,time:17000,execs:46472,op:splice,rep:2 │ ├── id:000022,time:0,execs:0,orig:id:000120,src:000049+000115,time:74059,execs:133925,op:splice,rep:2 │ ├── id:000022,time:0,execs:0,orig:id:000121,src:000087,time:75581,execs:136642,op:havoc,rep:2 │ ├── id:000022,time:0,execs:0,orig:id:000122,src:000005,time:81494,execs:148794,op:havoc,rep:2 │ ├── id:000022,time:0,execs:0,orig:id:000130,src:000127+000047,time:134662,execs:222967,op:splice,rep:3,+cov │ ├── id:000022,time:0,execs:0,orig:init │ ├── id:000023,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 │ ├── id:000023,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov │ ├── id:000023,time:0,execs:0,orig:id:000090,src:000041+000077,time:12144,execs:36915,op:splice,rep:3 │ ├── id:000023,time:0,execs:0,orig:id:000095,src:000032+000024,time:13678,execs:40998,op:splice,rep:3 │ ├── id:000023,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 │ ├── id:000023,time:0,execs:0,orig:id:000120,src:000049+000115,time:74059,execs:133925,op:splice,rep:2 │ ├── id:000023,time:0,execs:0,orig:id:000121,src:000087,time:75581,execs:136642,op:havoc,rep:2 │ ├── id:000023,time:0,execs:0,orig:id:000129,src:000074+000126,time:116762,execs:197072,op:splice,rep:1 │ ├── id:000024,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov │ ├── id:000024,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 │ ├── id:000024,time:0,execs:0,orig:id:000089,src:000040+000075,time:12048,execs:36618,op:splice,rep:10 │ ├── id:000024,time:0,execs:0,orig:id:000094,src:000032+000024,time:13673,execs:40990,op:splice,rep:2 │ ├── id:000024,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 │ ├── id:000024,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 │ ├── id:000024,time:0,execs:0,orig:id:000120,src:000049+000115,time:74059,execs:133925,op:splice,rep:2 │ ├── id:000024,time:0,execs:0,orig:id:000128,src:000125,time:109936,execs:189802,op:havoc,rep:8 │ ├── id:000025,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1 │ ├── id:000025,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 │ ├── id:000025,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 │ ├── id:000025,time:0,execs:0,orig:id:000093,src:000013+000005,time:13258,execs:40682,op:splice,rep:1 │ ├── id:000025,time:0,execs:0,orig:id:000117,src:000048+000003,time:64106,execs:120685,op:splice,rep:2 │ ├── id:000025,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 │ ├── id:000025,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 │ ├── id:000025,time:0,execs:0,orig:id:000127,src:000082,time:106869,execs:185822,op:havoc,rep:2 │ ├── id:000026,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 │ ├── id:000026,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 │ ├── id:000026,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 │ ├── id:000026,time:0,execs:0,orig:id:000116,src:000013,time:61796,execs:117802,op:quick,pos:25,+cov │ ├── id:000026,time:0,execs:0,orig:id:000117,src:000048+000003,time:64106,execs:120685,op:splice,rep:2 │ ├── id:000026,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 │ ├── id:000026,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127 │ ├── id:000026,time:0,execs:0,orig:init │ ├── id:000027,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 │ ├── id:000027,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2 │ ├── id:000027,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 │ ├── id:000027,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 │ ├── id:000027,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 │ ├── id:000027,time:0,execs:0,orig:id:000116,src:000013,time:61796,execs:117802,op:quick,pos:25,+cov │ ├── id:000027,time:0,execs:0,orig:id:000117,src:000048+000003,time:64106,execs:120685,op:splice,rep:2 │ ├── id:000027,time:0,execs:0,orig:id:000125,src:000124+000043,time:102212,execs:178960,op:splice,rep:3 │ ├── id:000028,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov │ ├── id:000028,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov │ ├── id:000028,time:0,execs:0,orig:id:000055,src:000011,time:7817,execs:29226,op:havoc,rep:4,+cov │ ├── id:000028,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 │ ├── id:000028,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 │ ├── id:000028,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 │ ├── id:000028,time:0,execs:0,orig:id:000116,src:000013,time:61796,execs:117802,op:quick,pos:25,+cov │ ├── id:000028,time:0,execs:0,orig:id:000124,src:000123,time:99616,execs:176758,op:havoc,rep:1 │ ├── id:000029,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1 │ ├── id:000029,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1 │ ├── id:000029,time:0,execs:0,orig:id:000054,src:000011,time:7737,execs:29161,op:havoc,rep:2,+cov │ ├── id:000029,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 │ ├── id:000029,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov │ ├── id:000029,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 │ ├── id:000029,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 │ ├── id:000029,time:0,execs:0,orig:id:000123,src:000098+000026,time:96774,execs:173854,op:splice,rep:1 │ ├── id:000030,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 │ ├── id:000030,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1 │ ├── id:000030,time:0,execs:0,orig:id:000053,src:000011,time:7719,execs:29148,op:havoc,rep:4,+cov │ ├── id:000030,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 │ ├── id:000030,time:0,execs:0,orig:id:000108,src:000043+000105,time:33441,execs:78403,op:splice,rep:1 │ ├── id:000030,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov │ ├── id:000030,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 │ ├── id:000030,time:0,execs:0,orig:id:000114,src:000001,time:57206,execs:112017,op:havoc,rep:2 │ ├── id:000031,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2 │ ├── id:000031,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1 │ ├── id:000031,time:0,execs:0,orig:id:000052,src:000011,time:7195,execs:28757,op:quick,pos:14 │ ├── id:000031,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 │ ├── id:000031,time:0,execs:0,orig:id:000107,src:000013+000015,time:32430,execs:75878,op:splice,rep:1 │ ├── id:000031,time:0,execs:0,orig:id:000108,src:000043+000105,time:33441,execs:78403,op:splice,rep:1 │ ├── id:000031,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov │ ├── id:000031,time:0,execs:0,orig:id:000113,src:000001,time:56107,execs:111570,op:quick,pos:15,+cov │ ├── id:000032,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov │ ├── id:000032,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2 │ ├── id:000032,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033 │ ├── id:000032,time:0,execs:0,orig:id:000081,src:000069+000073,time:11308,execs:34703,op:splice,rep:5 │ ├── id:000032,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 │ ├── id:000032,time:0,execs:0,orig:id:000107,src:000013+000015,time:32430,execs:75878,op:splice,rep:1 │ ├── id:000032,time:0,execs:0,orig:id:000108,src:000043+000105,time:33441,execs:78403,op:splice,rep:1 │ ├── id:000032,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 │ ├── id:000033,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1 │ ├── id:000033,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2 │ ├── id:000033,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032 │ ├── id:000033,time:0,execs:0,orig:id:000080,src:000060+000077,time:11173,execs:34551,op:splice,rep:5 │ ├── id:000033,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 │ ├── id:000033,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 │ ├── id:000033,time:0,execs:0,orig:id:000107,src:000013+000015,time:32430,execs:75878,op:splice,rep:1 │ ├── id:000033,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 │ ├── id:000034,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1 │ ├── id:000034,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 │ ├── id:000034,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 │ ├── id:000034,time:0,execs:0,orig:id:000079,src:000056,time:10635,execs:34084,op:havoc,rep:1,+cov │ ├── id:000034,time:0,execs:0,orig:id:000097,src:000061+000076,time:17730,execs:48469,op:splice,rep:3 │ ├── id:000034,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 │ ├── id:000034,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 │ ├── id:000034,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 │ ├── id:000035,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1 │ ├── id:000035,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2 │ ├── id:000035,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov │ ├── id:000035,time:0,execs:0,orig:id:000078,src:000053+000069,time:10560,execs:33960,op:splice,rep:1 │ ├── id:000035,time:0,execs:0,orig:id:000096,src:000044+000041,time:17000,execs:46472,op:splice,rep:2 │ ├── id:000035,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 │ ├── id:000035,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 │ ├── id:000035,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 │ ├── id:000036,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2 │ ├── id:000036,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2 │ ├── id:000036,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 │ ├── id:000036,time:0,execs:0,orig:id:000077,src:000053+000072,time:10528,execs:33916,op:splice,rep:3 │ ├── id:000036,time:0,execs:0,orig:id:000095,src:000032+000024,time:13678,execs:40998,op:splice,rep:3 │ ├── id:000036,time:0,execs:0,orig:id:000102,src:000041+000031,time:28444,execs:70286,op:splice,rep:12 │ ├── id:000036,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 │ ├── id:000036,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 │ ├── id:000037,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2 │ ├── id:000037,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov │ ├── id:000037,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov │ ├── id:000037,time:0,execs:0,orig:id:000076,src:000052+000065,time:10460,execs:33751,op:splice,rep:1 │ ├── id:000037,time:0,execs:0,orig:id:000094,src:000032+000024,time:13673,execs:40990,op:splice,rep:2 │ ├── id:000037,time:0,execs:0,orig:id:000101,src:000068+000064,time:25552,execs:64717,op:splice,rep:4 │ ├── id:000037,time:0,execs:0,orig:id:000102,src:000041+000031,time:28444,execs:70286,op:splice,rep:12 │ ├── id:000037,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 │ ├── id:000038,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 │ ├── id:000038,time:0,execs:0,orig:id:000016,src:000000,time:751,execs:3712,op:havoc,rep:2,+cov │ ├── id:000038,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 │ ├── id:000038,time:0,execs:0,orig:id:000075,src:000040+000006,time:10101,execs:32921,op:splice,rep:16 │ ├── id:000038,time:0,execs:0,orig:id:000093,src:000013+000005,time:13258,execs:40682,op:splice,rep:1 │ ├── id:000038,time:0,execs:0,orig:id:000100,src:000061+000093,time:24334,execs:63733,op:splice,rep:7 │ ├── id:000038,time:0,execs:0,orig:id:000101,src:000068+000064,time:25552,execs:64717,op:splice,rep:4 │ ├── id:000038,time:0,execs:0,orig:id:000102,src:000041+000031,time:28444,execs:70286,op:splice,rep:12 │ ├── id:000039,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2 │ ├── id:000039,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2 │ ├── id:000039,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 │ ├── id:000039,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 │ ├── id:000039,time:0,execs:0,orig:id:000074,src:000040+000001,time:10086,execs:32874,op:splice,rep:6 │ ├── id:000039,time:0,execs:0,orig:id:000099,src:000045+000071,time:19432,execs:53917,op:splice,rep:2,+cov │ ├── id:000039,time:0,execs:0,orig:id:000100,src:000061+000093,time:24334,execs:63733,op:splice,rep:7 │ ├── id:000039,time:0,execs:0,orig:id:000101,src:000068+000064,time:25552,execs:64717,op:splice,rep:4 │ ├── id:000040,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2 │ ├── id:000040,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2 │ ├── id:000040,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov │ ├── id:000040,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 │ ├── id:000040,time:0,execs:0,orig:id:000073,src:000038+000070,time:9659,execs:32329,op:splice,rep:2 │ ├── id:000040,time:0,execs:0,orig:id:000098,src:000024+000073,time:18952,execs:52561,op:splice,rep:4 │ ├── id:000040,time:0,execs:0,orig:id:000099,src:000045+000071,time:19432,execs:53917,op:splice,rep:2,+cov │ ├── id:000040,time:0,execs:0,orig:id:000100,src:000061+000093,time:24334,execs:63733,op:splice,rep:7 │ ├── id:000041,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov │ ├── id:000041,time:0,execs:0,orig:id:000019,src:000002,time:2721,execs:13019,op:quick,pos:9,+cov │ ├── id:000041,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 │ ├── id:000041,time:0,execs:0,orig:id:000055,src:000011,time:7817,execs:29226,op:havoc,rep:4,+cov │ ├── id:000041,time:0,execs:0,orig:id:000072,src:000038+000070,time:9655,execs:32325,op:splice,rep:2 │ ├── id:000041,time:0,execs:0,orig:id:000092,src:000052+000080,time:12498,execs:37731,op:splice,rep:2 │ ├── id:000041,time:0,execs:0,orig:id:000098,src:000024+000073,time:18952,execs:52561,op:splice,rep:4 │ ├── id:000041,time:0,execs:0,orig:id:000099,src:000045+000071,time:19432,execs:53917,op:splice,rep:2,+cov │ ├── id:000042,time:0,execs:0,orig:id:000016,src:000000,time:751,execs:3712,op:havoc,rep:2,+cov │ ├── id:000042,time:0,execs:0,orig:id:000020,src:000002,time:2723,execs:13025,op:flip1,pos:9,+cov │ ├── id:000042,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 │ ├── id:000042,time:0,execs:0,orig:id:000054,src:000011,time:7737,execs:29161,op:havoc,rep:2,+cov │ ├── id:000042,time:0,execs:0,orig:id:000071,src:000038+000015,time:9596,execs:32214,op:splice,rep:1 │ ├── id:000042,time:0,execs:0,orig:id:000091,src:000045+000064,time:12286,execs:37245,op:splice,rep:7 │ ├── id:000042,time:0,execs:0,orig:id:000092,src:000052+000080,time:12498,execs:37731,op:splice,rep:2 │ ├── id:000042,time:0,execs:0,orig:id:000098,src:000024+000073,time:18952,execs:52561,op:splice,rep:4 │ ├── id:000043,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2 │ ├── id:000043,time:0,execs:0,orig:id:000021,src:000002,time:2728,execs:13033,op:flip1,pos:9,+cov │ ├── id:000043,time:0,execs:0,orig:id:000053,src:000011,time:7719,execs:29148,op:havoc,rep:4,+cov │ ├── id:000043,time:0,execs:0,orig:id:000070,src:000019+000067,time:9260,execs:31406,op:splice,rep:1 │ ├── id:000043,time:0,execs:0,orig:id:000090,src:000041+000077,time:12144,execs:36915,op:splice,rep:3 │ ├── id:000043,time:0,execs:0,orig:id:000091,src:000045+000064,time:12286,execs:37245,op:splice,rep:7 │ ├── id:000043,time:0,execs:0,orig:id:000092,src:000052+000080,time:12498,execs:37731,op:splice,rep:2 │ ├── id:000043,time:0,execs:0,orig:init │ ├── id:000044,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 │ ├── id:000044,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2 │ ├── id:000044,time:0,execs:0,orig:id:000022,src:000002,time:2736,execs:13038,op:flip1,pos:9,+cov │ ├── id:000044,time:0,execs:0,orig:id:000052,src:000011,time:7195,execs:28757,op:quick,pos:14 │ ├── id:000044,time:0,execs:0,orig:id:000069,src:000009+000067,time:9203,execs:31226,op:splice,rep:2 │ ├── id:000044,time:0,execs:0,orig:id:000089,src:000040+000075,time:12048,execs:36618,op:splice,rep:10 │ ├── id:000044,time:0,execs:0,orig:id:000090,src:000041+000077,time:12144,execs:36915,op:splice,rep:3 │ ├── id:000044,time:0,execs:0,orig:id:000091,src:000045+000064,time:12286,execs:37245,op:splice,rep:7 │ ├── id:000045,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov │ ├── id:000045,time:0,execs:0,orig:id:000019,src:000002,time:2721,execs:13019,op:quick,pos:9,+cov │ ├── id:000045,time:0,execs:0,orig:id:000023,src:000002,time:2739,execs:13048,op:flip2,pos:9,+cov │ ├── id:000045,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033 │ ├── id:000045,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 │ ├── id:000045,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 │ ├── id:000045,time:0,execs:0,orig:id:000089,src:000040+000075,time:12048,execs:36618,op:splice,rep:10 │ ├── id:000045,time:0,execs:0,orig:id:000090,src:000041+000077,time:12144,execs:36915,op:splice,rep:3 │ ├── id:000046,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1 │ ├── id:000046,time:0,execs:0,orig:id:000020,src:000002,time:2723,execs:13025,op:flip1,pos:9,+cov │ ├── id:000046,time:0,execs:0,orig:id:000024,src:000002,time:2740,execs:13052,op:flip2,pos:9,+cov │ ├── id:000046,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032 │ ├── id:000046,time:0,execs:0,orig:id:000067,src:000008+000066,time:9112,execs:31026,op:splice,rep:4 │ ├── id:000046,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 │ ├── id:000046,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 │ ├── id:000046,time:0,execs:0,orig:id:000089,src:000040+000075,time:12048,execs:36618,op:splice,rep:10 │ ├── id:000047,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 │ ├── id:000047,time:0,execs:0,orig:id:000021,src:000002,time:2728,execs:13033,op:flip1,pos:9,+cov │ ├── id:000047,time:0,execs:0,orig:id:000025,src:000002,time:2743,execs:13060,op:flip4,pos:9,+cov │ ├── id:000047,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 │ ├── id:000047,time:0,execs:0,orig:id:000066,src:000004+000060,time:8915,execs:30785,op:splice,rep:2 │ ├── id:000047,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 │ ├── id:000047,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 │ ├── id:000047,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 │ ├── id:000048,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2 │ ├── id:000048,time:0,execs:0,orig:id:000022,src:000002,time:2736,execs:13038,op:flip1,pos:9,+cov │ ├── id:000048,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 │ ├── id:000048,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov │ ├── id:000048,time:0,execs:0,orig:id:000065,src:000004+000058,time:8800,execs:30662,op:splice,rep:4 │ ├── id:000048,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 │ ├── id:000048,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 │ ├── id:000048,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 │ ├── id:000049,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov │ ├── id:000049,time:0,execs:0,orig:id:000023,src:000002,time:2739,execs:13048,op:flip2,pos:9,+cov │ ├── id:000049,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 │ ├── id:000049,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 │ ├── id:000049,time:0,execs:0,orig:id:000064,src:000004+000058,time:8796,execs:30657,op:splice,rep:3 │ ├── id:000049,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 │ ├── id:000049,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 │ ├── id:000049,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 │ ├── id:000050,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1 │ ├── id:000050,time:0,execs:0,orig:id:000024,src:000002,time:2740,execs:13052,op:flip2,pos:9,+cov │ ├── id:000050,time:0,execs:0,orig:id:000028,src:000002,time:2855,execs:13578,op:havoc,rep:1,+cov │ ├── id:000050,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov │ ├── id:000050,time:0,execs:0,orig:id:000063,src:000003+000059,time:8583,execs:30477,op:splice,rep:12 │ ├── id:000050,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 │ ├── id:000050,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 │ ├── id:000050,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 │ ├── id:000051,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1 │ ├── id:000051,time:0,execs:0,orig:id:000025,src:000002,time:2743,execs:13060,op:flip4,pos:9,+cov │ ├── id:000051,time:0,execs:0,orig:id:000029,src:000002,time:2860,execs:13590,op:havoc,rep:4,+cov │ ├── id:000051,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 │ ├── id:000051,time:0,execs:0,orig:id:000062,src:000003+000014,time:8561,execs:30410,op:splice,rep:2 │ ├── id:000051,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 │ ├── id:000051,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 │ ├── id:000051,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 │ ├── id:000052,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1 │ ├── id:000052,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 │ ├── id:000052,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 │ ├── id:000052,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 │ ├── id:000052,time:0,execs:0,orig:id:000061,src:000002+000059,time:8351,execs:30205,op:splice,rep:1,+cov │ ├── id:000052,time:0,execs:0,orig:id:000081,src:000069+000073,time:11308,execs:34703,op:splice,rep:5 │ ├── id:000052,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 │ ├── id:000052,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 │ ├── id:000053,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2 │ ├── id:000053,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 │ ├── id:000053,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 │ ├── id:000053,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov │ ├── id:000053,time:0,execs:0,orig:id:000060,src:000002+000059,time:8310,execs:30194,op:splice,rep:2,+cov │ ├── id:000053,time:0,execs:0,orig:id:000080,src:000060+000077,time:11173,execs:34551,op:splice,rep:5 │ ├── id:000053,time:0,execs:0,orig:id:000081,src:000069+000073,time:11308,execs:34703,op:splice,rep:5 │ ├── id:000053,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 │ ├── id:000054,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2 │ ├── id:000054,time:0,execs:0,orig:id:000028,src:000002,time:2855,execs:13578,op:havoc,rep:1,+cov │ ├── id:000054,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 │ ├── id:000054,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 │ ├── id:000054,time:0,execs:0,orig:id:000059,src:000002+000058,time:8210,execs:30143,op:splice,rep:1 │ ├── id:000054,time:0,execs:0,orig:id:000079,src:000056,time:10635,execs:34084,op:havoc,rep:1,+cov │ ├── id:000054,time:0,execs:0,orig:id:000080,src:000060+000077,time:11173,execs:34551,op:splice,rep:5 │ ├── id:000054,time:0,execs:0,orig:id:000081,src:000069+000073,time:11308,execs:34703,op:splice,rep:5 │ ├── id:000055,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 │ ├── id:000055,time:0,execs:0,orig:id:000029,src:000002,time:2860,execs:13590,op:havoc,rep:4,+cov │ ├── id:000055,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 │ ├── id:000055,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 │ ├── id:000055,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 │ ├── id:000055,time:0,execs:0,orig:id:000078,src:000053+000069,time:10560,execs:33960,op:splice,rep:1 │ ├── id:000055,time:0,execs:0,orig:id:000079,src:000056,time:10635,execs:34084,op:havoc,rep:1,+cov │ ├── id:000055,time:0,execs:0,orig:id:000080,src:000060+000077,time:11173,execs:34551,op:splice,rep:5 │ ├── id:000056,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2 │ ├── id:000056,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 │ ├── id:000056,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 │ ├── id:000056,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 │ ├── id:000056,time:0,execs:0,orig:id:000077,src:000053+000072,time:10528,execs:33916,op:splice,rep:3 │ ├── id:000056,time:0,execs:0,orig:id:000078,src:000053+000069,time:10560,execs:33960,op:splice,rep:1 │ ├── id:000056,time:0,execs:0,orig:id:000079,src:000056,time:10635,execs:34084,op:havoc,rep:1,+cov │ ├── id:000056,time:0,execs:0,orig:init │ ├── id:000057,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 │ ├── id:000057,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2 │ ├── id:000057,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 │ ├── id:000057,time:0,execs:0,orig:id:000035,src:000002,time:3095,execs:14435,op:havoc,rep:2,+cov │ ├── id:000057,time:0,execs:0,orig:id:000039,src:000002,time:3595,execs:16683,op:havoc,rep:4,+cov │ ├── id:000057,time:0,execs:0,orig:id:000076,src:000052+000065,time:10460,execs:33751,op:splice,rep:1 │ ├── id:000057,time:0,execs:0,orig:id:000077,src:000053+000072,time:10528,execs:33916,op:splice,rep:3 │ ├── id:000057,time:0,execs:0,orig:id:000078,src:000053+000069,time:10560,execs:33960,op:splice,rep:1 │ ├── id:000058,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov │ ├── id:000058,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov │ ├── id:000058,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 │ ├── id:000058,time:0,execs:0,orig:id:000036,src:000002,time:3333,execs:15490,op:havoc,rep:3,+cov │ ├── id:000058,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 │ ├── id:000058,time:0,execs:0,orig:id:000075,src:000040+000006,time:10101,execs:32921,op:splice,rep:16 │ ├── id:000058,time:0,execs:0,orig:id:000076,src:000052+000065,time:10460,execs:33751,op:splice,rep:1 │ ├── id:000058,time:0,execs:0,orig:id:000077,src:000053+000072,time:10528,execs:33916,op:splice,rep:3 │ ├── id:000059,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1 │ ├── id:000059,time:0,execs:0,orig:id:000016,src:000000,time:751,execs:3712,op:havoc,rep:2,+cov │ ├── id:000059,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 │ ├── id:000059,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3 │ ├── id:000059,time:0,execs:0,orig:id:000074,src:000040+000001,time:10086,execs:32874,op:splice,rep:6 │ ├── id:000059,time:0,execs:0,orig:id:000075,src:000040+000006,time:10101,execs:32921,op:splice,rep:16 │ ├── id:000059,time:0,execs:0,orig:id:000076,src:000052+000065,time:10460,execs:33751,op:splice,rep:1 │ ├── id:000060,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 │ ├── id:000060,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2 │ ├── id:000060,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 │ ├── id:000060,time:0,execs:0,orig:id:000036,src:000002,time:3333,execs:15490,op:havoc,rep:3,+cov │ ├── id:000060,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 │ ├── id:000060,time:0,execs:0,orig:id:000073,src:000038+000070,time:9659,execs:32329,op:splice,rep:2 │ ├── id:000060,time:0,execs:0,orig:id:000074,src:000040+000001,time:10086,execs:32874,op:splice,rep:6 │ ├── id:000060,time:0,execs:0,orig:id:000075,src:000040+000006,time:10101,execs:32921,op:splice,rep:16 │ ├── id:000061,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2 │ ├── id:000061,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2 │ ├── id:000061,time:0,execs:0,orig:id:000035,src:000002,time:3095,execs:14435,op:havoc,rep:2,+cov │ ├── id:000061,time:0,execs:0,orig:id:000039,src:000002,time:3595,execs:16683,op:havoc,rep:4,+cov │ ├── id:000061,time:0,execs:0,orig:id:000072,src:000038+000070,time:9655,execs:32325,op:splice,rep:2 │ ├── id:000061,time:0,execs:0,orig:id:000073,src:000038+000070,time:9659,execs:32329,op:splice,rep:2 │ ├── id:000061,time:0,execs:0,orig:id:000074,src:000040+000001,time:10086,execs:32874,op:splice,rep:6 │ ├── id:000062,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov │ ├── id:000062,time:0,execs:0,orig:id:000019,src:000002,time:2721,execs:13019,op:quick,pos:9,+cov │ ├── id:000062,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 │ ├── id:000062,time:0,execs:0,orig:id:000036,src:000002,time:3333,execs:15490,op:havoc,rep:3,+cov │ ├── id:000062,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 │ ├── id:000062,time:0,execs:0,orig:id:000071,src:000038+000015,time:9596,execs:32214,op:splice,rep:1 │ ├── id:000062,time:0,execs:0,orig:id:000072,src:000038+000070,time:9655,execs:32325,op:splice,rep:2 │ ├── id:000062,time:0,execs:0,orig:id:000073,src:000038+000070,time:9659,execs:32329,op:splice,rep:2 │ ├── id:000063,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1 │ ├── id:000063,time:0,execs:0,orig:id:000020,src:000002,time:2723,execs:13025,op:flip1,pos:9,+cov │ ├── id:000063,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 │ ├── id:000063,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3 │ ├── id:000063,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 │ ├── id:000063,time:0,execs:0,orig:id:000070,src:000019+000067,time:9260,execs:31406,op:splice,rep:1 │ ├── id:000063,time:0,execs:0,orig:id:000071,src:000038+000015,time:9596,execs:32214,op:splice,rep:1 │ ├── id:000063,time:0,execs:0,orig:id:000072,src:000038+000070,time:9655,execs:32325,op:splice,rep:2 │ ├── id:000064,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1 │ ├── id:000064,time:0,execs:0,orig:id:000021,src:000002,time:2728,execs:13033,op:flip1,pos:9,+cov │ ├── id:000064,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 │ ├── id:000064,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 │ ├── id:000064,time:0,execs:0,orig:id:000059,src:000002+000058,time:8210,execs:30143,op:splice,rep:1 │ ├── id:000064,time:0,execs:0,orig:id:000069,src:000009+000067,time:9203,execs:31226,op:splice,rep:2 │ ├── id:000064,time:0,execs:0,orig:id:000070,src:000019+000067,time:9260,execs:31406,op:splice,rep:1 │ ├── id:000064,time:0,execs:0,orig:id:000071,src:000038+000015,time:9596,execs:32214,op:splice,rep:1 │ ├── id:000065,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1 │ ├── id:000065,time:0,execs:0,orig:id:000022,src:000002,time:2736,execs:13038,op:flip1,pos:9,+cov │ ├── id:000065,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 │ ├── id:000065,time:0,execs:0,orig:id:000039,src:000002,time:3595,execs:16683,op:havoc,rep:4,+cov │ ├── id:000065,time:0,execs:0,orig:id:000060,src:000002+000059,time:8310,execs:30194,op:splice,rep:2,+cov │ ├── id:000065,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 │ ├── id:000065,time:0,execs:0,orig:id:000069,src:000009+000067,time:9203,execs:31226,op:splice,rep:2 │ ├── id:000065,time:0,execs:0,orig:id:000070,src:000019+000067,time:9260,execs:31406,op:splice,rep:1 │ ├── id:000066,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2 │ ├── id:000066,time:0,execs:0,orig:id:000023,src:000002,time:2739,execs:13048,op:flip2,pos:9,+cov │ ├── id:000066,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 │ ├── id:000066,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 │ ├── id:000066,time:0,execs:0,orig:id:000061,src:000002+000059,time:8351,execs:30205,op:splice,rep:1,+cov │ ├── id:000066,time:0,execs:0,orig:id:000067,src:000008+000066,time:9112,execs:31026,op:splice,rep:4 │ ├── id:000066,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 │ ├── id:000066,time:0,execs:0,orig:id:000069,src:000009+000067,time:9203,execs:31226,op:splice,rep:2 │ ├── id:000067,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2 │ ├── id:000067,time:0,execs:0,orig:id:000024,src:000002,time:2740,execs:13052,op:flip2,pos:9,+cov │ ├── id:000067,time:0,execs:0,orig:id:000029,src:000002,time:2860,execs:13590,op:havoc,rep:4,+cov │ ├── id:000067,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 │ ├── id:000067,time:0,execs:0,orig:id:000062,src:000003+000014,time:8561,execs:30410,op:splice,rep:2 │ ├── id:000067,time:0,execs:0,orig:id:000066,src:000004+000060,time:8915,execs:30785,op:splice,rep:2 │ ├── id:000067,time:0,execs:0,orig:id:000067,src:000008+000066,time:9112,execs:31026,op:splice,rep:4 │ ├── id:000067,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 │ ├── id:000068,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 │ ├── id:000068,time:0,execs:0,orig:id:000025,src:000002,time:2743,execs:13060,op:flip4,pos:9,+cov │ ├── id:000068,time:0,execs:0,orig:id:000028,src:000002,time:2855,execs:13578,op:havoc,rep:1,+cov │ ├── id:000068,time:0,execs:0,orig:id:000059,src:000002+000058,time:8210,execs:30143,op:splice,rep:1 │ ├── id:000068,time:0,execs:0,orig:id:000063,src:000003+000059,time:8583,execs:30477,op:splice,rep:12 │ ├── id:000068,time:0,execs:0,orig:id:000065,src:000004+000058,time:8800,execs:30662,op:splice,rep:4 │ ├── id:000068,time:0,execs:0,orig:id:000066,src:000004+000060,time:8915,execs:30785,op:splice,rep:2 │ ├── id:000068,time:0,execs:0,orig:id:000067,src:000008+000066,time:9112,execs:31026,op:splice,rep:4 │ ├── id:000069,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2 │ ├── id:000069,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 │ ├── id:000069,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 │ ├── id:000069,time:0,execs:0,orig:id:000060,src:000002+000059,time:8310,execs:30194,op:splice,rep:2,+cov │ ├── id:000069,time:0,execs:0,orig:id:000064,src:000004+000058,time:8796,execs:30657,op:splice,rep:3 │ ├── id:000069,time:0,execs:0,orig:id:000065,src:000004+000058,time:8800,execs:30662,op:splice,rep:4 │ ├── id:000069,time:0,execs:0,orig:id:000066,src:000004+000060,time:8915,execs:30785,op:splice,rep:2 │ ├── id:000070,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2 │ ├── id:000070,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 │ ├── id:000070,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 │ ├── id:000070,time:0,execs:0,orig:id:000061,src:000002+000059,time:8351,execs:30205,op:splice,rep:1,+cov │ ├── id:000070,time:0,execs:0,orig:id:000063,src:000003+000059,time:8583,execs:30477,op:splice,rep:12 │ ├── id:000070,time:0,execs:0,orig:id:000064,src:000004+000058,time:8796,execs:30657,op:splice,rep:3 │ ├── id:000070,time:0,execs:0,orig:id:000065,src:000004+000058,time:8800,execs:30662,op:splice,rep:4 │ ├── id:000071,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov │ ├── id:000071,time:0,execs:0,orig:id:000025,src:000002,time:2743,execs:13060,op:flip4,pos:9,+cov │ ├── id:000071,time:0,execs:0,orig:id:000028,src:000002,time:2855,execs:13578,op:havoc,rep:1,+cov │ ├── id:000071,time:0,execs:0,orig:id:000062,src:000003+000014,time:8561,execs:30410,op:splice,rep:2 │ ├── id:000071,time:0,execs:0,orig:id:000063,src:000003+000059,time:8583,execs:30477,op:splice,rep:12 │ ├── id:000071,time:0,execs:0,orig:id:000064,src:000004+000058,time:8796,execs:30657,op:splice,rep:3 │ ├── id:000071,time:0,execs:0,orig:id:000066,src:000004+000060,time:8915,execs:30785,op:splice,rep:2 │ ├── id:000072,time:0,execs:0,orig:id:000016,src:000000,time:751,execs:3712,op:havoc,rep:2,+cov │ ├── id:000072,time:0,execs:0,orig:id:000024,src:000002,time:2740,execs:13052,op:flip2,pos:9,+cov │ ├── id:000072,time:0,execs:0,orig:id:000029,src:000002,time:2860,execs:13590,op:havoc,rep:4,+cov │ ├── id:000072,time:0,execs:0,orig:id:000061,src:000002+000059,time:8351,execs:30205,op:splice,rep:1,+cov │ ├── id:000072,time:0,execs:0,orig:id:000062,src:000003+000014,time:8561,execs:30410,op:splice,rep:2 │ ├── id:000072,time:0,execs:0,orig:id:000063,src:000003+000059,time:8583,execs:30477,op:splice,rep:12 │ ├── id:000072,time:0,execs:0,orig:id:000067,src:000008+000066,time:9112,execs:31026,op:splice,rep:4 │ ├── id:000073,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2 │ ├── id:000073,time:0,execs:0,orig:id:000023,src:000002,time:2739,execs:13048,op:flip2,pos:9,+cov │ ├── id:000073,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 │ ├── id:000073,time:0,execs:0,orig:id:000060,src:000002+000059,time:8310,execs:30194,op:splice,rep:2,+cov │ ├── id:000073,time:0,execs:0,orig:id:000061,src:000002+000059,time:8351,execs:30205,op:splice,rep:1,+cov │ ├── id:000073,time:0,execs:0,orig:id:000062,src:000003+000014,time:8561,execs:30410,op:splice,rep:2 │ ├── id:000073,time:0,execs:0,orig:id:000064,src:000004+000058,time:8796,execs:30657,op:splice,rep:3 │ ├── id:000073,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 │ ├── id:000074,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2 │ ├── id:000074,time:0,execs:0,orig:id:000022,src:000002,time:2736,execs:13038,op:flip1,pos:9,+cov │ ├── id:000074,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 │ ├── id:000074,time:0,execs:0,orig:id:000059,src:000002+000058,time:8210,execs:30143,op:splice,rep:1 │ ├── id:000074,time:0,execs:0,orig:id:000060,src:000002+000059,time:8310,execs:30194,op:splice,rep:2,+cov │ ├── id:000074,time:0,execs:0,orig:id:000061,src:000002+000059,time:8351,execs:30205,op:splice,rep:1,+cov │ ├── id:000074,time:0,execs:0,orig:id:000065,src:000004+000058,time:8800,execs:30662,op:splice,rep:4 │ ├── id:000074,time:0,execs:0,orig:id:000069,src:000009+000067,time:9203,execs:31226,op:splice,rep:2 │ ├── id:000075,time:0,execs:0,orig:id:000019,src:000002,time:2721,execs:13019,op:quick,pos:9,+cov │ ├── id:000075,time:0,execs:0,orig:id:000021,src:000002,time:2728,execs:13033,op:flip1,pos:9,+cov │ ├── id:000075,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 │ ├── id:000075,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 │ ├── id:000075,time:0,execs:0,orig:id:000059,src:000002+000058,time:8210,execs:30143,op:splice,rep:1 │ ├── id:000075,time:0,execs:0,orig:id:000060,src:000002+000059,time:8310,execs:30194,op:splice,rep:2,+cov │ ├── id:000075,time:0,execs:0,orig:id:000066,src:000004+000060,time:8915,execs:30785,op:splice,rep:2 │ ├── id:000075,time:0,execs:0,orig:id:000070,src:000019+000067,time:9260,execs:31406,op:splice,rep:1 │ ├── id:000076,time:0,execs:0,orig:id:000020,src:000002,time:2723,execs:13025,op:flip1,pos:9,+cov │ ├── id:000076,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 │ ├── id:000076,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 │ ├── id:000076,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 │ ├── id:000076,time:0,execs:0,orig:id:000059,src:000002+000058,time:8210,execs:30143,op:splice,rep:1 │ ├── id:000076,time:0,execs:0,orig:id:000067,src:000008+000066,time:9112,execs:31026,op:splice,rep:4 │ ├── id:000076,time:0,execs:0,orig:id:000071,src:000038+000015,time:9596,execs:32214,op:splice,rep:1 │ ├── id:000077,time:0,execs:0,orig:id:000019,src:000002,time:2721,execs:13019,op:quick,pos:9,+cov │ ├── id:000077,time:0,execs:0,orig:id:000021,src:000002,time:2728,execs:13033,op:flip1,pos:9,+cov │ ├── id:000077,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 │ ├── id:000077,time:0,execs:0,orig:id:000039,src:000002,time:3595,execs:16683,op:havoc,rep:4,+cov │ ├── id:000077,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 │ ├── id:000077,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 │ ├── id:000077,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 │ ├── id:000077,time:0,execs:0,orig:id:000072,src:000038+000070,time:9655,execs:32325,op:splice,rep:2 │ ├── id:000078,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2 │ ├── id:000078,time:0,execs:0,orig:id:000022,src:000002,time:2736,execs:13038,op:flip1,pos:9,+cov │ ├── id:000078,time:0,execs:0,orig:id:000035,src:000002,time:3095,execs:14435,op:havoc,rep:2,+cov │ ├── id:000078,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 │ ├── id:000078,time:0,execs:0,orig:id:000039,src:000002,time:3595,execs:16683,op:havoc,rep:4,+cov │ ├── id:000078,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 │ ├── id:000078,time:0,execs:0,orig:id:000069,src:000009+000067,time:9203,execs:31226,op:splice,rep:2 │ ├── id:000078,time:0,execs:0,orig:id:000073,src:000038+000070,time:9659,execs:32329,op:splice,rep:2 │ ├── id:000079,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2 │ ├── id:000079,time:0,execs:0,orig:id:000023,src:000002,time:2739,execs:13048,op:flip2,pos:9,+cov │ ├── id:000079,time:0,execs:0,orig:id:000036,src:000002,time:3333,execs:15490,op:havoc,rep:3,+cov │ ├── id:000079,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3 │ ├── id:000079,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 │ ├── id:000079,time:0,execs:0,orig:id:000039,src:000002,time:3595,execs:16683,op:havoc,rep:4,+cov │ ├── id:000079,time:0,execs:0,orig:id:000070,src:000019+000067,time:9260,execs:31406,op:splice,rep:1 │ ├── id:000079,time:0,execs:0,orig:id:000074,src:000040+000001,time:10086,execs:32874,op:splice,rep:6 │ ├── id:000080,time:0,execs:0,orig:id:000016,src:000000,time:751,execs:3712,op:havoc,rep:2,+cov │ ├── id:000080,time:0,execs:0,orig:id:000024,src:000002,time:2740,execs:13052,op:flip2,pos:9,+cov │ ├── id:000080,time:0,execs:0,orig:id:000036,src:000002,time:3333,execs:15490,op:havoc,rep:3,+cov │ ├── id:000080,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3 │ ├── id:000080,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 │ ├── id:000080,time:0,execs:0,orig:id:000071,src:000038+000015,time:9596,execs:32214,op:splice,rep:1 │ ├── id:000080,time:0,execs:0,orig:id:000075,src:000040+000006,time:10101,execs:32921,op:splice,rep:16 │ ├── id:000081,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov │ ├── id:000081,time:0,execs:0,orig:id:000025,src:000002,time:2743,execs:13060,op:flip4,pos:9,+cov │ ├── id:000081,time:0,execs:0,orig:id:000035,src:000002,time:3095,execs:14435,op:havoc,rep:2,+cov │ ├── id:000081,time:0,execs:0,orig:id:000036,src:000002,time:3333,execs:15490,op:havoc,rep:3,+cov │ ├── id:000081,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3 │ ├── id:000081,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 │ ├── id:000081,time:0,execs:0,orig:id:000072,src:000038+000070,time:9655,execs:32325,op:splice,rep:2 │ ├── id:000081,time:0,execs:0,orig:id:000076,src:000052+000065,time:10460,execs:33751,op:splice,rep:1 │ ├── id:000082,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2 │ ├── id:000082,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 │ ├── id:000082,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 │ ├── id:000082,time:0,execs:0,orig:id:000035,src:000002,time:3095,execs:14435,op:havoc,rep:2,+cov │ ├── id:000082,time:0,execs:0,orig:id:000036,src:000002,time:3333,execs:15490,op:havoc,rep:3,+cov │ ├── id:000082,time:0,execs:0,orig:id:000039,src:000002,time:3595,execs:16683,op:havoc,rep:4,+cov │ ├── id:000082,time:0,execs:0,orig:id:000073,src:000038+000070,time:9659,execs:32329,op:splice,rep:2 │ ├── id:000082,time:0,execs:0,orig:id:000077,src:000053+000072,time:10528,execs:33916,op:splice,rep:3 │ ├── id:000083,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2 │ ├── id:000083,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 │ ├── id:000083,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 │ ├── id:000083,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 │ ├── id:000083,time:0,execs:0,orig:id:000035,src:000002,time:3095,execs:14435,op:havoc,rep:2,+cov │ ├── id:000083,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 │ ├── id:000083,time:0,execs:0,orig:id:000074,src:000040+000001,time:10086,execs:32874,op:splice,rep:6 │ ├── id:000083,time:0,execs:0,orig:id:000078,src:000053+000069,time:10560,execs:33960,op:splice,rep:1 │ ├── id:000084,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 │ ├── id:000084,time:0,execs:0,orig:id:000028,src:000002,time:2855,execs:13578,op:havoc,rep:1,+cov │ ├── id:000084,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 │ ├── id:000084,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 │ ├── id:000084,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 │ ├── id:000084,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 │ ├── id:000084,time:0,execs:0,orig:id:000075,src:000040+000006,time:10101,execs:32921,op:splice,rep:16 │ ├── id:000084,time:0,execs:0,orig:id:000079,src:000056,time:10635,execs:34084,op:havoc,rep:1,+cov │ ├── id:000085,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2 │ ├── id:000085,time:0,execs:0,orig:id:000029,src:000002,time:2860,execs:13590,op:havoc,rep:4,+cov │ ├── id:000085,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 │ ├── id:000085,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 │ ├── id:000085,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 │ ├── id:000085,time:0,execs:0,orig:id:000059,src:000002+000058,time:8210,execs:30143,op:splice,rep:1 │ ├── id:000085,time:0,execs:0,orig:id:000076,src:000052+000065,time:10460,execs:33751,op:splice,rep:1 │ ├── id:000085,time:0,execs:0,orig:id:000080,src:000060+000077,time:11173,execs:34551,op:splice,rep:5 │ ├── id:000086,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2 │ ├── id:000086,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 │ ├── id:000086,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 │ ├── id:000086,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 │ ├── id:000086,time:0,execs:0,orig:id:000060,src:000002+000059,time:8310,execs:30194,op:splice,rep:2,+cov │ ├── id:000086,time:0,execs:0,orig:id:000077,src:000053+000072,time:10528,execs:33916,op:splice,rep:3 │ ├── id:000086,time:0,execs:0,orig:id:000081,src:000069+000073,time:11308,execs:34703,op:splice,rep:5 │ ├── id:000087,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1 │ ├── id:000087,time:0,execs:0,orig:id:000029,src:000002,time:2860,execs:13590,op:havoc,rep:4,+cov │ ├── id:000087,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 │ ├── id:000087,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 │ ├── id:000087,time:0,execs:0,orig:id:000061,src:000002+000059,time:8351,execs:30205,op:splice,rep:1,+cov │ ├── id:000087,time:0,execs:0,orig:id:000078,src:000053+000069,time:10560,execs:33960,op:splice,rep:1 │ ├── id:000087,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 │ ├── id:000088,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1 │ ├── id:000088,time:0,execs:0,orig:id:000028,src:000002,time:2855,execs:13578,op:havoc,rep:1,+cov │ ├── id:000088,time:0,execs:0,orig:id:000029,src:000002,time:2860,execs:13590,op:havoc,rep:4,+cov │ ├── id:000088,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 │ ├── id:000088,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 │ ├── id:000088,time:0,execs:0,orig:id:000062,src:000003+000014,time:8561,execs:30410,op:splice,rep:2 │ ├── id:000088,time:0,execs:0,orig:id:000079,src:000056,time:10635,execs:34084,op:havoc,rep:1,+cov │ ├── id:000088,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 │ ├── id:000089,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1 │ ├── id:000089,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 │ ├── id:000089,time:0,execs:0,orig:id:000028,src:000002,time:2855,execs:13578,op:havoc,rep:1,+cov │ ├── id:000089,time:0,execs:0,orig:id:000029,src:000002,time:2860,execs:13590,op:havoc,rep:4,+cov │ ├── id:000089,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 │ ├── id:000089,time:0,execs:0,orig:id:000063,src:000003+000059,time:8583,execs:30477,op:splice,rep:12 │ ├── id:000089,time:0,execs:0,orig:id:000080,src:000060+000077,time:11173,execs:34551,op:splice,rep:5 │ ├── id:000089,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 │ ├── id:000090,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov │ ├── id:000090,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 │ ├── id:000090,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 │ ├── id:000090,time:0,execs:0,orig:id:000028,src:000002,time:2855,execs:13578,op:havoc,rep:1,+cov │ ├── id:000090,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 │ ├── id:000090,time:0,execs:0,orig:id:000064,src:000004+000058,time:8796,execs:30657,op:splice,rep:3 │ ├── id:000090,time:0,execs:0,orig:id:000081,src:000069+000073,time:11308,execs:34703,op:splice,rep:5 │ ├── id:000090,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 │ ├── id:000091,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2 │ ├── id:000091,time:0,execs:0,orig:id:000025,src:000002,time:2743,execs:13060,op:flip4,pos:9,+cov │ ├── id:000091,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 │ ├── id:000091,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 │ ├── id:000091,time:0,execs:0,orig:id:000035,src:000002,time:3095,execs:14435,op:havoc,rep:2,+cov │ ├── id:000091,time:0,execs:0,orig:id:000065,src:000004+000058,time:8800,execs:30662,op:splice,rep:4 │ ├── id:000091,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 │ ├── id:000091,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 │ ├── id:000092,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 │ ├── id:000092,time:0,execs:0,orig:id:000024,src:000002,time:2740,execs:13052,op:flip2,pos:9,+cov │ ├── id:000092,time:0,execs:0,orig:id:000025,src:000002,time:2743,execs:13060,op:flip4,pos:9,+cov │ ├── id:000092,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 │ ├── id:000092,time:0,execs:0,orig:id:000036,src:000002,time:3333,execs:15490,op:havoc,rep:3,+cov │ ├── id:000092,time:0,execs:0,orig:id:000066,src:000004+000060,time:8915,execs:30785,op:splice,rep:2 │ ├── id:000092,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 │ ├── id:000092,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 │ ├── id:000093,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1 │ ├── id:000093,time:0,execs:0,orig:id:000023,src:000002,time:2739,execs:13048,op:flip2,pos:9,+cov │ ├── id:000093,time:0,execs:0,orig:id:000024,src:000002,time:2740,execs:13052,op:flip2,pos:9,+cov │ ├── id:000093,time:0,execs:0,orig:id:000025,src:000002,time:2743,execs:13060,op:flip4,pos:9,+cov │ ├── id:000093,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3 │ ├── id:000093,time:0,execs:0,orig:id:000067,src:000008+000066,time:9112,execs:31026,op:splice,rep:4 │ ├── id:000093,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 │ ├── id:000093,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 │ ├── id:000094,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov │ ├── id:000094,time:0,execs:0,orig:id:000022,src:000002,time:2736,execs:13038,op:flip1,pos:9,+cov │ ├── id:000094,time:0,execs:0,orig:id:000023,src:000002,time:2739,execs:13048,op:flip2,pos:9,+cov │ ├── id:000094,time:0,execs:0,orig:id:000024,src:000002,time:2740,execs:13052,op:flip2,pos:9,+cov │ ├── id:000094,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 │ ├── id:000094,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 │ ├── id:000094,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 │ ├── id:000094,time:0,execs:0,orig:id:000089,src:000040+000075,time:12048,execs:36618,op:splice,rep:10 │ ├── id:000095,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 │ ├── id:000095,time:0,execs:0,orig:id:000021,src:000002,time:2728,execs:13033,op:flip1,pos:9,+cov │ ├── id:000095,time:0,execs:0,orig:id:000022,src:000002,time:2736,execs:13038,op:flip1,pos:9,+cov │ ├── id:000095,time:0,execs:0,orig:id:000023,src:000002,time:2739,execs:13048,op:flip2,pos:9,+cov │ ├── id:000095,time:0,execs:0,orig:id:000039,src:000002,time:3595,execs:16683,op:havoc,rep:4,+cov │ ├── id:000095,time:0,execs:0,orig:id:000069,src:000009+000067,time:9203,execs:31226,op:splice,rep:2 │ ├── id:000095,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 │ ├── id:000095,time:0,execs:0,orig:id:000090,src:000041+000077,time:12144,execs:36915,op:splice,rep:3 │ ├── id:000096,time:0,execs:0,orig:id:000020,src:000002,time:2723,execs:13025,op:flip1,pos:9,+cov │ ├── id:000096,time:0,execs:0,orig:id:000021,src:000002,time:2728,execs:13033,op:flip1,pos:9,+cov │ ├── id:000096,time:0,execs:0,orig:id:000022,src:000002,time:2736,execs:13038,op:flip1,pos:9,+cov │ ├── id:000096,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 │ ├── id:000096,time:0,execs:0,orig:id:000070,src:000019+000067,time:9260,execs:31406,op:splice,rep:1 │ ├── id:000096,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 │ ├── id:000096,time:0,execs:0,orig:id:000091,src:000045+000064,time:12286,execs:37245,op:splice,rep:7 │ ├── id:000096,time:0,execs:0,orig:init │ ├── id:000097,time:0,execs:0,orig:id:000019,src:000002,time:2721,execs:13019,op:quick,pos:9,+cov │ ├── id:000097,time:0,execs:0,orig:id:000020,src:000002,time:2723,execs:13025,op:flip1,pos:9,+cov │ ├── id:000097,time:0,execs:0,orig:id:000021,src:000002,time:2728,execs:13033,op:flip1,pos:9,+cov │ ├── id:000097,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 │ ├── id:000097,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 │ ├── id:000097,time:0,execs:0,orig:id:000071,src:000038+000015,time:9596,execs:32214,op:splice,rep:1 │ ├── id:000097,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 │ ├── id:000097,time:0,execs:0,orig:id:000092,src:000052+000080,time:12498,execs:37731,op:splice,rep:2 │ ├── id:000098,src:000024+000073,time:18952,execs:52561,op:splice,rep:4 │ ├── id:000098,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2 │ ├── id:000098,time:0,execs:0,orig:id:000019,src:000002,time:2721,execs:13019,op:quick,pos:9,+cov │ ├── id:000098,time:0,execs:0,orig:id:000020,src:000002,time:2723,execs:13025,op:flip1,pos:9,+cov │ ├── id:000098,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 │ ├── id:000098,time:0,execs:0,orig:id:000059,src:000002+000058,time:8210,execs:30143,op:splice,rep:1 │ ├── id:000098,time:0,execs:0,orig:id:000072,src:000038+000070,time:9655,execs:32325,op:splice,rep:2 │ ├── id:000098,time:0,execs:0,orig:id:000089,src:000040+000075,time:12048,execs:36618,op:splice,rep:10 │ ├── id:000099,src:000045+000071,time:19432,execs:53917,op:splice,rep:2,+cov │ ├── id:000099,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2 │ ├── id:000099,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2 │ ├── id:000099,time:0,execs:0,orig:id:000019,src:000002,time:2721,execs:13019,op:quick,pos:9,+cov │ ├── id:000099,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov │ ├── id:000099,time:0,execs:0,orig:id:000060,src:000002+000059,time:8310,execs:30194,op:splice,rep:2,+cov │ ├── id:000099,time:0,execs:0,orig:id:000073,src:000038+000070,time:9659,execs:32329,op:splice,rep:2 │ ├── id:000099,time:0,execs:0,orig:id:000090,src:000041+000077,time:12144,execs:36915,op:splice,rep:3 │ ├── id:000100,src:000061+000093,time:24334,execs:63733,op:splice,rep:7 │ ├── id:000100,time:0,execs:0,orig:id:000016,src:000000,time:751,execs:3712,op:havoc,rep:2,+cov │ ├── id:000100,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2 │ ├── id:000100,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2 │ ├── id:000100,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 │ ├── id:000100,time:0,execs:0,orig:id:000061,src:000002+000059,time:8351,execs:30205,op:splice,rep:1,+cov │ ├── id:000100,time:0,execs:0,orig:id:000074,src:000040+000001,time:10086,execs:32874,op:splice,rep:6 │ ├── id:000100,time:0,execs:0,orig:id:000091,src:000045+000064,time:12286,execs:37245,op:splice,rep:7 │ ├── id:000101,src:000068+000064,time:25552,execs:64717,op:splice,rep:4 │ ├── id:000101,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov │ ├── id:000101,time:0,execs:0,orig:id:000016,src:000000,time:751,execs:3712,op:havoc,rep:2,+cov │ ├── id:000101,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2 │ ├── id:000101,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 │ ├── id:000101,time:0,execs:0,orig:id:000062,src:000003+000014,time:8561,execs:30410,op:splice,rep:2 │ ├── id:000101,time:0,execs:0,orig:id:000075,src:000040+000006,time:10101,execs:32921,op:splice,rep:16 │ ├── id:000101,time:0,execs:0,orig:id:000092,src:000052+000080,time:12498,execs:37731,op:splice,rep:2 │ ├── id:000102,src:000041+000031,time:28444,execs:70286,op:splice,rep:12 │ ├── id:000102,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2 │ ├── id:000102,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov │ ├── id:000102,time:0,execs:0,orig:id:000016,src:000000,time:751,execs:3712,op:havoc,rep:2,+cov │ ├── id:000102,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov │ ├── id:000102,time:0,execs:0,orig:id:000063,src:000003+000059,time:8583,execs:30477,op:splice,rep:12 │ ├── id:000102,time:0,execs:0,orig:id:000076,src:000052+000065,time:10460,execs:33751,op:splice,rep:1 │ ├── id:000102,time:0,execs:0,orig:id:000098,src:000024+000073,time:18952,execs:52561,op:splice,rep:4 │ ├── id:000103,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2 │ ├── id:000103,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2 │ ├── id:000103,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov │ ├── id:000103,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 │ ├── id:000103,time:0,execs:0,orig:id:000064,src:000004+000058,time:8796,execs:30657,op:splice,rep:3 │ ├── id:000103,time:0,execs:0,orig:id:000077,src:000053+000072,time:10528,execs:33916,op:splice,rep:3 │ ├── id:000103,time:0,execs:0,orig:id:000099,src:000045+000071,time:19432,execs:53917,op:splice,rep:2,+cov │ ├── id:000104,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 │ ├── id:000104,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2 │ ├── id:000104,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2 │ ├── id:000104,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov │ ├── id:000104,time:0,execs:0,orig:id:000065,src:000004+000058,time:8800,execs:30662,op:splice,rep:4 │ ├── id:000104,time:0,execs:0,orig:id:000078,src:000053+000069,time:10560,execs:33960,op:splice,rep:1 │ ├── id:000104,time:0,execs:0,orig:id:000100,src:000061+000093,time:24334,execs:63733,op:splice,rep:7 │ ├── id:000105,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2 │ ├── id:000105,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 │ ├── id:000105,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2 │ ├── id:000105,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 │ ├── id:000105,time:0,execs:0,orig:id:000066,src:000004+000060,time:8915,execs:30785,op:splice,rep:2 │ ├── id:000105,time:0,execs:0,orig:id:000079,src:000056,time:10635,execs:34084,op:havoc,rep:1,+cov │ ├── id:000105,time:0,execs:0,orig:id:000101,src:000068+000064,time:25552,execs:64717,op:splice,rep:4 │ ├── id:000106,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2 │ ├── id:000106,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2 │ ├── id:000106,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 │ ├── id:000106,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032 │ ├── id:000106,time:0,execs:0,orig:id:000067,src:000008+000066,time:9112,execs:31026,op:splice,rep:4 │ ├── id:000106,time:0,execs:0,orig:id:000080,src:000060+000077,time:11173,execs:34551,op:splice,rep:5 │ ├── id:000106,time:0,execs:0,orig:id:000102,src:000041+000031,time:28444,execs:70286,op:splice,rep:12 │ ├── id:000107,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1 │ ├── id:000107,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2 │ ├── id:000107,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2 │ ├── id:000107,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033 │ ├── id:000107,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 │ ├── id:000107,time:0,execs:0,orig:id:000081,src:000069+000073,time:11308,execs:34703,op:splice,rep:5 │ ├── id:000107,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 │ ├── id:000108,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1 │ ├── id:000108,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1 │ ├── id:000108,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2 │ ├── id:000108,time:0,execs:0,orig:id:000052,src:000011,time:7195,execs:28757,op:quick,pos:14 │ ├── id:000108,time:0,execs:0,orig:id:000069,src:000009+000067,time:9203,execs:31226,op:splice,rep:2 │ ├── id:000108,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 │ ├── id:000108,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 │ ├── id:000109,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1 │ ├── id:000109,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1 │ ├── id:000109,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1 │ ├── id:000109,time:0,execs:0,orig:id:000053,src:000011,time:7719,execs:29148,op:havoc,rep:4,+cov │ ├── id:000109,time:0,execs:0,orig:id:000070,src:000019+000067,time:9260,execs:31406,op:splice,rep:1 │ ├── id:000109,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 │ ├── id:000109,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 │ ├── id:000110,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov │ ├── id:000110,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1 │ ├── id:000110,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1 │ ├── id:000110,time:0,execs:0,orig:id:000054,src:000011,time:7737,execs:29161,op:havoc,rep:2,+cov │ ├── id:000110,time:0,execs:0,orig:id:000071,src:000038+000015,time:9596,execs:32214,op:splice,rep:1 │ ├── id:000110,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 │ ├── id:000110,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 │ ├── id:000111,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2 │ ├── id:000111,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov │ ├── id:000111,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1 │ ├── id:000111,time:0,execs:0,orig:id:000055,src:000011,time:7817,execs:29226,op:havoc,rep:4,+cov │ ├── id:000111,time:0,execs:0,orig:id:000072,src:000038+000070,time:9655,execs:32325,op:splice,rep:2 │ ├── id:000111,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 │ ├── id:000111,time:0,execs:0,orig:id:000107,src:000013+000015,time:32430,execs:75878,op:splice,rep:1 │ ├── id:000112,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 │ ├── id:000112,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2 │ ├── id:000112,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov │ ├── id:000112,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 │ ├── id:000112,time:0,execs:0,orig:id:000073,src:000038+000070,time:9659,execs:32329,op:splice,rep:2 │ ├── id:000112,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 │ ├── id:000112,time:0,execs:0,orig:id:000108,src:000043+000105,time:33441,execs:78403,op:splice,rep:1 │ ├── id:000113,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1 │ ├── id:000113,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 │ ├── id:000113,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2 │ ├── id:000113,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 │ ├── id:000113,time:0,execs:0,orig:id:000074,src:000040+000001,time:10086,execs:32874,op:splice,rep:6 │ ├── id:000113,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 │ ├── id:000113,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov │ ├── id:000114,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov │ ├── id:000114,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1 │ ├── id:000114,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 │ ├── id:000114,time:0,execs:0,orig:id:000075,src:000040+000006,time:10101,execs:32921,op:splice,rep:16 │ ├── id:000114,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 │ ├── id:000114,time:0,execs:0,orig:id:000093,src:000013+000005,time:13258,execs:40682,op:splice,rep:1 │ ├── id:000114,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 │ ├── id:000115,sync:secondaryfuzzer1,src:000119 │ ├── id:000115,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 │ ├── id:000115,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov │ ├── id:000115,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1 │ ├── id:000115,time:0,execs:0,orig:id:000076,src:000052+000065,time:10460,execs:33751,op:splice,rep:1 │ ├── id:000115,time:0,execs:0,orig:id:000089,src:000040+000075,time:12048,execs:36618,op:splice,rep:10 │ ├── id:000115,time:0,execs:0,orig:id:000094,src:000032+000024,time:13673,execs:40990,op:splice,rep:2 │ ├── id:000116,src:000013,time:61796,execs:117802,op:quick,pos:25,+cov │ ├── id:000116,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 │ ├── id:000116,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov │ ├── id:000116,time:0,execs:0,orig:id:000077,src:000053+000072,time:10528,execs:33916,op:splice,rep:3 │ ├── id:000116,time:0,execs:0,orig:id:000090,src:000041+000077,time:12144,execs:36915,op:splice,rep:3 │ ├── id:000116,time:0,execs:0,orig:id:000095,src:000032+000024,time:13678,execs:40998,op:splice,rep:3 │ ├── id:000116,time:0,execs:0,orig:init │ ├── id:000117,src:000048+000003,time:64106,execs:120685,op:splice,rep:2 │ ├── id:000117,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 │ ├── id:000117,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 │ ├── id:000117,time:0,execs:0,orig:id:000078,src:000053+000069,time:10560,execs:33960,op:splice,rep:1 │ ├── id:000117,time:0,execs:0,orig:id:000091,src:000045+000064,time:12286,execs:37245,op:splice,rep:7 │ ├── id:000117,time:0,execs:0,orig:id:000096,src:000044+000041,time:17000,execs:46472,op:splice,rep:2 │ ├── id:000117,time:0,execs:0,orig:init │ ├── id:000118,sync:secondaryfuzzer1,src:000120 │ ├── id:000118,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 │ ├── id:000118,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 │ ├── id:000118,time:0,execs:0,orig:id:000079,src:000056,time:10635,execs:34084,op:havoc,rep:1,+cov │ ├── id:000118,time:0,execs:0,orig:id:000092,src:000052+000080,time:12498,execs:37731,op:splice,rep:2 │ ├── id:000118,time:0,execs:0,orig:id:000097,src:000061+000076,time:17730,execs:48469,op:splice,rep:3 │ ├── id:000118,time:0,execs:0,orig:init │ ├── id:000119,sync:secondaryfuzzer1,src:000121 │ ├── id:000119,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 │ ├── id:000119,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 │ ├── id:000119,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov │ ├── id:000119,time:0,execs:0,orig:id:000080,src:000060+000077,time:11173,execs:34551,op:splice,rep:5 │ ├── id:000119,time:0,execs:0,orig:id:000098,src:000024+000073,time:18952,execs:52561,op:splice,rep:4 │ ├── id:000119,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 │ ├── id:000120,src:000049+000115,time:74059,execs:133925,op:splice,rep:2 │ ├── id:000120,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 │ ├── id:000120,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov │ ├── id:000120,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 │ ├── id:000120,time:0,execs:0,orig:id:000081,src:000069+000073,time:11308,execs:34703,op:splice,rep:5 │ ├── id:000120,time:0,execs:0,orig:id:000099,src:000045+000071,time:19432,execs:53917,op:splice,rep:2,+cov │ ├── id:000120,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 │ ├── id:000121,src:000087,time:75581,execs:136642,op:havoc,rep:2 │ ├── id:000121,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov │ ├── id:000121,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 │ ├── id:000121,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 │ ├── id:000121,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 │ ├── id:000121,time:0,execs:0,orig:id:000100,src:000061+000093,time:24334,execs:63733,op:splice,rep:7 │ ├── id:000121,time:0,execs:0,orig:id:000113,src:000001,time:56107,execs:111570,op:quick,pos:15,+cov │ ├── id:000122,src:000005,time:81494,execs:148794,op:havoc,rep:2 │ ├── id:000122,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 │ ├── id:000122,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 │ ├── id:000122,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov │ ├── id:000122,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 │ ├── id:000122,time:0,execs:0,orig:id:000101,src:000068+000064,time:25552,execs:64717,op:splice,rep:4 │ ├── id:000122,time:0,execs:0,orig:id:000114,src:000001,time:57206,execs:112017,op:havoc,rep:2 │ ├── id:000123,src:000098+000026,time:96774,execs:173854,op:splice,rep:1 │ ├── id:000123,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 │ ├── id:000123,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov │ ├── id:000123,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 │ ├── id:000123,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 │ ├── id:000123,time:0,execs:0,orig:id:000102,src:000041+000031,time:28444,execs:70286,op:splice,rep:12 │ ├── id:000124,src:000123,time:99616,execs:176758,op:havoc,rep:1 │ ├── id:000124,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov │ ├── id:000124,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 │ ├── id:000124,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov │ ├── id:000124,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 │ ├── id:000124,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 │ ├── id:000125,src:000124+000043,time:102212,execs:178960,op:splice,rep:3 │ ├── id:000125,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 │ ├── id:000125,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov │ ├── id:000125,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 │ ├── id:000125,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 │ ├── id:000125,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 │ ├── id:000126,sync:secondaryfuzzer1,src:000127 │ ├── id:000126,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov │ ├── id:000126,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 │ ├── id:000126,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032 │ ├── id:000126,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 │ ├── id:000126,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 │ ├── id:000127,src:000082,time:106869,execs:185822,op:havoc,rep:2 │ ├── id:000127,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 │ ├── id:000127,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032 │ ├── id:000127,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033 │ ├── id:000127,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 │ ├── id:000127,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 │ ├── id:000128,src:000125,time:109936,execs:189802,op:havoc,rep:8 │ ├── id:000128,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032 │ ├── id:000128,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033 │ ├── id:000128,time:0,execs:0,orig:id:000052,src:000011,time:7195,execs:28757,op:quick,pos:14 │ ├── id:000128,time:0,execs:0,orig:id:000089,src:000040+000075,time:12048,execs:36618,op:splice,rep:10 │ ├── id:000128,time:0,execs:0,orig:id:000107,src:000013+000015,time:32430,execs:75878,op:splice,rep:1 │ ├── id:000129,src:000074+000126,time:116762,execs:197072,op:splice,rep:1 │ ├── id:000129,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033 │ ├── id:000129,time:0,execs:0,orig:id:000052,src:000011,time:7195,execs:28757,op:quick,pos:14 │ ├── id:000129,time:0,execs:0,orig:id:000053,src:000011,time:7719,execs:29148,op:havoc,rep:4,+cov │ ├── id:000129,time:0,execs:0,orig:id:000090,src:000041+000077,time:12144,execs:36915,op:splice,rep:3 │ ├── id:000129,time:0,execs:0,orig:id:000108,src:000043+000105,time:33441,execs:78403,op:splice,rep:1 │ ├── id:000130,src:000127+000047,time:134662,execs:222967,op:splice,rep:3,+cov │ ├── id:000130,time:0,execs:0,orig:id:000052,src:000011,time:7195,execs:28757,op:quick,pos:14 │ ├── id:000130,time:0,execs:0,orig:id:000053,src:000011,time:7719,execs:29148,op:havoc,rep:4,+cov │ ├── id:000130,time:0,execs:0,orig:id:000054,src:000011,time:7737,execs:29161,op:havoc,rep:2,+cov │ ├── id:000130,time:0,execs:0,orig:id:000091,src:000045+000064,time:12286,execs:37245,op:splice,rep:7 │ ├── id:000130,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov │ ├── id:000131,src:000130+000128,time:138343,execs:224838,op:splice,rep:4 │ ├── id:000131,time:0,execs:0,orig:id:000053,src:000011,time:7719,execs:29148,op:havoc,rep:4,+cov │ ├── id:000131,time:0,execs:0,orig:id:000054,src:000011,time:7737,execs:29161,op:havoc,rep:2,+cov │ ├── id:000131,time:0,execs:0,orig:id:000055,src:000011,time:7817,execs:29226,op:havoc,rep:4,+cov │ ├── id:000131,time:0,execs:0,orig:id:000092,src:000052+000080,time:12498,execs:37731,op:splice,rep:2 │ ├── id:000131,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 │ ├── id:000132,src:000130+000128,time:138478,execs:224874,op:splice,rep:3 │ ├── id:000132,time:0,execs:0,orig:id:000054,src:000011,time:7737,execs:29161,op:havoc,rep:2,+cov │ ├── id:000132,time:0,execs:0,orig:id:000055,src:000011,time:7817,execs:29226,op:havoc,rep:4,+cov │ ├── id:000132,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 │ ├── id:000132,time:0,execs:0,orig:id:000098,src:000024+000073,time:18952,execs:52561,op:splice,rep:4 │ ├── id:000132,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 │ ├── id:000133,src:000131,time:140624,execs:226104,op:havoc,rep:7 │ ├── id:000133,time:0,execs:0,orig:id:000055,src:000011,time:7817,execs:29226,op:havoc,rep:4,+cov │ ├── id:000133,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 │ ├── id:000133,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 │ ├── id:000133,time:0,execs:0,orig:id:000099,src:000045+000071,time:19432,execs:53917,op:splice,rep:2,+cov │ ├── id:000133,time:0,execs:0,orig:id:000116,src:000013,time:61796,execs:117802,op:quick,pos:25,+cov │ ├── id:000134,src:000132,time:148891,execs:230611,op:havoc,rep:6 │ ├── id:000134,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 │ ├── id:000134,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 │ ├── id:000134,time:0,execs:0,orig:id:000093,src:000013+000005,time:13258,execs:40682,op:splice,rep:1 │ ├── id:000134,time:0,execs:0,orig:id:000100,src:000061+000093,time:24334,execs:63733,op:splice,rep:7 │ ├── id:000134,time:0,execs:0,orig:id:000117,src:000048+000003,time:64106,execs:120685,op:splice,rep:2 │ ├── id:000135,src:000132,time:154109,execs:232096,op:havoc,rep:5 │ ├── id:000135,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 │ ├── id:000135,time:0,execs:0,orig:id:000093,src:000013+000005,time:13258,execs:40682,op:splice,rep:1 │ ├── id:000135,time:0,execs:0,orig:id:000094,src:000032+000024,time:13673,execs:40990,op:splice,rep:2 │ ├── id:000135,time:0,execs:0,orig:id:000101,src:000068+000064,time:25552,execs:64717,op:splice,rep:4 │ ├── id:000135,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 │ ├── id:000136,sync:secondaryfuzzer1,src:000134 │ ├── id:000136,time:0,execs:0,orig:id:000093,src:000013+000005,time:13258,execs:40682,op:splice,rep:1 │ ├── id:000136,time:0,execs:0,orig:id:000094,src:000032+000024,time:13673,execs:40990,op:splice,rep:2 │ ├── id:000136,time:0,execs:0,orig:id:000095,src:000032+000024,time:13678,execs:40998,op:splice,rep:3 │ ├── id:000136,time:0,execs:0,orig:id:000102,src:000041+000031,time:28444,execs:70286,op:splice,rep:12 │ ├── id:000136,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 │ ├── id:000137,sync:secondaryfuzzer1,src:000142 │ ├── id:000137,time:0,execs:0,orig:id:000094,src:000032+000024,time:13673,execs:40990,op:splice,rep:2 │ ├── id:000137,time:0,execs:0,orig:id:000095,src:000032+000024,time:13678,execs:40998,op:splice,rep:3 │ ├── id:000137,time:0,execs:0,orig:id:000096,src:000044+000041,time:17000,execs:46472,op:splice,rep:2 │ ├── id:000137,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 │ ├── id:000137,time:0,execs:0,orig:id:000120,src:000049+000115,time:74059,execs:133925,op:splice,rep:2 │ ├── id:000138,src:000126+000128,time:181049,execs:254350,op:splice,rep:1 │ ├── id:000138,time:0,execs:0,orig:id:000095,src:000032+000024,time:13678,execs:40998,op:splice,rep:3 │ ├── id:000138,time:0,execs:0,orig:id:000096,src:000044+000041,time:17000,execs:46472,op:splice,rep:2 │ ├── id:000138,time:0,execs:0,orig:id:000097,src:000061+000076,time:17730,execs:48469,op:splice,rep:3 │ ├── id:000138,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 │ ├── id:000138,time:0,execs:0,orig:id:000121,src:000087,time:75581,execs:136642,op:havoc,rep:2 │ ├── id:000139,sync:secondaryfuzzer1,src:000143 │ ├── id:000139,time:0,execs:0,orig:id:000096,src:000044+000041,time:17000,execs:46472,op:splice,rep:2 │ ├── id:000139,time:0,execs:0,orig:id:000097,src:000061+000076,time:17730,execs:48469,op:splice,rep:3 │ ├── id:000139,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 │ ├── id:000139,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 │ ├── id:000139,time:0,execs:0,orig:id:000122,src:000005,time:81494,execs:148794,op:havoc,rep:2 │ ├── id:000140,src:000125+000108,time:227546,execs:310389,op:splice,rep:3 │ ├── id:000140,time:0,execs:0,orig:id:000097,src:000061+000076,time:17730,execs:48469,op:splice,rep:3 │ ├── id:000140,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 │ ├── id:000140,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 │ ├── id:000140,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 │ ├── id:000141,sync:secondaryfuzzer1,src:000147 │ ├── id:000141,time:0,execs:0,orig:id:000107,src:000013+000015,time:32430,execs:75878,op:splice,rep:1 │ ├── id:000141,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 │ ├── id:000141,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 │ ├── id:000141,time:0,execs:0,orig:id:000113,src:000001,time:56107,execs:111570,op:quick,pos:15,+cov │ ├── id:000142,src:000112,time:259217,execs:349701,op:havoc,rep:1 │ ├── id:000142,time:0,execs:0,orig:id:000108,src:000043+000105,time:33441,execs:78403,op:splice,rep:1 │ ├── id:000142,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 │ ├── id:000142,time:0,execs:0,orig:id:000113,src:000001,time:56107,execs:111570,op:quick,pos:15,+cov │ ├── id:000142,time:0,execs:0,orig:id:000114,src:000001,time:57206,execs:112017,op:havoc,rep:2 │ ├── id:000143,sync:secondaryfuzzer1,src:000148 │ ├── id:000143,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov │ ├── id:000143,time:0,execs:0,orig:id:000113,src:000001,time:56107,execs:111570,op:quick,pos:15,+cov │ ├── id:000143,time:0,execs:0,orig:id:000114,src:000001,time:57206,execs:112017,op:havoc,rep:2 │ ├── id:000143,time:0,execs:0,orig:id:000123,src:000098+000026,time:96774,execs:173854,op:splice,rep:1 │ ├── id:000144,sync:secondaryfuzzer1,src:000149,+cov │ ├── id:000144,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 │ ├── id:000144,time:0,execs:0,orig:id:000114,src:000001,time:57206,execs:112017,op:havoc,rep:2 │ ├── id:000144,time:0,execs:0,orig:id:000123,src:000098+000026,time:96774,execs:173854,op:splice,rep:1 │ ├── id:000144,time:0,execs:0,orig:id:000124,src:000123,time:99616,execs:176758,op:havoc,rep:1 │ ├── id:000145,src:000144+000085,time:278038,execs:378665,op:splice,rep:5 │ ├── id:000145,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 │ ├── id:000145,time:0,execs:0,orig:id:000123,src:000098+000026,time:96774,execs:173854,op:splice,rep:1 │ ├── id:000145,time:0,execs:0,orig:id:000124,src:000123,time:99616,execs:176758,op:havoc,rep:1 │ ├── id:000145,time:0,execs:0,orig:id:000125,src:000124+000043,time:102212,execs:178960,op:splice,rep:3 │ ├── id:000146,src:000143,time:284372,execs:388388,op:havoc,rep:4 │ ├── id:000146,time:0,execs:0,orig:id:000116,src:000013,time:61796,execs:117802,op:quick,pos:25,+cov │ ├── id:000146,time:0,execs:0,orig:id:000124,src:000123,time:99616,execs:176758,op:havoc,rep:1 │ ├── id:000146,time:0,execs:0,orig:id:000125,src:000124+000043,time:102212,execs:178960,op:splice,rep:3 │ ├── id:000146,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127 │ ├── id:000147,src:000144,time:366624,execs:514422,op:havoc,rep:4 │ ├── id:000147,time:0,execs:0,orig:id:000117,src:000048+000003,time:64106,execs:120685,op:splice,rep:2 │ ├── id:000147,time:0,execs:0,orig:id:000125,src:000124+000043,time:102212,execs:178960,op:splice,rep:3 │ ├── id:000147,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127 │ ├── id:000147,time:0,execs:0,orig:id:000127,src:000082,time:106869,execs:185822,op:havoc,rep:2 │ ├── id:000148,sync:secondaryfuzzer1,src:000156 │ ├── id:000148,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 │ ├── id:000148,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127 │ ├── id:000148,time:0,execs:0,orig:id:000127,src:000082,time:106869,execs:185822,op:havoc,rep:2 │ ├── id:000148,time:0,execs:0,orig:id:000128,src:000125,time:109936,execs:189802,op:havoc,rep:8 │ ├── id:000149,sync:secondaryfuzzer1,src:000157 │ ├── id:000149,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 │ ├── id:000149,time:0,execs:0,orig:id:000127,src:000082,time:106869,execs:185822,op:havoc,rep:2 │ ├── id:000149,time:0,execs:0,orig:id:000128,src:000125,time:109936,execs:189802,op:havoc,rep:8 │ ├── id:000149,time:0,execs:0,orig:id:000129,src:000074+000126,time:116762,execs:197072,op:splice,rep:1 │ ├── id:000150,sync:secondaryfuzzer1,src:000158 │ ├── id:000150,time:0,execs:0,orig:id:000120,src:000049+000115,time:74059,execs:133925,op:splice,rep:2 │ ├── id:000150,time:0,execs:0,orig:id:000128,src:000125,time:109936,execs:189802,op:havoc,rep:8 │ ├── id:000150,time:0,execs:0,orig:id:000129,src:000074+000126,time:116762,execs:197072,op:splice,rep:1 │ ├── id:000150,time:0,execs:0,orig:id:000130,src:000127+000047,time:134662,execs:222967,op:splice,rep:3,+cov │ ├── id:000151,src:000082+000012,time:399138,execs:562222,op:splice,rep:13 │ ├── id:000151,time:0,execs:0,orig:id:000121,src:000087,time:75581,execs:136642,op:havoc,rep:2 │ ├── id:000151,time:0,execs:0,orig:id:000129,src:000074+000126,time:116762,execs:197072,op:splice,rep:1 │ ├── id:000151,time:0,execs:0,orig:id:000130,src:000127+000047,time:134662,execs:222967,op:splice,rep:3,+cov │ ├── id:000151,time:0,execs:0,orig:id:000131,src:000130+000128,time:138343,execs:224838,op:splice,rep:4 │ ├── id:000152,src:000064+000132,time:438550,execs:607708,op:splice,rep:1 │ ├── id:000152,time:0,execs:0,orig:id:000122,src:000005,time:81494,execs:148794,op:havoc,rep:2 │ ├── id:000152,time:0,execs:0,orig:id:000130,src:000127+000047,time:134662,execs:222967,op:splice,rep:3,+cov │ ├── id:000152,time:0,execs:0,orig:id:000131,src:000130+000128,time:138343,execs:224838,op:splice,rep:4 │ ├── id:000152,time:0,execs:0,orig:id:000132,src:000130+000128,time:138478,execs:224874,op:splice,rep:3 │ ├── id:000153,sync:secondaryfuzzer1,src:000161 │ ├── id:000153,time:0,execs:0,orig:id:000131,src:000130+000128,time:138343,execs:224838,op:splice,rep:4 │ ├── id:000153,time:0,execs:0,orig:id:000132,src:000130+000128,time:138478,execs:224874,op:splice,rep:3 │ ├── id:000153,time:0,execs:0,orig:id:000133,src:000131,time:140624,execs:226104,op:havoc,rep:7 │ ├── id:000153,time:0,execs:0,orig:id:000140,src:000125+000108,time:227546,execs:310389,op:splice,rep:3 │ ├── id:000154,src:000149+000152,time:457671,execs:637748,op:splice,rep:4 │ ├── id:000154,time:0,execs:0,orig:id:000132,src:000130+000128,time:138478,execs:224874,op:splice,rep:3 │ ├── id:000154,time:0,execs:0,orig:id:000133,src:000131,time:140624,execs:226104,op:havoc,rep:7 │ ├── id:000154,time:0,execs:0,orig:id:000134,src:000132,time:148891,execs:230611,op:havoc,rep:6 │ ├── id:000154,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147 │ ├── id:000155,sync:secondaryfuzzer1,src:000162 │ ├── id:000155,time:0,execs:0,orig:id:000133,src:000131,time:140624,execs:226104,op:havoc,rep:7 │ ├── id:000155,time:0,execs:0,orig:id:000134,src:000132,time:148891,execs:230611,op:havoc,rep:6 │ ├── id:000155,time:0,execs:0,orig:id:000135,src:000132,time:154109,execs:232096,op:havoc,rep:5 │ ├── id:000155,time:0,execs:0,orig:id:000142,src:000112,time:259217,execs:349701,op:havoc,rep:1 │ ├── id:000156,src:000068+000149,time:545506,execs:766474,op:splice,rep:5 │ ├── id:000156,time:0,execs:0,orig:id:000134,src:000132,time:148891,execs:230611,op:havoc,rep:6 │ ├── id:000156,time:0,execs:0,orig:id:000135,src:000132,time:154109,execs:232096,op:havoc,rep:5 │ ├── id:000156,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134 │ ├── id:000156,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148 │ ├── id:000157,src:000156,time:549214,execs:770932,op:havoc,rep:8 │ ├── id:000157,time:0,execs:0,orig:id:000135,src:000132,time:154109,execs:232096,op:havoc,rep:5 │ ├── id:000157,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134 │ ├── id:000157,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142 │ ├── id:000157,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov │ ├── id:000158,src:000157,time:550980,execs:772363,op:havoc,rep:2 │ ├── id:000158,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134 │ ├── id:000158,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142 │ ├── id:000158,time:0,execs:0,orig:id:000138,src:000126+000128,time:181049,execs:254350,op:splice,rep:1 │ ├── id:000158,time:0,execs:0,orig:id:000145,src:000144+000085,time:278038,execs:378665,op:splice,rep:5 │ ├── id:000159,sync:secondaryfuzzer1,src:000164 │ ├── id:000159,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142 │ ├── id:000159,time:0,execs:0,orig:id:000138,src:000126+000128,time:181049,execs:254350,op:splice,rep:1 │ ├── id:000159,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143 │ ├── id:000159,time:0,execs:0,orig:id:000146,src:000143,time:284372,execs:388388,op:havoc,rep:4 │ ├── id:000160,src:000015,time:629061,execs:883203,op:quick,pos:9,+cov │ ├── id:000160,time:0,execs:0,orig:id:000138,src:000126+000128,time:181049,execs:254350,op:splice,rep:1 │ ├── id:000160,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143 │ ├── id:000160,time:0,execs:0,orig:id:000147,src:000144,time:366624,execs:514422,op:havoc,rep:4 │ ├── id:000160,time:0,execs:0,orig:id:000160,src:000015,time:629061,execs:883203,op:quick,pos:9,+cov │ ├── id:000161,src:000036+000012,time:637885,execs:893377,op:splice,rep:3 │ ├── id:000161,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143 │ ├── id:000161,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156 │ ├── id:000161,time:0,execs:0,orig:id:000160,src:000015,time:629061,execs:883203,op:quick,pos:9,+cov │ ├── id:000161,time:0,execs:0,orig:id:000161,src:000036+000012,time:637885,execs:893377,op:splice,rep:3 │ ├── id:000162,sync:secondaryfuzzer1,src:000169 │ ├── id:000162,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157 │ ├── id:000162,time:0,execs:0,orig:id:000160,src:000015,time:629061,execs:883203,op:quick,pos:9,+cov │ ├── id:000162,time:0,execs:0,orig:id:000161,src:000036+000012,time:637885,execs:893377,op:splice,rep:3 │ ├── id:000162,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169 │ ├── id:000163,sync:secondaryfuzzer1,src:000170 │ ├── id:000163,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158 │ ├── id:000163,time:0,execs:0,orig:id:000161,src:000036+000012,time:637885,execs:893377,op:splice,rep:3 │ ├── id:000163,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169 │ ├── id:000163,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170 │ ├── id:000164,sync:secondaryfuzzer1,src:000171 │ ├── id:000164,time:0,execs:0,orig:id:000151,src:000082+000012,time:399138,execs:562222,op:splice,rep:13 │ ├── id:000164,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169 │ ├── id:000164,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170 │ ├── id:000164,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171 │ ├── id:000165,src:000164,time:731406,execs:1006124,op:havoc,rep:3 │ ├── id:000165,time:0,execs:0,orig:id:000152,src:000064+000132,time:438550,execs:607708,op:splice,rep:1 │ ├── id:000165,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170 │ ├── id:000165,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171 │ ├── id:000165,time:0,execs:0,orig:id:000165,src:000164,time:731406,execs:1006124,op:havoc,rep:3 │ ├── id:000166,src:000018+000020,time:827609,execs:1131103,op:splice,rep:1 │ ├── id:000166,time:0,execs:0,orig:id:000153,sync:secondaryfuzzer1,src:000161 │ ├── id:000166,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171 │ ├── id:000166,time:0,execs:0,orig:id:000165,src:000164,time:731406,execs:1006124,op:havoc,rep:3 │ ├── id:000166,time:0,execs:0,orig:id:000166,src:000018+000020,time:827609,execs:1131103,op:splice,rep:1 │ ├── id:000167,src:000148+000163,time:846923,execs:1157232,op:splice,rep:4 │ ├── id:000167,time:0,execs:0,orig:id:000154,src:000149+000152,time:457671,execs:637748,op:splice,rep:4 │ ├── id:000167,time:0,execs:0,orig:id:000165,src:000164,time:731406,execs:1006124,op:havoc,rep:3 │ ├── id:000167,time:0,execs:0,orig:id:000166,src:000018+000020,time:827609,execs:1131103,op:splice,rep:1 │ ├── id:000167,time:0,execs:0,orig:id:000167,src:000148+000163,time:846923,execs:1157232,op:splice,rep:4 │ ├── id:000168,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162 │ ├── id:000168,time:0,execs:0,orig:id:000166,src:000018+000020,time:827609,execs:1131103,op:splice,rep:1 │ ├── id:000168,time:0,execs:0,orig:id:000167,src:000148+000163,time:846923,execs:1157232,op:splice,rep:4 │ ├── id:000169,src:000030,time:875325,execs:1192256,op:havoc,rep:2 │ ├── id:000169,time:0,execs:0,orig:id:000156,src:000068+000149,time:545506,execs:766474,op:splice,rep:5 │ ├── id:000169,time:0,execs:0,orig:id:000167,src:000148+000163,time:846923,execs:1157232,op:splice,rep:4 │ ├── id:000170,src:000164+000011,time:881002,execs:1198589,op:splice,rep:1 │ ├── id:000170,time:0,execs:0,orig:id:000157,src:000156,time:549214,execs:770932,op:havoc,rep:8 │ ├── id:000170,time:0,execs:0,orig:id:000169,src:000030,time:875325,execs:1192256,op:havoc,rep:2 │ ├── id:000171,src:000166,time:881312,execs:1198663,op:havoc,rep:8 │ ├── id:000171,time:0,execs:0,orig:id:000158,src:000157,time:550980,execs:772363,op:havoc,rep:2 │ ├── id:000171,time:0,execs:0,orig:id:000170,src:000164+000011,time:881002,execs:1198589,op:splice,rep:1 │ ├── id:000172,src:000117+000031,time:932717,execs:1252877,op:splice,rep:2 │ ├── id:000172,time:0,execs:0,orig:id:000159,sync:secondaryfuzzer1,src:000164 │ ├── id:000172,time:0,execs:0,orig:id:000171,src:000166,time:881312,execs:1198663,op:havoc,rep:8 │ ├── id:000173,src:000159,time:989458,execs:1315550,op:havoc,rep:6 │ ├── id:000173,time:0,execs:0,orig:id:000168,src:000008+000122,time:875994,execs:1192455,op:splice,rep:1 │ ├── id:000173,time:0,execs:0,orig:id:000172,src:000117+000031,time:932717,execs:1252877,op:splice,rep:2 │ ├── id:000174,sync:secondaryfuzzer1,src:000181 │ ├── id:000174,time:0,execs:0,orig:id:000173,src:000159,time:989458,execs:1315550,op:havoc,rep:6 │ ├── id:000174,time:0,execs:0,orig:id:000174,sync:secondaryfuzzer1,src:000181 │ ├── id:000175,src:000011,time:1219696,execs:1586741,op:havoc,rep:2 │ ├── id:000176,src:000012,time:1220281,execs:1587082,op:havoc,rep:4 │ ├── id:000177,src:000176+000099,time:1245150,execs:1612453,op:splice,rep:1 │ ├── id:000178,src:000176+000019,time:1245713,execs:1612872,op:splice,rep:2 │ ├── init │ ├── selector_0.bin │ └── selector_1.bin └── phink │ └── logs │ └── last_seed.phink ├── sample_integration_test.rs └── shared ├── mod.rs └── samples.rs /.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [env] 2 | RUST_TEST_THREADS = "1" # this is used to avoid race condition during test execution 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # See 2 | # for more info about CODEOWNERS file 3 | # It uses the same pattern rule for gitignore file 4 | # 5 | 6 | # Maintainers 7 | 8 | * @srlabs @kevin-valerio -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | We only support the latest version of Phink for security report. 6 | 7 | ## Reporting a Vulnerability 8 | 9 | Feel free to post an issue if you detect any security bug. 10 | -------------------------------------------------------------------------------- /assets/backtrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/assets/backtrace.png -------------------------------------------------------------------------------- /assets/coverage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/assets/coverage_1.png -------------------------------------------------------------------------------- /assets/coverage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/assets/coverage_2.png -------------------------------------------------------------------------------- /assets/crashed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/assets/crashed.png -------------------------------------------------------------------------------- /assets/dashboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/assets/dashboard.gif -------------------------------------------------------------------------------- /assets/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/assets/dashboard.png -------------------------------------------------------------------------------- /assets/phink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/assets/phink.png -------------------------------------------------------------------------------- /book/documentation/.nojekyll: -------------------------------------------------------------------------------- 1 | This file makes sure that Github Pages doesn't process mdBook's output. 2 | -------------------------------------------------------------------------------- /book/documentation/CNAME: -------------------------------------------------------------------------------- 1 | github.io 2 | -------------------------------------------------------------------------------- /book/documentation/FontAwesome/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/FontAwesome/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /book/documentation/FontAwesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/FontAwesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /book/documentation/FontAwesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/FontAwesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /book/documentation/FontAwesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/FontAwesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /book/documentation/FontAwesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/FontAwesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /book/documentation/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/favicon.png -------------------------------------------------------------------------------- /book/documentation/fonts/open-sans-v17-all-charsets-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/open-sans-v17-all-charsets-300.woff2 -------------------------------------------------------------------------------- /book/documentation/fonts/open-sans-v17-all-charsets-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/open-sans-v17-all-charsets-300italic.woff2 -------------------------------------------------------------------------------- /book/documentation/fonts/open-sans-v17-all-charsets-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/open-sans-v17-all-charsets-600.woff2 -------------------------------------------------------------------------------- /book/documentation/fonts/open-sans-v17-all-charsets-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/open-sans-v17-all-charsets-600italic.woff2 -------------------------------------------------------------------------------- /book/documentation/fonts/open-sans-v17-all-charsets-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/open-sans-v17-all-charsets-700.woff2 -------------------------------------------------------------------------------- /book/documentation/fonts/open-sans-v17-all-charsets-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/open-sans-v17-all-charsets-700italic.woff2 -------------------------------------------------------------------------------- /book/documentation/fonts/open-sans-v17-all-charsets-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/open-sans-v17-all-charsets-800.woff2 -------------------------------------------------------------------------------- /book/documentation/fonts/open-sans-v17-all-charsets-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/open-sans-v17-all-charsets-800italic.woff2 -------------------------------------------------------------------------------- /book/documentation/fonts/open-sans-v17-all-charsets-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/open-sans-v17-all-charsets-italic.woff2 -------------------------------------------------------------------------------- /book/documentation/fonts/open-sans-v17-all-charsets-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/open-sans-v17-all-charsets-regular.woff2 -------------------------------------------------------------------------------- /book/documentation/fonts/source-code-pro-v11-all-charsets-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/book/documentation/fonts/source-code-pro-v11-all-charsets-500.woff2 -------------------------------------------------------------------------------- /book/src/FAQ.md: -------------------------------------------------------------------------------- 1 | # FAQ 2 | 3 | #### Why the name '_Phink_' ? 4 | 5 | Mystère et boule de gomme. -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" 3 | components = ["rustfmt", "cargo", "rustc", "rust-std", "clippy"] 4 | targets = [ 5 | "aarch64-apple-darwin", # macOS on ARM architecture 6 | "x86_64-unknown-linux-gnu", # Linux on x86_64 architecture 7 | ] 8 | profile = "default" -------------------------------------------------------------------------------- /sample/dummy/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore build artifacts from the local tests sub-crate. 2 | /target/ 3 | 4 | # Ignore backup files creates by cargo fmt. 5 | **/*.rs.bk 6 | 7 | -------------------------------------------------------------------------------- /sample/transfer/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore build artifacts from the local tests sub-crate. 2 | /target/ 3 | 4 | # Ignore backup files creates by cargo fmt. 5 | **/*.rs.bk 6 | 7 | -------------------------------------------------------------------------------- /src/cli/ui/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod custom; 2 | pub mod ratatui; 3 | 4 | pub mod chart; 5 | pub mod configtable; 6 | pub mod logger; 7 | pub mod monitor; 8 | pub mod traits; 9 | -------------------------------------------------------------------------------- /src/cli/ui/monitor/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod logs; 2 | 3 | pub mod corpus; 4 | -------------------------------------------------------------------------------- /src/contract/custom/mod.rs: -------------------------------------------------------------------------------- 1 | #[allow(clippy::module_inception)] 2 | pub mod custom; 3 | pub mod preferences; 4 | -------------------------------------------------------------------------------- /src/contract/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod custom; 2 | pub mod payload; 3 | pub mod remote; 4 | pub mod runtime; 5 | pub mod selectors; 6 | -------------------------------------------------------------------------------- /src/contract/selectors/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod database; 2 | pub mod selector; 3 | -------------------------------------------------------------------------------- /src/cover/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod coverage; 2 | pub mod report; 3 | pub mod trace; 4 | -------------------------------------------------------------------------------- /src/fuzzer/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod environment; 2 | pub mod fuzz; 3 | pub mod manager; 4 | pub mod parser; 5 | -------------------------------------------------------------------------------- /src/instrumenter/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod instrumentation; 2 | pub mod path; 3 | pub mod seedgen; 4 | pub mod traits; 5 | -------------------------------------------------------------------------------- /src/instrumenter/seedgen/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod generator; 2 | pub mod parser; 3 | -------------------------------------------------------------------------------- /src/instrumenter/traits/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod visitor; 2 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | phink_lib::main(); 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000001,time:0,execs:0,orig:id:000159,sync:secondaryfuzzer1,src:000164: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000001,time:0,execs:0,orig:id:000159,sync:secondaryfuzzer1,src:000164 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000002,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000002,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000002,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000002,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000002,time:0,execs:0,orig:id:000159,sync:secondaryfuzzer1,src:000164: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000002,time:0,execs:0,orig:id:000159,sync:secondaryfuzzer1,src:000164 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000003,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000003,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000003,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000003,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000003,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000003,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000004,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000004,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000004,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000004,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000005,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000005,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000005,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000005,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000006,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000006,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000006,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000006,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000007,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000007,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000007,time:0,execs:0,orig:id:000153,sync:secondaryfuzzer1,src:000161: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000007,time:0,execs:0,orig:id:000153,sync:secondaryfuzzer1,src:000161 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000008,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000008,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000008,time:0,execs:0,orig:id:000153,sync:secondaryfuzzer1,src:000161: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000008,time:0,execs:0,orig:id:000153,sync:secondaryfuzzer1,src:000161 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000008,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000008,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000009,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000009,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000009,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000009,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000009,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000009,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000009,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000009,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000010,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000010,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000010,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000010,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000010,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000010,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000010,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000010,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000011,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033: -------------------------------------------------------------------------------- 1 | 0**00000D00****************************************.00*****************0********************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000011,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000011,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000011,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000011,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000011,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000011,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000012,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032: -------------------------------------------------------------------------------- 1 | 0**00000.00*****************000000********000*:***.00*****************00***000************** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000012,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000012,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000012,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000012,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000012,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000012,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000013,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000013,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000013,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000013,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000013,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000013,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000013,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000013,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000013,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000013,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000014,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000014,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000014,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000014,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000015,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000015,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000015,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033: -------------------------------------------------------------------------------- 1 | 0**00000D00****************************************.00*****************0********************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000015,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000015,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000015,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000015,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000015,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000015,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000016,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000016,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000016,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032: -------------------------------------------------------------------------------- 1 | 0**00000.00*****************000000********000*:***.00*****************00***000************** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000016,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000016,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000016,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000016,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000016,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000016,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000017,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000017,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000017,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000017,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000017,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000017,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000017,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000017,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000018,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000018,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000018,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000018,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000018,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000018,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000018,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000018,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000019,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000019,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000019,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000019,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000019,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000019,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000019,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000019,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000020,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000020,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000020,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000020,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000020,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000020,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000020,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000020,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000021,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000021,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000021,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000021,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000022,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000022,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000022,time:0,execs:0,orig:init: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000023,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000023,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000023,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000023,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000023,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000023,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000024,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000024,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000024,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000024,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000024,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000024,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000024,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000024,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000025,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 00000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000025,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000025,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000025,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000025,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000025,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000025,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000025,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000025,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000026,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000026,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000026,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000026,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000026,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000026,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000026,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000026,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000026,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000026,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000026,time:0,execs:0,orig:init: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000027,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000027,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000027,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000N00 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000027,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000027,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000027,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000027,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000027,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000027,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000028,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000028,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000028,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov: -------------------------------------------------------------------------------- 1 | ******** 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000028,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000028,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000028,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000028,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000028,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000028,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000029,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 00000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000029,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000###################0000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000029,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000029,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000029,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000029,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000029,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000029,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000029,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000029,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000030,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000030,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000030,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000030,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000030,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000030,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000030,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000030,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000030,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000031,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000N00 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000031,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000031,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000031,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000031,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000031,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000032,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov: -------------------------------------------------------------------------------- 1 | ******** 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000032,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0********************************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000032,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033: -------------------------------------------------------------------------------- 1 | 0**00000D00****************************************.00*****************0********************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000032,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000032,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000032,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000032,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000033,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000###################0000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000033,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0000************************000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000033,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032: -------------------------------------------------------------------------------- 1 | 0**00000.00*****************000000********000*:***.00*****************00***000************** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000033,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000033,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000033,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000033,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000033,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000033,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000034,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000035,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000035,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | *****************000******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000035,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000035,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000035,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000035,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000035,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000035,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000035,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000035,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000036,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0********************************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000036,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 000000********000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000036,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000036,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000036,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000036,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000036,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000036,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000037,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0000************************000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000037,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov: -------------------------------------------------------------------------------- 1 | 0000000000********000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000037,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000037,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000037,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000037,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000038,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000038,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000038,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000038,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000039,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | *****************000******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000039,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00*****************************************************0000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000039,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000039,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000039,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000039,time:0,execs:0,orig:id:000057,src:000011,time:7997,execs:29360,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000040,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 000000********000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000040,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000**************************************************0**********000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000040,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000040,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000040,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000040,time:0,execs:0,orig:id:000056,src:000011,time:7925,execs:29301,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000041,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov: -------------------------------------------------------------------------------- 1 | 0000000000********000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000041,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000041,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000042,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000042,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000043,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00*****************************************************0000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000043,time:0,execs:0,orig:init: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000044,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000044,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000044,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000**************************************************0**********000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000045,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000045,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000045,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033: -------------------------------------------------------------------------------- 1 | 0**00000D00****************************************.00*****************0********************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000045,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000045,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000045,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000045,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000046,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 00000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000046,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032: -------------------------------------------------------------------------------- 1 | 0**00000.00*****************000000********000*:***.00*****************00***000************** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000046,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000046,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000046,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000046,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000047,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000047,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000047,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000047,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000047,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000047,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000047,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000047,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000047,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000047,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000N00 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000048,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov: -------------------------------------------------------------------------------- 1 | ******** 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000049,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000050,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000###################0000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000050,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000050,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000050,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000050,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000050,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000050,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000050,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000050,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000051,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000051,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000051,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000051,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000051,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000051,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000051,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000051,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000051,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000052,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000053,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0********************************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000053,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000053,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000053,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000053,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000053,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000053,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000053,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000053,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000054,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0000************************000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000054,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000054,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000054,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000054,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000055,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000055,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000055,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000055,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000055,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000055,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000055,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000055,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000056,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | *****************000******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000056,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000056,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000056,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000056,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000056,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000056,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000056,time:0,execs:0,orig:init: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000057,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000057,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000057,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 000000********000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000057,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000057,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000058,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000058,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000058,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov: -------------------------------------------------------------------------------- 1 | 0000000000********000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000058,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000058,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000058,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000058,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000059,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 00000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000059,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000059,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000059,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000059,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000060,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000060,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000060,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00*****************************************************0000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000060,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000060,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000060,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000060,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000061,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000N00 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000061,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000**************************************************0**********000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000062,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov: -------------------------------------------------------------------------------- 1 | ******** 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000062,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000062,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000062,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000062,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000063,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000###################0000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000063,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000063,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000063,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000063,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000063,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000063,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000064,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000064,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000064,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000064,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000064,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000065,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000065,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000065,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000065,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000065,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000066,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0********************************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000066,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000066,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000066,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000066,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000066,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000066,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000067,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0000************************000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000067,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000067,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000067,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000067,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000068,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000068,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000069,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | *****************000******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000069,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000069,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000069,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000069,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000070,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 000000********000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000070,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000070,time:0,execs:0,orig:id:000026,src:000002,time:2775,execs:13215,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000070,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000070,time:0,execs:0,orig:id:000027,src:000002,time:2792,execs:13296,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000071,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov: -------------------------------------------------------------------------------- 1 | 0000000000********000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000073,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00*****************************************************0000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000073,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000073,time:0,execs:0,orig:id:000030,src:000002,time:2871,execs:13606,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000073,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000073,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000074,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000**************************************************0**********000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000074,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000074,time:0,execs:0,orig:id:000031,src:000002,time:2914,execs:13799,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000075,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000075,time:0,execs:0,orig:id:000032,src:000002,time:2955,execs:13982,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000075,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000075,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000076,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000076,time:0,execs:0,orig:id:000033,src:000002,time:2957,execs:13990,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000076,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000076,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000076,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000076,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000077,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000077,time:0,execs:0,orig:id:000034,src:000002,time:2987,execs:14123,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000077,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000077,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000077,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000077,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000077,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000077,time:0,execs:0,orig:id:000068,src:000009,time:9166,execs:31057,op:havoc,rep:7 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000078,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000**************************************************0**********000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000078,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000078,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000078,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000078,time:0,execs:0,orig:id:000040,src:000002,time:3875,execs:17948,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000079,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00*****************************************************0000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000079,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000079,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000079,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000079,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000080,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000080,time:0,execs:0,orig:id:000037,src:000002,time:3430,execs:15962,op:havoc,rep:3 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000080,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000080,time:0,execs:0,orig:id:000038,src:000002,time:3529,execs:16403,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000081,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov: -------------------------------------------------------------------------------- 1 | 0000000000********000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000082,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 000000********000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000083,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | *****************000******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000084,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000084,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000084,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000084,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000085,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0000************************000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000086,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0********************************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000087,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000087,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000087,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000088,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000088,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000088,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000089,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000###################0000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000089,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000089,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000090,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov: -------------------------------------------------------------------------------- 1 | ******** 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000090,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000090,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000091,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000N00 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000091,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000091,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000091,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000091,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000092,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000092,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000092,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000092,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000092,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000092,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000093,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 00000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000093,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000093,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000093,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000093,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000094,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000094,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000094,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000094,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000095,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000095,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000095,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000095,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000096,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000096,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000096,time:0,execs:0,orig:init: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000097,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000097,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000097,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000097,time:0,execs:0,orig:id:000058,sync:secondaryfuzzer1,src:000062 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000097,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000097,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000098,src:000024+000073,time:18952,execs:52561,op:splice,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000098,src:000024+000073,time:18952,execs:52561,op:splice,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000098,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000**************************************************0**********000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000098,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000098,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000099,src:000045+000071,time:19432,execs:53917,op:splice,rep:2,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000099,src:000045+000071,time:19432,execs:53917,op:splice,rep:2,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000099,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00*****************************************************0000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000099,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000**************************************************0**********000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000099,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000099,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000100,src:000061+000093,time:24334,execs:63733,op:splice,rep:7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000100,src:000061+000093,time:24334,execs:63733,op:splice,rep:7 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000100,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00*****************************************************0000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000100,time:0,execs:0,orig:id:000018,src:000000,time:2509,execs:12021,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000**************************************************0**********000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000100,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000100,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000101,src:000068+000064,time:25552,execs:64717,op:splice,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000101,src:000068+000064,time:25552,execs:64717,op:splice,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000101,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov: -------------------------------------------------------------------------------- 1 | 0000000000********000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000101,time:0,execs:0,orig:id:000017,src:000000,time:1933,execs:9309,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00*****************************************************0000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000101,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000101,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000102,src:000041+000031,time:28444,execs:70286,op:splice,rep:12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000102,src:000041+000031,time:28444,execs:70286,op:splice,rep:12 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000102,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 000000********000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000102,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov: -------------------------------------------------------------------------------- 1 | 0000000000********000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000102,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000102,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000103,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | *****************000******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000103,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 000000********000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000103,time:0,execs:0,orig:id:000015,src:000000,time:96,execs:449,op:havoc,rep:2,+cov: -------------------------------------------------------------------------------- 1 | 0000000000********000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000103,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000103,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000104,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000104,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000104,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | *****************000******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000104,time:0,execs:0,orig:id:000014,src:000000,time:72,execs:327,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 000000********000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000104,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000104,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000105,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0000************************000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000105,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000105,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000105,time:0,execs:0,orig:id:000013,src:000000,time:44,execs:187,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | *****************000******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000105,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000105,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000106,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0********************************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000106,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0000************************000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000106,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000106,time:0,execs:0,orig:id:000012,src:000000,time:43,execs:182,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000106,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032: -------------------------------------------------------------------------------- 1 | 0**00000.00*****************000000********000*:***.00*****************00***000************** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000107,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000107,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0********************************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000107,time:0,execs:0,orig:id:000011,src:000000,time:39,execs:166,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0000************************000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000107,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033: -------------------------------------------------------------------------------- 1 | 0**00000D00****************************************.00*****************0********************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000107,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000107,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000108,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000108,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000108,time:0,execs:0,orig:id:000010,src:000000,time:34,execs:141,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 0********************************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000108,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000108,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000108,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000108,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000109,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000###################0000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000109,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000109,time:0,execs:0,orig:id:000009,src:000000,time:31,execs:133,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000109,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000109,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000109,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000109,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000110,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov: -------------------------------------------------------------------------------- 1 | ******** 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000110,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000###################0000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000110,time:0,execs:0,orig:id:000008,src:000000,time:18,execs:65,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0******** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000110,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000110,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000110,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000110,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000111,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000N00 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000111,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov: -------------------------------------------------------------------------------- 1 | ******** 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000111,time:0,execs:0,orig:id:000007,src:000000,time:14,execs:47,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 0000###################0000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000111,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000111,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000112,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000112,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000112,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000N00 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000112,time:0,execs:0,orig:id:000006,src:000000,time:12,execs:41,op:havoc,rep:1,+cov: -------------------------------------------------------------------------------- 1 | ******** 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000112,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000112,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000113,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 00000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000113,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000113,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000113,time:0,execs:0,orig:id:000005,src:000000,time:10,execs:32,op:havoc,rep:2: -------------------------------------------------------------------------------- 1 | 00000N00 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000113,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000113,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000113,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000113,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000114,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000114,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000114,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 00000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000114,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000114,time:0,execs:0,orig:id:000004,src:000000,time:8,execs:26,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000114,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000114,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000114,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000114,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000115,sync:secondaryfuzzer1,src:000119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000115,sync:secondaryfuzzer1,src:000119 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000115,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000115,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000115,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000115,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000115,time:0,execs:0,orig:id:000003,src:000000,time:6,execs:21,op:havoc,rep:1: -------------------------------------------------------------------------------- 1 | 00000000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000116,src:000013,time:61796,execs:117802,op:quick,pos:25,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000116,src:000013,time:61796,execs:117802,op:quick,pos:25,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000116,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000116,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000116,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000116,time:0,execs:0,orig:id:000002,sync:secondaryfuzzer1,src:000002,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000116,time:0,execs:0,orig:init: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000117,src:000048+000003,time:64106,execs:120685,op:splice,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000117,src:000048+000003,time:64106,execs:120685,op:splice,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000117,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000117,time:0,execs:0,orig:id:000001,sync:secondaryfuzzer1,src:000001 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000117,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000117,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000117,time:0,execs:0,orig:init: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000118,sync:secondaryfuzzer1,src:000120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000118,sync:secondaryfuzzer1,src:000120 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000118,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000118,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000118,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000118,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000118,time:0,execs:0,orig:init: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000119,sync:secondaryfuzzer1,src:000121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000119,sync:secondaryfuzzer1,src:000121 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000119,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000119,time:0,execs:0,orig:id:000041,sync:secondaryfuzzer1,src:000003 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000119,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000119,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000119,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000119,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000119,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000119,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000120,src:000049+000115,time:74059,execs:133925,op:splice,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000120,src:000049+000115,time:74059,execs:133925,op:splice,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000120,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000120,time:0,execs:0,orig:id:000042,sync:secondaryfuzzer1,src:000004 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000120,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000120,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000120,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000120,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000120,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000120,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000121,src:000087,time:75581,execs:136642,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000121,src:000087,time:75581,execs:136642,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000121,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000121,time:0,execs:0,orig:id:000043,sync:secondaryfuzzer1,src:000005,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000121,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000121,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000121,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000121,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000121,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000121,time:0,execs:0,orig:id:000082,sync:secondaryfuzzer1,src:000066 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000122,src:000005,time:81494,execs:148794,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000122,src:000005,time:81494,execs:148794,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000122,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000122,time:0,execs:0,orig:id:000044,sync:secondaryfuzzer1,src:000006 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000122,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000122,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000122,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000122,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000122,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000122,time:0,execs:0,orig:id:000083,sync:secondaryfuzzer1,src:000068 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000123,src:000098+000026,time:96774,execs:173854,op:splice,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000123,src:000098+000026,time:96774,execs:173854,op:splice,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000123,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000123,time:0,execs:0,orig:id:000045,sync:secondaryfuzzer1,src:000008 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000123,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000123,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000123,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000123,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000123,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000123,time:0,execs:0,orig:id:000084,sync:secondaryfuzzer1,src:000069 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000124,src:000123,time:99616,execs:176758,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000124,src:000123,time:99616,execs:176758,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000124,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000124,time:0,execs:0,orig:id:000046,sync:secondaryfuzzer1,src:000010,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000124,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000124,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000124,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000124,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000124,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000124,time:0,execs:0,orig:id:000085,sync:secondaryfuzzer1,src:000074 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000124,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000124,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000125,src:000124+000043,time:102212,execs:178960,op:splice,rep:3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000125,src:000124+000043,time:102212,execs:178960,op:splice,rep:3 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000125,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000125,time:0,execs:0,orig:id:000047,sync:secondaryfuzzer1,src:000016 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000125,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000125,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000125,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000125,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000125,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000125,time:0,execs:0,orig:id:000086,sync:secondaryfuzzer1,src:000075 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000125,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000125,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000126,sync:secondaryfuzzer1,src:000127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000126,sync:secondaryfuzzer1,src:000127 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000126,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000126,time:0,execs:0,orig:id:000048,sync:secondaryfuzzer1,src:000020,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000126,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000126,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000126,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032: -------------------------------------------------------------------------------- 1 | 0**00000.00*****************000000********000*:***.00*****************00***000************** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000126,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000126,time:0,execs:0,orig:id:000087,sync:secondaryfuzzer1,src:000076 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000126,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000126,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000127,src:000082,time:106869,execs:185822,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000127,src:000082,time:106869,execs:185822,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000127,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000127,time:0,execs:0,orig:id:000049,sync:secondaryfuzzer1,src:000025 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000127,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032: -------------------------------------------------------------------------------- 1 | 0**00000.00*****************000000********000*:***.00*****************00***000************** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000127,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033: -------------------------------------------------------------------------------- 1 | 0**00000D00****************************************.00*****************0********************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000127,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000127,time:0,execs:0,orig:id:000088,sync:secondaryfuzzer1,src:000078 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000127,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000127,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000128,src:000125,time:109936,execs:189802,op:havoc,rep:8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000128,src:000125,time:109936,execs:189802,op:havoc,rep:8 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000128,time:0,execs:0,orig:id:000050,sync:secondaryfuzzer1,src:000032: -------------------------------------------------------------------------------- 1 | 0**00000.00*****************000000********000*:***.00*****************00***000************** -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000128,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033: -------------------------------------------------------------------------------- 1 | 0**00000D00****************************************.00*****************0********************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000129,src:000074+000126,time:116762,execs:197072,op:splice,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000129,src:000074+000126,time:116762,execs:197072,op:splice,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000129,time:0,execs:0,orig:id:000051,sync:secondaryfuzzer1,src:000033: -------------------------------------------------------------------------------- 1 | 0**00000D00****************************************.00*****************0********************* -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000130,src:000127+000047,time:134662,execs:222967,op:splice,rep:3,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000130,src:000127+000047,time:134662,execs:222967,op:splice,rep:3,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000130,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000130,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000131,src:000130+000128,time:138343,execs:224838,op:splice,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000131,src:000130+000128,time:138343,execs:224838,op:splice,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000131,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000131,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000132,src:000130+000128,time:138478,execs:224874,op:splice,rep:3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000132,src:000130+000128,time:138478,execs:224874,op:splice,rep:3 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000132,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000132,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000133,src:000131,time:140624,execs:226104,op:havoc,rep:7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000133,src:000131,time:140624,execs:226104,op:havoc,rep:7 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000134,src:000132,time:148891,execs:230611,op:havoc,rep:6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000134,src:000132,time:148891,execs:230611,op:havoc,rep:6 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000135,src:000132,time:154109,execs:232096,op:havoc,rep:5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000135,src:000132,time:154109,execs:232096,op:havoc,rep:5 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000135,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000135,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000136,sync:secondaryfuzzer1,src:000134: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000136,sync:secondaryfuzzer1,src:000134 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000136,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000136,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000137,sync:secondaryfuzzer1,src:000142: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000137,sync:secondaryfuzzer1,src:000142 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000137,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000137,time:0,execs:0,orig:id:000103,sync:secondaryfuzzer1,src:000097 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000138,src:000126+000128,time:181049,execs:254350,op:splice,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000138,src:000126+000128,time:181049,execs:254350,op:splice,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000138,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000138,time:0,execs:0,orig:id:000104,sync:secondaryfuzzer1,src:000099 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000139,sync:secondaryfuzzer1,src:000143: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000139,sync:secondaryfuzzer1,src:000143 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000139,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000139,time:0,execs:0,orig:id:000105,sync:secondaryfuzzer1,src:000100 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000139,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000139,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000140,src:000125+000108,time:227546,execs:310389,op:splice,rep:3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000140,src:000125+000108,time:227546,execs:310389,op:splice,rep:3 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000140,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000140,time:0,execs:0,orig:id:000106,sync:secondaryfuzzer1,src:000101 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000140,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000140,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000140,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000140,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000141,sync:secondaryfuzzer1,src:000147: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000141,sync:secondaryfuzzer1,src:000147 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000141,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000141,time:0,execs:0,orig:id:000109,sync:secondaryfuzzer1,src:000109 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000141,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000141,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000142,src:000112,time:259217,execs:349701,op:havoc,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000142,src:000112,time:259217,execs:349701,op:havoc,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000142,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000142,time:0,execs:0,orig:id:000112,sync:secondaryfuzzer1,src:000117 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000143,sync:secondaryfuzzer1,src:000148: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000143,sync:secondaryfuzzer1,src:000148 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000143,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000143,time:0,execs:0,orig:id:000110,sync:secondaryfuzzer1,src:000114,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000144,sync:secondaryfuzzer1,src:000149,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000144,sync:secondaryfuzzer1,src:000149,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000144,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000144,time:0,execs:0,orig:id:000111,sync:secondaryfuzzer1,src:000115 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000145,src:000144+000085,time:278038,execs:378665,op:splice,rep:5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000145,src:000144+000085,time:278038,execs:378665,op:splice,rep:5 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000145,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000145,time:0,execs:0,orig:id:000115,sync:secondaryfuzzer1,src:000119 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000146,src:000143,time:284372,execs:388388,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000146,src:000143,time:284372,execs:388388,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000146,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000146,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000147,src:000144,time:366624,execs:514422,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000147,src:000144,time:366624,execs:514422,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000147,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000147,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000148,sync:secondaryfuzzer1,src:000156: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000148,sync:secondaryfuzzer1,src:000156 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000148,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000148,time:0,execs:0,orig:id:000118,sync:secondaryfuzzer1,src:000120 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000148,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000148,time:0,execs:0,orig:id:000126,sync:secondaryfuzzer1,src:000127 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000149,sync:secondaryfuzzer1,src:000157: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000149,sync:secondaryfuzzer1,src:000157 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000149,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000149,time:0,execs:0,orig:id:000119,sync:secondaryfuzzer1,src:000121 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000150,sync:secondaryfuzzer1,src:000158: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000150,sync:secondaryfuzzer1,src:000158 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000151,src:000082+000012,time:399138,execs:562222,op:splice,rep:13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000151,src:000082+000012,time:399138,execs:562222,op:splice,rep:13 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000152,src:000064+000132,time:438550,execs:607708,op:splice,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000152,src:000064+000132,time:438550,execs:607708,op:splice,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000153,sync:secondaryfuzzer1,src:000161: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000153,sync:secondaryfuzzer1,src:000161 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000154,src:000149+000152,time:457671,execs:637748,op:splice,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000154,src:000149+000152,time:457671,execs:637748,op:splice,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000154,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000154,time:0,execs:0,orig:id:000141,sync:secondaryfuzzer1,src:000147 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000155,sync:secondaryfuzzer1,src:000162: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000155,sync:secondaryfuzzer1,src:000162 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000156,src:000068+000149,time:545506,execs:766474,op:splice,rep:5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000156,src:000068+000149,time:545506,execs:766474,op:splice,rep:5 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000156,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000156,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000156,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000156,time:0,execs:0,orig:id:000143,sync:secondaryfuzzer1,src:000148 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000157,src:000156,time:549214,execs:770932,op:havoc,rep:8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000157,src:000156,time:549214,execs:770932,op:havoc,rep:8 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000157,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000157,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000157,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000157,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000157,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000157,time:0,execs:0,orig:id:000144,sync:secondaryfuzzer1,src:000149,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000158,src:000157,time:550980,execs:772363,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000158,src:000157,time:550980,execs:772363,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000158,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000158,time:0,execs:0,orig:id:000136,sync:secondaryfuzzer1,src:000134 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000158,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000158,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000159,sync:secondaryfuzzer1,src:000164: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000159,sync:secondaryfuzzer1,src:000164 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000159,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000159,time:0,execs:0,orig:id:000137,sync:secondaryfuzzer1,src:000142 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000159,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000159,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000160,src:000015,time:629061,execs:883203,op:quick,pos:9,+cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000160,src:000015,time:629061,execs:883203,op:quick,pos:9,+cov -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000160,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000160,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000161,src:000036+000012,time:637885,execs:893377,op:splice,rep:3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000161,src:000036+000012,time:637885,execs:893377,op:splice,rep:3 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000161,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000161,time:0,execs:0,orig:id:000139,sync:secondaryfuzzer1,src:000143 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000161,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000161,time:0,execs:0,orig:id:000148,sync:secondaryfuzzer1,src:000156 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000162,sync:secondaryfuzzer1,src:000169: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000162,sync:secondaryfuzzer1,src:000169 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000162,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000162,time:0,execs:0,orig:id:000149,sync:secondaryfuzzer1,src:000157 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000162,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000162,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000163,sync:secondaryfuzzer1,src:000170: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000163,sync:secondaryfuzzer1,src:000170 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000163,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000163,time:0,execs:0,orig:id:000150,sync:secondaryfuzzer1,src:000158 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000163,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000163,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000163,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000163,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000164,sync:secondaryfuzzer1,src:000171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000164,sync:secondaryfuzzer1,src:000171 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000164,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000164,time:0,execs:0,orig:id:000162,sync:secondaryfuzzer1,src:000169 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000164,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000164,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000164,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000164,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000165,src:000164,time:731406,execs:1006124,op:havoc,rep:3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000165,src:000164,time:731406,execs:1006124,op:havoc,rep:3 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000165,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000165,time:0,execs:0,orig:id:000163,sync:secondaryfuzzer1,src:000170 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000165,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000165,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000166,src:000018+000020,time:827609,execs:1131103,op:splice,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000166,src:000018+000020,time:827609,execs:1131103,op:splice,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000166,time:0,execs:0,orig:id:000153,sync:secondaryfuzzer1,src:000161: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000166,time:0,execs:0,orig:id:000153,sync:secondaryfuzzer1,src:000161 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000166,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000166,time:0,execs:0,orig:id:000164,sync:secondaryfuzzer1,src:000171 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000167,src:000148+000163,time:846923,execs:1157232,op:splice,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000167,src:000148+000163,time:846923,execs:1157232,op:splice,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000168,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000168,time:0,execs:0,orig:id:000155,sync:secondaryfuzzer1,src:000162 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000169,src:000030,time:875325,execs:1192256,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000169,src:000030,time:875325,execs:1192256,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000170,src:000164+000011,time:881002,execs:1198589,op:splice,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000170,src:000164+000011,time:881002,execs:1198589,op:splice,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000171,src:000166,time:881312,execs:1198663,op:havoc,rep:8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000171,src:000166,time:881312,execs:1198663,op:havoc,rep:8 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000172,src:000117+000031,time:932717,execs:1252877,op:splice,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000172,src:000117+000031,time:932717,execs:1252877,op:splice,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000172,time:0,execs:0,orig:id:000159,sync:secondaryfuzzer1,src:000164: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000172,time:0,execs:0,orig:id:000159,sync:secondaryfuzzer1,src:000164 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000173,src:000159,time:989458,execs:1315550,op:havoc,rep:6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000173,src:000159,time:989458,execs:1315550,op:havoc,rep:6 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000174,sync:secondaryfuzzer1,src:000181: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000174,sync:secondaryfuzzer1,src:000181 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000174,time:0,execs:0,orig:id:000174,sync:secondaryfuzzer1,src:000181: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000174,time:0,execs:0,orig:id:000174,sync:secondaryfuzzer1,src:000181 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000175,src:000011,time:1219696,execs:1586741,op:havoc,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000175,src:000011,time:1219696,execs:1586741,op:havoc,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000176,src:000012,time:1220281,execs:1587082,op:havoc,rep:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000176,src:000012,time:1220281,execs:1587082,op:havoc,rep:4 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000177,src:000176+000099,time:1245150,execs:1612453,op:splice,rep:1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000177,src:000176+000099,time:1245150,execs:1612453,op:splice,rep:1 -------------------------------------------------------------------------------- /tests/fixtures/corpus/id:000178,src:000176+000019,time:1245713,execs:1612872,op:splice,rep:2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/id:000178,src:000176+000019,time:1245713,execs:1612872,op:splice,rep:2 -------------------------------------------------------------------------------- /tests/fixtures/corpus/init: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /tests/fixtures/corpus/selector_0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/selector_0.bin -------------------------------------------------------------------------------- /tests/fixtures/corpus/selector_1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srlabs/phink/4560887affde316cc2ec32168677841df570d3ec/tests/fixtures/corpus/selector_1.bin --------------------------------------------------------------------------------