gitextract_fhedyb34/ ├── .git-blame-ignore-revs ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ ├── actions/ │ │ ├── build-evm-base/ │ │ │ └── action.yaml │ │ ├── build-evm-client/ │ │ │ ├── besu/ │ │ │ │ └── action.yaml │ │ │ ├── ethjs/ │ │ │ │ └── action.yml │ │ │ ├── evmone/ │ │ │ │ └── action.yaml │ │ │ └── geth/ │ │ │ └── action.yaml │ │ ├── build-fixtures/ │ │ │ └── action.yaml │ │ └── fetch-binary/ │ │ └── action.yaml │ ├── configs/ │ │ ├── eels_resolutions.json │ │ ├── evm-impl.yaml │ │ ├── evm.yaml │ │ └── feature.yaml │ ├── scripts/ │ │ ├── fill_introduced_tests.sh │ │ ├── fill_prepatched_tests.sh │ │ ├── generate_eip_report.py │ │ ├── get_release_props.py │ │ └── parse_ported_tests.sh │ └── workflows/ │ ├── check_eip_versions.yaml │ ├── check_links.yml │ ├── coverage.yaml │ ├── docs_deploy.yaml │ ├── fixtures.yaml │ ├── fixtures_feature.yaml │ └── tox_verify.yaml ├── .gitignore ├── .lycheeignore ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .pyspelling.yml ├── .readthedocs.yaml ├── .vscode/ │ ├── extensions.json │ ├── launch.recommended.json │ └── settings.json ├── CLAUDE.md ├── CONTRIBUTING.md ├── HUMANS.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docs/ │ ├── CHANGELOG.md │ ├── changelog_section_template.md │ ├── dev/ │ │ ├── coding_style.md │ │ ├── configurations.md │ │ ├── deps_and_packaging.md │ │ ├── docs.md │ │ ├── documenting_clis.md │ │ ├── index.md │ │ ├── interactive_usage.md │ │ ├── logging.md │ │ ├── precommit.md │ │ └── test_actions_locally.md │ ├── filling_tests/ │ │ ├── debugging_t8n_tools.md │ │ ├── filling_tests_command_line.md │ │ ├── filling_tests_dev_fork.md │ │ ├── filling_tests_vs_code.md │ │ ├── getting_started.md │ │ ├── img/ │ │ │ ├── vs_code_executing_tests.kra │ │ │ └── vs_code_exploring_tests.kra │ │ ├── index.md │ │ ├── test_ids.md │ │ └── transition_tool_support.md │ ├── getting_started/ │ │ ├── code_standards.md │ │ ├── code_standards_details.md │ │ ├── getting_help.md │ │ ├── installation.md │ │ ├── installation_troubleshooting.md │ │ ├── repository_overview.md │ │ └── setup_vs_code.md │ ├── index.md │ ├── javascripts/ │ │ └── site.js │ ├── library/ │ │ ├── cli/ │ │ │ ├── eest.md │ │ │ ├── evm_bytes.md │ │ │ ├── extract_config.md │ │ │ └── index.md │ │ ├── ethereum_clis.md │ │ ├── ethereum_test_base_types.md │ │ ├── ethereum_test_exceptions.md │ │ ├── ethereum_test_fixtures.md │ │ ├── ethereum_test_forks.md │ │ ├── ethereum_test_specs.md │ │ ├── ethereum_test_tools.md │ │ ├── ethereum_test_types.md │ │ ├── ethereum_test_vm.md │ │ ├── index.md │ │ └── pytest_plugins/ │ │ ├── filler.md │ │ ├── forks.md │ │ ├── index.md │ │ └── spec_version_checker.md │ ├── navigation.md │ ├── running_tests/ │ │ ├── consume/ │ │ │ ├── cache.md │ │ │ ├── direct.md │ │ │ ├── exceptions.md │ │ │ ├── index.md │ │ │ └── simulators.md │ │ ├── execute/ │ │ │ ├── eth_config.md │ │ │ ├── hive.md │ │ │ ├── index.md │ │ │ ├── remote.md │ │ │ └── transaction_metadata.md │ │ ├── hive/ │ │ │ ├── ci_integration.md │ │ │ ├── client_config.md │ │ │ ├── common_options.md │ │ │ ├── dev_mode.md │ │ │ ├── hiveview.md │ │ │ └── index.md │ │ ├── index.md │ │ ├── releases.md │ │ ├── running.md │ │ ├── test_formats/ │ │ │ ├── blockchain_test.md │ │ │ ├── blockchain_test_engine.md │ │ │ ├── blockchain_test_engine_x.md │ │ │ ├── blockchain_test_sync.md │ │ │ ├── common_types.md │ │ │ ├── exceptions.md │ │ │ ├── index.md │ │ │ ├── state_test.md │ │ │ └── transaction_test.md │ │ └── useful_pytest_options.md │ ├── scripts/ │ │ ├── copy_repo_docs_to_mkdocs.py │ │ ├── gen_test_case_reference.py │ │ └── generate_fill_help.py │ ├── stylesheets/ │ │ └── custom.css │ ├── templates/ │ │ ├── base.md.j2 │ │ ├── directory.md.j2 │ │ ├── function.html.j2 │ │ ├── function.md.j2 │ │ ├── function_parameter_datatable.html.j2 │ │ ├── markdown_header.md.j2 │ │ └── module.md.j2 │ └── writing_tests/ │ ├── adding_a_new_test.md │ ├── benchmarks.md │ ├── checklist_templates/ │ │ ├── eip_testing_checklist_template.md │ │ └── index.md │ ├── code_standards.md │ ├── eip_checklist.md │ ├── exception_tests.md │ ├── fork_methods.md │ ├── fuzzer_bridge.md │ ├── gas_optimization.md │ ├── index.md │ ├── porting_legacy_tests.md │ ├── post_mortems.md │ ├── reference_specification.md │ ├── test_markers.md │ ├── tutorials/ │ │ ├── blockchain.md │ │ └── state_transition.md │ ├── types_of_tests.md │ ├── verifying_changes.md │ └── writing_a_new_test.md ├── mkdocs.yml ├── pyproject.toml ├── pyrightconfig.json ├── scripts/ │ └── convert_addresses.py ├── src/ │ ├── cli/ │ │ ├── __init__.py │ │ ├── check_fixtures.py │ │ ├── compare_fixtures.py │ │ ├── diff_opcode_counts.py │ │ ├── eest/ │ │ │ ├── __init__.py │ │ │ ├── cli.py │ │ │ ├── commands/ │ │ │ │ ├── __init__.py │ │ │ │ ├── clean.py │ │ │ │ └── info.py │ │ │ ├── make/ │ │ │ │ ├── __init__.py │ │ │ │ ├── cli.py │ │ │ │ ├── commands/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── env.py │ │ │ │ │ └── test.py │ │ │ │ └── templates/ │ │ │ │ ├── blockchain_test.py.j2 │ │ │ │ └── state_test.py.j2 │ │ │ └── quotes.py │ │ ├── eofwrap.py │ │ ├── evm_bytes.py │ │ ├── extract_config.py │ │ ├── fillerconvert/ │ │ │ ├── fillerconvert.py │ │ │ └── verify_filled.py │ │ ├── fuzzer_bridge/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── blocktest_builder.py │ │ │ ├── cli.py │ │ │ ├── converter.py │ │ │ ├── examples/ │ │ │ │ ├── README.md │ │ │ │ ├── comprehensive_large.json │ │ │ │ ├── comprehensive_largest.json │ │ │ │ ├── comprehensive_medium_1.json │ │ │ │ ├── comprehensive_medium_2.json │ │ │ │ └── comprehensive_smallest.json │ │ │ ├── models.py │ │ │ ├── performance_utils.py │ │ │ └── production_test.py │ │ ├── gen_index.py │ │ ├── generate_checklist_stubs.py │ │ ├── gentest/ │ │ │ ├── __init__.py │ │ │ ├── cli.py │ │ │ ├── request_manager.py │ │ │ ├── source_code_generator.py │ │ │ ├── templates/ │ │ │ │ └── blockchain_test/ │ │ │ │ └── transaction.py.j2 │ │ │ ├── test_context_providers.py │ │ │ ├── test_providers.py │ │ │ └── tests/ │ │ │ ├── __init__.py │ │ │ └── test_cli.py │ │ ├── hasher.py │ │ ├── input/ │ │ │ ├── __init__.py │ │ │ ├── input_repository.py │ │ │ └── questionary_input_repository.py │ │ ├── modify_static_test_gas_limits.py │ │ ├── order_fixtures.py │ │ ├── pytest_commands/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── check_eip_versions.py │ │ │ ├── checklist.py │ │ │ ├── consume.py │ │ │ ├── execute.py │ │ │ ├── fill.py │ │ │ ├── processors.py │ │ │ ├── pytest_ini_files/ │ │ │ │ ├── pytest-check-eip-versions.ini │ │ │ │ ├── pytest-consume.ini │ │ │ │ ├── pytest-execute-eth-config.ini │ │ │ │ ├── pytest-execute-hive.ini │ │ │ │ ├── pytest-execute-recover.ini │ │ │ │ ├── pytest-execute.ini │ │ │ │ └── pytest-fill.ini │ │ │ └── watcher.py │ │ ├── show_pre_alloc_group_stats.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── test_eofwrap.py │ │ │ ├── test_evm_bytes.py │ │ │ ├── test_fuzzer_bridge.py │ │ │ ├── test_generate_all_formats.py │ │ │ ├── test_order_fixtures.py │ │ │ ├── test_pytest_execute_command.py │ │ │ ├── test_pytest_fill_command.py │ │ │ └── vectors/ │ │ │ ├── fuzzer_test_0.json │ │ │ ├── fuzzer_test_1.json │ │ │ ├── fuzzer_test_2.json │ │ │ ├── fuzzer_test_3.json │ │ │ └── fuzzer_test_4.json │ │ └── tox_helpers.py │ ├── config/ │ │ ├── __init__.py │ │ ├── app.py │ │ ├── check_eip_versions.py │ │ ├── docs.py │ │ ├── env.py │ │ └── templates/ │ │ └── env.yaml.j2 │ ├── conftest.py │ ├── ethereum_clis/ │ │ ├── __init__.py │ │ ├── cli_types.py │ │ ├── clis/ │ │ │ ├── __init__.py │ │ │ ├── besu.py │ │ │ ├── erigon.py │ │ │ ├── ethereumjs.py │ │ │ ├── ethrex.py │ │ │ ├── evmone.py │ │ │ ├── execution_specs.py │ │ │ ├── geth.py │ │ │ ├── nethermind.py │ │ │ ├── nimbus.py │ │ │ └── reth.py │ │ ├── ethereum_cli.py │ │ ├── file_utils.py │ │ ├── fixture_consumer_tool.py │ │ ├── py.typed │ │ ├── tests/ │ │ │ ├── test_execution_specs.py │ │ │ ├── test_transition_tool.py │ │ │ └── test_transition_tools_support.py │ │ └── transition_tool.py │ ├── ethereum_test_base_types/ │ │ ├── __init__.py │ │ ├── base_types.py │ │ ├── base_types_json.py │ │ ├── composite_types.py │ │ ├── constants.py │ │ ├── conversions.py │ │ ├── mixins.py │ │ ├── py.typed │ │ ├── pydantic.py │ │ ├── reference_spec/ │ │ │ ├── __init__.py │ │ │ ├── git_reference_spec.py │ │ │ └── reference_spec.py │ │ ├── serialization.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── test_base_types.py │ │ └── test_reference_spec.py │ ├── ethereum_test_benchmark/ │ │ ├── __init__.py │ │ └── benchmark_code_generator.py │ ├── ethereum_test_checklists/ │ │ ├── __init__.py │ │ ├── eip_checklist.py │ │ ├── eip_checklist.pyi │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_checklist_template_consistency.py │ ├── ethereum_test_exceptions/ │ │ ├── __init__.py │ │ ├── engine_api.py │ │ ├── exception_mapper.py │ │ ├── exceptions/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── block.py │ │ │ ├── eof.py │ │ │ ├── exceptions_types.py │ │ │ └── transaction.py │ │ ├── exceptions.py │ │ ├── py.typed │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_exceptions.py │ ├── ethereum_test_execution/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── blob_transaction.py │ │ └── transaction_post.py │ ├── ethereum_test_fixtures/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── blockchain.py │ │ ├── collector.py │ │ ├── common.py │ │ ├── consume.py │ │ ├── eof.py │ │ ├── file.py │ │ ├── pre_alloc_groups.py │ │ ├── py.typed │ │ ├── state.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── test_base.py │ │ │ ├── test_blockchain.py │ │ │ ├── test_eof.py │ │ │ └── test_state.py │ │ └── transaction.py │ ├── ethereum_test_forks/ │ │ ├── __init__.py │ │ ├── base_decorators.py │ │ ├── base_fork.py │ │ ├── forks/ │ │ │ ├── __init__.py │ │ │ ├── forks.py │ │ │ ├── helpers.py │ │ │ └── transition.py │ │ ├── gas_costs.py │ │ ├── helpers.py │ │ ├── py.typed │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── test_fork_range_descriptor.py │ │ │ └── test_forks.py │ │ └── transition_base_fork.py │ ├── ethereum_test_rpc/ │ │ ├── __init__.py │ │ ├── rpc.py │ │ ├── rpc_types.py │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_types.py │ ├── ethereum_test_specs/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── base_static.py │ │ ├── benchmark.py │ │ ├── blobs.py │ │ ├── blockchain.py │ │ ├── debugging.py │ │ ├── eof.py │ │ ├── helpers.py │ │ ├── py.typed │ │ ├── state.py │ │ ├── static_state/ │ │ │ ├── __init__.py │ │ │ ├── account.py │ │ │ ├── common/ │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── compile_yul.py │ │ │ │ └── tags.py │ │ │ ├── environment.py │ │ │ ├── expect_section.py │ │ │ ├── general_transaction.py │ │ │ └── state_static.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── helpers.py │ │ │ ├── test_benchmark.py │ │ │ ├── test_expect.py │ │ │ ├── test_fixtures.py │ │ │ ├── test_transaction.py │ │ │ └── test_types.py │ │ └── transaction.py │ ├── ethereum_test_tools/ │ │ ├── __init__.py │ │ ├── py.typed │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ └── test_code.py │ │ ├── tools_code/ │ │ │ ├── __init__.py │ │ │ ├── generators.py │ │ │ └── yul.py │ │ └── utility/ │ │ ├── __init__.py │ │ ├── generators.py │ │ ├── pytest.py │ │ ├── tests/ │ │ │ └── test_pytest.py │ │ └── versioning.py │ ├── ethereum_test_types/ │ │ ├── __init__.py │ │ ├── account_types.py │ │ ├── blob_types.py │ │ ├── block_access_list/ │ │ │ ├── __init__.py │ │ │ ├── account_absent_values.py │ │ │ ├── account_changes.py │ │ │ ├── exceptions.py │ │ │ ├── expectations.py │ │ │ ├── modifiers.py │ │ │ └── t8n.py │ │ ├── block_types.py │ │ ├── chain_config_types.py │ │ ├── eof/ │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── v1/ │ │ │ ├── __init__.py │ │ │ └── constants.py │ │ ├── helpers.py │ │ ├── kzg_trusted_setup.txt │ │ ├── phase_manager.py │ │ ├── py.typed │ │ ├── receipt_types.py │ │ ├── request_types.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── test_blob_types.py │ │ │ ├── test_block_access_lists.py │ │ │ ├── test_eof_v1.py │ │ │ ├── test_helpers.py │ │ │ ├── test_phase_manager.py │ │ │ ├── test_post_alloc.py │ │ │ ├── test_transactions.py │ │ │ └── test_types.py │ │ ├── transaction_types.py │ │ ├── trie.py │ │ └── utils.py │ ├── ethereum_test_vm/ │ │ ├── __init__.py │ │ ├── bytecode.py │ │ ├── evm_types.py │ │ ├── helpers.py │ │ ├── opcodes.py │ │ ├── py.typed │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_vm.py │ └── pytest_plugins/ │ ├── __init__.py │ ├── concurrency.py │ ├── consume/ │ │ ├── __init__.py │ │ ├── consume.py │ │ ├── direct/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_via_direct.py │ │ ├── hive_engine_test/ │ │ │ └── __init__.py │ │ ├── hive_simulators_reorg/ │ │ │ └── __init__.py │ │ ├── releases.py │ │ ├── simulators/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── engine/ │ │ │ │ ├── __init__.py │ │ │ │ └── conftest.py │ │ │ ├── exceptions.py │ │ │ ├── helpers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ruleset.py │ │ │ │ └── timing.py │ │ │ ├── rlp/ │ │ │ │ ├── __init__.py │ │ │ │ └── conftest.py │ │ │ ├── simulator_logic/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_via_engine.py │ │ │ │ ├── test_via_rlp.py │ │ │ │ └── test_via_sync.py │ │ │ ├── single_test_client.py │ │ │ ├── sync/ │ │ │ │ ├── __init__.py │ │ │ │ └── conftest.py │ │ │ ├── test_case_description.py │ │ │ └── timing_data.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── release_information.json │ │ ├── test_consume_args.py │ │ ├── test_fixtures_source_input_types.py │ │ └── test_releases.py │ ├── custom_logging/ │ │ ├── __init__.py │ │ ├── plugin_logging.py │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_logging.py │ ├── eels_resolutions.json │ ├── eels_resolver.py │ ├── execute/ │ │ ├── __init__.py │ │ ├── eth_config/ │ │ │ ├── __init__.py │ │ │ ├── eth_config.py │ │ │ ├── execute_eth_config.py │ │ │ ├── execute_types.py │ │ │ ├── networks.yml │ │ │ └── tests/ │ │ │ ├── __init__.py │ │ │ ├── genesis_example.json │ │ │ ├── test_execute_eth_config.py │ │ │ └── test_genesis.py │ │ ├── execute.py │ │ ├── execute_recover.py │ │ ├── pre_alloc.py │ │ ├── recover.py │ │ ├── rpc/ │ │ │ ├── __init__.py │ │ │ ├── chain_builder_eth_rpc.py │ │ │ ├── hive.py │ │ │ ├── remote.py │ │ │ └── remote_seed_sender.py │ │ ├── sender.py │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_pre_alloc.py │ ├── filler/ │ │ ├── __init__.py │ │ ├── eip_checklist.py │ │ ├── filler.py │ │ ├── fixture_output.py │ │ ├── gen_test_doc/ │ │ │ ├── __init__.py │ │ │ ├── gen_test_doc.py │ │ │ └── page_props.py │ │ ├── ported_tests.py │ │ ├── pre_alloc.py │ │ ├── static_filler.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_benchmarking.py │ │ │ ├── test_collect_only.py │ │ │ ├── test_eip_checklist.py │ │ │ ├── test_filler.py │ │ │ ├── test_filling_session.py │ │ │ ├── test_format_selector.py │ │ │ ├── test_generate_all_formats.py │ │ │ ├── test_output_directory.py │ │ │ ├── test_phase_manager.py │ │ │ ├── test_pre_alloc.py │ │ │ ├── test_prealloc_group.py │ │ │ ├── test_prealloc_group_usage_example.py │ │ │ ├── test_slow_marker_pre_alloc.py │ │ │ └── test_verify_sync_marker.py │ │ └── witness.py │ ├── fix_package_test_path.py │ ├── forks/ │ │ ├── __init__.py │ │ ├── forks.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── test_bad_command_line_options.py │ │ ├── test_bad_validity_markers.py │ │ ├── test_covariant_markers.py │ │ ├── test_fork_parametrizer_types.py │ │ ├── test_forks.py │ │ └── test_markers.py │ ├── help/ │ │ ├── __init__.py │ │ ├── help.py │ │ └── tests/ │ │ └── test_help.py │ ├── py.typed │ ├── pytest_hive/ │ │ ├── hive_info.py │ │ └── pytest_hive.py │ ├── shared/ │ │ ├── benchmarking.py │ │ ├── execute_fill.py │ │ ├── helpers.py │ │ └── transaction_fixtures.py │ ├── solc/ │ │ ├── __init__.py │ │ └── solc.py │ └── spec_version_checker/ │ ├── __init__.py │ └── spec_version_checker.py ├── stubs/ │ ├── joblib/ │ │ └── __init__.pyi │ ├── jwt/ │ │ ├── __init__.pyi │ │ └── encode.pyi │ ├── pytest_metadata/ │ │ ├── __init__.pyi │ │ └── plugin.pyi │ ├── trie/ │ │ ├── __init__.pyi │ │ └── hexary.pyi │ └── xdist/ │ ├── __init__.pyi │ └── methods.pyi ├── tests/ │ ├── __init__.py │ ├── amsterdam/ │ │ ├── __init__.py │ │ └── eip7928_block_level_access_lists/ │ │ ├── __init__.py │ │ ├── spec.py │ │ ├── test_block_access_lists.py │ │ ├── test_block_access_lists_eip7702.py │ │ ├── test_block_access_lists_invalid.py │ │ ├── test_block_access_lists_opcodes.py │ │ └── test_cases.md │ ├── benchmark/ │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── helpers.py │ │ ├── stateful/ │ │ │ ├── __init__.py │ │ │ ├── bloatnet/ │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── test_bloatnet.py │ │ │ │ ├── test_multi_opcode.py │ │ │ │ └── test_single_opcode.py │ │ │ └── conftest.py │ │ ├── test_worst_blocks.py │ │ ├── test_worst_bytecode.py │ │ ├── test_worst_compute.py │ │ ├── test_worst_memory.py │ │ ├── test_worst_opcode.py │ │ └── test_worst_stateful_opcodes.py │ ├── berlin/ │ │ ├── __init__.py │ │ ├── eip2929_gas_cost_increases/ │ │ │ ├── __init__.py │ │ │ ├── test_call.py │ │ │ └── test_precompile_warming.py │ │ └── eip2930_access_list/ │ │ ├── __init__.py │ │ ├── spec.py │ │ ├── test_acl.py │ │ └── test_tx_intrinsic_gas.py │ ├── byzantium/ │ │ ├── __init__.py │ │ └── eip198_modexp_precompile/ │ │ ├── __init__.py │ │ ├── helpers.py │ │ └── test_modexp.py │ ├── cancun/ │ │ ├── __init__.py │ │ ├── eip1153_tstore/ │ │ │ ├── __init__.py │ │ │ ├── spec.py │ │ │ ├── test_basic_tload.py │ │ │ ├── test_tload_calls.py │ │ │ ├── test_tload_reentrancy.py │ │ │ ├── test_tstorage.py │ │ │ ├── test_tstorage_clear_after_tx.py │ │ │ ├── test_tstorage_create_contexts.py │ │ │ ├── test_tstorage_execution_contexts.py │ │ │ ├── test_tstorage_reentrancy_contexts.py │ │ │ ├── test_tstorage_selfdestruct.py │ │ │ └── test_tstore_reentrancy.py │ │ ├── eip4788_beacon_root/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── spec.py │ │ │ └── test_beacon_root_contract.py │ │ ├── eip4844_blobs/ │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── conftest.py │ │ │ ├── point_evaluation_vectors/ │ │ │ │ ├── README.md │ │ │ │ ├── concat_kzg_vectors_to_json.py │ │ │ │ ├── go_kzg_4844_verify_kzg_proof.json │ │ │ │ └── requirements.txt │ │ │ ├── spec.py │ │ │ ├── test_blob_txs.py │ │ │ ├── test_blob_txs_full.py │ │ │ ├── test_blobhash_opcode.py │ │ │ ├── test_blobhash_opcode_contexts.py │ │ │ ├── test_excess_blob_gas.py │ │ │ ├── test_excess_blob_gas_fork_transition.py │ │ │ ├── test_point_evaluation_precompile.py │ │ │ └── test_point_evaluation_precompile_gas.py │ │ ├── eip5656_mcopy/ │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── test_mcopy.py │ │ │ ├── test_mcopy_contexts.py │ │ │ └── test_mcopy_memory_expansion.py │ │ ├── eip6780_selfdestruct/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_dynamic_create2_selfdestruct_collision.py │ │ │ ├── test_reentrancy_selfdestruct_revert.py │ │ │ ├── test_selfdestruct.py │ │ │ └── test_selfdestruct_revert.py │ │ └── eip7516_blobgasfee/ │ │ ├── __init__.py │ │ └── test_blobgasfee_opcode.py │ ├── constantinople/ │ │ ├── __init__.py │ │ ├── eip1014_create2/ │ │ │ ├── __init__.py │ │ │ ├── spec.py │ │ │ ├── test_create_returndata.py │ │ │ └── test_recreate.py │ │ └── eip145_bitwise_shift/ │ │ ├── __init__.py │ │ ├── spec.py │ │ └── test_shift_combinations.py │ ├── frontier/ │ │ ├── __init__.py │ │ ├── create/ │ │ │ ├── __init__.py │ │ │ ├── test_create_one_byte.py │ │ │ ├── test_create_suicide_during_init.py │ │ │ └── test_create_suicide_store.py │ │ ├── examples/ │ │ │ ├── __init__.py │ │ │ └── test_block_intermediate_state.py │ │ ├── identity_precompile/ │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── conftest.py │ │ │ ├── test_identity.py │ │ │ └── test_identity_returndatasize.py │ │ ├── opcodes/ │ │ │ ├── __init__.py │ │ │ ├── test_all_opcodes.py │ │ │ ├── test_blockhash.py │ │ │ ├── test_call.py │ │ │ ├── test_call_and_callcode_gas_calculation.py │ │ │ ├── test_calldatacopy.py │ │ │ ├── test_calldataload.py │ │ │ ├── test_calldatasize.py │ │ │ ├── test_dup.py │ │ │ ├── test_push.py │ │ │ ├── test_selfdestruct.py │ │ │ └── test_swap.py │ │ ├── precompiles/ │ │ │ ├── __init__.py │ │ │ ├── test_precompile_absence.py │ │ │ └── test_precompiles.py │ │ └── scenarios/ │ │ ├── __init__.py │ │ ├── common.py │ │ ├── programs/ │ │ │ ├── __init__.py │ │ │ ├── all_frontier_opcodes.py │ │ │ ├── context_calls.py │ │ │ ├── invalid_opcodes.py │ │ │ └── static_violation.py │ │ ├── scenarios/ │ │ │ ├── __init__.py │ │ │ ├── call_combinations.py │ │ │ ├── create_combinations.py │ │ │ ├── double_call_combinations.py │ │ │ └── revert_combinations.py │ │ └── test_scenarios.py │ ├── homestead/ │ │ ├── __init__.py │ │ ├── coverage/ │ │ │ ├── __init__.py │ │ │ └── test_coverage.py │ │ ├── identity_precompile/ │ │ │ ├── __init__.py │ │ │ └── test_identity.py │ │ └── yul/ │ │ └── __init__.py │ ├── istanbul/ │ │ ├── __init__.py │ │ ├── eip1344_chainid/ │ │ │ ├── __init__.py │ │ │ └── test_chainid.py │ │ └── eip152_blake2/ │ │ ├── __init__.py │ │ ├── common.py │ │ ├── conftest.py │ │ ├── spec.py │ │ ├── test_blake2.py │ │ └── test_blake2_delegatecall.py │ ├── osaka/ │ │ ├── __init__.py │ │ ├── eip7594_peerdas/ │ │ │ ├── __init__.py │ │ │ ├── spec.py │ │ │ ├── test_get_blobs.py │ │ │ └── test_max_blob_per_tx.py │ │ ├── eip7823_modexp_upper_bounds/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── eip_checklist_external_coverage.txt │ │ │ ├── eip_checklist_not_applicable.txt │ │ │ ├── spec.py │ │ │ └── test_modexp_upper_bounds.py │ │ ├── eip7825_transaction_gas_limit_cap/ │ │ │ ├── __init__.py │ │ │ ├── eip_checklist_external_coverage.txt │ │ │ ├── eip_checklist_not_applicable.txt │ │ │ ├── spec.py │ │ │ ├── test_tx_gas_limit.py │ │ │ └── test_tx_gas_limit_transition_fork.py │ │ ├── eip7883_modexp_gas_increase/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── eip_checklist_external_coverage.txt │ │ │ ├── eip_checklist_not_applicable.txt │ │ │ ├── helpers.py │ │ │ ├── spec.py │ │ │ ├── test_modexp_thresholds.py │ │ │ ├── test_modexp_thresholds_transition.py │ │ │ └── vector/ │ │ │ ├── legacy.json │ │ │ └── vectors.json │ │ ├── eip7918_blob_reserve_price/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── spec.py │ │ │ ├── test_blob_base_fee.py │ │ │ ├── test_blob_reserve_price_with_bpo.py │ │ │ └── test_blob_reserve_price_with_bpo_transitions.py │ │ ├── eip7934_block_rlp_limit/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── eip_checklist_external_coverage.txt │ │ │ ├── eip_checklist_not_applicable.txt │ │ │ ├── spec.py │ │ │ └── test_max_block_rlp_size.py │ │ ├── eip7939_count_leading_zeros/ │ │ │ ├── __init__.py │ │ │ ├── eip_checklist_external_coverage.txt │ │ │ ├── eip_checklist_not_applicable.txt │ │ │ ├── spec.py │ │ │ └── test_count_leading_zeros.py │ │ └── eip7951_p256verify_precompiles/ │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── eip_checklist_external_coverage.txt │ │ ├── eip_checklist_not_applicable.txt │ │ ├── helpers.py │ │ ├── scripts/ │ │ │ └── find_low_p256_points.sage │ │ ├── spec.py │ │ ├── test_p256verify.py │ │ ├── test_p256verify_before_fork.py │ │ └── vectors/ │ │ ├── secp256r1_k_and_s.json │ │ ├── secp256r1_modified_r_s.json │ │ ├── secp256r1_public_key.json │ │ ├── secp256r1_shamir_multiplication.json │ │ ├── secp256r1_signature_specific.json │ │ ├── secp256r1_small_large_r_s.json │ │ ├── secp256r1_special_case_hash.json │ │ ├── secp256r1_special_case_r_s.json │ │ ├── secp256r1_special_points.json │ │ └── secp256r1_u1_u2.json │ ├── paris/ │ │ ├── __init__.py │ │ ├── eip7610_create_collision/ │ │ │ ├── __init__.py │ │ │ └── test_initcollision.py │ │ └── security/ │ │ ├── __init__.py │ │ └── test_selfdestruct_balance_bug.py │ ├── prague/ │ │ ├── __init__.py │ │ ├── eip2537_bls_12_381_precompiles/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── helpers.py │ │ │ ├── spec.py │ │ │ ├── test_bls12_g1add.py │ │ │ ├── test_bls12_g1msm.py │ │ │ ├── test_bls12_g1mul.py │ │ │ ├── test_bls12_g2add.py │ │ │ ├── test_bls12_g2msm.py │ │ │ ├── test_bls12_g2mul.py │ │ │ ├── test_bls12_map_fp2_to_g2.py │ │ │ ├── test_bls12_map_fp_to_g1.py │ │ │ ├── test_bls12_pairing.py │ │ │ ├── test_bls12_precompiles_before_fork.py │ │ │ ├── test_bls12_variable_length_input_contracts.py │ │ │ ├── test_eip_mainnet.py │ │ │ └── vectors/ │ │ │ ├── add_G1_bls.json │ │ │ ├── add_G2_bls.json │ │ │ ├── fail-add_G1_bls.json │ │ │ ├── fail-add_G2_bls.json │ │ │ ├── fail-map_fp2_to_G2_bls.json │ │ │ ├── fail-map_fp_to_G1_bls.json │ │ │ ├── fail-msm_G1_bls.json │ │ │ ├── fail-msm_G2_bls.json │ │ │ ├── fail-mul_G1_bls.json │ │ │ ├── fail-mul_G2_bls.json │ │ │ ├── fail-pairing_check_bls.json │ │ │ ├── map_fp2_to_G2_bls.json │ │ │ ├── map_fp_to_G1_bls.json │ │ │ ├── msm_G1_bls.json │ │ │ ├── msm_G2_bls.json │ │ │ ├── mul_G1_bls.json │ │ │ ├── mul_G2_bls.json │ │ │ ├── pairing_check_bls.json │ │ │ └── test-vectors.md │ │ ├── eip2935_historical_block_hashes_from_state/ │ │ │ ├── __init__.py │ │ │ ├── contract_deploy_tx.json │ │ │ ├── spec.py │ │ │ ├── test_block_hashes.py │ │ │ ├── test_contract_deployment.py │ │ │ └── test_eip_mainnet.py │ │ ├── eip6110_deposits/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── helpers.py │ │ │ ├── spec.py │ │ │ ├── test_deposits.py │ │ │ ├── test_eip_mainnet.py │ │ │ └── test_modified_contract.py │ │ ├── eip7002_el_triggerable_withdrawals/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── contract_deploy_tx.json │ │ │ ├── helpers.py │ │ │ ├── spec.py │ │ │ ├── test_contract_deployment.py │ │ │ ├── test_eip_mainnet.py │ │ │ ├── test_modified_withdrawal_contract.py │ │ │ ├── test_withdrawal_requests.py │ │ │ └── test_withdrawal_requests_during_fork.py │ │ ├── eip7251_consolidations/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── contract_deploy_tx.json │ │ │ ├── helpers.py │ │ │ ├── spec.py │ │ │ ├── test_consolidations.py │ │ │ ├── test_consolidations_during_fork.py │ │ │ ├── test_contract_deployment.py │ │ │ ├── test_eip_mainnet.py │ │ │ └── test_modified_consolidation_contract.py │ │ ├── eip7623_increase_calldata_cost/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── helpers.py │ │ │ ├── spec.py │ │ │ ├── test_eip_mainnet.py │ │ │ ├── test_execution_gas.py │ │ │ ├── test_refunds.py │ │ │ └── test_transaction_validity.py │ │ ├── eip7685_general_purpose_el_requests/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── spec.py │ │ │ └── test_multi_type_requests.py │ │ └── eip7702_set_code_tx/ │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_calls.py │ │ ├── test_eip_mainnet.py │ │ ├── test_gas.py │ │ ├── test_invalid_tx.py │ │ ├── test_set_code_txs.py │ │ └── test_set_code_txs_2.py │ ├── shanghai/ │ │ ├── __init__.py │ │ ├── eip3651_warm_coinbase/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── spec.py │ │ │ └── test_warm_coinbase.py │ │ ├── eip3855_push0/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── spec.py │ │ │ └── test_push0.py │ │ ├── eip3860_initcode/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── helpers.py │ │ │ ├── spec.py │ │ │ ├── test_initcode.py │ │ │ └── test_with_eof.py │ │ └── eip4895_withdrawals/ │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── spec.py │ │ └── test_withdrawals.py │ ├── static/ │ │ ├── README.md │ │ ├── __init__.py │ │ └── state_tests/ │ │ ├── Cancun/ │ │ │ ├── __init__.py │ │ │ ├── stEIP1153_transientStorage/ │ │ │ │ ├── 10_revertUndoesStoreAfterReturnFiller.yml │ │ │ │ ├── 14_revertAfterNestedStaticcallFiller.yml │ │ │ │ ├── 15_tstoreCannotBeDosdFiller.yml │ │ │ │ ├── 17_tstoreGasFiller.yml │ │ │ │ ├── 19_oogUndoesTransientStoreFiller.yml │ │ │ │ ├── 21_tstoreCannotBeDosdOOOFiller.yml │ │ │ │ ├── __init__.py │ │ │ │ ├── transStorageOKFiller.yml │ │ │ │ └── transStorageResetFiller.yml │ │ │ ├── stEIP4844_blobtransactions/ │ │ │ │ ├── __init__.py │ │ │ │ ├── createBlobhashTxFiller.yml │ │ │ │ ├── emptyBlobhashListFiller.yml │ │ │ │ ├── opcodeBlobhBoundsFiller.yml │ │ │ │ ├── opcodeBlobhashOutOfRangeFiller.yml │ │ │ │ └── wrongBlobhashVersionFiller.yml │ │ │ └── stEIP5656_MCOPY/ │ │ │ ├── MCOPYFiller.yml │ │ │ ├── MCOPY_copy_costFiller.yml │ │ │ ├── MCOPY_memory_expansion_costFiller.yml │ │ │ ├── MCOPY_memory_hashFiller.yml │ │ │ └── __init__.py │ │ ├── README.md │ │ ├── Shanghai/ │ │ │ ├── __init__.py │ │ │ ├── stEIP3651_warmcoinbase/ │ │ │ │ ├── __init__.py │ │ │ │ ├── coinbaseWarmAccountCallGasFailFiller.yml │ │ │ │ └── coinbaseWarmAccountCallGasFiller.yml │ │ │ ├── stEIP3855_push0/ │ │ │ │ ├── __init__.py │ │ │ │ ├── push0Filler.yml │ │ │ │ ├── push0Filler_test.yml │ │ │ │ ├── push0Gas2Filler.yml │ │ │ │ └── push0GasFiller.yml │ │ │ └── stEIP3860_limitmeterinitcode/ │ │ │ ├── __init__.py │ │ │ ├── create2InitCodeSizeLimitFiller.yml │ │ │ ├── createInitCodeSizeLimitFiller.yml │ │ │ └── creationTxInitCodeSizeLimitFiller.yml │ │ ├── VMTests/ │ │ │ ├── __init__.py │ │ │ ├── vmArithmeticTest/ │ │ │ │ ├── __init__.py │ │ │ │ ├── addFiller.yml │ │ │ │ ├── addmodFiller.yml │ │ │ │ ├── arithFiller.yml │ │ │ │ ├── divByZeroFiller.yml │ │ │ │ ├── divFiller.yml │ │ │ │ ├── expFiller.yml │ │ │ │ ├── expPower256Filler.yml │ │ │ │ ├── expPower256Of256Filler.yml │ │ │ │ ├── expPower2Filler.yml │ │ │ │ ├── fibFiller.yml │ │ │ │ ├── modFiller.yml │ │ │ │ ├── mulFiller.yml │ │ │ │ ├── mulmodFiller.yml │ │ │ │ ├── notFiller.yml │ │ │ │ ├── sdivFiller.yml │ │ │ │ ├── signextendFiller.yml │ │ │ │ ├── smodFiller.yml │ │ │ │ ├── subFiller.yml │ │ │ │ ├── twoOpsFiller.yml │ │ │ │ └── twoOpsGen.js │ │ │ ├── vmBitwiseLogicOperation/ │ │ │ │ ├── __init__.py │ │ │ │ ├── andFiller.yml │ │ │ │ ├── byteFiller.yml │ │ │ │ ├── eqFiller.yml │ │ │ │ ├── gtFiller.yml │ │ │ │ ├── iszeroFiller.yml │ │ │ │ ├── ltFiller.yml │ │ │ │ ├── notFiller.yml │ │ │ │ ├── orFiller.yml │ │ │ │ ├── sgtFiller.yml │ │ │ │ ├── sltFiller.yml │ │ │ │ └── xorFiller.yml │ │ │ ├── vmIOandFlowOperations/ │ │ │ │ ├── __init__.py │ │ │ │ ├── codecopyFiller.yml │ │ │ │ ├── gasFiller.yml │ │ │ │ ├── jumpFiller.yml │ │ │ │ ├── jumpToPushFiller.yml │ │ │ │ ├── jumpiFiller.yml │ │ │ │ ├── loop_stacklimitFiller.yml │ │ │ │ ├── loopsConditionalsFiller.yml │ │ │ │ ├── mloadFiller.yml │ │ │ │ ├── msizeFiller.yml │ │ │ │ ├── mstore8Filler.yml │ │ │ │ ├── mstoreFiller.yml │ │ │ │ ├── pcFiller.yml │ │ │ │ ├── popFiller.yml │ │ │ │ ├── returnFiller.yml │ │ │ │ └── sstore_sloadFiller.yml │ │ │ ├── vmLogTest/ │ │ │ │ ├── __init__.py │ │ │ │ ├── log0Filler.yml │ │ │ │ ├── log1Filler.yml │ │ │ │ ├── log2Filler.yml │ │ │ │ ├── log3Filler.yml │ │ │ │ └── log4Filler.yml │ │ │ └── vmTests/ │ │ │ ├── __init__.py │ │ │ ├── blockInfoFiller.yml │ │ │ ├── envInfoFiller.yml │ │ │ ├── randomFiller.yml │ │ │ ├── sha3Filler.yml │ │ │ └── suicideFiller.yml │ │ ├── __init__.py │ │ ├── stArgsZeroOneBalance/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── addNonConstFiller.yml │ │ │ ├── addmodNonConstFiller.yml │ │ │ ├── andNonConstFiller.yml │ │ │ ├── balanceNonConstFiller.yml │ │ │ ├── byteNonConstFiller.yml │ │ │ ├── callNonConstFiller.yml │ │ │ ├── callcodeNonConstFiller.yml │ │ │ ├── calldatacopyNonConstFiller.yml │ │ │ ├── calldataloadNonConstFiller.yml │ │ │ ├── codecopyNonConstFiller.yml │ │ │ ├── createNonConstFiller.yml │ │ │ ├── delegatecallNonConstFiller.yml │ │ │ ├── divNonConstFiller.yml │ │ │ ├── eqNonConstFiller.yml │ │ │ ├── expNonConstFiller.yml │ │ │ ├── extcodecopyNonConstFiller.yml │ │ │ ├── extcodesizeNonConstFiller.yml │ │ │ ├── gtNonConstFiller.yml │ │ │ ├── iszeroNonConstFiller.yml │ │ │ ├── jumpNonConstFiller.yml │ │ │ ├── jumpiNonConstFiller.yml │ │ │ ├── log0NonConstFiller.yml │ │ │ ├── log1NonConstFiller.yml │ │ │ ├── log2NonConstFiller.yml │ │ │ ├── log3NonConstFiller.yml │ │ │ ├── ltNonConstFiller.yml │ │ │ ├── mloadNonConstFiller.yml │ │ │ ├── modNonConstFiller.yml │ │ │ ├── mstore8NonConstFiller.yml │ │ │ ├── mstoreNonConstFiller.yml │ │ │ ├── mulNonConstFiller.yml │ │ │ ├── mulmodNonConstFiller.yml │ │ │ ├── notNonConstFiller.yml │ │ │ ├── orNonConstFiller.yml │ │ │ ├── returnNonConstFiller.yml │ │ │ ├── sdivNonConstFiller.yml │ │ │ ├── sgtNonConstFiller.yml │ │ │ ├── sha3NonConstFiller.yml │ │ │ ├── signextNonConstFiller.yml │ │ │ ├── sloadNonConstFiller.yml │ │ │ ├── sltNonConstFiller.yml │ │ │ ├── smodNonConstFiller.yml │ │ │ ├── sstoreNonConstFiller.yml │ │ │ ├── subNonConstFiller.yml │ │ │ ├── suicideNonConstFiller.yml │ │ │ └── xorNonConstFiller.yml │ │ ├── stAttackTest/ │ │ │ ├── ContractCreationSpamFiller.json │ │ │ ├── CrashingTransactionFiller.json │ │ │ └── __init__.py │ │ ├── stBadOpcode/ │ │ │ ├── __init__.py │ │ │ ├── eip2315NotRemovedFiller.json │ │ │ ├── invalidAddrFiller.yml │ │ │ ├── measureGasFiller.yml │ │ │ ├── operationDiffGasFiller.yml │ │ │ └── undefinedOpcodeFirstByteFiller.yml │ │ ├── stBugs/ │ │ │ ├── __init__.py │ │ │ ├── randomStatetestDEFAULT-Tue_07_58_41-15153-575192Filler.json │ │ │ ├── randomStatetestDEFAULT-Tue_07_58_41-15153-575192_londonFiller.json │ │ │ ├── returndatacopyPythonBug_Tue_03_48_41-1432Filler.json │ │ │ └── staticcall_createfailsFiller.json │ │ ├── stCallCodes/ │ │ │ ├── __init__.py │ │ │ ├── call_OOG_additionalGasCosts1Filler.json │ │ │ ├── call_OOG_additionalGasCosts2Filler.json │ │ │ ├── callcall_00Filler.json │ │ │ ├── callcall_00_OOGEFiller.json │ │ │ ├── callcall_00_OOGE_valueTransferFiller.json │ │ │ ├── callcall_00_SuicideEndFiller.json │ │ │ ├── callcallcall_000Filler.json │ │ │ ├── callcallcall_000_OOGEFiller.json │ │ │ ├── callcallcall_000_OOGMAfterFiller.json │ │ │ ├── callcallcall_000_OOGMBeforeFiller.json │ │ │ ├── callcallcall_000_SuicideEndFiller.json │ │ │ ├── callcallcall_000_SuicideMiddleFiller.json │ │ │ ├── callcallcall_ABCB_RECURSIVEFiller.json │ │ │ ├── callcallcallcode_001Filler.json │ │ │ ├── callcallcallcode_001_OOGEFiller.json │ │ │ ├── callcallcallcode_001_OOGMAfterFiller.json │ │ │ ├── callcallcallcode_001_OOGMBeforeFiller.json │ │ │ ├── callcallcallcode_001_SuicideEndFiller.json │ │ │ ├── callcallcallcode_001_SuicideMiddleFiller.json │ │ │ ├── callcallcallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── callcallcode_01Filler.json │ │ │ ├── callcallcode_01_OOGEFiller.json │ │ │ ├── callcallcode_01_SuicideEndFiller.json │ │ │ ├── callcallcodecall_010Filler.json │ │ │ ├── callcallcodecall_010_OOGEFiller.json │ │ │ ├── callcallcodecall_010_OOGMAfterFiller.json │ │ │ ├── callcallcodecall_010_OOGMBeforeFiller.json │ │ │ ├── callcallcodecall_010_SuicideEndFiller.json │ │ │ ├── callcallcodecall_010_SuicideMiddleFiller.json │ │ │ ├── callcallcodecall_ABCB_RECURSIVEFiller.json │ │ │ ├── callcallcodecallcode_011Filler.json │ │ │ ├── callcallcodecallcode_011_OOGEFiller.json │ │ │ ├── callcallcodecallcode_011_OOGMAfterFiller.json │ │ │ ├── callcallcodecallcode_011_OOGMBeforeFiller.json │ │ │ ├── callcallcodecallcode_011_SuicideEndFiller.json │ │ │ ├── callcallcodecallcode_011_SuicideMiddleFiller.json │ │ │ ├── callcallcodecallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodeDynamicCode2SelfCallFiller.json │ │ │ ├── callcodeDynamicCodeFiller.json │ │ │ ├── callcodeEmptycontractFiller.json │ │ │ ├── callcodeInInitcodeToEmptyContractFiller.json │ │ │ ├── callcodeInInitcodeToExisContractWithVTransferNEMoneyFiller.json │ │ │ ├── callcodeInInitcodeToExistingContractFiller.json │ │ │ ├── callcodeInInitcodeToExistingContractWithValueTransferFiller.json │ │ │ ├── callcode_checkPCFiller.json │ │ │ ├── callcodecall_10Filler.json │ │ │ ├── callcodecall_10_OOGEFiller.json │ │ │ ├── callcodecall_10_SuicideEndFiller.json │ │ │ ├── callcodecallcall_100Filler.json │ │ │ ├── callcodecallcall_100_OOGEFiller.json │ │ │ ├── callcodecallcall_100_OOGMAfterFiller.json │ │ │ ├── callcodecallcall_100_OOGMBeforeFiller.json │ │ │ ├── callcodecallcall_100_SuicideEndFiller.json │ │ │ ├── callcodecallcall_100_SuicideMiddleFiller.json │ │ │ ├── callcodecallcall_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecallcallcode_101Filler.json │ │ │ ├── callcodecallcallcode_101_OOGEFiller.json │ │ │ ├── callcodecallcallcode_101_OOGMAfterFiller.json │ │ │ ├── callcodecallcallcode_101_OOGMBeforeFiller.json │ │ │ ├── callcodecallcallcode_101_SuicideEndFiller.json │ │ │ ├── callcodecallcallcode_101_SuicideMiddleFiller.json │ │ │ ├── callcodecallcallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecallcode_11Filler.json │ │ │ ├── callcodecallcode_11_OOGEFiller.json │ │ │ ├── callcodecallcode_11_SuicideEndFiller.json │ │ │ ├── callcodecallcodecall_110Filler.json │ │ │ ├── callcodecallcodecall_110_OOGEFiller.json │ │ │ ├── callcodecallcodecall_110_OOGMAfterFiller.json │ │ │ ├── callcodecallcodecall_110_OOGMBeforeFiller.json │ │ │ ├── callcodecallcodecall_110_SuicideEndFiller.json │ │ │ ├── callcodecallcodecall_110_SuicideMiddleFiller.json │ │ │ ├── callcodecallcodecall_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecallcodecallcode_111Filler.json │ │ │ ├── callcodecallcodecallcode_111_OOGEFiller.json │ │ │ ├── callcodecallcodecallcode_111_OOGMAfterFiller.json │ │ │ ├── callcodecallcodecallcode_111_OOGMBeforeFiller.json │ │ │ ├── callcodecallcodecallcode_111_SuicideEndFiller.json │ │ │ ├── callcodecallcodecallcode_111_SuicideMiddleFiller.json │ │ │ └── callcodecallcodecallcode_ABCB_RECURSIVEFiller.json │ │ ├── stCallCreateCallCodeTest/ │ │ │ ├── Call1024BalanceTooLowFiller.json │ │ │ ├── Call1024OOGFiller.json │ │ │ ├── Call1024PreCallsFiller.json │ │ │ ├── CallLoseGasOOGFiller.json │ │ │ ├── CallRecursiveBombPreCallFiller.json │ │ │ ├── Callcode1024BalanceTooLowFiller.json │ │ │ ├── Callcode1024OOGFiller.json │ │ │ ├── CallcodeLoseGasOOGFiller.json │ │ │ ├── __init__.py │ │ │ ├── callOutput1Filler.json │ │ │ ├── callOutput2Filler.json │ │ │ ├── callOutput3FailFiller.json │ │ │ ├── callOutput3Filler.json │ │ │ ├── callOutput3partialFailFiller.json │ │ │ ├── callOutput3partialFiller.json │ │ │ ├── callWithHighValueAndGasOOGFiller.json │ │ │ ├── callWithHighValueAndOOGatTxLevelFiller.json │ │ │ ├── callWithHighValueFiller.json │ │ │ ├── callWithHighValueOOGinCallFiller.json │ │ │ ├── callcodeOutput1Filler.json │ │ │ ├── callcodeOutput2Filler.json │ │ │ ├── callcodeOutput3FailFiller.json │ │ │ ├── callcodeOutput3Filler.json │ │ │ ├── callcodeOutput3partialFailFiller.json │ │ │ ├── callcodeOutput3partialFiller.json │ │ │ ├── callcodeWithHighValueAndGasOOGFiller.json │ │ │ ├── callcodeWithHighValueFiller.json │ │ │ ├── contractCreationMakeCallThatAskMoreGasThenTransactionProvidedFiller.json │ │ │ ├── createFailBalanceTooLowFiller.json │ │ │ ├── createInitFailBadJumpDestination2Filler.json │ │ │ ├── createInitFailBadJumpDestinationFiller.json │ │ │ ├── createInitFailStackSizeLargerThan1024Filler.json │ │ │ ├── createInitFailStackUnderflowFiller.json │ │ │ ├── createInitFailUndefinedInstruction2Filler.json │ │ │ ├── createInitFailUndefinedInstructionFiller.json │ │ │ ├── createInitFail_OOGduringInit2Filler.json │ │ │ ├── createInitFail_OOGduringInitFiller.json │ │ │ ├── createInitOOGforCREATEFiller.json │ │ │ ├── createJS_ExampleContractFiller.json │ │ │ ├── createJS_NoCollisionFiller.json │ │ │ ├── createNameRegistratorPerTxsFiller.json │ │ │ ├── createNameRegistratorPerTxsNotEnoughGasFiller.json │ │ │ ├── createNameRegistratorPreStore1NotEnoughGasFiller.json │ │ │ └── createNameRegistratorendowmentTooHighFiller.json │ │ ├── stCallDelegateCodesCallCodeHomestead/ │ │ │ ├── __init__.py │ │ │ ├── callcallcallcode_001Filler.json │ │ │ ├── callcallcallcode_001_OOGEFiller.json │ │ │ ├── callcallcallcode_001_OOGMAfterFiller.json │ │ │ ├── callcallcallcode_001_OOGMBeforeFiller.json │ │ │ ├── callcallcallcode_001_SuicideEndFiller.json │ │ │ ├── callcallcallcode_001_SuicideMiddleFiller.json │ │ │ ├── callcallcallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── callcallcode_01Filler.json │ │ │ ├── callcallcode_01_OOGEFiller.json │ │ │ ├── callcallcode_01_SuicideEndFiller.json │ │ │ ├── callcallcodecall_010Filler.json │ │ │ ├── callcallcodecall_010_OOGEFiller.json │ │ │ ├── callcallcodecall_010_OOGMAfterFiller.json │ │ │ ├── callcallcodecall_010_OOGMBeforeFiller.json │ │ │ ├── callcallcodecall_010_SuicideEndFiller.json │ │ │ ├── callcallcodecall_010_SuicideMiddleFiller.json │ │ │ ├── callcallcodecall_ABCB_RECURSIVEFiller.json │ │ │ ├── callcallcodecallcode_011Filler.json │ │ │ ├── callcallcodecallcode_011_OOGEFiller.json │ │ │ ├── callcallcodecallcode_011_OOGMAfterFiller.json │ │ │ ├── callcallcodecallcode_011_OOGMBeforeFiller.json │ │ │ ├── callcallcodecallcode_011_SuicideEndFiller.json │ │ │ ├── callcallcodecallcode_011_SuicideMiddleFiller.json │ │ │ ├── callcallcodecallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecall_10Filler.json │ │ │ ├── callcodecall_10_OOGEFiller.json │ │ │ ├── callcodecall_10_SuicideEndFiller.json │ │ │ ├── callcodecallcall_100Filler.json │ │ │ ├── callcodecallcall_100_OOGEFiller.json │ │ │ ├── callcodecallcall_100_OOGMAfterFiller.json │ │ │ ├── callcodecallcall_100_OOGMBeforeFiller.json │ │ │ ├── callcodecallcall_100_SuicideEndFiller.json │ │ │ ├── callcodecallcall_100_SuicideMiddleFiller.json │ │ │ ├── callcodecallcall_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecallcallcode_101Filler.json │ │ │ ├── callcodecallcallcode_101_OOGEFiller.json │ │ │ ├── callcodecallcallcode_101_OOGMAfterFiller.json │ │ │ ├── callcodecallcallcode_101_OOGMBeforeFiller.json │ │ │ ├── callcodecallcallcode_101_SuicideEndFiller.json │ │ │ ├── callcodecallcallcode_101_SuicideMiddleFiller.json │ │ │ ├── callcodecallcallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecallcode_11Filler.json │ │ │ ├── callcodecallcode_11_OOGEFiller.json │ │ │ ├── callcodecallcode_11_SuicideEndFiller.json │ │ │ ├── callcodecallcodecall_110Filler.json │ │ │ ├── callcodecallcodecall_110_OOGEFiller.json │ │ │ ├── callcodecallcodecall_110_OOGMAfterFiller.json │ │ │ ├── callcodecallcodecall_110_OOGMBeforeFiller.json │ │ │ ├── callcodecallcodecall_110_SuicideEndFiller.json │ │ │ ├── callcodecallcodecall_110_SuicideMiddleFiller.json │ │ │ ├── callcodecallcodecall_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecallcodecallcode_111Filler.json │ │ │ ├── callcodecallcodecallcode_111_OOGEFiller.json │ │ │ ├── callcodecallcodecallcode_111_OOGMAfterFiller.json │ │ │ ├── callcodecallcodecallcode_111_OOGMBeforeFiller.json │ │ │ ├── callcodecallcodecallcode_111_SuicideEndFiller.json │ │ │ ├── callcodecallcodecallcode_111_SuicideMiddleFiller.json │ │ │ └── callcodecallcodecallcode_ABCB_RECURSIVEFiller.json │ │ ├── stCallDelegateCodesHomestead/ │ │ │ ├── __init__.py │ │ │ ├── callcallcallcode_001Filler.json │ │ │ ├── callcallcallcode_001_OOGEFiller.json │ │ │ ├── callcallcallcode_001_OOGMAfterFiller.json │ │ │ ├── callcallcallcode_001_OOGMBeforeFiller.json │ │ │ ├── callcallcallcode_001_SuicideEndFiller.json │ │ │ ├── callcallcallcode_001_SuicideMiddleFiller.json │ │ │ ├── callcallcallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── callcallcode_01Filler.json │ │ │ ├── callcallcode_01_OOGEFiller.json │ │ │ ├── callcallcode_01_SuicideEndFiller.json │ │ │ ├── callcallcodecall_010Filler.json │ │ │ ├── callcallcodecall_010_OOGEFiller.json │ │ │ ├── callcallcodecall_010_OOGMAfterFiller.json │ │ │ ├── callcallcodecall_010_OOGMBeforeFiller.json │ │ │ ├── callcallcodecall_010_SuicideEndFiller.json │ │ │ ├── callcallcodecall_010_SuicideMiddleFiller.json │ │ │ ├── callcallcodecall_ABCB_RECURSIVEFiller.json │ │ │ ├── callcallcodecallcode_011Filler.json │ │ │ ├── callcallcodecallcode_011_OOGEFiller.json │ │ │ ├── callcallcodecallcode_011_OOGMAfterFiller.json │ │ │ ├── callcallcodecallcode_011_OOGMBeforeFiller.json │ │ │ ├── callcallcodecallcode_011_SuicideEndFiller.json │ │ │ ├── callcallcodecallcode_011_SuicideMiddleFiller.json │ │ │ ├── callcallcodecallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecall_10Filler.json │ │ │ ├── callcodecall_10_OOGEFiller.json │ │ │ ├── callcodecall_10_SuicideEndFiller.json │ │ │ ├── callcodecallcall_100Filler.json │ │ │ ├── callcodecallcall_100_OOGEFiller.json │ │ │ ├── callcodecallcall_100_OOGMAfterFiller.json │ │ │ ├── callcodecallcall_100_OOGMBeforeFiller.json │ │ │ ├── callcodecallcall_100_SuicideEndFiller.json │ │ │ ├── callcodecallcall_100_SuicideMiddleFiller.json │ │ │ ├── callcodecallcall_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecallcallcode_101Filler.json │ │ │ ├── callcodecallcallcode_101_OOGEFiller.json │ │ │ ├── callcodecallcallcode_101_OOGMAfterFiller.json │ │ │ ├── callcodecallcallcode_101_OOGMBeforeFiller.json │ │ │ ├── callcodecallcallcode_101_SuicideEndFiller.json │ │ │ ├── callcodecallcallcode_101_SuicideMiddleFiller.json │ │ │ ├── callcodecallcallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecallcode_11Filler.json │ │ │ ├── callcodecallcode_11_OOGEFiller.json │ │ │ ├── callcodecallcode_11_SuicideEndFiller.json │ │ │ ├── callcodecallcodecall_110Filler.json │ │ │ ├── callcodecallcodecall_110_OOGEFiller.json │ │ │ ├── callcodecallcodecall_110_OOGMAfterFiller.json │ │ │ ├── callcodecallcodecall_110_OOGMBeforeFiller.json │ │ │ ├── callcodecallcodecall_110_SuicideEndFiller.json │ │ │ ├── callcodecallcodecall_110_SuicideMiddleFiller.json │ │ │ ├── callcodecallcodecall_ABCB_RECURSIVEFiller.json │ │ │ ├── callcodecallcodecallcode_111Filler.json │ │ │ ├── callcodecallcodecallcode_111_OOGEFiller.json │ │ │ ├── callcodecallcodecallcode_111_OOGMAfterFiller.json │ │ │ ├── callcodecallcodecallcode_111_OOGMBeforeFiller.json │ │ │ ├── callcodecallcodecallcode_111_SuicideEndFiller.json │ │ │ ├── callcodecallcodecallcode_111_SuicideMiddleFiller.json │ │ │ └── callcodecallcodecallcode_ABCB_RECURSIVEFiller.json │ │ ├── stChainId/ │ │ │ ├── __init__.py │ │ │ ├── chainIdFiller.json │ │ │ └── chainIdGasCostFiller.json │ │ ├── stCodeCopyTest/ │ │ │ ├── ExtCodeCopyTargetRangeLongerThanCodeTestsFiller.json │ │ │ ├── ExtCodeCopyTestsParisFiller.json │ │ │ └── __init__.py │ │ ├── stCodeSizeLimit/ │ │ │ ├── __init__.py │ │ │ ├── codesizeInitFiller.json │ │ │ ├── codesizeOOGInvalidSizeFiller.json │ │ │ ├── codesizeValidFiller.json │ │ │ ├── create2CodeSizeLimitFiller.yml │ │ │ └── createCodeSizeLimitFiller.yml │ │ ├── stCreate2/ │ │ │ ├── CREATE2_Bounds2Filler.json │ │ │ ├── CREATE2_Bounds3Filler.json │ │ │ ├── CREATE2_BoundsFiller.json │ │ │ ├── CREATE2_ContractSuicideDuringInit_ThenStoreThenReturnFiller.json │ │ │ ├── CREATE2_FirstByte_loopFiller.yml │ │ │ ├── CREATE2_HighNonceDelegatecallFiller.yml │ │ │ ├── CREATE2_HighNonceFiller.yml │ │ │ ├── CREATE2_HighNonceMinus1Filler.yml │ │ │ ├── CREATE2_SuicideFiller.json │ │ │ ├── Create2OOGFromCallRefundsFiller.yml │ │ │ ├── Create2OOGafterInitCodeFiller.json │ │ │ ├── Create2OOGafterInitCodeReturndata2Filler.json │ │ │ ├── Create2OOGafterInitCodeReturndata3Filler.json │ │ │ ├── Create2OOGafterInitCodeReturndataFiller.json │ │ │ ├── Create2OOGafterInitCodeReturndataSizeFiller.json │ │ │ ├── Create2OOGafterInitCodeRevert2Filler.json │ │ │ ├── Create2OOGafterInitCodeRevertFiller.json │ │ │ ├── Create2OnDepth1023Filler.json │ │ │ ├── Create2OnDepth1024Filler.json │ │ │ ├── Create2RecursiveFiller.json │ │ │ ├── CreateMessageRevertedFiller.json │ │ │ ├── CreateMessageRevertedOOGInInit2Filler.json │ │ │ ├── RevertDepthCreate2OOGBerlinFiller.json │ │ │ ├── RevertDepthCreate2OOGFiller.json │ │ │ ├── RevertDepthCreateAddressCollisionBerlinFiller.json │ │ │ ├── RevertDepthCreateAddressCollisionFiller.json │ │ │ ├── RevertInCreateInInitCreate2ParisFiller.json │ │ │ ├── RevertOpcodeCreateFiller.json │ │ │ ├── RevertOpcodeInCreateReturnsCreate2Filler.json │ │ │ ├── __init__.py │ │ │ ├── call_outsize_then_create2_successful_then_returndatasizeFiller.json │ │ │ ├── call_then_create2_successful_then_returndatasizeFiller.json │ │ │ ├── create2InitCodesFiller.json │ │ │ ├── create2SmartInitCodeFiller.json │ │ │ ├── create2callPrecompilesFiller.json │ │ │ ├── create2checkFieldsInInitcodeFiller.json │ │ │ ├── create2collisionBalanceFiller.json │ │ │ ├── create2collisionCode2Filler.json │ │ │ ├── create2collisionCodeFiller.json │ │ │ ├── create2collisionNonceFiller.json │ │ │ ├── create2collisionSelfdestructed2Filler.json │ │ │ ├── create2collisionSelfdestructedFiller.json │ │ │ ├── create2collisionSelfdestructedOOGFiller.json │ │ │ ├── create2collisionSelfdestructedRevertFiller.json │ │ │ ├── create2collisionStorageParisFiller.json │ │ │ ├── create2noCashFiller.json │ │ │ ├── returndatacopy_0_0_following_successful_createFiller.json │ │ │ ├── returndatacopy_afterFailing_createFiller.json │ │ │ ├── returndatacopy_following_createFiller.json │ │ │ ├── returndatacopy_following_revert_in_createFiller.json │ │ │ ├── returndatacopy_following_successful_createFiller.json │ │ │ └── returndatasize_following_successful_createFiller.json │ │ ├── stCreateTest/ │ │ │ ├── CREATE2_CallDataFiller.yml │ │ │ ├── CREATE2_RefundEFFiller.yml │ │ │ ├── CREATE_ContractRETURNBigOffsetFiller.yml │ │ │ ├── CREATE_ContractSSTOREDuringInitFiller.json │ │ │ ├── CREATE_EContractCreateEContractInInit_TrFiller.json │ │ │ ├── CREATE_EContractCreateNEContractInInitOOG_TrFiller.json │ │ │ ├── CREATE_EContractCreateNEContractInInit_TrFiller.json │ │ │ ├── CREATE_EContract_ThenCALLToNonExistentAccFiller.json │ │ │ ├── CREATE_EmptyContractAndCallIt_0weiFiller.json │ │ │ ├── CREATE_EmptyContractAndCallIt_1weiFiller.json │ │ │ ├── CREATE_EmptyContractFiller.json │ │ │ ├── CREATE_EmptyContractWithBalanceFiller.json │ │ │ ├── CREATE_EmptyContractWithStorageAndCallIt_0weiFiller.json │ │ │ ├── CREATE_EmptyContractWithStorageAndCallIt_1weiFiller.json │ │ │ ├── CREATE_EmptyContractWithStorageFiller.json │ │ │ ├── CREATE_HighNonceFiller.yml │ │ │ ├── CREATE_HighNonceMinus1Filler.yml │ │ │ ├── CREATE_empty000CreateinInitCode_TransactionFiller.json │ │ │ ├── CodeInConstructorFiller.yml │ │ │ ├── CreateAddressWarmAfterFailFiller.yml │ │ │ ├── CreateCollisionResultsFiller.yml │ │ │ ├── CreateCollisionToEmpty2Filler.json │ │ │ ├── CreateOOGFromCallRefundsFiller.yml │ │ │ ├── CreateOOGFromEOARefundsFiller.yml │ │ │ ├── CreateOOGafterInitCodeFiller.json │ │ │ ├── CreateOOGafterInitCodeReturndata2Filler.json │ │ │ ├── CreateOOGafterInitCodeReturndata3Filler.json │ │ │ ├── CreateOOGafterInitCodeReturndataFiller.json │ │ │ ├── CreateOOGafterInitCodeReturndataSizeFiller.json │ │ │ ├── CreateOOGafterInitCodeRevert2Filler.json │ │ │ ├── CreateOOGafterInitCodeRevertFiller.json │ │ │ ├── CreateOOGafterMaxCodesizeFiller.yml │ │ │ ├── CreateResultsFiller.yml │ │ │ ├── CreateTransactionCallDataFiller.yml │ │ │ ├── CreateTransactionHighNonceFiller.yml │ │ │ ├── CreateTransactionRefundEFFiller.yml │ │ │ ├── TransactionCollisionToEmpty2Filler.json │ │ │ ├── TransactionCollisionToEmptyButCodeFiller.json │ │ │ ├── TransactionCollisionToEmptyButNonceFiller.json │ │ │ ├── __init__.py │ │ │ ├── createFailResultFiller.yml │ │ │ └── createLargeResultFiller.yml │ │ ├── stDelegatecallTestHomestead/ │ │ │ ├── Call1024BalanceTooLowFiller.json │ │ │ ├── Call1024OOGFiller.json │ │ │ ├── Call1024PreCallsFiller.json │ │ │ ├── CallLoseGasOOGFiller.json │ │ │ ├── CallRecursiveBombPreCallFiller.json │ │ │ ├── CallcodeLoseGasOOGFiller.json │ │ │ ├── Delegatecall1024Filler.json │ │ │ ├── Delegatecall1024OOGFiller.json │ │ │ ├── __init__.py │ │ │ ├── callOutput1Filler.json │ │ │ ├── callOutput2Filler.json │ │ │ ├── callOutput3Filler.json │ │ │ ├── callOutput3partialFailFiller.json │ │ │ ├── callOutput3partialFiller.json │ │ │ ├── callWithHighValueAndGasOOGFiller.json │ │ │ ├── callcodeOutput3Filler.json │ │ │ ├── callcodeWithHighValueAndGasOOGFiller.json │ │ │ ├── deleagateCallAfterValueTransferFiller.json │ │ │ ├── delegatecallAndOOGatTxLevelFiller.json │ │ │ ├── delegatecallBasicFiller.json │ │ │ ├── delegatecallEmptycontractFiller.json │ │ │ ├── delegatecallInInitcodeToEmptyContractFiller.json │ │ │ ├── delegatecallInInitcodeToExistingContractFiller.json │ │ │ ├── delegatecallInInitcodeToExistingContractOOGFiller.json │ │ │ ├── delegatecallOOGinCallFiller.json │ │ │ ├── delegatecallSenderCheckFiller.json │ │ │ ├── delegatecallValueCheckFiller.json │ │ │ ├── delegatecodeDynamicCode2SelfCallFiller.json │ │ │ └── delegatecodeDynamicCodeFiller.json │ │ ├── stEIP150Specific/ │ │ │ ├── CallAndCallcodeConsumeMoreGasThenTransactionHasFiller.json │ │ │ ├── CallAskMoreGasOnDepth2ThenTransactionHasFiller.json │ │ │ ├── CallGoesOOGOnSecondLevel2Filler.json │ │ │ ├── CallGoesOOGOnSecondLevelFiller.json │ │ │ ├── CreateAndGasInsideCreateFiller.json │ │ │ ├── DelegateCallOnEIPFiller.json │ │ │ ├── ExecuteCallThatAskForeGasThenTrabsactionHasFiller.json │ │ │ ├── NewGasPriceForCodesFiller.json │ │ │ ├── SuicideToExistingContractFiller.json │ │ │ ├── SuicideToNotExistingContractFiller.json │ │ │ ├── Transaction64Rule_d64e0Filler.json │ │ │ ├── Transaction64Rule_d64m1Filler.json │ │ │ ├── Transaction64Rule_d64p1Filler.json │ │ │ ├── Transaction64Rule_integerBoundariesFiller.yml │ │ │ └── __init__.py │ │ ├── stEIP150singleCodeGasPrices/ │ │ │ ├── RawBalanceGasFiller.json │ │ │ ├── RawCallCodeGasAskFiller.json │ │ │ ├── RawCallCodeGasFiller.json │ │ │ ├── RawCallCodeGasMemoryAskFiller.json │ │ │ ├── RawCallCodeGasMemoryFiller.json │ │ │ ├── RawCallCodeGasValueTransferAskFiller.json │ │ │ ├── RawCallCodeGasValueTransferFiller.json │ │ │ ├── RawCallCodeGasValueTransferMemoryAskFiller.json │ │ │ ├── RawCallCodeGasValueTransferMemoryFiller.json │ │ │ ├── RawCallGasAskFiller.json │ │ │ ├── RawCallGasFiller.json │ │ │ ├── RawCallGasValueTransferAskFiller.json │ │ │ ├── RawCallGasValueTransferFiller.json │ │ │ ├── RawCallGasValueTransferMemoryAskFiller.json │ │ │ ├── RawCallGasValueTransferMemoryFiller.json │ │ │ ├── RawCallMemoryGasAskFiller.json │ │ │ ├── RawCallMemoryGasFiller.json │ │ │ ├── RawCreateFailGasValueTransfer2Filler.json │ │ │ ├── RawCreateFailGasValueTransferFiller.json │ │ │ ├── RawCreateGasFiller.json │ │ │ ├── RawCreateGasMemoryFiller.json │ │ │ ├── RawCreateGasValueTransferFiller.json │ │ │ ├── RawCreateGasValueTransferMemoryFiller.json │ │ │ ├── RawDelegateCallGasAskFiller.json │ │ │ ├── RawDelegateCallGasFiller.json │ │ │ ├── RawDelegateCallGasMemoryAskFiller.json │ │ │ ├── RawDelegateCallGasMemoryFiller.json │ │ │ ├── RawExtCodeCopyGasFiller.json │ │ │ ├── RawExtCodeCopyMemoryGasFiller.json │ │ │ ├── RawExtCodeSizeGasFiller.json │ │ │ ├── __init__.py │ │ │ ├── eip2929-ffFiller.yml │ │ │ ├── eip2929Filler.yml │ │ │ ├── eip2929OOGFiller.yml │ │ │ ├── gasCostBerlinFiller.yml │ │ │ ├── gasCostExpFiller.yml │ │ │ ├── gasCostFiller.yml │ │ │ ├── gasCostJumpFiller.yml │ │ │ ├── gasCostMemSegFiller.yml │ │ │ ├── gasCostMemoryFiller.yml │ │ │ └── gasCostReturnFiller.yml │ │ ├── stEIP1559/ │ │ │ ├── __init__.py │ │ │ ├── baseFeeDiffPlacesFiller.yml │ │ │ ├── baseFeeDiffPlacesOsakaFiller.yml │ │ │ ├── gasPriceDiffPlacesFiller.yml │ │ │ ├── gasPriceDiffPlacesOsakaFiller.yml │ │ │ ├── lowFeeCapFiller.yml │ │ │ ├── lowGasLimitFiller.yml │ │ │ ├── lowGasPriceOldTypesFiller.yml │ │ │ ├── outOfFundsFiller.yml │ │ │ ├── outOfFundsOldTypesFiller.yml │ │ │ ├── senderBalanceFiller.yml │ │ │ ├── tipTooHighFiller.yml │ │ │ ├── transactionIntinsicBug_ParisFiller.yml │ │ │ ├── typeTwoBerlinFiller.yml │ │ │ └── valCausesOOFFiller.yml │ │ ├── stEIP158Specific/ │ │ │ ├── CALL_OneVCallSuicide2Filler.json │ │ │ ├── CALL_OneVCallSuicideFiller.json │ │ │ ├── CALL_ZeroVCallSuicideFiller.json │ │ │ ├── EXP_EmptyFiller.json │ │ │ ├── EXTCODESIZE_toEpmtyParisFiller.json │ │ │ ├── EXTCODESIZE_toNonExistentFiller.json │ │ │ ├── __init__.py │ │ │ ├── callToEmptyThenCallErrorParisFiller.json │ │ │ └── vitalikTransactionTestParisFiller.json │ │ ├── stEIP2930/ │ │ │ ├── __init__.py │ │ │ ├── addressOpcodesFiller.yml │ │ │ ├── coinbaseT01Filler.yml │ │ │ ├── coinbaseT2Filler.yml │ │ │ ├── manualCreateFiller.yml │ │ │ ├── storageCostsFiller.yml │ │ │ ├── transactionCostsFiller.yml │ │ │ └── variedContextFiller.yml │ │ ├── stEIP3607/ │ │ │ ├── __init__.py │ │ │ ├── initCollidingWithNonEmptyAccountFiller.yml │ │ │ ├── transactionCollidingWithNonEmptyAccount_callsFiller.yml │ │ │ ├── transactionCollidingWithNonEmptyAccount_callsItselfFiller.yml │ │ │ ├── transactionCollidingWithNonEmptyAccount_init_ParisFiller.yml │ │ │ └── transactionCollidingWithNonEmptyAccount_send_ParisFiller.yml │ │ ├── stExample/ │ │ │ ├── __init__.py │ │ │ ├── accessListExampleFiller.yml │ │ │ ├── add11Filler.json │ │ │ ├── add11_ymlFiller.yml │ │ │ ├── basefeeExampleFiller.yml │ │ │ ├── eip1559Filler.yml │ │ │ ├── indexesOmitExampleFiller.yml │ │ │ ├── invalidTrFiller.json │ │ │ ├── labelsExampleFiller.yml │ │ │ ├── mergeTestFiller.yml │ │ │ ├── rangesExampleFiller.yml │ │ │ └── yulExampleFiller.yml │ │ ├── stExtCodeHash/ │ │ │ ├── __init__.py │ │ │ ├── callToNonExistentFiller.json │ │ │ ├── callToSuicideThenExtcodehashFiller.json │ │ │ ├── codeCopyZero_ParisFiller.yml │ │ │ ├── createEmptyThenExtcodehashFiller.json │ │ │ ├── dynamicAccountOverwriteEmpty_ParisFiller.yml │ │ │ ├── extCodeCopyBoundsFiller.yml │ │ │ ├── extCodeHashAccountWithoutCodeFiller.yml │ │ │ ├── extCodeHashCALLCODEFiller.json │ │ │ ├── extCodeHashCALLFiller.json │ │ │ ├── extCodeHashChangedAccountFiller.json │ │ │ ├── extCodeHashCreatedAndDeletedAccountCallFiller.json │ │ │ ├── extCodeHashCreatedAndDeletedAccountFiller.json │ │ │ ├── extCodeHashCreatedAndDeletedAccountRecheckInOuterCallFiller.json │ │ │ ├── extCodeHashCreatedAndDeletedAccountStaticCallFiller.json │ │ │ ├── extCodeHashDELEGATECALLFiller.json │ │ │ ├── extCodeHashDeletedAccount1CancunFiller.yml │ │ │ ├── extCodeHashDeletedAccount1Filler.yml │ │ │ ├── extCodeHashDeletedAccount2CancunFiller.yml │ │ │ ├── extCodeHashDeletedAccount2Filler.yml │ │ │ ├── extCodeHashDeletedAccount3Filler.yml │ │ │ ├── extCodeHashDeletedAccount4Filler.yml │ │ │ ├── extCodeHashDeletedAccountCancunFiller.yml │ │ │ ├── extCodeHashDeletedAccountFiller.yml │ │ │ ├── extCodeHashDynamicArgumentFiller.json │ │ │ ├── extCodeHashInInitCodeFiller.json │ │ │ ├── extCodeHashMaxCodeSizeFiller.yml │ │ │ ├── extCodeHashNewAccountFiller.json │ │ │ ├── extCodeHashNonExistingAccountFiller.yml │ │ │ ├── extCodeHashPrecompilesFiller.yml │ │ │ ├── extCodeHashSTATICCALLFiller.json │ │ │ ├── extCodeHashSelfFiller.json │ │ │ ├── extCodeHashSelfInInitFiller.json │ │ │ ├── extCodeHashSubcallOOGFiller.yml │ │ │ ├── extCodeHashSubcallSuicideCancunFiller.yml │ │ │ ├── extCodeHashSubcallSuicideFiller.yml │ │ │ └── extcodehashEmpty_ParisFiller.yml │ │ ├── stHomesteadSpecific/ │ │ │ ├── __init__.py │ │ │ ├── contractCreationOOGdontLeaveEmptyContractFiller.json │ │ │ ├── contractCreationOOGdontLeaveEmptyContractViaTransactionFiller.json │ │ │ ├── createContractViaContractFiller.json │ │ │ ├── createContractViaContractOOGInitCodeFiller.json │ │ │ └── createContractViaTransactionCost53000Filler.json │ │ ├── stInitCodeTest/ │ │ │ ├── CallContractToCreateContractAndCallItOOGFiller.json │ │ │ ├── CallContractToCreateContractNoCashFiller.json │ │ │ ├── CallContractToCreateContractOOGBonusGasFiller.json │ │ │ ├── CallContractToCreateContractOOGFiller.json │ │ │ ├── CallContractToCreateContractWhichWouldCreateContractIfCalledFiller.json │ │ │ ├── CallContractToCreateContractWhichWouldCreateContractInInitCodeFiller.json │ │ │ ├── CallRecursiveContractFiller.json │ │ │ ├── CallTheContractToCreateEmptyContractFiller.json │ │ │ ├── OutOfGasContractCreationFiller.json │ │ │ ├── OutOfGasPrefundedContractCreationFiller.json │ │ │ ├── ReturnTest2Filler.json │ │ │ ├── ReturnTestFiller.json │ │ │ ├── StackUnderFlowContractCreationFiller.json │ │ │ ├── TransactionCreateAutoSuicideContractFiller.json │ │ │ ├── TransactionCreateRandomInitCodeFiller.json │ │ │ ├── TransactionCreateStopInInitcodeFiller.json │ │ │ ├── TransactionCreateSuicideInInitcodeFiller.json │ │ │ └── __init__.py │ │ ├── stLogTests/ │ │ │ ├── __init__.py │ │ │ ├── log0_emptyMemFiller.json │ │ │ ├── log0_logMemStartTooHighFiller.json │ │ │ ├── log0_logMemsizeTooHighFiller.json │ │ │ ├── log0_logMemsizeZeroFiller.json │ │ │ ├── log0_nonEmptyMemFiller.json │ │ │ ├── log0_nonEmptyMem_logMemSize1Filler.json │ │ │ ├── log0_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ │ ├── log1_CallerFiller.json │ │ │ ├── log1_MaxTopicFiller.json │ │ │ ├── log1_emptyMemFiller.json │ │ │ ├── log1_logMemStartTooHighFiller.json │ │ │ ├── log1_logMemsizeTooHighFiller.json │ │ │ ├── log1_logMemsizeZeroFiller.json │ │ │ ├── log1_nonEmptyMemFiller.json │ │ │ ├── log1_nonEmptyMem_logMemSize1Filler.json │ │ │ ├── log1_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ │ ├── log2_CallerFiller.json │ │ │ ├── log2_MaxTopicFiller.json │ │ │ ├── log2_emptyMemFiller.json │ │ │ ├── log2_logMemStartTooHighFiller.json │ │ │ ├── log2_logMemsizeTooHighFiller.json │ │ │ ├── log2_logMemsizeZeroFiller.json │ │ │ ├── log2_nonEmptyMemFiller.json │ │ │ ├── log2_nonEmptyMem_logMemSize1Filler.json │ │ │ ├── log2_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ │ ├── log3_CallerFiller.json │ │ │ ├── log3_MaxTopicFiller.json │ │ │ ├── log3_PCFiller.json │ │ │ ├── log3_emptyMemFiller.json │ │ │ ├── log3_logMemStartTooHighFiller.json │ │ │ ├── log3_logMemsizeTooHighFiller.json │ │ │ ├── log3_logMemsizeZeroFiller.json │ │ │ ├── log3_nonEmptyMemFiller.json │ │ │ ├── log3_nonEmptyMem_logMemSize1Filler.json │ │ │ ├── log3_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ │ ├── log4_CallerFiller.json │ │ │ ├── log4_MaxTopicFiller.json │ │ │ ├── log4_PCFiller.json │ │ │ ├── log4_emptyMemFiller.json │ │ │ ├── log4_logMemStartTooHighFiller.json │ │ │ ├── log4_logMemsizeTooHighFiller.json │ │ │ ├── log4_logMemsizeZeroFiller.json │ │ │ ├── log4_nonEmptyMemFiller.json │ │ │ ├── log4_nonEmptyMem_logMemSize1Filler.json │ │ │ ├── log4_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ │ └── logInOOG_CallFiller.json │ │ ├── stMemExpandingEIP150Calls/ │ │ │ ├── CallAndCallcodeConsumeMoreGasThenTransactionHasWithMemExpandingCallsFiller.json │ │ │ ├── CallAskMoreGasOnDepth2ThenTransactionHasWithMemExpandingCallsFiller.json │ │ │ ├── CallGoesOOGOnSecondLevel2WithMemExpandingCallsFiller.json │ │ │ ├── CallGoesOOGOnSecondLevelWithMemExpandingCallsFiller.json │ │ │ ├── CreateAndGasInsideCreateWithMemExpandingCallsFiller.json │ │ │ ├── DelegateCallOnEIPWithMemExpandingCallsFiller.json │ │ │ ├── ExecuteCallThatAskMoreGasThenTransactionHasWithMemExpandingCallsFiller.json │ │ │ ├── NewGasPriceForCodesWithMemExpandingCallsFiller.json │ │ │ ├── OOGinReturnFiller.yml │ │ │ └── __init__.py │ │ ├── stMemoryStressTest/ │ │ │ ├── CALLCODE_Bounds2Filler.json │ │ │ ├── CALLCODE_Bounds3Filler.json │ │ │ ├── CALLCODE_Bounds4Filler.json │ │ │ ├── CALLCODE_BoundsFiller.json │ │ │ ├── CALL_Bounds2Filler.json │ │ │ ├── CALL_Bounds2aFiller.json │ │ │ ├── CALL_Bounds3Filler.json │ │ │ ├── CALL_BoundsFiller.json │ │ │ ├── CREATE_Bounds2Filler.json │ │ │ ├── CREATE_Bounds3Filler.json │ │ │ ├── CREATE_BoundsFiller.json │ │ │ ├── DELEGATECALL_Bounds2Filler.json │ │ │ ├── DELEGATECALL_Bounds3Filler.json │ │ │ ├── DELEGATECALL_BoundsFiller.json │ │ │ ├── DUP_BoundsFiller.json │ │ │ ├── FillStackFiller.json │ │ │ ├── JUMPI_BoundsFiller.json │ │ │ ├── JUMP_Bounds2Filler.json │ │ │ ├── JUMP_BoundsFiller.json │ │ │ ├── MLOAD_Bounds2Filler.json │ │ │ ├── MLOAD_Bounds3Filler.json │ │ │ ├── MLOAD_BoundsFiller.json │ │ │ ├── MSTORE_Bounds2Filler.json │ │ │ ├── MSTORE_Bounds2aFiller.json │ │ │ ├── MSTORE_BoundsFiller.json │ │ │ ├── POP_BoundsFiller.json │ │ │ ├── RETURN_BoundsFiller.json │ │ │ ├── SLOAD_BoundsFiller.json │ │ │ ├── SSTORE_BoundsFiller.json │ │ │ ├── __init__.py │ │ │ ├── mload32bitBound2Filler.json │ │ │ ├── mload32bitBoundFiller.json │ │ │ ├── mload32bitBound_MsizeFiller.json │ │ │ ├── mload32bitBound_return2Filler.json │ │ │ ├── mload32bitBound_returnFiller.json │ │ │ ├── static_CALL_Bounds2Filler.json │ │ │ ├── static_CALL_Bounds2aFiller.json │ │ │ ├── static_CALL_Bounds3Filler.json │ │ │ └── static_CALL_BoundsFiller.json │ │ ├── stMemoryTest/ │ │ │ ├── __init__.py │ │ │ ├── bufferFiller.yml │ │ │ ├── bufferSrcOffsetFiller.yml │ │ │ ├── callDataCopyOffsetFiller.json │ │ │ ├── calldatacopy_dejavu2Filler.json │ │ │ ├── calldatacopy_dejavuFiller.json │ │ │ ├── codeCopyOffsetFiller.json │ │ │ ├── codecopy_dejavu2Filler.json │ │ │ ├── codecopy_dejavuFiller.json │ │ │ ├── extcodecopy_dejavuFiller.json │ │ │ ├── log1_dejavuFiller.json │ │ │ ├── log2_dejavuFiller.json │ │ │ ├── log3_dejavuFiller.json │ │ │ ├── log4_dejavuFiller.json │ │ │ ├── mem0b_singleByteFiller.json │ │ │ ├── mem31b_singleByteFiller.json │ │ │ ├── mem32b_singleByteFiller.json │ │ │ ├── mem32kb+1Filler.json │ │ │ ├── mem32kb+31Filler.json │ │ │ ├── mem32kb+32Filler.json │ │ │ ├── mem32kb+33Filler.json │ │ │ ├── mem32kb-1Filler.json │ │ │ ├── mem32kb-31Filler.json │ │ │ ├── mem32kb-32Filler.json │ │ │ ├── mem32kb-33Filler.json │ │ │ ├── mem32kbFiller.json │ │ │ ├── mem32kb_singleByte+1Filler.json │ │ │ ├── mem32kb_singleByte+31Filler.json │ │ │ ├── mem32kb_singleByte+32Filler.json │ │ │ ├── mem32kb_singleByte+33Filler.json │ │ │ ├── mem32kb_singleByte-1Filler.json │ │ │ ├── mem32kb_singleByte-31Filler.json │ │ │ ├── mem32kb_singleByte-32Filler.json │ │ │ ├── mem32kb_singleByte-33Filler.json │ │ │ ├── mem32kb_singleByteFiller.json │ │ │ ├── mem33b_singleByteFiller.json │ │ │ ├── mem64kb+1Filler.json │ │ │ ├── mem64kb+31Filler.json │ │ │ ├── mem64kb+32Filler.json │ │ │ ├── mem64kb+33Filler.json │ │ │ ├── mem64kb-1Filler.json │ │ │ ├── mem64kb-31Filler.json │ │ │ ├── mem64kb-32Filler.json │ │ │ ├── mem64kb-33Filler.json │ │ │ ├── mem64kbFiller.json │ │ │ ├── mem64kb_singleByte+1Filler.json │ │ │ ├── mem64kb_singleByte+31Filler.json │ │ │ ├── mem64kb_singleByte+32Filler.json │ │ │ ├── mem64kb_singleByte+33Filler.json │ │ │ ├── mem64kb_singleByte-1Filler.json │ │ │ ├── mem64kb_singleByte-31Filler.json │ │ │ ├── mem64kb_singleByte-32Filler.json │ │ │ ├── mem64kb_singleByte-33Filler.json │ │ │ ├── mem64kb_singleByteFiller.json │ │ │ ├── memCopySelfFiller.yml │ │ │ ├── memReturnFiller.json │ │ │ ├── mload16bitBoundFiller.json │ │ │ ├── mload8bitBoundFiller.json │ │ │ ├── mload_dejavuFiller.json │ │ │ ├── mstore_dejavuFiller.json │ │ │ ├── mstroe8_dejavuFiller.json │ │ │ ├── oogFiller.yml │ │ │ ├── sha3_dejavuFiller.json │ │ │ ├── stackLimitGas_1023Filler.json │ │ │ ├── stackLimitGas_1024Filler.json │ │ │ ├── stackLimitGas_1025Filler.json │ │ │ ├── stackLimitPush31_1023Filler.json │ │ │ ├── stackLimitPush31_1024Filler.json │ │ │ ├── stackLimitPush31_1025Filler.json │ │ │ ├── stackLimitPush32_1023Filler.json │ │ │ ├── stackLimitPush32_1024Filler.json │ │ │ └── stackLimitPush32_1025Filler.json │ │ ├── stNonZeroCallsTest/ │ │ │ ├── NonZeroValue_CALLCODEFiller.json │ │ │ ├── NonZeroValue_CALLCODE_ToEmpty_ParisFiller.json │ │ │ ├── NonZeroValue_CALLCODE_ToNonNonZeroBalanceFiller.json │ │ │ ├── NonZeroValue_CALLCODE_ToOneStorageKey_ParisFiller.json │ │ │ ├── NonZeroValue_CALLFiller.json │ │ │ ├── NonZeroValue_CALL_ToEmpty_ParisFiller.json │ │ │ ├── NonZeroValue_CALL_ToNonNonZeroBalanceFiller.json │ │ │ ├── NonZeroValue_CALL_ToOneStorageKey_ParisFiller.json │ │ │ ├── NonZeroValue_DELEGATECALLFiller.json │ │ │ ├── NonZeroValue_DELEGATECALL_ToEmpty_ParisFiller.json │ │ │ ├── NonZeroValue_DELEGATECALL_ToNonNonZeroBalanceFiller.json │ │ │ ├── NonZeroValue_DELEGATECALL_ToOneStorageKey_ParisFiller.json │ │ │ ├── NonZeroValue_SUICIDEFiller.json │ │ │ ├── NonZeroValue_SUICIDE_ToEmpty_ParisFiller.json │ │ │ ├── NonZeroValue_SUICIDE_ToNonNonZeroBalanceFiller.json │ │ │ ├── NonZeroValue_SUICIDE_ToOneStorageKey_ParisFiller.json │ │ │ ├── NonZeroValue_TransactionCALLFiller.json │ │ │ ├── NonZeroValue_TransactionCALL_ToEmpty_ParisFiller.json │ │ │ ├── NonZeroValue_TransactionCALL_ToNonNonZeroBalanceFiller.json │ │ │ ├── NonZeroValue_TransactionCALL_ToOneStorageKey_ParisFiller.json │ │ │ ├── NonZeroValue_TransactionCALLwithDataFiller.json │ │ │ ├── NonZeroValue_TransactionCALLwithData_ToEmpty_ParisFiller.json │ │ │ ├── NonZeroValue_TransactionCALLwithData_ToNonNonZeroBalanceFiller.json │ │ │ ├── NonZeroValue_TransactionCALLwithData_ToOneStorageKey_ParisFiller.json │ │ │ └── __init__.py │ │ ├── stPreCompiledContracts/ │ │ │ ├── __init__.py │ │ │ ├── modexpFiller.json │ │ │ ├── modexpTestsFiller.yml │ │ │ ├── precompsEIP2929CancunFiller.yml │ │ │ └── sec80Filler.json │ │ ├── stPreCompiledContracts2/ │ │ │ ├── CALLCODEEcrecover0Filler.json │ │ │ ├── CALLCODEEcrecover0_0inputFiller.json │ │ │ ├── CALLCODEEcrecover0_Gas2999Filler.json │ │ │ ├── CALLCODEEcrecover0_NoGasFiller.json │ │ │ ├── CALLCODEEcrecover0_completeReturnValueFiller.json │ │ │ ├── CALLCODEEcrecover0_gas3000Filler.json │ │ │ ├── CALLCODEEcrecover0_overlappingInputOutputFiller.json │ │ │ ├── CALLCODEEcrecover1Filler.json │ │ │ ├── CALLCODEEcrecover2Filler.json │ │ │ ├── CALLCODEEcrecover3Filler.json │ │ │ ├── CALLCODEEcrecover80Filler.json │ │ │ ├── CALLCODEEcrecoverH_prefixed0Filler.json │ │ │ ├── CALLCODEEcrecoverR_prefixed0Filler.json │ │ │ ├── CALLCODEEcrecoverS_prefixed0Filler.json │ │ │ ├── CALLCODEEcrecoverV_prefixed0Filler.json │ │ │ ├── CALLCODEEcrecoverV_prefixedf0Filler.json │ │ │ ├── CALLCODERipemd160_0Filler.json │ │ │ ├── CALLCODERipemd160_1Filler.json │ │ │ ├── CALLCODERipemd160_2Filler.json │ │ │ ├── CALLCODERipemd160_3Filler.json │ │ │ ├── CALLCODERipemd160_3_postfixed0Filler.json │ │ │ ├── CALLCODERipemd160_3_prefixed0Filler.json │ │ │ ├── CALLCODERipemd160_4Filler.json │ │ │ ├── CALLCODERipemd160_4_gas719Filler.json │ │ │ ├── CALLCODERipemd160_5Filler.json │ │ │ ├── CALLCODESha256_0Filler.json │ │ │ ├── CALLCODESha256_1Filler.json │ │ │ ├── CALLCODESha256_1_nonzeroValueFiller.json │ │ │ ├── CALLCODESha256_2Filler.json │ │ │ ├── CALLCODESha256_3Filler.json │ │ │ ├── CALLCODESha256_3_postfix0Filler.json │ │ │ ├── CALLCODESha256_3_prefix0Filler.json │ │ │ ├── CALLCODESha256_4Filler.json │ │ │ ├── CALLCODESha256_4_gas99Filler.json │ │ │ ├── CALLCODESha256_5Filler.json │ │ │ ├── CallEcrecover0Filler.json │ │ │ ├── CallEcrecover0_0inputFiller.json │ │ │ ├── CallEcrecover0_Gas2999Filler.json │ │ │ ├── CallEcrecover0_NoGasFiller.json │ │ │ ├── CallEcrecover0_completeReturnValueFiller.json │ │ │ ├── CallEcrecover0_gas3000Filler.json │ │ │ ├── CallEcrecover0_overlappingInputOutputFiller.json │ │ │ ├── CallEcrecover1Filler.json │ │ │ ├── CallEcrecover2Filler.json │ │ │ ├── CallEcrecover3Filler.json │ │ │ ├── CallEcrecover80Filler.json │ │ │ ├── CallEcrecoverCheckLengthFiller.json │ │ │ ├── CallEcrecoverCheckLengthWrongVFiller.json │ │ │ ├── CallEcrecoverH_prefixed0Filler.json │ │ │ ├── CallEcrecoverInvalidSignatureFiller.json │ │ │ ├── CallEcrecoverR_prefixed0Filler.json │ │ │ ├── CallEcrecoverS_prefixed0Filler.json │ │ │ ├── CallEcrecoverUnrecoverableKeyFiller.json │ │ │ ├── CallEcrecoverV_prefixed0Filler.json │ │ │ ├── CallEcrecover_OverflowFiller.yml │ │ │ ├── CallRipemd160_0Filler.json │ │ │ ├── CallRipemd160_1Filler.json │ │ │ ├── CallRipemd160_2Filler.json │ │ │ ├── CallRipemd160_3Filler.json │ │ │ ├── CallRipemd160_3_postfixed0Filler.json │ │ │ ├── CallRipemd160_3_prefixed0Filler.json │ │ │ ├── CallRipemd160_4Filler.json │ │ │ ├── CallRipemd160_4_gas719Filler.json │ │ │ ├── CallRipemd160_5Filler.json │ │ │ ├── CallSha256_0Filler.json │ │ │ ├── CallSha256_1Filler.json │ │ │ ├── CallSha256_1_nonzeroValueFiller.json │ │ │ ├── CallSha256_2Filler.json │ │ │ ├── CallSha256_3Filler.json │ │ │ ├── CallSha256_3_postfix0Filler.json │ │ │ ├── CallSha256_3_prefix0Filler.json │ │ │ ├── CallSha256_4Filler.json │ │ │ ├── CallSha256_4_gas99Filler.json │ │ │ ├── CallSha256_5Filler.json │ │ │ ├── __init__.py │ │ │ ├── ecrecoverShortBuffFiller.yml │ │ │ ├── ecrecoverWeirdVFiller.yml │ │ │ ├── modexpRandomInputFiller.json │ │ │ ├── modexp_0_0_0_20500Filler.json │ │ │ ├── modexp_0_0_0_22000Filler.json │ │ │ ├── modexp_0_0_0_25000Filler.json │ │ │ └── modexp_0_0_0_35000Filler.json │ │ ├── stQuadraticComplexityTest/ │ │ │ ├── Call1MB1024CalldepthFiller.json │ │ │ ├── Call20KbytesContract50_1Filler.json │ │ │ ├── Call20KbytesContract50_2Filler.json │ │ │ ├── Call20KbytesContract50_3Filler.json │ │ │ ├── Call50000Filler.json │ │ │ ├── Call50000_ecrecFiller.json │ │ │ ├── Call50000_identity2Filler.json │ │ │ ├── Call50000_identityFiller.json │ │ │ ├── Call50000_rip160Filler.json │ │ │ ├── Call50000_sha256Filler.json │ │ │ ├── Callcode50000Filler.json │ │ │ ├── Create1000ByzantiumFiller.json │ │ │ ├── Create1000Filler.json │ │ │ ├── Create1000ShnghaiFiller.json │ │ │ ├── QuadraticComplexitySolidity_CallDataCopyFiller.json │ │ │ ├── Return50000Filler.json │ │ │ ├── Return50000_2Filler.json │ │ │ └── __init__.py │ │ ├── stRandom/ │ │ │ ├── __init__.py │ │ │ ├── randomStatetest0Filler.json │ │ │ ├── randomStatetest100Filler.json │ │ │ ├── randomStatetest102Filler.json │ │ │ ├── randomStatetest103Filler.json │ │ │ ├── randomStatetest104Filler.json │ │ │ ├── randomStatetest105Filler.json │ │ │ ├── randomStatetest106Filler.json │ │ │ ├── randomStatetest107Filler.json │ │ │ ├── randomStatetest108Filler.json │ │ │ ├── randomStatetest10Filler.json │ │ │ ├── randomStatetest110Filler.json │ │ │ ├── randomStatetest111Filler.json │ │ │ ├── randomStatetest112Filler.json │ │ │ ├── randomStatetest114Filler.json │ │ │ ├── randomStatetest115Filler.json │ │ │ ├── randomStatetest116Filler.json │ │ │ ├── randomStatetest117Filler.json │ │ │ ├── randomStatetest118Filler.json │ │ │ ├── randomStatetest119Filler.json │ │ │ ├── randomStatetest11Filler.json │ │ │ ├── randomStatetest120Filler.json │ │ │ ├── randomStatetest121Filler.json │ │ │ ├── randomStatetest122Filler.json │ │ │ ├── randomStatetest124Filler.json │ │ │ ├── randomStatetest125Filler.json │ │ │ ├── randomStatetest126Filler.json │ │ │ ├── randomStatetest129Filler.json │ │ │ ├── randomStatetest12Filler.json │ │ │ ├── randomStatetest130Filler.json │ │ │ ├── randomStatetest131Filler.json │ │ │ ├── randomStatetest133Filler.json │ │ │ ├── randomStatetest134Filler.json │ │ │ ├── randomStatetest135Filler.json │ │ │ ├── randomStatetest137Filler.json │ │ │ ├── randomStatetest138Filler.json │ │ │ ├── randomStatetest139Filler.json │ │ │ ├── randomStatetest13Filler.json │ │ │ ├── randomStatetest142Filler.json │ │ │ ├── randomStatetest143Filler.json │ │ │ ├── randomStatetest144Filler.json │ │ │ ├── randomStatetest145Filler.json │ │ │ ├── randomStatetest146Filler.json │ │ │ ├── randomStatetest147Filler.json │ │ │ ├── randomStatetest148Filler.json │ │ │ ├── randomStatetest149Filler.json │ │ │ ├── randomStatetest14Filler.json │ │ │ ├── randomStatetest150Filler.json │ │ │ ├── randomStatetest151Filler.json │ │ │ ├── randomStatetest153Filler.json │ │ │ ├── randomStatetest154Filler.json │ │ │ ├── randomStatetest155Filler.json │ │ │ ├── randomStatetest156Filler.json │ │ │ ├── randomStatetest157Filler.json │ │ │ ├── randomStatetest158Filler.json │ │ │ ├── randomStatetest159Filler.json │ │ │ ├── randomStatetest15Filler.json │ │ │ ├── randomStatetest161Filler.json │ │ │ ├── randomStatetest162Filler.json │ │ │ ├── randomStatetest163Filler.json │ │ │ ├── randomStatetest164Filler.json │ │ │ ├── randomStatetest166Filler.json │ │ │ ├── randomStatetest167Filler.json │ │ │ ├── randomStatetest169Filler.json │ │ │ ├── randomStatetest16Filler.json │ │ │ ├── randomStatetest171Filler.json │ │ │ ├── randomStatetest172Filler.json │ │ │ ├── randomStatetest173Filler.json │ │ │ ├── randomStatetest174Filler.json │ │ │ ├── randomStatetest175Filler.json │ │ │ ├── randomStatetest176Filler.json │ │ │ ├── randomStatetest177Filler.json │ │ │ ├── randomStatetest178Filler.json │ │ │ ├── randomStatetest179Filler.json │ │ │ ├── randomStatetest17Filler.json │ │ │ ├── randomStatetest180Filler.json │ │ │ ├── randomStatetest183Filler.json │ │ │ ├── randomStatetest184Filler.json │ │ │ ├── randomStatetest185Filler.json │ │ │ ├── randomStatetest187Filler.json │ │ │ ├── randomStatetest188Filler.json │ │ │ ├── randomStatetest189Filler.json │ │ │ ├── randomStatetest18Filler.json │ │ │ ├── randomStatetest190Filler.json │ │ │ ├── randomStatetest191Filler.json │ │ │ ├── randomStatetest192Filler.json │ │ │ ├── randomStatetest194Filler.json │ │ │ ├── randomStatetest195Filler.json │ │ │ ├── randomStatetest196Filler.json │ │ │ ├── randomStatetest197Filler.json │ │ │ ├── randomStatetest198Filler.json │ │ │ ├── randomStatetest199Filler.json │ │ │ ├── randomStatetest19Filler.json │ │ │ ├── randomStatetest1Filler.json │ │ │ ├── randomStatetest200Filler.json │ │ │ ├── randomStatetest201Filler.json │ │ │ ├── randomStatetest202Filler.json │ │ │ ├── randomStatetest204Filler.json │ │ │ ├── randomStatetest205Filler.json │ │ │ ├── randomStatetest206Filler.json │ │ │ ├── randomStatetest207Filler.json │ │ │ ├── randomStatetest208Filler.json │ │ │ ├── randomStatetest209Filler.json │ │ │ ├── randomStatetest20Filler.json │ │ │ ├── randomStatetest210Filler.json │ │ │ ├── randomStatetest211Filler.json │ │ │ ├── randomStatetest212Filler.json │ │ │ ├── randomStatetest214Filler.json │ │ │ ├── randomStatetest215Filler.json │ │ │ ├── randomStatetest216Filler.json │ │ │ ├── randomStatetest217Filler.json │ │ │ ├── randomStatetest219Filler.json │ │ │ ├── randomStatetest220Filler.json │ │ │ ├── randomStatetest221Filler.json │ │ │ ├── randomStatetest222Filler.json │ │ │ ├── randomStatetest225Filler.json │ │ │ ├── randomStatetest226Filler.json │ │ │ ├── randomStatetest227Filler.json │ │ │ ├── randomStatetest228Filler.json │ │ │ ├── randomStatetest22Filler.json │ │ │ ├── randomStatetest230Filler.json │ │ │ ├── randomStatetest231Filler.json │ │ │ ├── randomStatetest232Filler.json │ │ │ ├── randomStatetest233Filler.json │ │ │ ├── randomStatetest236Filler.json │ │ │ ├── randomStatetest237Filler.json │ │ │ ├── randomStatetest238Filler.json │ │ │ ├── randomStatetest23Filler.json │ │ │ ├── randomStatetest242Filler.json │ │ │ ├── randomStatetest243Filler.json │ │ │ ├── randomStatetest244Filler.json │ │ │ ├── randomStatetest245Filler.json │ │ │ ├── randomStatetest246Filler.json │ │ │ ├── randomStatetest247Filler.json │ │ │ ├── randomStatetest248Filler.json │ │ │ ├── randomStatetest249Filler.json │ │ │ ├── randomStatetest24Filler.json │ │ │ ├── randomStatetest250Filler.json │ │ │ ├── randomStatetest251Filler.json │ │ │ ├── randomStatetest252Filler.json │ │ │ ├── randomStatetest254Filler.json │ │ │ ├── randomStatetest257Filler.json │ │ │ ├── randomStatetest259Filler.json │ │ │ ├── randomStatetest25Filler.json │ │ │ ├── randomStatetest260Filler.json │ │ │ ├── randomStatetest261Filler.json │ │ │ ├── randomStatetest263Filler.json │ │ │ ├── randomStatetest264Filler.json │ │ │ ├── randomStatetest265Filler.json │ │ │ ├── randomStatetest266Filler.json │ │ │ ├── randomStatetest267Filler.json │ │ │ ├── randomStatetest268Filler.json │ │ │ ├── randomStatetest269Filler.json │ │ │ ├── randomStatetest26Filler.json │ │ │ ├── randomStatetest270Filler.json │ │ │ ├── randomStatetest271Filler.json │ │ │ ├── randomStatetest273Filler.json │ │ │ ├── randomStatetest274Filler.json │ │ │ ├── randomStatetest275Filler.json │ │ │ ├── randomStatetest276Filler.json │ │ │ ├── randomStatetest278Filler.json │ │ │ ├── randomStatetest279Filler.json │ │ │ ├── randomStatetest27Filler.json │ │ │ ├── randomStatetest280Filler.json │ │ │ ├── randomStatetest281Filler.json │ │ │ ├── randomStatetest282Filler.json │ │ │ ├── randomStatetest283Filler.json │ │ │ ├── randomStatetest285Filler.json │ │ │ ├── randomStatetest286Filler.json │ │ │ ├── randomStatetest287Filler.json │ │ │ ├── randomStatetest288Filler.json │ │ │ ├── randomStatetest28Filler.json │ │ │ ├── randomStatetest290Filler.json │ │ │ ├── randomStatetest291Filler.json │ │ │ ├── randomStatetest292Filler.json │ │ │ ├── randomStatetest293Filler.json │ │ │ ├── randomStatetest294Filler.json │ │ │ ├── randomStatetest295Filler.json │ │ │ ├── randomStatetest296Filler.json │ │ │ ├── randomStatetest297Filler.json │ │ │ ├── randomStatetest298Filler.json │ │ │ ├── randomStatetest299Filler.json │ │ │ ├── randomStatetest29Filler.json │ │ │ ├── randomStatetest2Filler.json │ │ │ ├── randomStatetest300Filler.json │ │ │ ├── randomStatetest301Filler.json │ │ │ ├── randomStatetest302Filler.json │ │ │ ├── randomStatetest303Filler.json │ │ │ ├── randomStatetest304Filler.json │ │ │ ├── randomStatetest305Filler.json │ │ │ ├── randomStatetest306Filler.json │ │ │ ├── randomStatetest307Filler.json │ │ │ ├── randomStatetest308Filler.json │ │ │ ├── randomStatetest309Filler.json │ │ │ ├── randomStatetest30Filler.json │ │ │ ├── randomStatetest310Filler.json │ │ │ ├── randomStatetest311Filler.json │ │ │ ├── randomStatetest312Filler.json │ │ │ ├── randomStatetest313Filler.json │ │ │ ├── randomStatetest315Filler.json │ │ │ ├── randomStatetest316Filler.json │ │ │ ├── randomStatetest318Filler.json │ │ │ ├── randomStatetest31Filler.json │ │ │ ├── randomStatetest320Filler.json │ │ │ ├── randomStatetest321Filler.json │ │ │ ├── randomStatetest322Filler.json │ │ │ ├── randomStatetest323Filler.json │ │ │ ├── randomStatetest325Filler.json │ │ │ ├── randomStatetest326Filler.json │ │ │ ├── randomStatetest327Filler.json │ │ │ ├── randomStatetest329Filler.json │ │ │ ├── randomStatetest332Filler.json │ │ │ ├── randomStatetest333Filler.json │ │ │ ├── randomStatetest334Filler.json │ │ │ ├── randomStatetest335Filler.json │ │ │ ├── randomStatetest336Filler.json │ │ │ ├── randomStatetest337Filler.json │ │ │ ├── randomStatetest338Filler.json │ │ │ ├── randomStatetest339Filler.json │ │ │ ├── randomStatetest33Filler.json │ │ │ ├── randomStatetest340Filler.json │ │ │ ├── randomStatetest341Filler.json │ │ │ ├── randomStatetest342Filler.json │ │ │ ├── randomStatetest343Filler.json │ │ │ ├── randomStatetest345Filler.json │ │ │ ├── randomStatetest346Filler.json │ │ │ ├── randomStatetest347Filler.json │ │ │ ├── randomStatetest348Filler.json │ │ │ ├── randomStatetest349Filler.json │ │ │ ├── randomStatetest350Filler.json │ │ │ ├── randomStatetest351Filler.json │ │ │ ├── randomStatetest352Filler.json │ │ │ ├── randomStatetest353Filler.json │ │ │ ├── randomStatetest354Filler.json │ │ │ ├── randomStatetest355Filler.json │ │ │ ├── randomStatetest356Filler.json │ │ │ ├── randomStatetest357Filler.json │ │ │ ├── randomStatetest358Filler.json │ │ │ ├── randomStatetest359Filler.json │ │ │ ├── randomStatetest360Filler.json │ │ │ ├── randomStatetest361Filler.json │ │ │ ├── randomStatetest362Filler.json │ │ │ ├── randomStatetest363Filler.json │ │ │ ├── randomStatetest364Filler.json │ │ │ ├── randomStatetest365Filler.json │ │ │ ├── randomStatetest366Filler.json │ │ │ ├── randomStatetest367Filler.json │ │ │ ├── randomStatetest368Filler.json │ │ │ ├── randomStatetest369Filler.json │ │ │ ├── randomStatetest36Filler.json │ │ │ ├── randomStatetest370Filler.json │ │ │ ├── randomStatetest371Filler.json │ │ │ ├── randomStatetest372Filler.json │ │ │ ├── randomStatetest376Filler.json │ │ │ ├── randomStatetest378Filler.json │ │ │ ├── randomStatetest379Filler.json │ │ │ ├── randomStatetest37Filler.json │ │ │ ├── randomStatetest380Filler.json │ │ │ ├── randomStatetest381Filler.json │ │ │ ├── randomStatetest382Filler.json │ │ │ ├── randomStatetest383Filler.json │ │ │ ├── randomStatetest384Filler.yml │ │ │ ├── randomStatetest39Filler.json │ │ │ ├── randomStatetest3Filler.json │ │ │ ├── randomStatetest41Filler.json │ │ │ ├── randomStatetest42Filler.json │ │ │ ├── randomStatetest43Filler.json │ │ │ ├── randomStatetest45Filler.json │ │ │ ├── randomStatetest47Filler.json │ │ │ ├── randomStatetest48Filler.json │ │ │ ├── randomStatetest49Filler.json │ │ │ ├── randomStatetest4Filler.json │ │ │ ├── randomStatetest51Filler.json │ │ │ ├── randomStatetest52Filler.json │ │ │ ├── randomStatetest53Filler.json │ │ │ ├── randomStatetest54Filler.json │ │ │ ├── randomStatetest55Filler.json │ │ │ ├── randomStatetest57Filler.json │ │ │ ├── randomStatetest58Filler.json │ │ │ ├── randomStatetest59Filler.json │ │ │ ├── randomStatetest5Filler.json │ │ │ ├── randomStatetest60Filler.json │ │ │ ├── randomStatetest62Filler.json │ │ │ ├── randomStatetest63Filler.json │ │ │ ├── randomStatetest64Filler.json │ │ │ ├── randomStatetest66Filler.json │ │ │ ├── randomStatetest67Filler.json │ │ │ ├── randomStatetest69Filler.json │ │ │ ├── randomStatetest6Filler.json │ │ │ ├── randomStatetest72Filler.json │ │ │ ├── randomStatetest73Filler.json │ │ │ ├── randomStatetest74Filler.json │ │ │ ├── randomStatetest75Filler.json │ │ │ ├── randomStatetest77Filler.json │ │ │ ├── randomStatetest78Filler.json │ │ │ ├── randomStatetest80Filler.json │ │ │ ├── randomStatetest81Filler.json │ │ │ ├── randomStatetest82Filler.json │ │ │ ├── randomStatetest83Filler.json │ │ │ ├── randomStatetest84Filler.json │ │ │ ├── randomStatetest85Filler.json │ │ │ ├── randomStatetest87Filler.json │ │ │ ├── randomStatetest88Filler.json │ │ │ ├── randomStatetest89Filler.json │ │ │ ├── randomStatetest90Filler.json │ │ │ ├── randomStatetest92Filler.json │ │ │ ├── randomStatetest95Filler.json │ │ │ ├── randomStatetest96Filler.json │ │ │ ├── randomStatetest97Filler.json │ │ │ ├── randomStatetest98Filler.json │ │ │ └── randomStatetest9Filler.json │ │ ├── stRandom2/ │ │ │ ├── __init__.py │ │ │ ├── randomStatetest384Filler.json │ │ │ ├── randomStatetest385Filler.json │ │ │ ├── randomStatetest386Filler.json │ │ │ ├── randomStatetest387Filler.json │ │ │ ├── randomStatetest388Filler.json │ │ │ ├── randomStatetest389Filler.json │ │ │ ├── randomStatetest393Filler.json │ │ │ ├── randomStatetest395Filler.json │ │ │ ├── randomStatetest396Filler.json │ │ │ ├── randomStatetest397Filler.json │ │ │ ├── randomStatetest398Filler.json │ │ │ ├── randomStatetest399Filler.json │ │ │ ├── randomStatetest401Filler.json │ │ │ ├── randomStatetest402Filler.json │ │ │ ├── randomStatetest404Filler.json │ │ │ ├── randomStatetest405Filler.json │ │ │ ├── randomStatetest406Filler.json │ │ │ ├── randomStatetest407Filler.json │ │ │ ├── randomStatetest408Filler.json │ │ │ ├── randomStatetest409Filler.json │ │ │ ├── randomStatetest410Filler.json │ │ │ ├── randomStatetest411Filler.json │ │ │ ├── randomStatetest412Filler.json │ │ │ ├── randomStatetest413Filler.json │ │ │ ├── randomStatetest414Filler.json │ │ │ ├── randomStatetest415Filler.json │ │ │ ├── randomStatetest416Filler.json │ │ │ ├── randomStatetest417Filler.json │ │ │ ├── randomStatetest418Filler.json │ │ │ ├── randomStatetest419Filler.json │ │ │ ├── randomStatetest420Filler.json │ │ │ ├── randomStatetest421Filler.json │ │ │ ├── randomStatetest422Filler.json │ │ │ ├── randomStatetest424Filler.json │ │ │ ├── randomStatetest425Filler.json │ │ │ ├── randomStatetest426Filler.json │ │ │ ├── randomStatetest428Filler.json │ │ │ ├── randomStatetest429Filler.json │ │ │ ├── randomStatetest430Filler.json │ │ │ ├── randomStatetest433Filler.json │ │ │ ├── randomStatetest435Filler.json │ │ │ ├── randomStatetest436Filler.json │ │ │ ├── randomStatetest437Filler.json │ │ │ ├── randomStatetest438Filler.json │ │ │ ├── randomStatetest439Filler.json │ │ │ ├── randomStatetest440Filler.json │ │ │ ├── randomStatetest442Filler.json │ │ │ ├── randomStatetest443Filler.json │ │ │ ├── randomStatetest444Filler.json │ │ │ ├── randomStatetest445Filler.json │ │ │ ├── randomStatetest446Filler.json │ │ │ ├── randomStatetest447Filler.json │ │ │ ├── randomStatetest448Filler.json │ │ │ ├── randomStatetest449Filler.json │ │ │ ├── randomStatetest450Filler.json │ │ │ ├── randomStatetest451Filler.json │ │ │ ├── randomStatetest452Filler.json │ │ │ ├── randomStatetest454Filler.json │ │ │ ├── randomStatetest455Filler.json │ │ │ ├── randomStatetest456Filler.json │ │ │ ├── randomStatetest457Filler.json │ │ │ ├── randomStatetest458Filler.json │ │ │ ├── randomStatetest460Filler.json │ │ │ ├── randomStatetest461Filler.json │ │ │ ├── randomStatetest462Filler.json │ │ │ ├── randomStatetest464Filler.json │ │ │ ├── randomStatetest465Filler.json │ │ │ ├── randomStatetest466Filler.json │ │ │ ├── randomStatetest467Filler.json │ │ │ ├── randomStatetest469Filler.json │ │ │ ├── randomStatetest470Filler.json │ │ │ ├── randomStatetest471Filler.json │ │ │ ├── randomStatetest472Filler.json │ │ │ ├── randomStatetest473Filler.json │ │ │ ├── randomStatetest474Filler.json │ │ │ ├── randomStatetest475Filler.json │ │ │ ├── randomStatetest476Filler.json │ │ │ ├── randomStatetest477Filler.json │ │ │ ├── randomStatetest478Filler.json │ │ │ ├── randomStatetest480Filler.json │ │ │ ├── randomStatetest481Filler.json │ │ │ ├── randomStatetest482Filler.json │ │ │ ├── randomStatetest483Filler.json │ │ │ ├── randomStatetest484Filler.json │ │ │ ├── randomStatetest485Filler.json │ │ │ ├── randomStatetest487Filler.json │ │ │ ├── randomStatetest488Filler.json │ │ │ ├── randomStatetest489Filler.json │ │ │ ├── randomStatetest491Filler.json │ │ │ ├── randomStatetest493Filler.json │ │ │ ├── randomStatetest494Filler.json │ │ │ ├── randomStatetest495Filler.json │ │ │ ├── randomStatetest496Filler.json │ │ │ ├── randomStatetest497Filler.json │ │ │ ├── randomStatetest498Filler.json │ │ │ ├── randomStatetest499Filler.json │ │ │ ├── randomStatetest500Filler.json │ │ │ ├── randomStatetest501Filler.json │ │ │ ├── randomStatetest502Filler.json │ │ │ ├── randomStatetest503Filler.json │ │ │ ├── randomStatetest504Filler.json │ │ │ ├── randomStatetest505Filler.json │ │ │ ├── randomStatetest506Filler.json │ │ │ ├── randomStatetest507Filler.json │ │ │ ├── randomStatetest508Filler.json │ │ │ ├── randomStatetest509Filler.json │ │ │ ├── randomStatetest510Filler.json │ │ │ ├── randomStatetest511Filler.json │ │ │ ├── randomStatetest512Filler.json │ │ │ ├── randomStatetest513Filler.json │ │ │ ├── randomStatetest514Filler.json │ │ │ ├── randomStatetest516Filler.json │ │ │ ├── randomStatetest517Filler.json │ │ │ ├── randomStatetest518Filler.json │ │ │ ├── randomStatetest519Filler.json │ │ │ ├── randomStatetest520Filler.json │ │ │ ├── randomStatetest521Filler.json │ │ │ ├── randomStatetest523Filler.json │ │ │ ├── randomStatetest524Filler.json │ │ │ ├── randomStatetest525Filler.json │ │ │ ├── randomStatetest526Filler.json │ │ │ ├── randomStatetest527Filler.json │ │ │ ├── randomStatetest528Filler.json │ │ │ ├── randomStatetest531Filler.json │ │ │ ├── randomStatetest532Filler.json │ │ │ ├── randomStatetest533Filler.json │ │ │ ├── randomStatetest534Filler.json │ │ │ ├── randomStatetest535Filler.json │ │ │ ├── randomStatetest536Filler.json │ │ │ ├── randomStatetest537Filler.json │ │ │ ├── randomStatetest539Filler.json │ │ │ ├── randomStatetest541Filler.json │ │ │ ├── randomStatetest542Filler.json │ │ │ ├── randomStatetest543Filler.json │ │ │ ├── randomStatetest544Filler.json │ │ │ ├── randomStatetest545Filler.json │ │ │ ├── randomStatetest546Filler.json │ │ │ ├── randomStatetest547Filler.json │ │ │ ├── randomStatetest548Filler.json │ │ │ ├── randomStatetest550Filler.json │ │ │ ├── randomStatetest552Filler.json │ │ │ ├── randomStatetest553Filler.json │ │ │ ├── randomStatetest554Filler.json │ │ │ ├── randomStatetest555Filler.json │ │ │ ├── randomStatetest556Filler.json │ │ │ ├── randomStatetest558Filler.json │ │ │ ├── randomStatetest559Filler.json │ │ │ ├── randomStatetest560Filler.json │ │ │ ├── randomStatetest562Filler.json │ │ │ ├── randomStatetest563Filler.json │ │ │ ├── randomStatetest564Filler.json │ │ │ ├── randomStatetest565Filler.json │ │ │ ├── randomStatetest566Filler.json │ │ │ ├── randomStatetest567Filler.json │ │ │ ├── randomStatetest569Filler.json │ │ │ ├── randomStatetest571Filler.json │ │ │ ├── randomStatetest572Filler.json │ │ │ ├── randomStatetest574Filler.json │ │ │ ├── randomStatetest575Filler.json │ │ │ ├── randomStatetest576Filler.json │ │ │ ├── randomStatetest577Filler.json │ │ │ ├── randomStatetest578Filler.json │ │ │ ├── randomStatetest579Filler.json │ │ │ ├── randomStatetest580Filler.json │ │ │ ├── randomStatetest581Filler.json │ │ │ ├── randomStatetest582Filler.json │ │ │ ├── randomStatetest583Filler.json │ │ │ ├── randomStatetest584Filler.json │ │ │ ├── randomStatetest585Filler.json │ │ │ ├── randomStatetest586Filler.json │ │ │ ├── randomStatetest587Filler.json │ │ │ ├── randomStatetest588Filler.json │ │ │ ├── randomStatetest589Filler.json │ │ │ ├── randomStatetest592Filler.json │ │ │ ├── randomStatetest596Filler.json │ │ │ ├── randomStatetest597Filler.json │ │ │ ├── randomStatetest599Filler.json │ │ │ ├── randomStatetest600Filler.json │ │ │ ├── randomStatetest601Filler.json │ │ │ ├── randomStatetest602Filler.json │ │ │ ├── randomStatetest603Filler.json │ │ │ ├── randomStatetest604Filler.json │ │ │ ├── randomStatetest605Filler.json │ │ │ ├── randomStatetest607Filler.json │ │ │ ├── randomStatetest608Filler.json │ │ │ ├── randomStatetest609Filler.json │ │ │ ├── randomStatetest610Filler.json │ │ │ ├── randomStatetest611Filler.json │ │ │ ├── randomStatetest612Filler.json │ │ │ ├── randomStatetest615Filler.json │ │ │ ├── randomStatetest616Filler.json │ │ │ ├── randomStatetest618Filler.json │ │ │ ├── randomStatetest620Filler.json │ │ │ ├── randomStatetest621Filler.json │ │ │ ├── randomStatetest624Filler.json │ │ │ ├── randomStatetest625Filler.json │ │ │ ├── randomStatetest626Filler.json │ │ │ ├── randomStatetest627Filler.json │ │ │ ├── randomStatetest628Filler.json │ │ │ ├── randomStatetest629Filler.json │ │ │ ├── randomStatetest630Filler.json │ │ │ ├── randomStatetest632Filler.json │ │ │ ├── randomStatetest633Filler.json │ │ │ ├── randomStatetest635Filler.json │ │ │ ├── randomStatetest636Filler.json │ │ │ ├── randomStatetest637Filler.json │ │ │ ├── randomStatetest638Filler.json │ │ │ ├── randomStatetest639Filler.json │ │ │ ├── randomStatetest640Filler.json │ │ │ ├── randomStatetest641Filler.json │ │ │ ├── randomStatetest642Filler.json │ │ │ ├── randomStatetest643Filler.json │ │ │ ├── randomStatetest644Filler.json │ │ │ ├── randomStatetest645Filler.json │ │ │ ├── randomStatetest646Filler.json │ │ │ ├── randomStatetest647Filler.json │ │ │ ├── randomStatetest648Filler.json │ │ │ ├── randomStatetest649Filler.json │ │ │ ├── randomStatetest650Filler.json │ │ │ └── randomStatetestFiller.json │ │ ├── stRecursiveCreate/ │ │ │ ├── __init__.py │ │ │ ├── recursiveCreateFiller.json │ │ │ └── recursiveCreateReturnValueFiller.json │ │ ├── stRefundTest/ │ │ │ ├── __init__.py │ │ │ ├── refund50_1Filler.json │ │ │ ├── refund50_2Filler.json │ │ │ ├── refund50percentCapFiller.json │ │ │ ├── refund600Filler.json │ │ │ ├── refundFFFiller.yml │ │ │ ├── refundMaxFiller.yml │ │ │ ├── refundSSTOREFiller.yml │ │ │ ├── refundSuicide50procentCapFiller.json │ │ │ ├── refund_CallAFiller.json │ │ │ ├── refund_CallA_OOGFiller.json │ │ │ ├── refund_CallA_notEnoughGasInCallFiller.json │ │ │ ├── refund_CallToSuicideNoStorageFiller.json │ │ │ ├── refund_CallToSuicideStorageFiller.json │ │ │ ├── refund_CallToSuicideTwiceFiller.json │ │ │ ├── refund_NoOOG_1Filler.json │ │ │ ├── refund_OOGFiller.json │ │ │ ├── refund_TxToSuicideFiller.json │ │ │ ├── refund_TxToSuicideOOGFiller.json │ │ │ ├── refund_changeNonZeroStorageFiller.json │ │ │ ├── refund_getEtherBackFiller.json │ │ │ ├── refund_multimpleSuicideFiller.json │ │ │ └── refund_singleSuicideFiller.json │ │ ├── stReturnDataTest/ │ │ │ ├── __init__.py │ │ │ ├── call_ecrec_success_empty_then_returndatasizeFiller.json │ │ │ ├── call_outsize_then_create_successful_then_returndatasizeFiller.json │ │ │ ├── call_then_call_value_fail_then_returndatasizeFiller.json │ │ │ ├── call_then_create_successful_then_returndatasizeFiller.json │ │ │ ├── clearReturnBufferFiller.yml │ │ │ ├── create_callprecompile_returndatasizeFiller.json │ │ │ ├── modexp_modsize0_returndatasizeFiller.json │ │ │ ├── returndatacopy_0_0_following_successful_createFiller.json │ │ │ ├── returndatacopy_afterFailing_createFiller.json │ │ │ ├── returndatacopy_after_failing_callcodeFiller.json │ │ │ ├── returndatacopy_after_failing_delegatecallFiller.json │ │ │ ├── returndatacopy_after_failing_staticcallFiller.json │ │ │ ├── returndatacopy_after_revert_in_staticcallFiller.json │ │ │ ├── returndatacopy_after_successful_callcodeFiller.json │ │ │ ├── returndatacopy_after_successful_delegatecallFiller.json │ │ │ ├── returndatacopy_after_successful_staticcallFiller.json │ │ │ ├── returndatacopy_following_callFiller.json │ │ │ ├── returndatacopy_following_createFiller.json │ │ │ ├── returndatacopy_following_failing_callFiller.json │ │ │ ├── returndatacopy_following_revertFiller.json │ │ │ ├── returndatacopy_following_revert_in_createFiller.json │ │ │ ├── returndatacopy_following_successful_createFiller.json │ │ │ ├── returndatacopy_following_too_big_transferFiller.json │ │ │ ├── returndatacopy_initialFiller.json │ │ │ ├── returndatacopy_initial_256Filler.json │ │ │ ├── returndatacopy_initial_big_sumFiller.json │ │ │ ├── returndatacopy_overrunFiller.json │ │ │ ├── returndatasize_after_failing_callcodeFiller.json │ │ │ ├── returndatasize_after_failing_delegatecallFiller.json │ │ │ ├── returndatasize_after_failing_staticcallFiller.json │ │ │ ├── returndatasize_after_oog_after_deeperFiller.json │ │ │ ├── returndatasize_after_successful_callcodeFiller.json │ │ │ ├── returndatasize_after_successful_delegatecallFiller.json │ │ │ ├── returndatasize_after_successful_staticcallFiller.json │ │ │ ├── returndatasize_bugFiller.json │ │ │ ├── returndatasize_following_successful_createFiller.json │ │ │ ├── returndatasize_initialFiller.json │ │ │ ├── returndatasize_initial_zero_readFiller.json │ │ │ ├── revertRetDataSizeFiller.yml │ │ │ ├── subcallReturnMoreThenExpectedFiller.yml │ │ │ └── tooLongReturnDataCopyFiller.yml │ │ ├── stRevertTest/ │ │ │ ├── LoopCallsDepthThenRevert2Filler.json │ │ │ ├── LoopCallsDepthThenRevert3Filler.json │ │ │ ├── LoopCallsDepthThenRevertFiller.json │ │ │ ├── LoopCallsThenRevertFiller.json │ │ │ ├── LoopDelegateCallsDepthThenRevertFiller.json │ │ │ ├── NashatyrevSuicideRevertFiller.json │ │ │ ├── PythonRevertTestTue201814-1430Filler.json │ │ │ ├── RevertDepth2Filler.json │ │ │ ├── RevertDepthCreateAddressCollisionFiller.json │ │ │ ├── RevertDepthCreateOOGFiller.json │ │ │ ├── RevertInCallCodeFiller.json │ │ │ ├── RevertInCreateInInit_ParisFiller.json │ │ │ ├── RevertInDelegateCallFiller.json │ │ │ ├── RevertInStaticCallFiller.json │ │ │ ├── RevertOnEmptyStackFiller.json │ │ │ ├── RevertOpcodeCallsFiller.json │ │ │ ├── RevertOpcodeCreateFiller.json │ │ │ ├── RevertOpcodeDirectCallFiller.json │ │ │ ├── RevertOpcodeFiller.json │ │ │ ├── RevertOpcodeInCallsOnNonEmptyReturnDataFiller.json │ │ │ ├── RevertOpcodeInCreateReturnsFiller.json │ │ │ ├── RevertOpcodeInInitFiller.json │ │ │ ├── RevertOpcodeMultipleSubCallsFiller.json │ │ │ ├── RevertOpcodeReturnFiller.json │ │ │ ├── RevertOpcodeWithBigOutputInInitFiller.json │ │ │ ├── RevertPrecompiledTouchExactOOG_ParisFiller.json │ │ │ ├── RevertPrecompiledTouch_ParisFiller.json │ │ │ ├── RevertPrecompiledTouch_nonceFiller.json │ │ │ ├── RevertPrecompiledTouch_noncestorageFiller.json │ │ │ ├── RevertPrecompiledTouch_storage_ParisFiller.json │ │ │ ├── RevertPrefoundCallFiller.json │ │ │ ├── RevertPrefoundCallOOGFiller.json │ │ │ ├── RevertPrefoundEmptyCallOOG_ParisFiller.json │ │ │ ├── RevertPrefoundEmptyCall_ParisFiller.json │ │ │ ├── RevertPrefoundEmptyOOG_ParisFiller.json │ │ │ ├── RevertPrefoundEmpty_ParisFiller.json │ │ │ ├── RevertPrefoundFiller.json │ │ │ ├── RevertPrefoundOOGFiller.json │ │ │ ├── RevertSubCallStorageOOG2Filler.json │ │ │ ├── RevertSubCallStorageOOGFiller.json │ │ │ ├── TouchToEmptyAccountRevert2_ParisFiller.json │ │ │ ├── TouchToEmptyAccountRevert3_ParisFiller.json │ │ │ ├── TouchToEmptyAccountRevert_ParisFiller.json │ │ │ ├── __init__.py │ │ │ ├── costRevertFiller.yml │ │ │ └── stateRevertFiller.yml │ │ ├── stSLoadTest/ │ │ │ ├── __init__.py │ │ │ └── sloadGasCostFiller.json │ │ ├── stSStoreTest/ │ │ │ ├── SstoreCallToSelfSubRefundBelowZeroFiller.json │ │ │ ├── __init__.py │ │ │ ├── sstoreGasFiller.yml │ │ │ ├── sstore_0to0Filler.json │ │ │ ├── sstore_0to0to0Filler.json │ │ │ ├── sstore_0to0toXFiller.json │ │ │ ├── sstore_0toXFiller.json │ │ │ ├── sstore_0toXto0Filler.json │ │ │ ├── sstore_0toXto0toXFiller.json │ │ │ ├── sstore_0toXtoXFiller.json │ │ │ ├── sstore_0toXtoYFiller.json │ │ │ ├── sstore_Xto0Filler.json │ │ │ ├── sstore_Xto0to0Filler.json │ │ │ ├── sstore_Xto0toXFiller.json │ │ │ ├── sstore_Xto0toXto0Filler.json │ │ │ ├── sstore_Xto0toYFiller.json │ │ │ ├── sstore_XtoXFiller.json │ │ │ ├── sstore_XtoXto0Filler.json │ │ │ ├── sstore_XtoXtoXFiller.json │ │ │ ├── sstore_XtoXtoYFiller.json │ │ │ ├── sstore_XtoYFiller.json │ │ │ ├── sstore_XtoYto0Filler.json │ │ │ ├── sstore_XtoYtoXFiller.json │ │ │ ├── sstore_XtoYtoYFiller.json │ │ │ ├── sstore_XtoYtoZFiller.json │ │ │ ├── sstore_changeFromExternalCallInInitCodeFiller.json │ │ │ └── sstore_gasLeftFiller.json │ │ ├── stSelfBalance/ │ │ │ ├── __init__.py │ │ │ ├── selfBalanceCallTypesFiller.json │ │ │ ├── selfBalanceEqualsBalanceFiller.json │ │ │ ├── selfBalanceFiller.json │ │ │ ├── selfBalanceGasCostFiller.json │ │ │ └── selfBalanceUpdateFiller.json │ │ ├── stShift/ │ │ │ ├── .stub │ │ │ ├── __init__.py │ │ │ ├── sar00Filler.json │ │ │ ├── sar01Filler.json │ │ │ ├── sar10Filler.json │ │ │ ├── sar11Filler.json │ │ │ ├── sar_0_256-1Filler.json │ │ │ ├── sar_2^254_254Filler.json │ │ │ ├── sar_2^255-1_248Filler.json │ │ │ ├── sar_2^255-1_254Filler.json │ │ │ ├── sar_2^255-1_255Filler.json │ │ │ ├── sar_2^255-1_256Filler.json │ │ │ ├── sar_2^255_1Filler.json │ │ │ ├── sar_2^255_255Filler.json │ │ │ ├── sar_2^255_256Filler.json │ │ │ ├── sar_2^255_257Filler.json │ │ │ ├── sar_2^256-1_0Filler.json │ │ │ ├── sar_2^256-1_1Filler.json │ │ │ ├── sar_2^256-1_255Filler.json │ │ │ ├── sar_2^256-1_256Filler.json │ │ │ ├── shiftSignedCombinationsFiller.yml │ │ │ ├── shl01-0100Filler.json │ │ │ ├── shl01-0101Filler.json │ │ │ ├── shl01-ffFiller.json │ │ │ ├── shl01Filler.json │ │ │ ├── shl10Filler.json │ │ │ ├── shl11Filler.json │ │ │ ├── shl_-1_0Filler.json │ │ │ ├── shl_-1_1Filler.json │ │ │ ├── shl_-1_255Filler.json │ │ │ ├── shl_-1_256Filler.json │ │ │ ├── shl_2^255-1_1Filler.json │ │ │ ├── shr01Filler.json │ │ │ ├── shr10Filler.json │ │ │ ├── shr11Filler.json │ │ │ ├── shr_-1_0Filler.json │ │ │ ├── shr_-1_1Filler.json │ │ │ ├── shr_-1_255Filler.json │ │ │ ├── shr_-1_256Filler.json │ │ │ ├── shr_2^255_1Filler.json │ │ │ ├── shr_2^255_255Filler.json │ │ │ ├── shr_2^255_256Filler.json │ │ │ └── shr_2^255_257Filler.json │ │ ├── stSolidityTest/ │ │ │ ├── AmbiguousMethodFiller.json │ │ │ ├── ByZeroFiller.json │ │ │ ├── CallInfiniteLoopFiller.json │ │ │ ├── CallLowLevelCreatesSolidityFiller.json │ │ │ ├── CallRecursiveMethodsFiller.json │ │ │ ├── ContractInheritanceFiller.json │ │ │ ├── CreateContractFromMethodFiller.json │ │ │ ├── RecursiveCreateContractsCreate4ContractsFiller.json │ │ │ ├── RecursiveCreateContractsFiller.json │ │ │ ├── TestBlockAndTransactionPropertiesFiller.json │ │ │ ├── TestContractInteractionFiller.json │ │ │ ├── TestContractSuicideFiller.json │ │ │ ├── TestCryptographicFunctionsFiller.json │ │ │ ├── TestKeywordsFiller.json │ │ │ ├── TestOverflowFiller.json │ │ │ ├── TestStoreGasPricesFiller.json │ │ │ ├── TestStructuresAndVariablessFiller.json │ │ │ └── __init__.py │ │ ├── stSpecialTest/ │ │ │ ├── FailedCreateRevertsDeletionParisFiller.json │ │ │ ├── JUMPDEST_AttackFiller.json │ │ │ ├── JUMPDEST_AttackwithJumpFiller.json │ │ │ ├── OverflowGasMakeMoneyFiller.json │ │ │ ├── StackDepthLimitSECFiller.json │ │ │ ├── __init__.py │ │ │ ├── block504980Filler.json │ │ │ ├── deploymentErrorFiller.json │ │ │ ├── eoaEmptyParisFiller.yml │ │ │ ├── failed_tx_xcf416c53_ParisFiller.json │ │ │ ├── gasPrice0Filler.json │ │ │ ├── makeMoneyFiller.json │ │ │ ├── push32withoutByteFiller.json │ │ │ ├── selfdestructEIP2929Filler.json │ │ │ ├── sha3_dejaFiller.json │ │ │ └── tx_e1c174e2Filler.json │ │ ├── stStackTests/ │ │ │ ├── __init__.py │ │ │ ├── shallowStackFiller.json │ │ │ ├── stackOverflowDUPFiller.json │ │ │ ├── stackOverflowFiller.json │ │ │ ├── stackOverflowM1DUPFiller.json │ │ │ ├── stackOverflowM1Filler.json │ │ │ ├── stackOverflowM1PUSHFiller.json │ │ │ ├── stackOverflowPUSHFiller.json │ │ │ ├── stackOverflowSWAPFiller.json │ │ │ ├── stacksanitySWAPFiller.json │ │ │ ├── underflowTestFiller.yml │ │ │ └── underflowTestGen.js │ │ ├── stStaticCall/ │ │ │ ├── StaticcallToPrecompileFromCalledContractFiller.yml │ │ │ ├── StaticcallToPrecompileFromContractInitializationFiller.yml │ │ │ ├── StaticcallToPrecompileFromTransactionFiller.yml │ │ │ ├── __init__.py │ │ │ ├── static_ABAcalls0Filler.json │ │ │ ├── static_ABAcalls1Filler.json │ │ │ ├── static_ABAcalls2Filler.json │ │ │ ├── static_ABAcalls3Filler.json │ │ │ ├── static_ABAcallsSuicide0Filler.json │ │ │ ├── static_ABAcallsSuicide1Filler.json │ │ │ ├── static_CALL_OneVCallSuicideFiller.json │ │ │ ├── static_CALL_ZeroVCallSuicideFiller.json │ │ │ ├── static_CREATE_ContractSuicideDuringInitFiller.json │ │ │ ├── static_CREATE_ContractSuicideDuringInit_ThenStoreThenReturnFiller.json │ │ │ ├── static_CREATE_ContractSuicideDuringInit_WithValueFiller.json │ │ │ ├── static_CREATE_EmptyContractAndCallIt_0weiFiller.json │ │ │ ├── static_CREATE_EmptyContractWithStorageAndCallIt_0weiFiller.json │ │ │ ├── static_Call1024BalanceTooLow2Filler.json │ │ │ ├── static_Call1024BalanceTooLowFiller.json │ │ │ ├── static_Call1024OOGFiller.json │ │ │ ├── static_Call1024PreCalls2Filler.json │ │ │ ├── static_Call1024PreCalls3Filler.json │ │ │ ├── static_Call1024PreCallsFiller.json │ │ │ ├── static_Call10Filler.json │ │ │ ├── static_Call1MB1024CalldepthFiller.json │ │ │ ├── static_Call50000Filler.json │ │ │ ├── static_Call50000_ecrecFiller.json │ │ │ ├── static_Call50000_identity2Filler.json │ │ │ ├── static_Call50000_identityFiller.json │ │ │ ├── static_Call50000_rip160Filler.json │ │ │ ├── static_Call50000bytesContract50_1Filler.json │ │ │ ├── static_Call50000bytesContract50_2Filler.json │ │ │ ├── static_Call50000bytesContract50_3Filler.json │ │ │ ├── static_CallAndCallcodeConsumeMoreGasThenTransactionHasFiller.json │ │ │ ├── static_CallAskMoreGasOnDepth2ThenTransactionHasFiller.json │ │ │ ├── static_CallContractToCreateContractAndCallItOOGFiller.json │ │ │ ├── static_CallContractToCreateContractOOGBonusGasFiller.json │ │ │ ├── static_CallContractToCreateContractOOGFiller.json │ │ │ ├── static_CallContractToCreateContractWhichWouldCreateContractIfCalledFiller.json │ │ │ ├── static_CallEcrecover0Filler.json │ │ │ ├── static_CallEcrecover0_0inputFiller.json │ │ │ ├── static_CallEcrecover0_Gas2999Filler.json │ │ │ ├── static_CallEcrecover0_NoGasFiller.json │ │ │ ├── static_CallEcrecover0_completeReturnValueFiller.json │ │ │ ├── static_CallEcrecover0_gas3000Filler.json │ │ │ ├── static_CallEcrecover0_overlappingInputOutputFiller.json │ │ │ ├── static_CallEcrecover1Filler.json │ │ │ ├── static_CallEcrecover2Filler.json │ │ │ ├── static_CallEcrecover3Filler.json │ │ │ ├── static_CallEcrecover80Filler.json │ │ │ ├── static_CallEcrecoverCheckLengthFiller.json │ │ │ ├── static_CallEcrecoverCheckLengthWrongVFiller.json │ │ │ ├── static_CallEcrecoverH_prefixed0Filler.json │ │ │ ├── static_CallEcrecoverR_prefixed0Filler.json │ │ │ ├── static_CallEcrecoverS_prefixed0Filler.json │ │ │ ├── static_CallEcrecoverV_prefixed0Filler.json │ │ │ ├── static_CallGoesOOGOnSecondLevel2Filler.json │ │ │ ├── static_CallGoesOOGOnSecondLevelFiller.json │ │ │ ├── static_CallIdentitiy_1Filler.json │ │ │ ├── static_CallIdentity_1_nonzeroValueFiller.json │ │ │ ├── static_CallIdentity_2Filler.json │ │ │ ├── static_CallIdentity_3Filler.json │ │ │ ├── static_CallIdentity_4Filler.json │ │ │ ├── static_CallIdentity_4_gas17Filler.json │ │ │ ├── static_CallIdentity_4_gas18Filler.json │ │ │ ├── static_CallIdentity_5Filler.json │ │ │ ├── static_CallLoseGasOOGFiller.json │ │ │ ├── static_CallRecursiveBomb0Filler.json │ │ │ ├── static_CallRecursiveBomb0_OOG_atMaxCallDepthFiller.json │ │ │ ├── static_CallRecursiveBomb1Filler.json │ │ │ ├── static_CallRecursiveBomb2Filler.json │ │ │ ├── static_CallRecursiveBomb3Filler.json │ │ │ ├── static_CallRecursiveBombLog2Filler.json │ │ │ ├── static_CallRecursiveBombLogFiller.json │ │ │ ├── static_CallRecursiveBombPreCall2Filler.json │ │ │ ├── static_CallRecursiveBombPreCallFiller.json │ │ │ ├── static_CallRipemd160_1Filler.json │ │ │ ├── static_CallRipemd160_2Filler.json │ │ │ ├── static_CallRipemd160_3Filler.json │ │ │ ├── static_CallRipemd160_3_postfixed0Filler.json │ │ │ ├── static_CallRipemd160_3_prefixed0Filler.json │ │ │ ├── static_CallRipemd160_4Filler.json │ │ │ ├── static_CallRipemd160_4_gas719Filler.json │ │ │ ├── static_CallRipemd160_5Filler.json │ │ │ ├── static_CallSha256_1Filler.json │ │ │ ├── static_CallSha256_1_nonzeroValueFiller.json │ │ │ ├── static_CallSha256_2Filler.json │ │ │ ├── static_CallSha256_3Filler.json │ │ │ ├── static_CallSha256_3_postfix0Filler.json │ │ │ ├── static_CallSha256_3_prefix0Filler.json │ │ │ ├── static_CallSha256_4Filler.json │ │ │ ├── static_CallSha256_4_gas99Filler.json │ │ │ ├── static_CallSha256_5Filler.json │ │ │ ├── static_CallToNameRegistrator0Filler.json │ │ │ ├── static_CallToReturn1Filler.json │ │ │ ├── static_CalltoReturn2Filler.json │ │ │ ├── static_CheckCallCostOOGFiller.json │ │ │ ├── static_CheckOpcodes2Filler.json │ │ │ ├── static_CheckOpcodes3Filler.json │ │ │ ├── static_CheckOpcodes4Filler.json │ │ │ ├── static_CheckOpcodes5Filler.json │ │ │ ├── static_CheckOpcodesFiller.json │ │ │ ├── static_ExecuteCallThatAskForeGasThenTrabsactionHasFiller.json │ │ │ ├── static_InternalCallHittingGasLimit2Filler.json │ │ │ ├── static_InternalCallHittingGasLimitFiller.json │ │ │ ├── static_InternalCallStoreClearsOOGFiller.json │ │ │ ├── static_LoopCallsDepthThenRevert2Filler.json │ │ │ ├── static_LoopCallsDepthThenRevert3Filler.json │ │ │ ├── static_LoopCallsDepthThenRevertFiller.json │ │ │ ├── static_LoopCallsThenRevertFiller.json │ │ │ ├── static_PostToReturn1Filler.json │ │ │ ├── static_RETURN_BoundsFiller.json │ │ │ ├── static_RETURN_BoundsOOGFiller.json │ │ │ ├── static_RawCallGasAskFiller.json │ │ │ ├── static_Return50000_2Filler.json │ │ │ ├── static_ReturnTest2Filler.json │ │ │ ├── static_ReturnTestFiller.json │ │ │ ├── static_RevertDepth2Filler.json │ │ │ ├── static_RevertOpcodeCallsFiller.json │ │ │ ├── static_ZeroValue_CALL_OOGRevertFiller.json │ │ │ ├── static_ZeroValue_SUICIDE_OOGRevertFiller.json │ │ │ ├── static_callBasicFiller.json │ │ │ ├── static_callChangeRevertFiller.json │ │ │ ├── static_callCreate2Filler.json │ │ │ ├── static_callCreate3Filler.json │ │ │ ├── static_callCreateFiller.json │ │ │ ├── static_callOutput1Filler.json │ │ │ ├── static_callOutput2Filler.json │ │ │ ├── static_callOutput3FailFiller.json │ │ │ ├── static_callOutput3Filler.json │ │ │ ├── static_callOutput3partialFailFiller.json │ │ │ ├── static_callOutput3partialFiller.json │ │ │ ├── static_callToCallCodeOpCodeCheckFiller.json │ │ │ ├── static_callToCallOpCodeCheckFiller.json │ │ │ ├── static_callToDelCallOpCodeCheckFiller.json │ │ │ ├── static_callToStaticOpCodeCheckFiller.json │ │ │ ├── static_callWithHighValueAndGasOOGFiller.json │ │ │ ├── static_callWithHighValueAndOOGatTxLevelFiller.json │ │ │ ├── static_callWithHighValueFiller.json │ │ │ ├── static_callWithHighValueOOGinCallFiller.json │ │ │ ├── static_call_OOG_additionalGasCosts1Filler.json │ │ │ ├── static_call_OOG_additionalGasCosts2_ParisFiller.json │ │ │ ├── static_call_value_inheritFiller.json │ │ │ ├── static_call_value_inherit_from_callFiller.json │ │ │ ├── static_callcall_00Filler.json │ │ │ ├── static_callcall_00_OOGEFiller.json │ │ │ ├── static_callcall_00_OOGE_1Filler.json │ │ │ ├── static_callcall_00_OOGE_2Filler.json │ │ │ ├── static_callcall_00_SuicideEndFiller.json │ │ │ ├── static_callcallcall_000Filler.json │ │ │ ├── static_callcallcall_000_OOGEFiller.json │ │ │ ├── static_callcallcall_000_OOGMAfter2Filler.json │ │ │ ├── static_callcallcall_000_OOGMAfterFiller.json │ │ │ ├── static_callcallcall_000_OOGMBeforeFiller.json │ │ │ ├── static_callcallcall_000_SuicideEndFiller.json │ │ │ ├── static_callcallcall_000_SuicideMiddleFiller.json │ │ │ ├── static_callcallcall_ABCB_RECURSIVEFiller.json │ │ │ ├── static_callcallcallcode_001Filler.json │ │ │ ├── static_callcallcallcode_001_2Filler.json │ │ │ ├── static_callcallcallcode_001_OOGEFiller.json │ │ │ ├── static_callcallcallcode_001_OOGE_2Filler.json │ │ │ ├── static_callcallcallcode_001_OOGMAfter2Filler.json │ │ │ ├── static_callcallcallcode_001_OOGMAfterFiller.json │ │ │ ├── static_callcallcallcode_001_OOGMAfter_2Filler.json │ │ │ ├── static_callcallcallcode_001_OOGMAfter_3Filler.json │ │ │ ├── static_callcallcallcode_001_OOGMBefore2Filler.json │ │ │ ├── static_callcallcallcode_001_OOGMBeforeFiller.json │ │ │ ├── static_callcallcallcode_001_SuicideEnd2Filler.json │ │ │ ├── static_callcallcallcode_001_SuicideEndFiller.json │ │ │ ├── static_callcallcallcode_001_SuicideMiddle2Filler.json │ │ │ ├── static_callcallcallcode_001_SuicideMiddleFiller.json │ │ │ ├── static_callcallcallcode_ABCB_RECURSIVE2Filler.json │ │ │ ├── static_callcallcallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── static_callcallcode_01_2Filler.json │ │ │ ├── static_callcallcode_01_OOGE_2Filler.json │ │ │ ├── static_callcallcode_01_SuicideEnd2Filler.json │ │ │ ├── static_callcallcode_01_SuicideEndFiller.json │ │ │ ├── static_callcallcodecall_010Filler.json │ │ │ ├── static_callcallcodecall_010_2Filler.json │ │ │ ├── static_callcallcodecall_010_OOGEFiller.json │ │ │ ├── static_callcallcodecall_010_OOGE_2Filler.json │ │ │ ├── static_callcallcodecall_010_OOGMAfter2Filler.json │ │ │ ├── static_callcallcodecall_010_OOGMAfterFiller.json │ │ │ ├── static_callcallcodecall_010_OOGMAfter_2Filler.json │ │ │ ├── static_callcallcodecall_010_OOGMAfter_3Filler.json │ │ │ ├── static_callcallcodecall_010_OOGMBefore2Filler.json │ │ │ ├── static_callcallcodecall_010_OOGMBeforeFiller.json │ │ │ ├── static_callcallcodecall_010_SuicideEnd2Filler.json │ │ │ ├── static_callcallcodecall_010_SuicideEndFiller.json │ │ │ ├── static_callcallcodecall_010_SuicideMiddle2Filler.json │ │ │ ├── static_callcallcodecall_010_SuicideMiddleFiller.json │ │ │ ├── static_callcallcodecall_ABCB_RECURSIVE2Filler.json │ │ │ ├── static_callcallcodecall_ABCB_RECURSIVEFiller.json │ │ │ ├── static_callcallcodecallcode_011Filler.json │ │ │ ├── static_callcallcodecallcode_011_2Filler.json │ │ │ ├── static_callcallcodecallcode_011_OOGEFiller.json │ │ │ ├── static_callcallcodecallcode_011_OOGE_2Filler.json │ │ │ ├── static_callcallcodecallcode_011_OOGMAfter2Filler.json │ │ │ ├── static_callcallcodecallcode_011_OOGMAfterFiller.json │ │ │ ├── static_callcallcodecallcode_011_OOGMAfter_1Filler.json │ │ │ ├── static_callcallcodecallcode_011_OOGMAfter_2Filler.json │ │ │ ├── static_callcallcodecallcode_011_OOGMBefore2Filler.json │ │ │ ├── static_callcallcodecallcode_011_OOGMBeforeFiller.json │ │ │ ├── static_callcallcodecallcode_011_SuicideEnd2Filler.json │ │ │ ├── static_callcallcodecallcode_011_SuicideEndFiller.json │ │ │ ├── static_callcallcodecallcode_011_SuicideMiddle2Filler.json │ │ │ ├── static_callcallcodecallcode_011_SuicideMiddleFiller.json │ │ │ ├── static_callcallcodecallcode_ABCB_RECURSIVE2Filler.json │ │ │ ├── static_callcallcodecallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── static_callcode_checkPCFiller.json │ │ │ ├── static_callcodecall_10Filler.json │ │ │ ├── static_callcodecall_10_2Filler.json │ │ │ ├── static_callcodecall_10_OOGEFiller.json │ │ │ ├── static_callcodecall_10_OOGE_2Filler.json │ │ │ ├── static_callcodecall_10_SuicideEnd2Filler.json │ │ │ ├── static_callcodecall_10_SuicideEndFiller.json │ │ │ ├── static_callcodecallcall_100Filler.json │ │ │ ├── static_callcodecallcall_100_2Filler.json │ │ │ ├── static_callcodecallcall_100_OOGE2Filler.json │ │ │ ├── static_callcodecallcall_100_OOGEFiller.json │ │ │ ├── static_callcodecallcall_100_OOGMAfter2Filler.json │ │ │ ├── static_callcodecallcall_100_OOGMAfterFiller.json │ │ │ ├── static_callcodecallcall_100_OOGMAfter_2Filler.json │ │ │ ├── static_callcodecallcall_100_OOGMAfter_3Filler.json │ │ │ ├── static_callcodecallcall_100_OOGMBefore2Filler.json │ │ │ ├── static_callcodecallcall_100_OOGMBeforeFiller.json │ │ │ ├── static_callcodecallcall_100_SuicideEnd2Filler.json │ │ │ ├── static_callcodecallcall_100_SuicideEndFiller.json │ │ │ ├── static_callcodecallcall_100_SuicideMiddle2Filler.json │ │ │ ├── static_callcodecallcall_100_SuicideMiddleFiller.json │ │ │ ├── static_callcodecallcall_ABCB_RECURSIVE2Filler.json │ │ │ ├── static_callcodecallcall_ABCB_RECURSIVEFiller.json │ │ │ ├── static_callcodecallcallcode_101Filler.json │ │ │ ├── static_callcodecallcallcode_101_2Filler.json │ │ │ ├── static_callcodecallcallcode_101_OOGEFiller.json │ │ │ ├── static_callcodecallcallcode_101_OOGE_2Filler.json │ │ │ ├── static_callcodecallcallcode_101_OOGMAfter2Filler.json │ │ │ ├── static_callcodecallcallcode_101_OOGMAfterFiller.json │ │ │ ├── static_callcodecallcallcode_101_OOGMAfter_1Filler.json │ │ │ ├── static_callcodecallcallcode_101_OOGMAfter_3Filler.json │ │ │ ├── static_callcodecallcallcode_101_OOGMBefore2Filler.json │ │ │ ├── static_callcodecallcallcode_101_OOGMBeforeFiller.json │ │ │ ├── static_callcodecallcallcode_101_SuicideEnd2Filler.json │ │ │ ├── static_callcodecallcallcode_101_SuicideEndFiller.json │ │ │ ├── static_callcodecallcallcode_101_SuicideMiddle2Filler.json │ │ │ ├── static_callcodecallcallcode_101_SuicideMiddleFiller.json │ │ │ ├── static_callcodecallcallcode_ABCB_RECURSIVE2Filler.json │ │ │ ├── static_callcodecallcallcode_ABCB_RECURSIVEFiller.json │ │ │ ├── static_callcodecallcodecall_1102Filler.json │ │ │ ├── static_callcodecallcodecall_110Filler.json │ │ │ ├── static_callcodecallcodecall_110_2Filler.json │ │ │ ├── static_callcodecallcodecall_110_OOGE2Filler.json │ │ │ ├── static_callcodecallcodecall_110_OOGEFiller.json │ │ │ ├── static_callcodecallcodecall_110_OOGMAfter2Filler.json │ │ │ ├── static_callcodecallcodecall_110_OOGMAfterFiller.json │ │ │ ├── static_callcodecallcodecall_110_OOGMAfter_2Filler.json │ │ │ ├── static_callcodecallcodecall_110_OOGMAfter_3Filler.json │ │ │ ├── static_callcodecallcodecall_110_OOGMBefore2Filler.json │ │ │ ├── static_callcodecallcodecall_110_OOGMBeforeFiller.json │ │ │ ├── static_callcodecallcodecall_110_SuicideEnd2Filler.json │ │ │ ├── static_callcodecallcodecall_110_SuicideEndFiller.json │ │ │ ├── static_callcodecallcodecall_110_SuicideMiddle2Filler.json │ │ │ ├── static_callcodecallcodecall_110_SuicideMiddleFiller.json │ │ │ ├── static_callcodecallcodecall_ABCB_RECURSIVE2Filler.json │ │ │ ├── static_callcodecallcodecall_ABCB_RECURSIVEFiller.json │ │ │ ├── static_callcodecallcodecallcode_111_SuicideEndFiller.json │ │ │ ├── static_calldelcode_01Filler.json │ │ │ ├── static_calldelcode_01_OOGEFiller.json │ │ │ ├── static_contractCreationMakeCallThatAskMoreGasThenTransactionProvidedFiller.json │ │ │ ├── static_contractCreationOOGdontLeaveEmptyContractViaTransactionFiller.json │ │ │ ├── static_log0_emptyMemFiller.json │ │ │ ├── static_log0_logMemStartTooHighFiller.json │ │ │ ├── static_log0_logMemsizeTooHighFiller.json │ │ │ ├── static_log0_logMemsizeZeroFiller.json │ │ │ ├── static_log0_nonEmptyMemFiller.json │ │ │ ├── static_log0_nonEmptyMem_logMemSize1Filler.json │ │ │ ├── static_log0_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ │ ├── static_log1_MaxTopicFiller.json │ │ │ ├── static_log1_emptyMemFiller.json │ │ │ ├── static_log1_logMemStartTooHighFiller.json │ │ │ ├── static_log1_logMemsizeTooHighFiller.json │ │ │ ├── static_log1_logMemsizeZeroFiller.json │ │ │ ├── static_log_CallerFiller.json │ │ │ ├── static_makeMoneyFiller.json │ │ │ ├── static_refund_CallAFiller.json │ │ │ ├── static_refund_CallToSuicideNoStorageFiller.json │ │ │ └── static_refund_CallToSuicideTwiceFiller.json │ │ ├── stStaticFlagEnabled/ │ │ │ ├── CallWithNOTZeroValueToPrecompileFromCalledContractFiller.yml │ │ │ ├── CallWithNOTZeroValueToPrecompileFromContractInitializationFiller.yml │ │ │ ├── CallWithNOTZeroValueToPrecompileFromTransactionFiller.yml │ │ │ ├── CallWithZeroValueToPrecompileFromCalledContractFiller.yml │ │ │ ├── CallWithZeroValueToPrecompileFromContractInitializationFiller.yml │ │ │ ├── CallWithZeroValueToPrecompileFromTransactionFiller.yml │ │ │ ├── CallcodeToPrecompileFromCalledContractFiller.yml │ │ │ ├── CallcodeToPrecompileFromContractInitializationFiller.yml │ │ │ ├── CallcodeToPrecompileFromTransactionFiller.yml │ │ │ ├── DelegatecallToPrecompileFromCalledContractFiller.yml │ │ │ ├── DelegatecallToPrecompileFromContractInitializationFiller.yml │ │ │ ├── DelegatecallToPrecompileFromTransactionFiller.yml │ │ │ ├── StaticcallForPrecompilesIssue683Filler.yml │ │ │ └── __init__.py │ │ ├── stSystemOperationsTest/ │ │ │ ├── ABAcalls0Filler.json │ │ │ ├── ABAcalls1Filler.json │ │ │ ├── ABAcalls2Filler.json │ │ │ ├── ABAcalls3Filler.json │ │ │ ├── ABAcallsSuicide0Filler.json │ │ │ ├── ABAcallsSuicide1Filler.json │ │ │ ├── Call10Filler.json │ │ │ ├── CallRecursiveBomb0Filler.json │ │ │ ├── CallRecursiveBomb0_OOG_atMaxCallDepthFiller.json │ │ │ ├── CallRecursiveBomb1Filler.json │ │ │ ├── CallRecursiveBomb2Filler.json │ │ │ ├── CallRecursiveBomb3Filler.json │ │ │ ├── CallRecursiveBombLog2Filler.json │ │ │ ├── CallRecursiveBombLogFiller.json │ │ │ ├── CallToNameRegistrator0Filler.json │ │ │ ├── CallToNameRegistratorAddressTooBigLeftFiller.json │ │ │ ├── CallToNameRegistratorAddressTooBigRightFiller.json │ │ │ ├── CallToNameRegistratorMemOOGAndInsufficientBalanceFiller.json │ │ │ ├── CallToNameRegistratorNotMuchMemory0Filler.json │ │ │ ├── CallToNameRegistratorNotMuchMemory1Filler.json │ │ │ ├── CallToNameRegistratorOutOfGasFiller.json │ │ │ ├── CallToNameRegistratorTooMuchMemory0Filler.json │ │ │ ├── CallToNameRegistratorTooMuchMemory1Filler.json │ │ │ ├── CallToNameRegistratorTooMuchMemory2Filler.json │ │ │ ├── CallToNameRegistratorZeorSizeMemExpansionFiller.json │ │ │ ├── CallToReturn1Filler.json │ │ │ ├── CallToReturn1ForDynamicJump0Filler.json │ │ │ ├── CallToReturn1ForDynamicJump1Filler.json │ │ │ ├── CalltoReturn2Filler.json │ │ │ ├── CreateHashCollisionFiller.json │ │ │ ├── PostToReturn1Filler.json │ │ │ ├── TestNameRegistratorFiller.json │ │ │ ├── __init__.py │ │ │ ├── balanceInputAddressTooBigFiller.json │ │ │ ├── callValueFiller.json │ │ │ ├── callcodeTo0Filler.json │ │ │ ├── callcodeToNameRegistrator0Filler.json │ │ │ ├── callcodeToNameRegistratorAddresTooBigLeftFiller.json │ │ │ ├── callcodeToNameRegistratorAddresTooBigRightFiller.json │ │ │ ├── callcodeToNameRegistratorZeroMemExpanionFiller.json │ │ │ ├── callcodeToReturn1Filler.json │ │ │ ├── callerAccountBalanceFiller.json │ │ │ ├── createNameRegistratorFiller.json │ │ │ ├── createNameRegistratorOOG_MemExpansionOOVFiller.json │ │ │ ├── createNameRegistratorOutOfMemoryBonds0Filler.json │ │ │ ├── createNameRegistratorOutOfMemoryBonds1Filler.json │ │ │ ├── createNameRegistratorValueTooHighFiller.json │ │ │ ├── createNameRegistratorZeroMem2Filler.json │ │ │ ├── createNameRegistratorZeroMemExpansionFiller.json │ │ │ ├── createNameRegistratorZeroMemFiller.json │ │ │ ├── createWithInvalidOpcodeFiller.json │ │ │ ├── currentAccountBalanceFiller.json │ │ │ ├── doubleSelfdestructTestFiller.yml │ │ │ ├── doubleSelfdestructTouch_ParisFiller.yml │ │ │ ├── extcodecopyFiller.json │ │ │ ├── multiSelfdestructFiller.yml │ │ │ ├── return0Filler.json │ │ │ ├── return1Filler.json │ │ │ ├── return2Filler.json │ │ │ ├── suicideAddressFiller.json │ │ │ ├── suicideCallerAddresTooBigLeftFiller.json │ │ │ ├── suicideCallerAddresTooBigRightFiller.json │ │ │ ├── suicideCallerFiller.json │ │ │ ├── suicideNotExistingAccountFiller.json │ │ │ ├── suicideOriginFiller.json │ │ │ ├── suicideSendEtherPostDeathFiller.json │ │ │ ├── suicideSendEtherToMeFiller.json │ │ │ └── testRandomTestFiller.json │ │ ├── stTimeConsuming/ │ │ │ ├── __init__.py │ │ │ ├── sstore_combinations_initial00_2_ParisFiller.json │ │ │ ├── sstore_combinations_initial00_ParisFiller.json │ │ │ ├── sstore_combinations_initial01_2_ParisFiller.json │ │ │ ├── sstore_combinations_initial01_ParisFiller.json │ │ │ ├── sstore_combinations_initial10_2_ParisFiller.json │ │ │ ├── sstore_combinations_initial10_ParisFiller.json │ │ │ ├── sstore_combinations_initial11_2_ParisFiller.json │ │ │ ├── sstore_combinations_initial11_ParisFiller.json │ │ │ ├── sstore_combinations_initial20_2_ParisFiller.json │ │ │ ├── sstore_combinations_initial20_ParisFiller.json │ │ │ ├── sstore_combinations_initial21_2_ParisFiller.json │ │ │ └── sstore_combinations_initial21_ParisFiller.json │ │ ├── stTransactionTest/ │ │ │ ├── ContractStoreClearsOOGFiller.json │ │ │ ├── ContractStoreClearsSuccessFiller.json │ │ │ ├── CreateMessageRevertedFiller.json │ │ │ ├── CreateMessageSuccessFiller.json │ │ │ ├── CreateTransactionSuccessFiller.json │ │ │ ├── EmptyTransaction3Filler.json │ │ │ ├── HighGasLimitFiller.json │ │ │ ├── HighGasPriceParisFiller.yml │ │ │ ├── InternalCallHittingGasLimit2Filler.json │ │ │ ├── InternalCallHittingGasLimitFiller.json │ │ │ ├── InternalCallHittingGasLimitSuccessFiller.json │ │ │ ├── InternalCallStoreClearsOOGFiller.json │ │ │ ├── InternalCallStoreClearsSuccessFiller.json │ │ │ ├── NoSrcAccount1559Filler.yml │ │ │ ├── NoSrcAccountCreate1559Filler.yml │ │ │ ├── NoSrcAccountCreateFiller.yml │ │ │ ├── NoSrcAccountFiller.yml │ │ │ ├── Opcodes_TransactionInitFiller.json │ │ │ ├── OverflowGasRequire2Filler.json │ │ │ ├── PointAtInfinityECRecoverFiller.yml │ │ │ ├── StoreClearsAndInternalCallStoreClearsOOGFiller.json │ │ │ ├── StoreClearsAndInternalCallStoreClearsSuccessFiller.json │ │ │ ├── StoreGasOnCreateFiller.json │ │ │ ├── SuicidesAndInternalCallSuicidesBonusGasAtCallFailedFiller.json │ │ │ ├── SuicidesAndInternalCallSuicidesBonusGasAtCallFiller.json │ │ │ ├── SuicidesAndInternalCallSuicidesOOGFiller.json │ │ │ ├── SuicidesAndInternalCallSuicidesSuccessFiller.json │ │ │ ├── SuicidesAndSendMoneyToItselfEtherDestroyedFiller.json │ │ │ ├── SuicidesStopAfterSuicideFiller.json │ │ │ ├── TransactionDataCosts652Filler.json │ │ │ ├── TransactionSendingToEmptyFiller.json │ │ │ ├── TransactionSendingToZeroFiller.json │ │ │ ├── TransactionToAddressh160minusOneFiller.json │ │ │ ├── TransactionToItselfFiller.json │ │ │ └── __init__.py │ │ ├── stTransitionTest/ │ │ │ ├── __init__.py │ │ │ ├── createNameRegistratorPerTxsAfterFiller.json │ │ │ ├── createNameRegistratorPerTxsAtFiller.json │ │ │ ├── createNameRegistratorPerTxsBeforeFiller.json │ │ │ ├── delegatecallAfterTransitionFiller.json │ │ │ ├── delegatecallAtTransitionFiller.json │ │ │ └── delegatecallBeforeTransitionFiller.json │ │ ├── stWalletTest/ │ │ │ ├── __init__.py │ │ │ ├── dayLimitConstructionFiller.json │ │ │ ├── dayLimitConstructionOOGFiller.json │ │ │ ├── dayLimitConstructionPartialFiller.json │ │ │ ├── dayLimitResetSpentTodayFiller.json │ │ │ ├── dayLimitSetDailyLimitFiller.json │ │ │ ├── dayLimitSetDailyLimitNoDataFiller.json │ │ │ ├── multiOwnedAddOwnerAddMyselfFiller.json │ │ │ ├── multiOwnedAddOwnerFiller.json │ │ │ ├── multiOwnedChangeOwnerFiller.json │ │ │ ├── multiOwnedChangeOwnerNoArgumentFiller.json │ │ │ ├── multiOwnedChangeOwner_fromNotOwnerFiller.json │ │ │ ├── multiOwnedChangeOwner_toIsOwnerFiller.json │ │ │ ├── multiOwnedChangeRequirementTo0Filler.json │ │ │ ├── multiOwnedChangeRequirementTo1Filler.json │ │ │ ├── multiOwnedChangeRequirementTo2Filler.json │ │ │ ├── multiOwnedConstructionCorrectFiller.json │ │ │ ├── multiOwnedConstructionNotEnoughGasFiller.json │ │ │ ├── multiOwnedConstructionNotEnoughGasPartialFiller.json │ │ │ ├── multiOwnedIsOwnerFalseFiller.json │ │ │ ├── multiOwnedIsOwnerTrueFiller.json │ │ │ ├── multiOwnedRemoveOwnerByNonOwnerFiller.json │ │ │ ├── multiOwnedRemoveOwnerFiller.json │ │ │ ├── multiOwnedRemoveOwner_mySelfFiller.json │ │ │ ├── multiOwnedRemoveOwner_ownerIsNotOwnerFiller.json │ │ │ ├── multiOwnedRevokeNothingFiller.json │ │ │ ├── walletAddOwnerRemovePendingTransactionFiller.json │ │ │ ├── walletChangeOwnerRemovePendingTransactionFiller.json │ │ │ ├── walletChangeRequirementRemovePendingTransactionFiller.json │ │ │ ├── walletConfirmFiller.json │ │ │ ├── walletConstructionFiller.json │ │ │ ├── walletConstructionOOGFiller.json │ │ │ ├── walletConstructionPartialFiller.json │ │ │ ├── walletDefaultFiller.json │ │ │ ├── walletDefaultWithOutValueFiller.json │ │ │ ├── walletExecuteOverDailyLimitMultiOwnerFiller.json │ │ │ ├── walletExecuteOverDailyLimitOnlyOneOwnerFiller.json │ │ │ ├── walletExecuteOverDailyLimitOnlyOneOwnerNewFiller.json │ │ │ ├── walletExecuteUnderDailyLimitFiller.json │ │ │ ├── walletKillFiller.json │ │ │ ├── walletKillNotByOwnerFiller.json │ │ │ ├── walletKillToWalletFiller.json │ │ │ └── walletRemoveOwnerRemovePendingTransactionFiller.json │ │ ├── stZeroCallsRevert/ │ │ │ ├── ZeroValue_CALLCODE_OOGRevertFiller.json │ │ │ ├── ZeroValue_CALLCODE_ToEmpty_OOGRevert_ParisFiller.json │ │ │ ├── ZeroValue_CALLCODE_ToNonZeroBalance_OOGRevertFiller.json │ │ │ ├── ZeroValue_CALLCODE_ToOneStorageKey_OOGRevert_ParisFiller.json │ │ │ ├── ZeroValue_CALL_OOGRevertFiller.json │ │ │ ├── ZeroValue_CALL_ToEmpty_OOGRevert_ParisFiller.json │ │ │ ├── ZeroValue_CALL_ToNonZeroBalance_OOGRevertFiller.json │ │ │ ├── ZeroValue_CALL_ToOneStorageKey_OOGRevert_ParisFiller.json │ │ │ ├── ZeroValue_DELEGATECALL_OOGRevertFiller.json │ │ │ ├── ZeroValue_DELEGATECALL_ToEmpty_OOGRevert_ParisFiller.json │ │ │ ├── ZeroValue_DELEGATECALL_ToNonZeroBalance_OOGRevertFiller.json │ │ │ ├── ZeroValue_DELEGATECALL_ToOneStorageKey_OOGRevert_ParisFiller.json │ │ │ ├── ZeroValue_SUICIDE_OOGRevertFiller.json │ │ │ ├── ZeroValue_SUICIDE_ToEmpty_OOGRevert_ParisFiller.json │ │ │ ├── ZeroValue_SUICIDE_ToNonZeroBalance_OOGRevertFiller.json │ │ │ ├── ZeroValue_SUICIDE_ToOneStorageKey_OOGRevert_ParisFiller.json │ │ │ └── __init__.py │ │ ├── stZeroCallsTest/ │ │ │ ├── ZeroValue_CALLCODEFiller.json │ │ │ ├── ZeroValue_CALLCODE_ToEmpty_ParisFiller.json │ │ │ ├── ZeroValue_CALLCODE_ToNonZeroBalanceFiller.json │ │ │ ├── ZeroValue_CALLCODE_ToOneStorageKey_ParisFiller.json │ │ │ ├── ZeroValue_CALLFiller.json │ │ │ ├── ZeroValue_CALL_ToEmpty_ParisFiller.json │ │ │ ├── ZeroValue_CALL_ToNonZeroBalanceFiller.json │ │ │ ├── ZeroValue_CALL_ToOneStorageKey_ParisFiller.json │ │ │ ├── ZeroValue_DELEGATECALLFiller.json │ │ │ ├── ZeroValue_DELEGATECALL_ToEmpty_ParisFiller.json │ │ │ ├── ZeroValue_DELEGATECALL_ToNonZeroBalanceFiller.json │ │ │ ├── ZeroValue_DELEGATECALL_ToOneStorageKey_ParisFiller.json │ │ │ ├── ZeroValue_SUICIDEFiller.json │ │ │ ├── ZeroValue_SUICIDE_ToEmpty_ParisFiller.json │ │ │ ├── ZeroValue_SUICIDE_ToNonZeroBalanceFiller.json │ │ │ ├── ZeroValue_SUICIDE_ToOneStorageKey_ParisFiller.json │ │ │ ├── ZeroValue_TransactionCALLFiller.json │ │ │ ├── ZeroValue_TransactionCALL_ToEmpty_ParisFiller.json │ │ │ ├── ZeroValue_TransactionCALL_ToNonZeroBalanceFiller.json │ │ │ ├── ZeroValue_TransactionCALL_ToOneStorageKey_ParisFiller.json │ │ │ ├── ZeroValue_TransactionCALLwithDataFiller.json │ │ │ ├── ZeroValue_TransactionCALLwithData_ToEmpty_ParisFiller.json │ │ │ ├── ZeroValue_TransactionCALLwithData_ToNonZeroBalanceFiller.json │ │ │ ├── ZeroValue_TransactionCALLwithData_ToOneStorageKey_ParisFiller.json │ │ │ └── __init__.py │ │ ├── stZeroKnowledge/ │ │ │ ├── __init__.py │ │ │ ├── ecmul_1-2_2_28000_128Filler.json │ │ │ ├── ecmul_1-2_2_28000_96Filler.json │ │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_21000_128Filler.json │ │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_21000_80Filler.json │ │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_21000_96Filler.json │ │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_28000_128Filler.json │ │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_28000_80Filler.json │ │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_28000_96Filler.json │ │ │ ├── ecmul_1-2_5616_21000_128Filler.json │ │ │ ├── ecmul_1-2_5616_21000_96Filler.json │ │ │ ├── ecmul_1-2_5616_28000_128Filler.json │ │ │ ├── ecmul_1-2_5617_21000_128Filler.json │ │ │ ├── ecmul_1-2_5617_21000_96Filler.json │ │ │ ├── ecmul_1-2_5617_28000_128Filler.json │ │ │ ├── ecmul_1-2_5617_28000_96Filler.json │ │ │ ├── ecmul_1-2_616_28000_96Filler.json │ │ │ ├── ecmul_1-2_9935_21000_128Filler.json │ │ │ ├── ecmul_1-2_9935_21000_96Filler.json │ │ │ ├── ecmul_1-2_9935_28000_128Filler.json │ │ │ ├── ecmul_1-2_9935_28000_96Filler.json │ │ │ ├── ecmul_1-2_9_21000_128Filler.json │ │ │ ├── ecmul_1-2_9_21000_96Filler.json │ │ │ ├── ecmul_1-2_9_28000_128Filler.json │ │ │ ├── ecmul_1-2_9_28000_96Filler.json │ │ │ ├── ecmul_1-3_0_21000_128Filler.json │ │ │ ├── ecmul_1-3_0_21000_64Filler.json │ │ │ ├── ecmul_1-3_0_21000_80Filler.json │ │ │ ├── ecmul_1-3_0_21000_96Filler.json │ │ │ ├── ecmul_1-3_0_28000_128Filler.json │ │ │ ├── ecmul_1-3_0_28000_64Filler.json │ │ │ ├── ecmul_1-3_0_28000_80_ParisFiller.json │ │ │ ├── ecmul_1-3_0_28000_96Filler.json │ │ │ ├── ecmul_1-3_1_21000_128Filler.json │ │ │ ├── ecmul_1-3_1_21000_96Filler.json │ │ │ ├── ecmul_1-3_1_28000_128Filler.json │ │ │ ├── ecmul_1-3_1_28000_96Filler.json │ │ │ ├── ecmul_1-3_2_21000_128Filler.json │ │ │ ├── ecmul_1-3_2_21000_96Filler.json │ │ │ ├── ecmul_1-3_2_28000_128Filler.json │ │ │ ├── ecmul_1-3_2_28000_96Filler.json │ │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_21000_128Filler.json │ │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_21000_80Filler.json │ │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_21000_96Filler.json │ │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_28000_128Filler.json │ │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_28000_80Filler.json │ │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_28000_96Filler.json │ │ │ ├── ecmul_1-3_5616_21000_128Filler.json │ │ │ ├── ecmul_1-3_5616_21000_96Filler.json │ │ │ ├── ecmul_1-3_5616_28000_128Filler.json │ │ │ ├── ecmul_1-3_5616_28000_96Filler.json │ │ │ ├── ecmul_1-3_5617_21000_128Filler.json │ │ │ ├── ecmul_1-3_5617_21000_96Filler.json │ │ │ ├── ecmul_1-3_5617_28000_128Filler.json │ │ │ ├── ecmul_1-3_5617_28000_96Filler.json │ │ │ ├── ecmul_1-3_9935_21000_128Filler.json │ │ │ ├── ecmul_1-3_9935_21000_96Filler.json │ │ │ ├── ecmul_1-3_9935_28000_128Filler.json │ │ │ ├── ecmul_1-3_9935_28000_96Filler.json │ │ │ ├── ecmul_1-3_9_21000_128Filler.json │ │ │ ├── ecmul_1-3_9_21000_96Filler.json │ │ │ ├── ecmul_1-3_9_28000_128Filler.json │ │ │ ├── ecmul_1-3_9_28000_96Filler.json │ │ │ ├── ecmul_7827-6598_0_21000_128Filler.json │ │ │ ├── ecmul_7827-6598_0_21000_64Filler.json │ │ │ ├── ecmul_7827-6598_0_21000_80Filler.json │ │ │ ├── ecmul_7827-6598_0_21000_96Filler.json │ │ │ ├── ecmul_7827-6598_0_28000_128Filler.json │ │ │ ├── ecmul_7827-6598_0_28000_64Filler.json │ │ │ ├── ecmul_7827-6598_0_28000_80Filler.json │ │ │ ├── ecmul_7827-6598_0_28000_96Filler.json │ │ │ ├── ecmul_7827-6598_1456_21000_128Filler.json │ │ │ ├── ecmul_7827-6598_1456_21000_80Filler.json │ │ │ ├── ecmul_7827-6598_1456_21000_96Filler.json │ │ │ ├── ecmul_7827-6598_1456_28000_128Filler.json │ │ │ ├── ecmul_7827-6598_1456_28000_80Filler.json │ │ │ ├── ecmul_7827-6598_1456_28000_96Filler.json │ │ │ ├── ecmul_7827-6598_1_21000_128Filler.json │ │ │ ├── ecmul_7827-6598_1_21000_96Filler.json │ │ │ ├── ecmul_7827-6598_1_28000_128Filler.json │ │ │ ├── ecmul_7827-6598_1_28000_96Filler.json │ │ │ ├── ecmul_7827-6598_2_21000_128Filler.json │ │ │ ├── ecmul_7827-6598_2_21000_96Filler.json │ │ │ ├── ecmul_7827-6598_2_28000_128Filler.json │ │ │ ├── ecmul_7827-6598_2_28000_96Filler.json │ │ │ ├── ecmul_7827-6598_5616_21000_128Filler.json │ │ │ ├── ecmul_7827-6598_5616_21000_96Filler.json │ │ │ ├── ecmul_7827-6598_5616_28000_128Filler.json │ │ │ ├── ecmul_7827-6598_5616_28000_96Filler.json │ │ │ ├── ecmul_7827-6598_5617_21000_128Filler.json │ │ │ ├── ecmul_7827-6598_5617_21000_96Filler.json │ │ │ ├── ecmul_7827-6598_5617_28000_128Filler.json │ │ │ ├── ecmul_7827-6598_5617_28000_96Filler.json │ │ │ ├── ecmul_7827-6598_9935_21000_128Filler.json │ │ │ ├── ecmul_7827-6598_9935_21000_96Filler.json │ │ │ ├── ecmul_7827-6598_9935_28000_128Filler.json │ │ │ ├── ecmul_7827-6598_9935_28000_96Filler.json │ │ │ ├── ecmul_7827-6598_9_21000_128Filler.json │ │ │ ├── ecmul_7827-6598_9_21000_96Filler.json │ │ │ ├── ecmul_7827-6598_9_28000_128Filler.json │ │ │ ├── ecmul_7827-6598_9_28000_96Filler.json │ │ │ ├── ecpairing_bad_length_191Filler.json │ │ │ ├── ecpairing_bad_length_193Filler.json │ │ │ ├── ecpairing_empty_dataFiller.json │ │ │ ├── ecpairing_empty_data_insufficient_gasFiller.json │ │ │ ├── ecpairing_inputsFiller.yml │ │ │ ├── ecpairing_one_point_failFiller.json │ │ │ ├── ecpairing_one_point_insufficient_gasFiller.json │ │ │ ├── ecpairing_one_point_not_in_subgroupFiller.json │ │ │ ├── ecpairing_one_point_with_g1_zeroFiller.json │ │ │ ├── ecpairing_one_point_with_g2_zeroFiller.json │ │ │ ├── ecpairing_one_point_with_g2_zero_and_g1_invalidFiller.json │ │ │ ├── ecpairing_perturb_g2_by_curve_orderFiller.json │ │ │ ├── ecpairing_perturb_g2_by_field_modulusFiller.json │ │ │ ├── ecpairing_perturb_g2_by_field_modulus_againFiller.json │ │ │ ├── ecpairing_perturb_g2_by_oneFiller.json │ │ │ ├── ecpairing_perturb_zeropoint_by_curve_orderFiller.json │ │ │ ├── ecpairing_perturb_zeropoint_by_field_modulusFiller.json │ │ │ ├── ecpairing_perturb_zeropoint_by_oneFiller.json │ │ │ ├── ecpairing_three_point_fail_1Filler.json │ │ │ ├── ecpairing_three_point_match_1Filler.json │ │ │ ├── ecpairing_two_point_fail_1Filler.json │ │ │ ├── ecpairing_two_point_fail_2Filler.json │ │ │ ├── ecpairing_two_point_match_1Filler.json │ │ │ ├── ecpairing_two_point_match_2Filler.json │ │ │ ├── ecpairing_two_point_match_3Filler.json │ │ │ ├── ecpairing_two_point_match_4Filler.json │ │ │ ├── ecpairing_two_point_match_5Filler.json │ │ │ ├── ecpairing_two_point_oogFiller.json │ │ │ ├── ecpairing_two_points_with_one_g2_zeroFiller.json │ │ │ ├── pairingTestFiller.json │ │ │ ├── pointAddFiller.json │ │ │ ├── pointAddTruncFiller.json │ │ │ ├── pointMulAdd2Filler.json │ │ │ └── pointMulAddFiller.json │ │ └── stZeroKnowledge2/ │ │ ├── __init__.py │ │ ├── ecadd_0-0_0-0_21000_0Filler.json │ │ ├── ecadd_0-0_0-0_21000_128Filler.json │ │ ├── ecadd_0-0_0-0_21000_192Filler.json │ │ ├── ecadd_0-0_0-0_21000_64Filler.json │ │ ├── ecadd_0-0_0-0_21000_80_ParisFiller.json │ │ ├── ecadd_0-0_0-0_25000_0Filler.json │ │ ├── ecadd_0-0_0-0_25000_128Filler.json │ │ ├── ecadd_0-0_0-0_25000_192Filler.json │ │ ├── ecadd_0-0_0-0_25000_64Filler.json │ │ ├── ecadd_0-0_0-0_25000_80Filler.json │ │ ├── ecadd_0-0_1-2_21000_128Filler.json │ │ ├── ecadd_0-0_1-2_21000_192Filler.json │ │ ├── ecadd_0-0_1-2_25000_128Filler.json │ │ ├── ecadd_0-0_1-2_25000_192Filler.json │ │ ├── ecadd_0-0_1-3_21000_128Filler.json │ │ ├── ecadd_0-0_1-3_25000_128Filler.json │ │ ├── ecadd_0-3_1-2_21000_128Filler.json │ │ ├── ecadd_0-3_1-2_25000_128Filler.json │ │ ├── ecadd_1-2_0-0_21000_128Filler.json │ │ ├── ecadd_1-2_0-0_21000_192Filler.json │ │ ├── ecadd_1-2_0-0_21000_64Filler.json │ │ ├── ecadd_1-2_0-0_25000_128Filler.json │ │ ├── ecadd_1-2_0-0_25000_192Filler.json │ │ ├── ecadd_1-2_0-0_25000_64Filler.json │ │ ├── ecadd_1-2_1-2_21000_128Filler.json │ │ ├── ecadd_1-2_1-2_21000_192Filler.json │ │ ├── ecadd_1-2_1-2_25000_128Filler.json │ │ ├── ecadd_1-2_1-2_25000_192Filler.json │ │ ├── ecadd_1-3_0-0_21000_80Filler.json │ │ ├── ecadd_1-3_0-0_25000_80_ParisFiller.json │ │ ├── ecadd_1145-3932_1145-4651_21000_192Filler.json │ │ ├── ecadd_1145-3932_1145-4651_25000_192Filler.json │ │ ├── ecadd_1145-3932_2969-1336_21000_128Filler.json │ │ ├── ecadd_1145-3932_2969-1336_25000_128Filler.json │ │ ├── ecadd_6-9_19274124-124124_21000_128Filler.json │ │ ├── ecadd_6-9_19274124-124124_25000_128Filler.json │ │ ├── ecmul_0-0_0_21000_0Filler.json │ │ ├── ecmul_0-0_0_21000_128Filler.json │ │ ├── ecmul_0-0_0_21000_40Filler.json │ │ ├── ecmul_0-0_0_21000_64Filler.json │ │ ├── ecmul_0-0_0_21000_80Filler.json │ │ ├── ecmul_0-0_0_21000_96Filler.json │ │ ├── ecmul_0-0_0_28000_0Filler.json │ │ ├── ecmul_0-0_0_28000_128Filler.json │ │ ├── ecmul_0-0_0_28000_40Filler.json │ │ ├── ecmul_0-0_0_28000_64Filler.json │ │ ├── ecmul_0-0_0_28000_80Filler.json │ │ ├── ecmul_0-0_0_28000_96Filler.json │ │ ├── ecmul_0-0_1_21000_128Filler.json │ │ ├── ecmul_0-0_1_21000_96Filler.json │ │ ├── ecmul_0-0_1_28000_128Filler.json │ │ ├── ecmul_0-0_1_28000_96Filler.json │ │ ├── ecmul_0-0_2_21000_128Filler.json │ │ ├── ecmul_0-0_2_21000_96Filler.json │ │ ├── ecmul_0-0_2_28000_128Filler.json │ │ ├── ecmul_0-0_2_28000_96Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_21000_128Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_21000_80Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_21000_96Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_28000_128Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_28000_80Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_28000_96Filler.json │ │ ├── ecmul_0-0_5616_21000_128Filler.json │ │ ├── ecmul_0-0_5616_21000_96Filler.json │ │ ├── ecmul_0-0_5616_28000_128Filler.json │ │ ├── ecmul_0-0_5616_28000_96Filler.json │ │ ├── ecmul_0-0_5617_21000_128Filler.json │ │ ├── ecmul_0-0_5617_21000_96Filler.json │ │ ├── ecmul_0-0_5617_28000_128Filler.json │ │ ├── ecmul_0-0_5617_28000_96Filler.json │ │ ├── ecmul_0-0_9935_21000_128Filler.json │ │ ├── ecmul_0-0_9935_21000_96Filler.json │ │ ├── ecmul_0-0_9935_28000_128Filler.json │ │ ├── ecmul_0-0_9935_28000_96Filler.json │ │ ├── ecmul_0-0_9_21000_128Filler.json │ │ ├── ecmul_0-0_9_21000_96Filler.json │ │ ├── ecmul_0-0_9_28000_128Filler.json │ │ ├── ecmul_0-0_9_28000_96Filler.json │ │ ├── ecmul_0-3_0_21000_128Filler.json │ │ ├── ecmul_0-3_0_21000_64Filler.json │ │ ├── ecmul_0-3_0_21000_80Filler.json │ │ ├── ecmul_0-3_0_21000_96Filler.json │ │ ├── ecmul_0-3_0_28000_128Filler.json │ │ ├── ecmul_0-3_0_28000_64Filler.json │ │ ├── ecmul_0-3_0_28000_80Filler.json │ │ ├── ecmul_0-3_0_28000_96Filler.json │ │ ├── ecmul_0-3_1_21000_128Filler.json │ │ ├── ecmul_0-3_1_21000_96Filler.json │ │ ├── ecmul_0-3_1_28000_128Filler.json │ │ ├── ecmul_0-3_1_28000_96Filler.json │ │ ├── ecmul_0-3_2_21000_128Filler.json │ │ ├── ecmul_0-3_2_21000_96Filler.json │ │ ├── ecmul_0-3_2_28000_128Filler.json │ │ ├── ecmul_0-3_2_28000_96Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_21000_128Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_21000_80Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_21000_96Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_28000_128Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_28000_80Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_28000_96Filler.json │ │ ├── ecmul_0-3_5616_21000_128Filler.json │ │ ├── ecmul_0-3_5616_21000_96Filler.json │ │ ├── ecmul_0-3_5616_28000_128Filler.json │ │ ├── ecmul_0-3_5616_28000_96_ParisFiller.json │ │ ├── ecmul_0-3_5617_21000_128Filler.json │ │ ├── ecmul_0-3_5617_21000_96Filler.json │ │ ├── ecmul_0-3_5617_28000_128Filler.json │ │ ├── ecmul_0-3_5617_28000_96Filler.json │ │ ├── ecmul_0-3_9935_21000_128Filler.json │ │ ├── ecmul_0-3_9935_21000_96Filler.json │ │ ├── ecmul_0-3_9935_28000_128Filler.json │ │ ├── ecmul_0-3_9935_28000_96Filler.json │ │ ├── ecmul_0-3_9_21000_128Filler.json │ │ ├── ecmul_0-3_9_21000_96Filler.json │ │ ├── ecmul_0-3_9_28000_128Filler.json │ │ ├── ecmul_0-3_9_28000_96Filler.json │ │ ├── ecmul_1-2_0_21000_128Filler.json │ │ ├── ecmul_1-2_0_21000_64Filler.json │ │ ├── ecmul_1-2_0_21000_80Filler.json │ │ ├── ecmul_1-2_0_21000_96Filler.json │ │ ├── ecmul_1-2_0_28000_128Filler.json │ │ ├── ecmul_1-2_0_28000_64Filler.json │ │ ├── ecmul_1-2_0_28000_80Filler.json │ │ ├── ecmul_1-2_0_28000_96Filler.json │ │ ├── ecmul_1-2_1_21000_128Filler.json │ │ ├── ecmul_1-2_1_21000_96Filler.json │ │ ├── ecmul_1-2_1_28000_128Filler.json │ │ ├── ecmul_1-2_1_28000_96Filler.json │ │ ├── ecmul_1-2_2_21000_128Filler.json │ │ └── ecmul_1-2_2_21000_96Filler.json │ └── unscheduled/ │ ├── __init__.py │ └── eip7692_eof_v1/ │ ├── __init__.py │ ├── eip3540_eof_v1/ │ │ ├── __init__.py │ │ ├── opcodes.py │ │ ├── spec.py │ │ ├── test_all_opcodes_in_container.py │ │ ├── test_container_size.py │ │ ├── test_container_validation.py │ │ ├── test_eof_example.py │ │ ├── test_execution.py │ │ ├── test_execution_function.py │ │ ├── test_extcode.py │ │ ├── test_migrated_valid_invalid.py │ │ ├── test_opcodes_in_legacy.py │ │ ├── test_section_header_body_mismatch.py │ │ ├── test_section_order.py │ │ └── test_section_size.py │ ├── eip4200_relative_jumps/ │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── test_rjump.py │ │ ├── test_rjumpi.py │ │ └── test_rjumpv.py │ ├── eip4750_functions/ │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── test_callf_execution.py │ │ └── test_code_validation.py │ ├── eip5450_stack/ │ │ ├── __init__.py │ │ ├── test_code_validation.py │ │ └── test_execution.py │ ├── eip6206_jumpf/ │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_jumpf_execution.py │ │ ├── test_jumpf_stack.py │ │ ├── test_jumpf_target.py │ │ ├── test_jumpf_validation.py │ │ └── test_nonreturning_validation.py │ ├── eip663_dupn_swapn_exchange/ │ │ ├── __init__.py │ │ ├── test_dupn.py │ │ ├── test_exchange.py │ │ └── test_swapn.py │ ├── eip7069_extcall/ │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_address_space_extension.py │ │ ├── test_calldata.py │ │ ├── test_calls.py │ │ ├── test_gas.py │ │ ├── test_returndatacopy_memory_expansion.py │ │ └── test_returndataload.py │ ├── eip7480_data_section/ │ │ ├── __init__.py │ │ ├── spec.py │ │ ├── test_code_validation.py │ │ ├── test_data_opcodes.py │ │ └── test_datacopy_memory_expansion.py │ ├── eip7620_eof_create/ │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_eofcreate.py │ │ ├── test_eofcreate_failures.py │ │ ├── test_gas.py │ │ ├── test_legacy_eof_creates.py │ │ ├── test_memory.py │ │ ├── test_returncode.py │ │ └── test_subcontainer_validation.py │ ├── eip7873_tx_create/ │ │ ├── __init__.py │ │ ├── spec.py │ │ ├── test_creation_tx.py │ │ ├── test_txcreate.py │ │ ├── test_txcreate_failures.py │ │ └── test_txcreate_validates.py │ ├── eof_tracker.md │ └── gas_test.py ├── tox.ini └── whitelist.txt