Skip to content

feat: collision-resistant memory-location hashing via seed + u128 key#515

Draft
datnguyencse wants to merge 1 commit into
risechain:mainfrom
datnguyencse:feat/seeded-u128-location-hash
Draft

feat: collision-resistant memory-location hashing via seed + u128 key#515
datnguyencse wants to merge 1 commit into
risechain:mainfrom
datnguyencse:feat/seeded-u128-location-hash

Conversation

@datnguyencse

Copy link
Copy Markdown
Contributor

Problem

MemoryLocationHash = u64 is used as the MvMemory map key itself, so it doubles as both the bucket key and the location's identity. Two distinct locations that collide in the u64 share one entry:

  • Targeted: FxHash is non-cryptographic and algebraically invertible — an attacker can craft a storage slot that collides with another location for ~free, making a read return the wrong value (which then validates cleanly) → wrong state / chain fork, or flood one bucket → DoS.
  • Random: any 64-bit key collides at the ~2³² birthday bound (~10⁻¹⁰–10⁻¹² per block).

Fix — two independent levers

  1. Widen MemoryLocationHash to u128 (built from two decorrelated FxHash passes, seed and !seed, forming the low/high 64 bits). The map's own 128-bit key comparison becomes a reliable identity check, so random collisions drop to the ~2⁻⁶⁴ birthday bound (effectively never). IdentityHasher projects the key to its low 64 bits for bucketing, so DashMap sharding cost is unchanged.
  2. Per-execution random seed mixed into the hash. Unknown to transaction submitters until the block runs, so collisions cannot be aimed at this block. Derived from RandomState (no new dependency), stored on MvMemory.

The seed never escapes into results (state is keyed by real Addresses), so output is identical for any seed.

Cost

Hashing does two FxHash passes per location instead of one (~2× a cheap op, negligible vs EVM execution); keys widen u64u128 (+8 bytes per live key); bucketing/sharding unchanged. One RandomState::new() per block.

Verification

  • cargo clippy --workspace --all-targets — clean
  • cargo test --workspace --release -- --test-threads=1all green, including the full ethereum/tests state-test suite, RISE/mainnet/uniswap blocks (these compare pevm output to expected/sequential, proving the change is output-preserving)

Benchmarks (gigagas, mainnet) pending — opening as draft for perf review. An alternative implementation (seed + per-entry tag, keeping the u64 key) exists for comparison.

🤖 Generated with Claude Code

@datnguyencse

Copy link
Copy Markdown
Contributor Author

benchmark

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces a per-execution random seed to mitigate hash collision attacks on memory locations. The MemoryLocationHash type is expanded from 64-bit (u64) to 128-bit (u128) to practically eliminate collisions, and the deterministic hashing function now performs two FxHash passes mixed with the random seed. The seed is propagated through MvMemory, PevmChain, and the VM execution. Feedback on these changes suggests a performance optimization in crates/pevm/src/chain/rise.rs to precompute the fee recipient hashes outside of the transaction loop instead of recalculating them in each iteration.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment on lines +113 to 134
let recipients = [
block_env.beneficiary,
BASE_FEE_RECIPIENT,
L1_FEE_RECIPIENT,
OPERATOR_FEE_RECIPIENT,
];

// TODO: Estimate more locations based on sender, to, etc.
// TODO: Benchmark to check whether adding these estimated
// locations helps or harms the performance.
let mut estimated_locations = HashMap::with_hasher(BuildIdentityHasher::default());

for (index, tx) in txs.iter().enumerate() {
// Deposit transactions pay no fees so they write nothing to these fee recipients.
if !tx.is_deposit() {
estimated_locations
.entry(beneficiary_location_hash)
.or_insert_with(|| Vec::with_capacity(txs.len()))
.push(index);
estimated_locations
.entry(*BASE_FEE_RECIPIENT_LOCATION_HASH)
.or_insert_with(|| Vec::with_capacity(txs.len()))
.push(index);
estimated_locations
.entry(*L1_FEE_RECIPIENT_LOCATION_HASH)
.or_insert_with(|| Vec::with_capacity(txs.len()))
.push(index);
estimated_locations
.entry(*OPERATOR_FEE_RECIPIENT_LOCATION_HASH)
.or_insert_with(|| Vec::with_capacity(txs.len()))
.push(index);
for address in recipients {
estimated_locations
.entry(basic_location_hash(address, seed))
.or_insert_with(|| Vec::with_capacity(txs.len()))
.push(index);
}
}
}

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The hashes of the fee recipients (recipients) are constant for the entire block and only depend on the static addresses and the block-level seed. Recalculating them inside the transaction loop results in redundant hashing operations (2 FxHash passes per recipient per transaction). Precomputing these hashes once before the loop improves performance, especially for blocks with a large number of transactions.

        let recipients = [
            block_env.beneficiary,
            BASE_FEE_RECIPIENT,
            L1_FEE_RECIPIENT,
            OPERATOR_FEE_RECIPIENT,
        ];
        let recipient_hashes = [
            basic_location_hash(block_env.beneficiary, seed),
            basic_location_hash(BASE_FEE_RECIPIENT, seed),
            basic_location_hash(L1_FEE_RECIPIENT, seed),
            basic_location_hash(OPERATOR_FEE_RECIPIENT, seed),
        ];

        // TODO: Estimate more locations based on sender, to, etc.
        // TODO: Benchmark to check whether adding these estimated
        // locations helps or harms the performance.
        let mut estimated_locations = HashMap::with_hasher(BuildIdentityHasher::default());
        for (index, tx) in txs.iter().enumerate() {
            // Deposit transactions pay no fees so they write nothing to these fee recipients.
            if !tx.is_deposit() {
                for hash in recipient_hashes {
                    estimated_locations
                        .entry(hash)
                        .or_insert_with(|| Vec::with_capacity(txs.len()))
                        .push(index);
                }
            }
        }

The u64 MemoryLocationHash doubles as both the MvMemory map key and the
location's identity. Two distinct locations that collide in the u64 share an
entry, so a crafted (FxHash is invertible) or random (birthday ~2^32) collision
can make a read return another location's value and validate cleanly — wrong
state. Fixed with two independent levers:

- Widen MemoryLocationHash to u128 (built from two decorrelated FxHash passes).
  The map's own 128-bit key comparison becomes a reliable identity check, so
  random collisions drop to the ~2^-64 birthday bound (effectively never). The
  IdentityHasher projects the key to its low 64 bits for bucketing, so sharding
  cost is unchanged.
- Mix a per-execution random seed into the hash. Unknown to submitters until the
  block runs, so collisions cannot be aimed at this block.

The seed never escapes into results (state is keyed by real addresses), so
output is identical for any seed — verified by the full test suite.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@datnguyencse datnguyencse force-pushed the feat/seeded-u128-location-hash branch from 82c26b2 to 5e63d30 Compare June 4, 2026 10:11
@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit 5e63d30

Detail
   Compiling tikv-jemalloc-sys v0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7
   Compiling tikv-jemallocator v0.6.1
   Compiling pevm v0.1.0 (/home/rise-bot/pevm/crates/pevm)
    Finished `bench` profile [optimized] target(s) in 42.33s
     Running benches/gigagas.rs (target/release/deps/gigagas-ea758e574c06cbc1)
Gnuplot not found, using plotters backend
Benchmarking Independent Raw Transfers/Sequential
Benchmarking Independent Raw Transfers/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.5s, or reduce sample count to 90.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.5239 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [55.790 ms 55.894 ms 56.005 ms]
                        change: [+0.3040% +0.5532% +0.8267%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Independent Raw Transfers/Parallel
Benchmarking Independent Raw Transfers/Parallel: Warming up for 3.0000 s
Benchmarking Independent Raw Transfers/Parallel: Collecting 100 samples in estimated 9.1142 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [44.663 ms 44.950 ms 45.237 ms]
                        change: [−4.2027% −3.0377% −1.9476%] (p = 0.00 < 0.05)
                        Performance has improved.

Benchmarking Independent ERC20/Sequential
Benchmarking Independent ERC20/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 16.3s, or reduce sample count to 30.
Benchmarking Independent ERC20/Sequential: Collecting 100 samples in estimated 16.293 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [167.42 ms 167.76 ms 168.10 ms]
                        change: [+1.9421% +2.2323% +2.5231%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild
Benchmarking Independent ERC20/Parallel
Benchmarking Independent ERC20/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.4s, or reduce sample count to 90.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.3731 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [52.668 ms 53.500 ms 54.310 ms]
                        change: [−2.3027% −0.5408% +1.4999%] (p = 0.58 > 0.05)
                        No change in performance detected.

Benchmarking Independent Uniswap/Sequential
Benchmarking Independent Uniswap/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 45.6s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 45.557 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [470.78 ms 471.31 ms 471.82 ms]
                        change: [+0.3533% +0.5771% +0.8043%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
Benchmarking Independent Uniswap/Parallel
Benchmarking Independent Uniswap/Parallel: Warming up for 3.0000 s
Benchmarking Independent Uniswap/Parallel: Collecting 100 samples in estimated 5.0399 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.080 ms 25.110 ms 25.142 ms]
                        change: [−0.5259% −0.3347% −0.1468%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit 5e63d30
Report:
Baseline main:

Average: x1.96
Max: x3.94
Min: x0.67

This pr:

Average: x1.95
Max: x3.95
Min: x0.69
Detail
   Compiling tikv-jemalloc-sys v0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7
   Compiling tikv-jemallocator v0.6.1
   Compiling pevm v0.1.0 (/home/rise-bot/pevm/crates/pevm)
    Finished `bench` profile [optimized] target(s) in 47.91s
     Running benches/mainnet.rs (target/release/deps/mainnet-0cdb557e505eb72a)
Gnuplot not found, using plotters backend
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Collecting 100 samples in estimated 5.1978 s (1100 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [4.7273 ms 4.7288 ms 4.7306 ms]
                        change: [−0.9229% −0.7336% −0.5667%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  5 (5.00%) high mild
  3 (3.00%) high severe
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Collecting 100 samples in estimated 5.2295 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.6061 ms 3.6863 ms 3.7686 ms]
                        change: [−1.0043% +1.9523% +5.1397%] (p = 0.24 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Collecting 100 samples in estimated 5.0593 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [16.601 ms 16.622 ms 16.643 ms]
                        change: [−3.4005% −3.1715% −2.9305%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Collecting 100 samples in estimated 5.2439 s (1200 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.3556 ms 4.3755 ms 4.3958 ms]
                        change: [−0.7195% −0.0831% +0.5606%] (p = 0.81 > 0.05)
                        No change in performance detected.

Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Collecting 100 samples in estimated 5.4507 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [135.09 µs 135.23 µs 135.40 µs]
                        change: [−0.0691% +0.0375% +0.1484%] (p = 0.49 > 0.05)
                        No change in performance detected.
Found 19 outliers among 100 measurements (19.00%)
  19 (19.00%) high mild
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Collecting 100 samples in estimated 5.4507 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [135.13 µs 135.27 µs 135.44 µs]
                        change: [+0.0290% +0.1312% +0.2310%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 20 outliers among 100 measurements (20.00%)
  20 (20.00%) high mild

Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Collecting 100 samples in estimated 5.8613 s (600 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [9.6988 ms 9.7399 ms 9.7819 ms]
                        change: [+0.9502% +1.4507% +1.9567%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Collecting 100 samples in estimated 5.0996 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.2481 ms 4.2571 ms 4.2659 ms]
                        change: [+0.0794% +0.3846% +0.6692%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Collecting 100 samples in estimated 5.2878 s (1100 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [4.7936 ms 4.8021 ms 4.8119 ms]
                        change: [−2.3832% −1.8960% −1.4330%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 14 outliers among 100 measurements (14.00%)
  4 (4.00%) high mild
  10 (10.00%) high severe
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Collecting 100 samples in estimated 7.9208 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.5616 ms 1.5684 ms 1.5763 ms]
                        change: [+1.1415% +1.7683% +2.4366%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 8.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.1321 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6081 ms 1.6086 ms 1.6090 ms]
                        change: [+0.2364% +0.2843% +0.3437%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) high mild
  4 (4.00%) high severe
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Collecting 100 samples in estimated 5.0029 s (10k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [497.79 µs 499.36 µs 501.01 µs]
                        change: [−0.1849% +0.2814% +0.7540%] (p = 0.23 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  1 (1.00%) low mild
  7 (7.00%) high mild

Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Collecting 100 samples in estimated 5.3528 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [7.6427 ms 7.6487 ms 7.6563 ms]
                        change: [+0.1462% +0.2516% +0.3669%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  2 (2.00%) high mild
  5 (5.00%) high severe
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Collecting 100 samples in estimated 5.0261 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.5764 ms 4.5785 ms 4.5807 ms]
                        change: [+0.4369% +0.5152% +0.5866%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Collecting 100 samples in estimated 5.0310 s (600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [8.3570 ms 8.3808 ms 8.4044 ms]
                        change: [+4.6832% +4.9951% +5.2585%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Collecting 100 samples in estimated 5.0820 s (1600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.1522 ms 3.1648 ms 3.1771 ms]
                        change: [+1.5848% +2.2135% +2.8353%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Collecting 100 samples in estimated 6.1295 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [15.252 ms 15.271 ms 15.289 ms]
                        change: [+4.5017% +4.7551% +4.9935%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Collecting 100 samples in estimated 5.5436 s (1000 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.5531 ms 5.5638 ms 5.5748 ms]
                        change: [+2.4267% +2.7147% +3.0176%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Collecting 100 samples in estimated 9.4808 s (5050 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [1.8845 ms 1.8878 ms 1.8912 ms]
                        change: [+0.5611% +0.7251% +0.8962%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Collecting 100 samples in estimated 5.0240 s (2500 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [2.0001 ms 2.0051 ms 2.0102 ms]
                        change: [−0.9554% −0.6104% −0.2746%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 307.4s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 307.36 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [13.421 ms 13.441 ms 13.460 ms]
                        change: [+2.6284% +2.8452% +3.0565%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Collecting 100 samples in estimated 5.1030 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.3665 ms 6.3736 ms 6.3806 ms]
                        change: [+0.8412% +0.9725% +1.1069%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.2987 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4430 ms 1.4446 ms 1.4465 ms]
                        change: [+2.0060% +2.1356% +2.2543%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.3s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.3064 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2488 ms 1.2515 ms 1.2543 ms]
                        change: [+1.8035% +2.0558% +2.3029%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low severe

Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Collecting 100 samples in estimated 5.1975 s (1600 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.2434 ms 3.2439 ms 3.2443 ms]
                        change: [+0.2397% +0.2625% +0.2835%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Collecting 100 samples in estimated 8.2765 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [819.21 µs 820.38 µs 821.56 µs]
                        change: [−0.0487% +0.1367% +0.3257%] (p = 0.15 > 0.05)
                        No change in performance detected.

Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Collecting 100 samples in estimated 5.4819 s (1000 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.4760 ms 5.4799 ms 5.4845 ms]
                        change: [−0.3605% −0.2406% −0.1272%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  4 (4.00%) high mild
  3 (3.00%) high severe
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Collecting 100 samples in estimated 5.1182 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.1872 ms 3.1978 ms 3.2085 ms]
                        change: [+0.4410% +0.9100% +1.3666%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Collecting 100 samples in estimated 9.5159 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.8848 ms 1.8853 ms 1.8859 ms]
                        change: [−0.1029% −0.0472% +0.0133%] (p = 0.11 > 0.05)
                        No change in performance detected.
Found 7 outliers among 100 measurements (7.00%)
  2 (2.00%) high mild
  5 (5.00%) high severe
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Collecting 100 samples in estimated 7.4137 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4608 ms 1.4617 ms 1.4626 ms]
                        change: [+1.3426% +1.4402% +1.5391%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild

Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Collecting 100 samples in estimated 5.1295 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.4416 ms 6.4559 ms 6.4707 ms]
                        change: [+1.2352% +1.4431% +1.6667%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Collecting 100 samples in estimated 5.7120 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.1423 ms 7.1538 ms 7.1653 ms]
                        change: [+1.7135% +1.8939% +2.0611%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Collecting 100 samples in estimated 5.4898 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [11.057 ms 11.087 ms 11.118 ms]
                        change: [+2.8944% +3.2127% +3.5158%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Collecting 100 samples in estimated 5.2126 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.7026 ms 3.7105 ms 3.7183 ms]
                        change: [+0.8376% +1.1468% +1.4493%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Collecting 100 samples in estimated 5.0949 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.451 µs 59.471 µs 59.495 µs]
                        change: [−0.0960% −0.0596% −0.0240%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Collecting 100 samples in estimated 5.0960 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.448 µs 59.467 µs 59.489 µs]
                        change: [−0.0320% +0.0033% +0.0432%] (p = 0.87 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Collecting 100 samples in estimated 5.1153 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4318 ms 2.4325 ms 2.4333 ms]
                        change: [+0.2116% +0.2818% +0.3460%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Collecting 100 samples in estimated 5.1173 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4302 ms 2.4307 ms 2.4312 ms]
                        change: [−0.0019% +0.0781% +0.1434%] (p = 0.03 < 0.05)
                        Change within noise threshold.

Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Collecting 100 samples in estimated 7.3560 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [729.20 µs 730.16 µs 731.31 µs]
                        change: [+0.6834% +0.7917% +0.9052%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Collecting 100 samples in estimated 8.5846 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [845.96 µs 849.47 µs 852.77 µs]
                        change: [−0.3723% +0.0729% +0.4931%] (p = 0.75 > 0.05)
                        No change in performance detected.

Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Collecting 100 samples in estimated 5.1388 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [6.4544 ms 6.4765 ms 6.4998 ms]
                        change: [+1.3263% +1.7210% +2.1403%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) high mild
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Collecting 100 samples in estimated 5.0443 s (2300 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.2089 ms 2.2131 ms 2.2176 ms]
                        change: [+1.7708% +2.0644% +2.3586%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.1s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Collecting 100 samples in estimated 6.1134 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2093 ms 1.2095 ms 1.2098 ms]
                        change: [+0.1633% +0.2068% +0.2489%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  3 (3.00%) high mild
  2 (2.00%) high severe
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.1s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Collecting 100 samples in estimated 6.1204 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2103 ms 1.2106 ms 1.2109 ms]
                        change: [+0.3556% +0.3900% +0.4245%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Collecting 100 samples in estimated 5.5196 s (1000 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.6352 ms 5.6496 ms 5.6640 ms]
                        change: [+3.7029% +4.0033% +4.3008%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.8s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Collecting 100 samples in estimated 7.7516 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5308 ms 1.5333 ms 1.5360 ms]
                        change: [+1.8853% +2.3041% +2.8356%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low severe
  2 (2.00%) high mild
  2 (2.00%) high severe

Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.6s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Collecting 100 samples in estimated 6.5651 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.2986 ms 1.2991 ms 1.2997 ms]
                        change: [−0.1312% −0.0800% −0.0248%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Collecting 100 samples in estimated 7.0256 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [689.20 µs 690.35 µs 691.60 µs]
                        change: [+0.0647% +0.3542% +0.6310%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 930196(18 txs, 378000 gas)/Sequential
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Collecting 100 samples in estimated 5.0084 s (217k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [23.102 µs 23.129 µs 23.162 µs]
                        change: [−0.0521% +0.0828% +0.2264%] (p = 0.22 > 0.05)
                        No change in performance detected.
Found 20 outliers among 100 measurements (20.00%)
  9 (9.00%) high mild
  11 (11.00%) high severe
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Collecting 100 samples in estimated 5.0135 s (217k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [23.131 µs 23.159 µs 23.193 µs]
                        change: [−0.0417% +0.0856% +0.2241%] (p = 0.20 > 0.05)
                        No change in performance detected.
Found 20 outliers among 100 measurements (20.00%)
  18 (18.00%) high mild
  2 (2.00%) high severe

Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 8.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.2469 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6298 ms 1.6302 ms 1.6307 ms]
                        change: [+0.2318% +0.2779% +0.3215%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 13 outliers among 100 measurements (13.00%)
  8 (8.00%) high mild
  5 (5.00%) high severe
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Collecting 100 samples in estimated 5.3666 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [535.73 µs 536.85 µs 538.06 µs]
                        change: [+1.5856% +1.8893% +2.2130%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  4 (4.00%) low mild
  4 (4.00%) high mild

Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Collecting 100 samples in estimated 5.7399 s (700 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.1981 ms 8.2072 ms 8.2171 ms]
                        change: [−0.6738% −0.5101% −0.3454%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  8 (8.00%) high mild
  2 (2.00%) high severe
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Collecting 100 samples in estimated 5.4243 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.4185 ms 5.4210 ms 5.4238 ms]
                        change: [+0.6457% +0.7132% +0.7856%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) high mild

Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Collecting 100 samples in estimated 5.4743 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [543.03 µs 543.22 µs 543.44 µs]
                        change: [−0.0945% −0.0498% −0.0051%] (p = 0.04 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low mild
  4 (4.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Collecting 100 samples in estimated 6.5507 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [648.46 µs 650.66 µs 653.16 µs]
                        change: [+0.0571% +0.5688% +1.0588%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  8 (8.00%) high mild

Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Collecting 100 samples in estimated 5.1334 s (2200 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.3344 ms 2.3358 ms 2.3375 ms]
                        change: [−0.1677% −0.0728% +0.0341%] (p = 0.14 > 0.05)
                        No change in performance detected.
Found 10 outliers among 100 measurements (10.00%)
  3 (3.00%) high mild
  7 (7.00%) high severe
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Collecting 100 samples in estimated 5.1262 s (1900 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.7102 ms 2.7131 ms 2.7159 ms]
                        change: [+0.4916% +0.6467% +0.8105%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  3 (3.00%) low mild
  2 (2.00%) high mild

Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Collecting 100 samples in estimated 5.3302 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [7.6318 ms 7.6417 ms 7.6525 ms]
                        change: [−0.9577% −0.7526% −0.5472%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Collecting 100 samples in estimated 5.2442 s (1500 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.4886 ms 3.4937 ms 3.4989 ms]
                        change: [−0.1299% +0.0867% +0.2959%] (p = 0.42 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.3s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Collecting 100 samples in estimated 6.2844 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2430 ms 1.2440 ms 1.2452 ms]
                        change: [−0.0764% −0.0196% +0.0375%] (p = 0.52 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  6 (6.00%) high mild
  2 (2.00%) high severe
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Collecting 100 samples in estimated 7.0417 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [689.88 µs 691.18 µs 692.60 µs]
                        change: [−0.1910% +0.1185% +0.4085%] (p = 0.44 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Collecting 100 samples in estimated 5.4933 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [272.18 µs 272.51 µs 272.86 µs]
                        change: [+0.2374% +0.3398% +0.4415%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Collecting 100 samples in estimated 6.5789 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [324.92 µs 326.57 µs 328.20 µs]
                        change: [+0.9071% +1.5651% +2.2220%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Collecting 100 samples in estimated 5.1972 s (1600 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.2584 ms 3.2664 ms 3.2746 ms]
                        change: [+1.7145% +1.9864% +2.2413%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.8s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 9.8477 s (5050 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [1.9533 ms 1.9584 ms 1.9636 ms]
                        change: [−0.5894% −0.2863% +0.0781%] (p = 0.09 > 0.05)
                        No change in performance detected.

Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Collecting 100 samples in estimated 6.2298 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [411.04 µs 411.24 µs 411.42 µs]
                        change: [−1.2720% −1.2067% −1.1428%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Collecting 100 samples in estimated 6.2305 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [411.18 µs 411.34 µs 411.50 µs]
                        change: [−1.2396% −1.1807% −1.1220%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Collecting 100 samples in estimated 5.6738 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [281.44 µs 281.80 µs 282.24 µs]
                        change: [−0.0449% +0.0698% +0.1818%] (p = 0.24 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  8 (8.00%) high mild
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Collecting 100 samples in estimated 6.2273 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [405.17 µs 408.31 µs 411.82 µs]
                        change: [−4.4788% −2.9092% −1.3310%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 8 outliers among 100 measurements (8.00%)
  2 (2.00%) low mild
  4 (4.00%) high mild
  2 (2.00%) high severe

Benchmarking Block 19910734(0 txs, 0 gas)/Sequential
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Collecting 100 samples in estimated 5.0015 s (5.2M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [999.84 ns 1.0046 µs 1.0098 µs]
                        change: [+3.5418% +4.0457% +4.5786%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Collecting 100 samples in estimated 5.0021 s (5.2M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [1.0007 µs 1.0053 µs 1.0103 µs]
                        change: [+3.6390% +4.0744% +4.5691%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Collecting 100 samples in estimated 5.4727 s (1000 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.2689 ms 5.2764 ms 5.2851 ms]
                        change: [+0.2237% +0.3573% +0.5320%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 13 outliers among 100 measurements (13.00%)
  5 (5.00%) high mild
  8 (8.00%) high severe
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Collecting 100 samples in estimated 5.2456 s (2000 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.6291 ms 2.6332 ms 2.6373 ms]
                        change: [+0.2975% +0.5258% +0.7604%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Collecting 100 samples in estimated 5.1010 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.3397 ms 6.3443 ms 6.3497 ms]
                        change: [+0.2162% +0.3112% +0.4140%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  5 (5.00%) high mild
  2 (2.00%) high severe
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Collecting 100 samples in estimated 5.0137 s (1800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.7800 ms 2.7831 ms 2.7863 ms]
                        change: [+3.6264% +3.7636% +3.8980%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild

Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Collecting 100 samples in estimated 5.3842 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [133.14 µs 133.28 µs 133.46 µs]
                        change: [+0.2400% +0.3508% +0.4505%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 19 outliers among 100 measurements (19.00%)
  19 (19.00%) high mild
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Collecting 100 samples in estimated 5.3878 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [133.20 µs 133.34 µs 133.51 µs]
                        change: [+0.2862% +0.3878% +0.4967%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 19 outliers among 100 measurements (19.00%)
  19 (19.00%) high mild

Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Collecting 100 samples in estimated 5.0225 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.1370 ms 3.1378 ms 3.1386 ms]
                        change: [+0.3751% +0.4204% +0.4655%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Collecting 100 samples in estimated 9.1079 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.7976 ms 1.7989 ms 1.8004 ms]
                        change: [+0.2279% +0.3316% +0.4470%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Collecting 100 samples in estimated 5.5738 s (600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [9.2986 ms 9.3103 ms 9.3235 ms]
                        change: [−1.8271% −1.5749% −1.3111%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 9 outliers among 100 measurements (9.00%)
  5 (5.00%) high mild
  4 (4.00%) high severe
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Collecting 100 samples in estimated 5.2340 s (1700 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.0756 ms 3.0838 ms 3.0922 ms]
                        change: [−0.6247% −0.2687% +0.0882%] (p = 0.15 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Collecting 100 samples in estimated 5.1593 s (1900 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7148 ms 2.7152 ms 2.7156 ms]
                        change: [+0.0941% +0.1155% +0.1367%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 8.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Collecting 100 samples in estimated 8.2252 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6307 ms 1.6322 ms 1.6338 ms]
                        change: [−0.2558% −0.1130% +0.0286%] (p = 0.13 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Collecting 100 samples in estimated 5.1812 s (1700 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.0419 ms 3.0448 ms 3.0481 ms]
                        change: [−0.0259% +0.0870% +0.2137%] (p = 0.15 > 0.05)
                        No change in performance detected.
Found 12 outliers among 100 measurements (12.00%)
  1 (1.00%) high mild
  11 (11.00%) high severe
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.3s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.2521 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2355 ms 1.2370 ms 1.2386 ms]
                        change: [+0.0489% +0.2559% +0.4827%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low severe
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Collecting 100 samples in estimated 9.4974 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [940.28 µs 941.41 µs 942.77 µs]
                        change: [+0.4741% +0.5718% +0.6832%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Collecting 100 samples in estimated 9.5535 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [944.24 µs 946.80 µs 949.22 µs]
                        change: [−0.0606% +0.2186% +0.5115%] (p = 0.13 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Collecting 100 samples in estimated 5.0556 s (2100 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.4080 ms 2.4090 ms 2.4102 ms]
                        change: [−0.2450% −0.1909% −0.1319%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Collecting 100 samples in estimated 6.9887 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.3821 ms 1.3853 ms 1.3889 ms]
                        change: [+0.1129% +0.3636% +0.6168%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Collecting 100 samples in estimated 5.1591 s (1600 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.2220 ms 3.2228 ms 3.2236 ms]
                        change: [−0.0007% +0.0561% +0.1083%] (p = 0.05 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Collecting 100 samples in estimated 7.1004 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.4016 ms 1.4046 ms 1.4081 ms]
                        change: [−0.0619% +0.2414% +0.5843%] (p = 0.13 > 0.05)
                        No change in performance detected.
Found 9 outliers among 100 measurements (9.00%)
  4 (4.00%) low mild
  5 (5.00%) high mild

Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Collecting 100 samples in estimated 5.6527 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [160.28 µs 160.36 µs 160.45 µs]
                        change: [+0.0530% +0.1011% +0.1491%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Collecting 100 samples in estimated 5.6586 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [160.42 µs 160.50 µs 160.59 µs]
                        change: [+0.1514% +0.1991% +0.2488%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild

Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Collecting 100 samples in estimated 5.1443 s (2000 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.5741 ms 2.5770 ms 2.5803 ms]
                        change: [+0.7600% +0.8722% +1.0180%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  5 (5.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.5s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Collecting 100 samples in estimated 5.4881 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0868 ms 1.0896 ms 1.0926 ms]
                        change: [+0.8136% +1.3365% +1.8642%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild

Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Collecting 100 samples in estimated 5.3065 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.5877 ms 7.6060 ms 7.6243 ms]
                        change: [+3.0276% +3.3551% +3.6575%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Collecting 100 samples in estimated 5.2768 s (1600 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.3083 ms 3.3148 ms 3.3213 ms]
                        change: [+0.4787% +0.7400% +0.9955%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Collecting 100 samples in estimated 9.5716 s (5050 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.8939 ms 1.8961 ms 1.8984 ms]
                        change: [+0.2617% +0.3428% +0.4264%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Collecting 100 samples in estimated 9.3603 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [926.47 µs 928.19 µs 929.88 µs]
                        change: [+0.4536% +0.8454% +1.1946%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild

Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Collecting 100 samples in estimated 5.1780 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [5.7525 ms 5.7536 ms 5.7548 ms]
                        change: [−0.2802% −0.2002% −0.1429%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Collecting 100 samples in estimated 5.1071 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.5592 ms 2.5623 ms 2.5655 ms]
                        change: [+0.1880% +0.3461% +0.5138%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild

Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.0263 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.7863 ms 1.7869 ms 1.7877 ms]
                        change: [−0.1042% −0.0605% −0.0186%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  7 (7.00%) high mild
  3 (3.00%) high severe
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Collecting 100 samples in estimated 8.6911 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [863.02 µs 866.77 µs 870.88 µs]
                        change: [−0.2018% +0.4385% +1.0284%] (p = 0.16 > 0.05)
                        No change in performance detected.
Found 12 outliers among 100 measurements (12.00%)
  12 (12.00%) high mild

Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Collecting 100 samples in estimated 5.1277 s (1100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [4.6543 ms 4.6552 ms 4.6562 ms]
                        change: [−0.7150% −0.6255% −0.5485%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Collecting 100 samples in estimated 5.1889 s (2100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.4765 ms 2.4811 ms 2.4857 ms]
                        change: [+1.2871% +1.5510% +1.8297%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Collecting 100 samples in estimated 5.5608 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.114 ms 11.127 ms 11.141 ms]
                        change: [+0.5146% +0.6361% +0.7689%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  7 (7.00%) high mild
  3 (3.00%) high severe
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Collecting 100 samples in estimated 5.3067 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.8260 ms 4.8288 ms 4.8317 ms]
                        change: [+0.3077% +0.3893% +0.4730%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Collecting 100 samples in estimated 5.1844 s (1100 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [4.7152 ms 4.7180 ms 4.7215 ms]
                        change: [+0.1479% +0.2190% +0.2948%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  4 (4.00%) high mild
  4 (4.00%) high severe
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Collecting 100 samples in estimated 5.0997 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.3971 ms 3.3990 ms 3.4008 ms]
                        change: [+0.3438% +0.4163% +0.4965%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low mild
  5 (5.00%) high mild

Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Collecting 100 samples in estimated 5.2971 s (1300 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.0740 ms 4.0756 ms 4.0780 ms]
                        change: [−0.0640% −0.0203% +0.0396%] (p = 0.51 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) high mild
  2 (2.00%) high severe
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Collecting 100 samples in estimated 7.7188 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5185 ms 1.5212 ms 1.5239 ms]
                        change: [−0.0062% +0.3604% +0.7070%] (p = 0.05 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild

Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Collecting 100 samples in estimated 5.6482 s (800 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.0579 ms 7.0604 ms 7.0632 ms]
                        change: [+0.3447% +0.4192% +0.4871%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  3 (3.00%) high mild
  5 (5.00%) high severe
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Collecting 100 samples in estimated 5.0130 s (1300 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.8435 ms 3.8530 ms 3.8623 ms]
                        change: [+0.9894% +1.3692% +1.7480%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild

Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Collecting 100 samples in estimated 9.8754 s (5050 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [1.9558 ms 1.9564 ms 1.9570 ms]
                        change: [−0.2536% −0.2206% −0.1909%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Collecting 100 samples in estimated 9.3576 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [926.12 µs 928.57 µs 931.25 µs]
                        change: [−0.7945% −0.4588% −0.1248%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 11 outliers among 100 measurements (11.00%)
  11 (11.00%) high mild

Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Collecting 100 samples in estimated 6.1144 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [404.38 µs 404.93 µs 405.57 µs]
                        change: [+0.0578% +0.1756% +0.2902%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Collecting 100 samples in estimated 5.0885 s (10k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [503.05 µs 504.60 µs 506.10 µs]
                        change: [+1.4820% +1.8893% +2.2902%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Collecting 100 samples in estimated 7.4670 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.4779 ms 1.4782 ms 1.4784 ms]
                        change: [+0.1303% +0.1593% +0.1903%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Collecting 100 samples in estimated 7.4745 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.4796 ms 1.4799 ms 1.4801 ms]
                        change: [+0.1354% +0.1672% +0.2059%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Collecting 100 samples in estimated 5.0406 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [83.257 µs 83.284 µs 83.315 µs]
                        change: [+0.0461% +0.0858% +0.1261%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 19 outliers among 100 measurements (19.00%)
  18 (18.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Collecting 100 samples in estimated 5.0428 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [83.299 µs 83.326 µs 83.358 µs]
                        change: [+0.0722% +0.1195% +0.1688%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 19 outliers among 100 measurements (19.00%)
  17 (17.00%) high mild
  2 (2.00%) high severe

Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Collecting 100 samples in estimated 7.1087 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.4008 ms 1.4015 ms 1.4023 ms]
                        change: [−0.3837% −0.3050% −0.2279%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 7.0792 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.3973 ms 1.3982 ms 1.3991 ms]
                        change: [−0.3913% −0.3145% −0.2358%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Collecting 100 samples in estimated 5.0020 s (900 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [5.5519 ms 5.5539 ms 5.5563 ms]
                        change: [−0.3487% −0.2836% −0.2188%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  3 (3.00%) high mild
  4 (4.00%) high severe
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 10.0s, enable flat sampling, or reduce sample count to 40.
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Collecting 100 samples in estimated 9.9814 s (5050 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [1.9866 ms 1.9920 ms 1.9974 ms]
                        change: [−0.9226% −0.5775% −0.2271%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 46147(1 txs, 21000 gas)/Sequential
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Collecting 100 samples in estimated 5.0050 s (2.0M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.5335 µs 2.5393 µs 2.5454 µs]
                        change: [+0.5363% +0.7546% +0.9677%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Collecting 100 samples in estimated 5.0056 s (2.0M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.5388 µs 2.5444 µs 2.5503 µs]
                        change: [+0.8314% +1.0373% +1.2345%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Collecting 100 samples in estimated 5.3086 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [5.8036 ms 5.8152 ms 5.8272 ms]
                        change: [−0.4838% −0.0666% +0.3244%] (p = 0.75 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Collecting 100 samples in estimated 5.2165 s (2300 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.2664 ms 2.2709 ms 2.2756 ms]
                        change: [−0.2452% +0.0700% +0.3687%] (p = 0.66 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Collecting 100 samples in estimated 5.5266 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [364.71 µs 364.84 µs 364.98 µs]
                        change: [+0.6781% +0.7329% +0.7802%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Collecting 100 samples in estimated 5.5231 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [364.55 µs 364.63 µs 364.71 µs]
                        change: [+0.6725% +0.7125% +0.7504%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Collecting 100 samples in estimated 5.4452 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [10.390 ms 10.457 ms 10.526 ms]
                        change: [−7.1397% −6.4955% −5.9062%] (p = 0.00 < 0.05)
                        Performance has improved.
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Collecting 100 samples in estimated 5.3185 s (1600 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.3196 ms 3.3242 ms 3.3289 ms]
                        change: [−2.4692% −2.2507% −2.0243%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Collecting 100 samples in estimated 5.2945 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.608 µs 65.638 µs 65.673 µs]
                        change: [−0.0175% +0.0240% +0.0672%] (p = 0.29 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Collecting 100 samples in estimated 5.2972 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.665 µs 65.693 µs 65.724 µs]
                        change: [+0.0097% +0.0549% +0.1022%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 11 outliers among 100 measurements (11.00%)
  10 (10.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Collecting 100 samples in estimated 5.0753 s (1200 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.2322 ms 4.2333 ms 4.2346 ms]
                        change: [−8.0814% −7.9499% −7.8174%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Collecting 100 samples in estimated 5.0896 s (2400 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1190 ms 2.1226 ms 2.1261 ms]
                        change: [−2.1999% −1.9616% −1.7105%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Collecting 100 samples in estimated 5.7777 s (700 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.2575 ms 8.2607 ms 8.2643 ms]
                        change: [−3.2410% −3.1888% −3.1332%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 9 outliers among 100 measurements (9.00%)
  5 (5.00%) high mild
  4 (4.00%) high severe
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Collecting 100 samples in estimated 5.2236 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8042 ms 5.8072 ms 5.8102 ms]
                        change: [−0.8913% −0.8229% −0.7546%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild

Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Collecting 100 samples in estimated 5.4553 s (1100 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [4.9631 ms 4.9654 ms 4.9685 ms]
                        change: [−9.7814% −9.5969% −9.4030%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Collecting 100 samples in estimated 5.1837 s (2500 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.0955 ms 2.0986 ms 2.1017 ms]
                        change: [−2.5146% −2.2265% −1.9292%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Collecting 100 samples in estimated 5.2651 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.5275 ms 7.5335 ms 7.5406 ms]
                        change: [−3.9913% −3.8904% −3.7812%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) high mild
  6 (6.00%) high severe
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Collecting 100 samples in estimated 5.2656 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.7829 ms 4.7853 ms 4.7877 ms]
                        change: [−1.1103% −1.0323% −0.9560%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Collecting 100 samples in estimated 5.3911 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [535.49 µs 535.97 µs 536.51 µs]
                        change: [−1.5587% −1.4574% −1.3567%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Collecting 100 samples in estimated 5.7175 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [374.26 µs 376.34 µs 378.62 µs]
                        change: [−2.7579% −2.1610% −1.5785%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Collecting 100 samples in estimated 5.3235 s (900 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [5.9285 ms 5.9367 ms 5.9467 ms]
                        change: [−10.494% −10.343% −10.154%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 10 outliers among 100 measurements (10.00%)
  6 (6.00%) high mild
  4 (4.00%) high severe
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Collecting 100 samples in estimated 5.2234 s (2200 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.3813 ms 2.3879 ms 2.3945 ms]
                        change: [−5.1350% −4.7306% −4.3154%] (p = 0.00 < 0.05)
                        Performance has improved.

Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Collecting 100 samples in estimated 6.1500 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2189 ms 1.2192 ms 1.2194 ms]
                        change: [−0.7475% −0.6979% −0.6425%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  7 (7.00%) low mild
  7 (7.00%) high mild
  2 (2.00%) high severe
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 6.9111 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.3645 ms 1.3676 ms 1.3709 ms]
                        change: [−2.1940% −1.8226% −1.4237%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low mild
  4 (4.00%) high mild

Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Collecting 100 samples in estimated 5.5028 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [109.11 µs 109.13 µs 109.15 µs]
                        change: [+0.1405% +0.1655% +0.1925%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Collecting 100 samples in estimated 5.5040 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [109.19 µs 109.21 µs 109.23 µs]
                        change: [+0.1444% +0.1708% +0.1986%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe

Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Collecting 100 samples in estimated 5.2386 s (500 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [10.471 ms 10.487 ms 10.503 ms]
                        change: [−2.2863% −2.1204% −1.9563%] (p = 0.00 < 0.05)
                        Performance has improved.
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Collecting 100 samples in estimated 5.2280 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [4.0162 ms 4.0239 ms 4.0316 ms]
                        change: [−2.5137% −2.2394% −1.9599%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Collecting 100 samples in estimated 8.0090 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [792.27 µs 792.46 µs 792.65 µs]
                        change: [−0.4666% −0.4119% −0.3612%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Collecting 100 samples in estimated 7.3473 s (15k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [486.46 µs 487.38 µs 488.28 µs]
                        change: [−2.1163% −1.7922% −1.4929%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Collecting 100 samples in estimated 6.2831 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [622.41 µs 622.55 µs 622.69 µs]
                        change: [−0.0189% +0.0170% +0.0496%] (p = 0.35 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Collecting 100 samples in estimated 6.0710 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [397.67 µs 398.66 µs 399.63 µs]
                        change: [−0.3853% −0.1880% +0.0292%] (p = 0.09 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Collecting 100 samples in estimated 5.1540 s (1900 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.7094 ms 2.7108 ms 2.7125 ms]
                        change: [−6.1912% −5.8983% −5.5942%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 12 outliers among 100 measurements (12.00%)
  9 (9.00%) high mild
  3 (3.00%) high severe
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Collecting 100 samples in estimated 5.2102 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.0509 ms 3.0544 ms 3.0582 ms]
                        change: [−7.0782% −6.8371% −6.5892%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe

Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Collecting 100 samples in estimated 5.1751 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.3600 ms 2.3624 ms 2.3650 ms]
                        change: [−8.3170% −7.8037% −7.2967%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Collecting 100 samples in estimated 5.0690 s (2400 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.1209 ms 2.1252 ms 2.1294 ms]
                        change: [−5.9832% −5.6828% −5.3525%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Collecting 100 samples in estimated 6.1398 s (500 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [12.020 ms 12.065 ms 12.113 ms]
                        change: [−7.5966% −7.2592% −6.8671%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 8 outliers among 100 measurements (8.00%)
  8 (8.00%) high mild
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Collecting 100 samples in estimated 5.0369 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.2913 ms 6.2967 ms 6.3021 ms]
                        change: [−4.1961% −4.0855% −3.9715%] (p = 0.00 < 0.05)
                        Performance has improved.

Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Collecting 100 samples in estimated 5.1590 s (1900 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.7183 ms 2.7188 ms 2.7193 ms]
                        change: [−5.3930% −5.1326% −4.8750%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Collecting 100 samples in estimated 5.1201 s (1600 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.1957 ms 3.1998 ms 3.2041 ms]
                        change: [−4.7440% −4.4646% −4.1818%] (p = 0.00 < 0.05)
                        Performance has improved.

Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Collecting 100 samples in estimated 5.0177 s (1800 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [2.7863 ms 2.7872 ms 2.7882 ms]
                        change: [−4.0402% −3.7860% −3.5344%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) high mild
  2 (2.00%) high severe
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Collecting 100 samples in estimated 8.9508 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.7659 ms 1.7679 ms 1.7700 ms]
                        change: [−1.4374% −1.2136% −0.9998%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) low mild
  2 (2.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Collecting 100 samples in estimated 5.5079 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [544.35 µs 544.43 µs 544.51 µs]
                        change: [+0.0168% +0.0409% +0.0637%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Collecting 100 samples in estimated 5.5022 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [544.60 µs 544.70 µs 544.79 µs]
                        change: [+0.0134% +0.0447% +0.0746%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant