Skip to content

feat: journal#513

Draft
duyquang6 wants to merge 15 commits into
mainfrom
pevm-journal
Draft

feat: journal#513
duyquang6 wants to merge 15 commits into
mainfrom
pevm-journal

Conversation

@duyquang6

Copy link
Copy Markdown
Contributor

nuke dead code

@duyquang6

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 custom, flattened Journal implementation for PEVM in crates/pevm/src/journal.rs to replace REVM's default journal wrapping. The EVM setup and type definitions in both the Ethereum and Rise chain modules have been updated to utilize this new custom journal. The review feedback suggests a minor improvement in crates/pevm/src/journal.rs to use the more idiomatic into_word() method on Address instead of slicing and calling B256::left_padding_from when constructing log topics.

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 thread crates/pevm/src/journal.rs Outdated
Comment on lines +142 to +146
let topics = vec![
ETH_TRANSFER_LOG_TOPIC,
B256::left_padding_from(from.as_slice()),
B256::left_padding_from(to.as_slice()),
];

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

In alloy_primitives, Address (which is FixedBytes<20>) has a built-in into_word() method that converts it to a B256 with left zero-padding. Using into_word() is more idiomatic and cleaner than slicing and calling B256::left_padding_from.

Suggested change
let topics = vec![
ETH_TRANSFER_LOG_TOPIC,
B256::left_padding_from(from.as_slice()),
B256::left_padding_from(to.as_slice()),
];
let topics = vec![
ETH_TRANSFER_LOG_TOPIC,
from.into_word(),
to.into_word(),
];

Comment thread crates/pevm/src/journal.rs Outdated
return;
}

let topics = vec![BURN_LOG_TOPIC, B256::left_padding_from(address.as_slice())];

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

Similarly, we can use address.into_word() here to convert the Address to a B256 topic with left zero-padding.

Suggested change
let topics = vec![BURN_LOG_TOPIC, B256::left_padding_from(address.as_slice())];
let topics = vec![BURN_LOG_TOPIC, address.into_word()];

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit f622d71

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 43.88s
     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.4s, or reduce sample count to 90.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.3851 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [54.143 ms 54.237 ms 54.338 ms]
                        change: [−2.6774% −2.4277% −2.1762%] (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 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.2044 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [45.949 ms 46.468 ms 46.996 ms]
                        change: [−1.1718% +0.2383% +1.7377%] (p = 0.75 > 0.05)
                        No change in performance detected.

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 15.9s, or reduce sample count to 30.
Benchmarking Independent ERC20/Sequential: Collecting 100 samples in estimated 15.909 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [163.94 ms 164.21 ms 164.48 ms]
                        change: [−0.1958% +0.0684% +0.3293%] (p = 0.60 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.3s, or reduce sample count to 90.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.2622 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [51.349 ms 51.926 ms 52.495 ms]
                        change: [−4.9825% −3.4676% −1.9652%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild

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.3s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 45.346 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [467.86 ms 468.73 ms 469.55 ms]
                        change: [−0.2397% +0.0262% +0.2895%] (p = 0.84 > 0.05)
                        No change in performance detected.
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.0862 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.414 ms 25.455 ms 25.497 ms]
                        change: [+0.8120% +1.0340% +1.2581%] (p = 0.00 < 0.05)
                        Change within noise threshold.

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit f622d71
Report:
Baseline main:

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

This pr:

Average: x1.94
Max: x3.95
Min: x0.7
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 49.06s
     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.2256 s (1100 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [4.7497 ms 4.7523 ms 4.7553 ms]
                        change: [−0.4292% −0.2402% −0.0614%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) high mild
  1 (1.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.0320 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.6833 ms 3.7610 ms 3.8371 ms]
                        change: [+0.9511% +4.0180% +7.3205%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0944 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [16.884 ms 16.915 ms 16.946 ms]
                        change: [−1.7367% −1.4659% −1.1851%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3381 s (1200 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.4167 ms 4.4439 ms 4.4704 ms]
                        change: [+0.6658% +1.4778% +2.2612%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild

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.4102 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [133.95 µs 134.10 µs 134.26 µs]
                        change: [−1.0480% −0.9550% −0.8594%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.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.4036 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [133.84 µs 134.00 µs 134.18 µs]
                        change: [−1.0527% −0.9588% −0.8571%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.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.7369 s (600 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [9.5551 ms 9.5732 ms 9.5916 ms]
                        change: [−0.5553% −0.2855% −0.0193%] (p = 0.05 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.1166 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.2713 ms 4.2785 ms 4.2857 ms]
                        change: [+0.6250% +0.8893% +1.1502%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.2346 s (1100 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [4.7583 ms 4.7616 ms 4.7653 ms]
                        change: [−3.1703% −2.7242% −2.2875%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 7 outliers among 100 measurements (7.00%)
  6 (6.00%) high mild
  1 (1.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.8s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Collecting 100 samples in estimated 7.8030 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.5567 ms 1.5627 ms 1.5695 ms]
                        change: [+0.0824% +0.7202% +1.3391%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 17 outliers among 100 measurements (17.00%)
  17 (17.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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.1686 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6164 ms 1.6166 ms 1.6168 ms]
                        change: [+0.6751% +0.7123% +0.7524%] (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 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 7.4894 s (15k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [498.38 µs 499.76 µs 501.24 µs]
                        change: [+0.0684% +0.4953% +0.9199%] (p = 0.03 < 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 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.4736 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [7.6808 ms 7.6866 ms 7.6928 ms]
                        change: [+0.6545% +0.7477% +0.8447%] (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 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.0229 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.5613 ms 4.5631 ms 4.5649 ms]
                        change: [+0.1011% +0.1762% +0.2448%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.6379 s (700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [8.1257 ms 8.1469 ms 8.1695 ms]
                        change: [+1.7636% +2.0652% +2.3846%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild
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.2914 s (1700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.0976 ms 3.1094 ms 3.1213 ms]
                        change: [−0.1438% +0.4263% +0.9711%] (p = 0.14 > 0.05)
                        No change in performance detected.

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 5.9364 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [14.891 ms 14.919 ms 14.948 ms]
                        change: [+2.0515% +2.3440% +2.6251%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5454 s (1000 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.5171 ms 5.5303 ms 5.5438 ms]
                        change: [+1.7700% +2.0963% +2.4338%] (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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Collecting 100 samples in estimated 9.3454 s (5050 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [1.8508 ms 1.8527 ms 1.8547 ms]
                        change: [−1.2092% −1.0942% −0.9712%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel
Benchmarking Block 13287210(1414 txs, 29990789 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.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Collecting 100 samples in estimated 9.8876 s (5050 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [1.9711 ms 1.9752 ms 1.9796 ms]
                        change: [−2.3721% −2.0714% −1.7851%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild

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 305.4s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 305.40 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [13.042 ms 13.069 ms 13.096 ms]
                        change: [−0.2617% −0.0031% +0.2488%] (p = 0.98 > 0.05)
                        No change in performance detected.
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.0809 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.3509 ms 6.3562 ms 6.3616 ms]
                        change: [+0.5781% +0.6980% +0.8048%] (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.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.1349 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4103 ms 1.4108 ms 1.4113 ms]
                        change: [−0.4328% −0.3283% −0.2328%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.2096 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2337 ms 1.2359 ms 1.2381 ms]
                        change: [+0.5543% +0.7715% +0.9921%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.2047 s (1600 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.2495 ms 3.2500 ms 3.2505 ms]
                        change: [+0.4289% +0.4530% +0.4755%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2850 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [822.71 µs 823.81 µs 824.97 µs]
                        change: [+0.1303% +0.3795% +0.6501%] (p = 0.00 < 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 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.4818 s (1000 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.4815 ms 5.4833 ms 5.4851 ms]
                        change: [−0.2817% −0.1803% −0.0926%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild
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.0541 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.1630 ms 3.1734 ms 3.1839 ms]
                        change: [−0.2777% +0.1402% +0.5813%] (p = 0.54 > 0.05)
                        No change in performance detected.

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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Collecting 100 samples in estimated 9.4499 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.8754 ms 1.8762 ms 1.8769 ms]
                        change: [−0.6656% −0.6184% −0.5706%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.4013 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4607 ms 1.4618 ms 1.4631 ms]
                        change: [+1.1546% +1.2487% +1.3399%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) low mild
  1 (1.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.1305 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.3969 ms 6.3991 ms 6.4015 ms]
                        change: [+0.5121% +0.5516% +0.5936%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6555 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.0578 ms 7.0617 ms 7.0657 ms]
                        change: [+0.5027% +0.5814% +0.6574%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.4292 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [10.862 ms 10.885 ms 10.909 ms]
                        change: [+1.1151% +1.3265% +1.5905%] (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.1813 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.6897 ms 3.6966 ms 3.7034 ms]
                        change: [+0.4813% +0.7666% +1.0488%] (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.0867 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.379 µs 59.398 µs 59.418 µs]
                        change: [−0.2425% −0.2158% −0.1865%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0881 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.373 µs 59.397 µs 59.422 µs]
                        change: [−0.1633% −0.1293% −0.0931%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.1072 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4312 ms 2.4316 ms 2.4321 ms]
                        change: [+0.1784% +0.2453% +0.3035%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.1061 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4303 ms 2.4307 ms 2.4312 ms]
                        change: [−0.0015% +0.0778% +0.1434%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.2078 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [713.21 µs 713.68 µs 714.17 µs]
                        change: [−1.5150% −1.4166% −1.3214%] (p = 0.00 < 0.05)
                        Performance has improved.
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.2733 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [824.52 µs 826.55 µs 828.77 µs]
                        change: [−2.9997% −2.6370% −2.2833%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild

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.1040 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [6.3352 ms 6.3416 ms 6.3487 ms]
                        change: [−0.6283% −0.3976% −0.1843%] (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 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.1695 s (2400 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.1757 ms 2.1809 ms 2.1862 ms]
                        change: [+0.2664% +0.5759% +0.8926%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  8 (8.00%) high mild
  1 (1.00%) high severe

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.1185 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2104 ms 1.2106 ms 1.2109 ms]
                        change: [+0.2596% +0.3031% +0.3440%] (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 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.1031 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2076 ms 1.2078 ms 1.2081 ms]
                        change: [+0.1447% +0.1765% +0.2058%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  4 (4.00%) high mild
  2 (2.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.4249 s (1000 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.4218 ms 5.4235 ms 5.4254 ms]
                        change: [−0.2642% −0.1587% −0.0635%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) high mild
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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Collecting 100 samples in estimated 7.6551 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5157 ms 1.5178 ms 1.5200 ms]
                        change: [+0.5931% +0.8949% +1.1886%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  2 (2.00%) low severe
  4 (4.00%) low mild
  3 (3.00%) high mild

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.5686 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.3002 ms 1.3006 ms 1.3011 ms]
                        change: [−0.0346% +0.0127% +0.0645%] (p = 0.64 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) high mild
  3 (3.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 6.9200 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [686.93 µs 688.61 µs 690.54 µs]
                        change: [+0.2845% +0.6097% +0.9290%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.0508 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [22.783 µs 22.809 µs 22.837 µs]
                        change: [−1.6523% −1.5683% −1.4753%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.00%) high mild
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.0542 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [22.807 µs 22.832 µs 22.859 µs]
                        change: [−1.6772% −1.6009% −1.5217%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.00%) high mild

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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.2598 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6340 ms 1.6348 ms 1.6358 ms]
                        change: [+0.4368% +0.4847% +0.5379%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  6 (6.00%) high mild
  1 (1.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.3156 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [534.20 µs 535.55 µs 537.10 µs]
                        change: [+1.9321% +2.2567% +2.5910%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.7526 s (700 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.2159 ms 8.2202 ms 8.2247 ms]
                        change: [−0.4892% −0.3526% −0.2232%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild
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.4212 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.4184 ms 5.4203 ms 5.4223 ms]
                        change: [+0.6407% +0.6997% +0.7561%] (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 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.4682 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [542.08 µs 542.20 µs 542.31 µs]
                        change: [−0.2979% −0.2582% −0.2186%] (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 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.4837 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [644.98 µs 647.21 µs 649.78 µs]
                        change: [−0.4496% +0.0786% +0.5846%] (p = 0.77 > 0.05)
                        No change in performance detected.
Found 10 outliers among 100 measurements (10.00%)
  10 (10.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.1486 s (2200 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.3401 ms 2.3416 ms 2.3433 ms]
                        change: [+0.0750% +0.1750% +0.2746%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) high mild
  3 (3.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.1391 s (1900 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.6979 ms 2.7004 ms 2.7031 ms]
                        change: [+0.0307% +0.1788% +0.3267%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3929 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [7.6813 ms 7.6908 ms 7.7008 ms]
                        change: [−0.3190% −0.1144% +0.0922%] (p = 0.27 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2459 s (1500 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.5109 ms 3.5156 ms 3.5203 ms]
                        change: [+0.5133% +0.7134% +0.9238%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3062 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2482 ms 1.2491 ms 1.2504 ms]
                        change: [+0.3006% +0.3602% +0.4257%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) high mild
  6 (6.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 6.9665 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [692.65 µs 693.84 µs 695.04 µs]
                        change: [−0.1101% +0.1501% +0.4071%] (p = 0.26 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high 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.4406 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [268.58 µs 268.65 µs 268.71 µs]
                        change: [−1.1880% −1.1259% −1.0652%] (p = 0.00 < 0.05)
                        Performance has improved.
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.4030 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [321.45 µs 323.05 µs 324.84 µs]
                        change: [+0.2017% +0.8953% +1.5536%] (p = 0.01 < 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.1445 s (1600 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.2067 ms 3.2084 ms 3.2102 ms]
                        change: [+0.1063% +0.1771% +0.2440%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.7567 s (5050 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [1.9257 ms 1.9300 ms 1.9345 ms]
                        change: [−2.1451% −1.8330% −1.4733%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe

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.2591 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [412.69 µs 412.86 µs 413.04 µs]
                        change: [−0.8312% −0.7684% −0.7080%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) high mild
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.2481 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [412.73 µs 413.08 µs 413.63 µs]
                        change: [−0.8699% −0.8050% −0.7323%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.6284 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [279.21 µs 279.44 µs 279.69 µs]
                        change: [−0.9237% −0.8407% −0.7624%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0339 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [395.90 µs 398.70 µs 401.88 µs]
                        change: [−4.8778% −0.3061% +6.6482%] (p = 0.93 > 0.05)
                        No change in performance detected.
Found 7 outliers among 100 measurements (7.00%)
  4 (4.00%) high mild
  3 (3.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.0024 s (5.8M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [862.60 ns 865.11 ns 867.76 ns]
                        change: [−11.220% −10.901% −10.570%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0020 s (5.7M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [863.94 ns 866.46 ns 869.07 ns]
                        change: [−11.007% −10.685% −10.359%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2864 s (1000 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.2823 ms 5.2869 ms 5.2920 ms]
                        change: [+0.4658% +0.5568% +0.6564%] (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 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.0127 s (1900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.6374 ms 2.6416 ms 2.6461 ms]
                        change: [+0.6095% +0.8480% +1.0870%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) high mild
  1 (1.00%) high severe

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.1255 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.3705 ms 6.3763 ms 6.3827 ms]
                        change: [+0.7032% +0.8174% +0.9323%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) high mild
  3 (3.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.1147 s (1900 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.6917 ms 2.6933 ms 2.6950 ms]
                        change: [+0.3208% +0.4165% +0.5144%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low mild
  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.3648 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [132.70 µs 132.87 µs 133.06 µs]
                        change: [−0.2409% −0.1446% −0.0456%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.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.3670 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [132.67 µs 132.85 µs 133.04 µs]
                        change: [−0.2074% −0.0741% +0.1717%] (p = 0.43 > 0.05)
                        No change in performance detected.
Found 17 outliers among 100 measurements (17.00%)
  16 (16.00%) high mild
  1 (1.00%) high severe

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.0152 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.1316 ms 3.1321 ms 3.1326 ms]
                        change: [+0.1973% +0.2386% +0.2781%] (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 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.1239 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.8084 ms 1.8093 ms 1.8102 ms]
                        change: [+0.5715% +0.6769% +0.7843%] (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 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.6567 s (600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [9.3725 ms 9.3878 ms 9.4043 ms]
                        change: [−1.0386% −0.7551% −0.4896%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.2327 s (1700 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.0848 ms 3.0915 ms 3.0985 ms]
                        change: [−0.3562% −0.0192% +0.3100%] (p = 0.91 > 0.05)
                        No change in performance detected.

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.1737 s (1900 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7229 ms 2.7236 ms 2.7247 ms]
                        change: [+0.3944% +0.4257% +0.4654%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) high mild
  3 (3.00%) high severe
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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Collecting 100 samples in estimated 8.2580 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6311 ms 1.6324 ms 1.6338 ms]
                        change: [−0.2718% −0.1374% −0.0039%] (p = 0.05 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) low mild
  1 (1.00%) high severe

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.1900 s (1700 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.0493 ms 3.0501 ms 3.0509 ms]
                        change: [+0.1996% +0.2609% +0.3178%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.2488 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2409 ms 1.2424 ms 1.2439 ms]
                        change: [+0.6309% +0.8246% +1.0048%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low 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.3406 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [922.11 µs 922.63 µs 923.17 µs]
                        change: [−1.4928% −1.3946% −1.3029%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3071 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [923.59 µs 925.40 µs 927.28 µs]
                        change: [−2.3932% −2.1522% −1.9081%] (p = 0.00 < 0.05)
                        Performance has improved.

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.0652 s (2100 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.4089 ms 2.4094 ms 2.4100 ms]
                        change: [−0.2149% −0.1747% −0.1359%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
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.9504 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.3778 ms 1.3796 ms 1.3816 ms]
                        change: [−0.3998% −0.1789% +0.0457%] (p = 0.12 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) low mild
  1 (1.00%) high mild

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.1530 s (1600 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.2178 ms 3.2185 ms 3.2193 ms]
                        change: [−0.1317% −0.0760% −0.0238%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0758 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.4042 ms 1.4065 ms 1.4090 ms]
                        change: [+0.2426% +0.5186% +0.7893%] (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)/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.6441 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [159.73 µs 159.77 µs 159.82 µs]
                        change: [−0.3041% −0.2646% −0.2243%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 18 outliers among 100 measurements (18.00%)
  12 (12.00%) low mild
  5 (5.00%) high mild
  1 (1.00%) high severe
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.6415 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [159.70 µs 159.74 µs 159.78 µs]
                        change: [−0.3407% −0.3040% −0.2668%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  15 (15.00%) low mild
  1 (1.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.1489 s (2000 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.5738 ms 2.5744 ms 2.5750 ms]
                        change: [+0.7378% +0.7706% +0.8022%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.4583 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0783 ms 1.0812 ms 1.0841 ms]
                        change: [−0.1947% +0.2921% +0.7625%] (p = 0.25 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) low mild
  1 (1.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.1591 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.4017 ms 7.4164 ms 7.4317 ms]
                        change: [+0.4997% +0.7790% +1.0547%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2856 s (1600 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.2953 ms 3.3023 ms 3.3091 ms]
                        change: [+0.0993% +0.3588% +0.6405%] (p = 0.01 < 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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Collecting 100 samples in estimated 9.5217 s (5050 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.8826 ms 1.8838 ms 1.8851 ms]
                        change: [−0.3191% −0.2693% −0.2166%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  6 (6.00%) high mild
  3 (3.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.3331 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [922.86 µs 924.55 µs 926.46 µs]
                        change: [+0.2649% +0.8153% +1.2570%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  2 (2.00%) high severe

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.1951 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [5.7775 ms 5.7832 ms 5.7896 ms]
                        change: [+0.1847% +0.3139% +0.4293%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  5 (5.00%) high mild
  4 (4.00%) high severe
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.1331 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.5651 ms 2.5679 ms 2.5706 ms]
                        change: [+0.4266% +0.5653% +0.7101%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.0805 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.7978 ms 1.7986 ms 1.7995 ms]
                        change: [+0.4957% +0.5443% +0.5919%] (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 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.6446 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [864.76 µs 868.31 µs 872.28 µs]
                        change: [+0.1471% +0.7501% +1.3507%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 18 outliers among 100 measurements (18.00%)
  9 (9.00%) high mild
  9 (9.00%) high severe

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.1376 s (1100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [4.6707 ms 4.6736 ms 4.6768 ms]
                        change: [−0.3367% −0.2327% −0.1286%] (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 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.1636 s (2100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.4593 ms 2.4635 ms 2.4676 ms]
                        change: [+0.5842% +0.8304% +1.0922%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.6177 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.211 ms 11.226 ms 11.242 ms]
                        change: [+1.4057% +1.5354% +1.6719%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.3196 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.8323 ms 4.8350 ms 4.8378 ms]
                        change: [+0.4431% +0.5186% +0.5953%] (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 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.1865 s (1100 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [4.7127 ms 4.7154 ms 4.7190 ms]
                        change: [+0.1015% +0.1629% +0.2431%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) high mild
  2 (2.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.1361 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.4192 ms 3.4209 ms 3.4226 ms]
                        change: [+0.9883% +1.0638% +1.1397%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3046 s (1300 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.0741 ms 4.0756 ms 4.0773 ms]
                        change: [−0.0575% −0.0189% +0.0245%] (p = 0.39 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.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.6895 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5133 ms 1.5161 ms 1.5190 ms]
                        change: [−0.3648% +0.0067% +0.3521%] (p = 0.97 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low 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.6601 s (800 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.0926 ms 7.1058 ms 7.1200 ms]
                        change: [+0.8583% +1.0644% +1.2735%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  6 (6.00%) high mild
  3 (3.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.0187 s (1300 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.8510 ms 3.8614 ms 3.8717 ms]
                        change: [+1.1960% +1.5889% +1.9719%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.8891 s (5050 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [1.9545 ms 1.9550 ms 1.9554 ms]
                        change: [−0.2938% −0.2607% −0.2238%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) high mild
  3 (3.00%) high severe
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.3151 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [926.16 µs 928.18 µs 930.49 µs]
                        change: [−0.6631% −0.3454% −0.0462%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.0151 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [396.32 µs 396.58 µs 396.85 µs]
                        change: [−1.8868% −1.7916% −1.6950%] (p = 0.00 < 0.05)
                        Performance has improved.
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 7.2663 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [482.61 µs 483.88 µs 485.25 µs]
                        change: [−2.4444% −2.0607% −1.7019%] (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 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.4803 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.4821 ms 1.4829 ms 1.4837 ms]
                        change: [+0.3440% +0.3936% +0.4450%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.4785 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.4784 ms 1.4787 ms 1.4791 ms]
                        change: [+0.1030% +0.1419% +0.1801%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) high mild
  3 (3.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.0176 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [83.438 µs 83.505 µs 83.565 µs]
                        change: [−0.0621% +0.0167% +0.0940%] (p = 0.69 > 0.05)
                        No change in performance detected.
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.0186 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [83.200 µs 83.290 µs 83.386 µs]
                        change: [+0.0382% +0.1155% +0.1872%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Collecting 100 samples in estimated 6.9600 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.3855 ms 1.3888 ms 1.3924 ms]
                        change: [−1.3044% −1.1245% −0.9560%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 6.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 6.9407 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.3811 ms 1.3845 ms 1.3881 ms]
                        change: [−1.3143% −1.1470% −0.9722%] (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.0585 s (900 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [5.5670 ms 5.5722 ms 5.5778 ms]
                        change: [−0.0684% +0.0436% +0.1554%] (p = 0.44 > 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 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 9.8s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Collecting 100 samples in estimated 9.8120 s (5050 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [1.9565 ms 1.9603 ms 1.9649 ms]
                        change: [−2.1272% −1.8350% −1.5497%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.00%) high mild

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.0098 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.4005 µs 2.4033 µs 2.4063 µs]
                        change: [−5.0587% −4.9265% −4.7917%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0068 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.4034 µs 2.4062 µs 2.4092 µs]
                        change: [−4.8421% −4.7201% −4.5941%] (p = 0.00 < 0.05)
                        Performance has improved.

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.1165 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [5.6867 ms 5.6902 ms 5.6939 ms]
                        change: [−2.5698% −2.2157% −1.8824%] (p = 0.00 < 0.05)
                        Performance has improved.
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.1015 s (2300 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.2305 ms 2.2354 ms 2.2406 ms]
                        change: [−1.7920% −1.4946% −1.1785%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 15 outliers among 100 measurements (15.00%)
  15 (15.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.3604 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [353.31 µs 353.43 µs 353.56 µs]
                        change: [−2.4839% −2.4292% −2.3780%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.3578 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [353.26 µs 353.45 µs 353.67 µs]
                        change: [−2.4226% −2.3749% −2.3298%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 7 outliers among 100 measurements (7.00%)
  6 (6.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.1120 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [10.176 ms 10.190 ms 10.206 ms]
                        change: [−9.0956% −8.8791% −8.6620%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 7 outliers among 100 measurements (7.00%)
  6 (6.00%) high mild
  1 (1.00%) high severe
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.0083 s (1500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.3419 ms 3.3460 ms 3.3502 ms]
                        change: [−1.8349% −1.6105% −1.4009%] (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.3148 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.709 µs 65.767 µs 65.824 µs]
                        change: [+0.2269% +0.2742% +0.3224%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  6 (6.00%) low severe
  1 (1.00%) low 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.3082 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.462 µs 65.500 µs 65.545 µs]
                        change: [−0.2707% −0.2098% −0.1451%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1123 s (1200 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.2554 ms 4.2583 ms 4.2617 ms]
                        change: [−7.5563% −7.4074% −7.2574%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.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.0753 s (2400 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1163 ms 2.1194 ms 2.1226 ms]
                        change: [−2.3262% −2.1054% −1.8627%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.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.8072 s (700 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.2882 ms 8.2952 ms 8.3031 ms]
                        change: [−2.8782% −2.7847% −2.6920%] (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.2413 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8184 ms 5.8210 ms 5.8235 ms]
                        change: [−0.6514% −0.5878% −0.5240%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.4542 s (1100 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [4.9560 ms 4.9624 ms 4.9711 ms]
                        change: [−9.8760% −9.6516% −9.4032%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) high mild
  4 (4.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.2078 s (2500 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.0828 ms 2.0861 ms 2.0894 ms]
                        change: [−3.1103% −2.8122% −2.5132%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2862 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.5398 ms 7.5457 ms 7.5523 ms]
                        change: [−3.8379% −3.7354% −3.6335%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) high mild
  3 (3.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.2810 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.8009 ms 4.8031 ms 4.8053 ms]
                        change: [−0.7405% −0.6644% −0.5934%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild

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.3645 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [532.04 µs 532.17 µs 532.29 µs]
                        change: [−2.2741% −2.1864% −2.0934%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe
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.5893 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [373.75 µs 375.70 µs 377.85 µs]
                        change: [−2.8972% −2.2767% −1.6655%] (p = 0.00 < 0.05)
                        Performance has improved.

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.3694 s (900 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [5.9352 ms 5.9395 ms 5.9440 ms]
                        change: [−10.399% −10.300% −10.197%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) high mild
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.2112 s (2200 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.3704 ms 2.3770 ms 2.3834 ms]
                        change: [−5.5756% −5.1670% −4.7603%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.1681 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2219 ms 1.2222 ms 1.2225 ms]
                        change: [−0.5291% −0.4854% −0.4450%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 7.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 7.0356 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.3920 ms 1.3947 ms 1.3974 ms]
                        change: [−0.1978% +0.1410% +0.4958%] (p = 0.44 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high severe

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.4648 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [108.32 µs 108.36 µs 108.41 µs]
                        change: [−0.4973% −0.4479% −0.3936%] (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.4633 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.37 µs 108.40 µs 108.44 µs]
                        change: [−0.5434% −0.4975% −0.4547%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.9395 s (600 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [9.8438 ms 9.8646 ms 9.8864 ms]
                        change: [−8.1396% −7.9326% −7.7470%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild
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.1931 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [3.9983 ms 4.0065 ms 4.0147 ms]
                        change: [−2.9572% −2.6616% −2.3731%] (p = 0.00 < 0.05)
                        Performance has improved.

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.0239 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [793.01 µs 793.16 µs 793.30 µs]
                        change: [−0.3308% −0.2710% −0.2119%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  3 (3.00%) low mild
  3 (3.00%) high mild
  2 (2.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.3793 s (15k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [488.81 µs 489.70 µs 490.69 µs]
                        change: [−1.1971% −0.8386% −0.4509%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
  2 (2.00%) high severe

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.2620 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [621.51 µs 621.87 µs 622.24 µs]
                        change: [−0.1887% −0.1404% −0.0891%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 5.9201 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [392.32 µs 392.86 µs 393.35 µs]
                        change: [−2.0458% −1.8350% −1.6260%] (p = 0.00 < 0.05)
                        Performance has improved.

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.1530 s (1900 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.7114 ms 2.7136 ms 2.7162 ms]
                        change: [−6.1060% −5.8029% −5.4944%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 10 outliers among 100 measurements (10.00%)
  3 (3.00%) high mild
  7 (7.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.2186 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.0449 ms 3.0493 ms 3.0541 ms]
                        change: [−7.2450% −6.9899% −6.7263%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild

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.0845 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.3092 ms 2.3106 ms 2.3122 ms]
                        change: [−10.318% −9.8248% −9.3316%] (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 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.0530 s (2400 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.1092 ms 2.1115 ms 2.1138 ms]
                        change: [−6.5658% −6.2914% −6.0191%] (p = 0.00 < 0.05)
                        Performance has improved.

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.1448 s (500 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [12.203 ms 12.232 ms 12.262 ms]
                        change: [−6.2004% −5.9739% −5.7341%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0378 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.3143 ms 6.3195 ms 6.3247 ms]
                        change: [−3.8486% −3.7381% −3.6229%] (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)/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.1729 s (1900 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.7179 ms 2.7188 ms 2.7199 ms]
                        change: [−5.3909% −5.1314% −4.8732%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) high mild
  1 (1.00%) high severe
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.1397 s (1600 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.1994 ms 3.2043 ms 3.2092 ms]
                        change: [−4.6244% −4.3307% −4.0393%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.0142 s (1800 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [2.7852 ms 2.7863 ms 2.7877 ms]
                        change: [−4.0714% −3.8152% −3.5651%] (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 9.0041 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.7802 ms 1.7819 ms 1.7838 ms]
                        change: [−0.6301% −0.4517% −0.2728%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low mild
  3 (3.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.5191 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [546.14 µs 546.20 µs 546.25 µs]
                        change: [+0.4049% +0.4279% +0.4530%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.00%) high severe
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.5186 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [546.08 µs 546.15 µs 546.21 µs]
                        change: [+0.3522% +0.3795% +0.4049%] (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%) high severe

@duyquang6

Copy link
Copy Markdown
Contributor Author

benchmark

1 similar comment
@duyquang6

Copy link
Copy Markdown
Contributor Author

benchmark

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit cb269de

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 41.52s
     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.4s, or reduce sample count to 90.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.3907 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [53.261 ms 53.354 ms 53.447 ms]
                        change: [−4.2620% −4.0161% −3.7613%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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 8.9864 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [45.708 ms 46.301 ms 46.911 ms]
                        change: [−1.8217% −0.1222% +1.4499%] (p = 0.88 > 0.05)
                        No change in performance detected.

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.0s, or reduce sample count to 30.
Benchmarking Independent ERC20/Sequential: Collecting 100 samples in estimated 15.962 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [162.37 ms 162.80 ms 163.23 ms]
                        change: [−1.1099% −0.7915% −0.4536%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1s, or reduce sample count to 90.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.0658 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [50.450 ms 51.120 ms 51.776 ms]
                        change: [−6.6452% −4.9659% −3.2651%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 45.227 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [468.52 ms 469.33 ms 470.17 ms]
                        change: [−0.1072% +0.1549% +0.4257%] (p = 0.25 > 0.05)
                        No change in performance detected.
Found 9 outliers among 100 measurements (9.00%)
  5 (5.00%) low mild
  2 (2.00%) high mild
  2 (2.00%) high severe
Benchmarking Independent Uniswap/Parallel
Benchmarking Independent Uniswap/Parallel: Warming up for 3.0000 s
Benchmarking Independent Uniswap/Parallel: Collecting 100 samples in estimated 5.0562 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.198 ms 25.231 ms 25.266 ms]
                        change: [−0.0590% +0.1441% +0.3495%] (p = 0.16 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit cb269de
Report:
Baseline main:

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

This pr:

Average: x1.93
Max: x3.95
Min: x0.7
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 48.31s
     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.3015 s (1100 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [4.7540 ms 4.7582 ms 4.7627 ms]
                        change: [−0.3228% −0.1172% +0.0778%] (p = 0.25 > 0.05)
                        No change in performance detected.
Found 7 outliers among 100 measurements (7.00%)
  5 (5.00%) high mild
  2 (2.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.0674 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.6018 ms 3.6738 ms 3.7473 ms]
                        change: [−1.2297% +1.6061% +4.8992%] (p = 0.31 > 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.0443 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [16.667 ms 16.697 ms 16.730 ms]
                        change: [−3.0044% −2.7336% −2.4540%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 10 outliers among 100 measurements (10.00%)
  8 (8.00%) high mild
  2 (2.00%) high severe
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.0742 s (1100 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.5549 ms 4.5791 ms 4.6026 ms]
                        change: [+3.8335% +4.5662% +5.3174%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) low mild

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.4532 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [133.13 µs 133.30 µs 133.46 µs]
                        change: [−1.8032% −1.7090% −1.6101%] (p = 0.00 < 0.05)
                        Performance has improved.
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.4556 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [133.06 µs 133.22 µs 133.37 µs]
                        change: [−1.7505% −1.6658% −1.5711%] (p = 0.00 < 0.05)
                        Performance has improved.

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.9341 s (600 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [9.7430 ms 9.7834 ms 9.8249 ms]
                        change: [+1.4219% +1.9042% +2.3785%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1339 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.2872 ms 4.2953 ms 4.3036 ms]
                        change: [+0.9955% +1.2869% +1.5595%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high 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.0302 s (1000 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [5.0227 ms 5.0494 ms 5.0762 ms]
                        change: [+2.4379% +3.1550% +3.8982%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.8691 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.5818 ms 1.5876 ms 1.5940 ms]
                        change: [+1.0395% +1.6845% +2.3257%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.2913 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6166 ms 1.6180 ms 1.6193 ms]
                        change: [+0.7154% +0.7918% +0.8616%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0507 s (10k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [499.78 µs 501.39 µs 503.20 µs]
                        change: [+0.9066% +1.3381% +1.7986%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.4091 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [7.6297 ms 7.6317 ms 7.6339 ms]
                        change: [−0.0376% +0.0284% +0.0872%] (p = 0.38 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
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.0153 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.5508 ms 4.5528 ms 4.5548 ms]
                        change: [−0.1262% −0.0509% +0.0168%] (p = 0.18 > 0.05)
                        No change in performance detected.
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.6172 s (700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [7.9358 ms 7.9386 ms 7.9415 ms]
                        change: [−0.6199% −0.5444% −0.4725%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.2651 s (1700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.0866 ms 3.0992 ms 3.1117 ms]
                        change: [−0.5158% +0.0943% +0.7019%] (p = 0.75 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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 5.8681 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [14.526 ms 14.537 ms 14.548 ms]
                        change: [−0.5074% −0.2824% −0.0641%] (p = 0.01 < 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 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.5508 s (1000 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.5460 ms 5.5559 ms 5.5657 ms]
                        change: [+2.2916% +2.5674% +2.8490%] (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.5103 s (5050 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [1.8258 ms 1.8282 ms 1.8304 ms]
                        change: [−2.7991% −2.6954% −2.5865%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0581 s (2500 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [2.0186 ms 2.0222 ms 2.0258 ms]
                        change: [−0.0583% +0.2367% +0.5324%] (p = 0.12 > 0.05)
                        No change in performance detected.

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 306.8s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 306.85 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [12.823 ms 12.839 ms 12.858 ms]
                        change: [−1.9495% −1.7609% −1.5636%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) high mild
  4 (4.00%) high severe
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.0662 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.3218 ms 6.3260 ms 6.3302 ms]
                        change: [+0.1199% +0.2188% +0.3293%] (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.2988 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4154 ms 1.4166 ms 1.4177 ms]
                        change: [−0.1440% −0.0379% +0.0684%] (p = 0.50 > 0.05)
                        No change in performance detected.
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.2132 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2279 ms 1.2297 ms 1.2317 ms]
                        change: [+0.0034% +0.2257% +0.4553%] (p = 0.06 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.2407 s (1600 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.2448 ms 3.2453 ms 3.2459 ms]
                        change: [+0.2837% +0.3080% +0.3338%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2718 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [821.24 µs 822.20 µs 823.21 µs]
                        change: [−0.0998% +0.0862% +0.2714%] (p = 0.36 > 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 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.5265 s (1000 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.4814 ms 5.4828 ms 5.4843 ms]
                        change: [−0.2879% −0.1891% −0.1040%] (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 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.0943 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.1740 ms 3.1847 ms 3.1954 ms]
                        change: [+0.0683% +0.4969% +0.9679%] (p = 0.03 < 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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Collecting 100 samples in estimated 9.5933 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.8665 ms 1.8673 ms 1.8680 ms]
                        change: [−1.0869% −1.0458% −1.0044%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.3572 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4564 ms 1.4577 ms 1.4589 ms]
                        change: [+0.8132% +0.9187% +1.0227%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  2 (2.00%) low mild
  1 (1.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.1401 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.3867 ms 6.3883 ms 6.3900 ms]
                        change: [+0.3527% +0.3814% +0.4124%] (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 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.6606 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.0348 ms 7.0406 ms 7.0489 ms]
                        change: [+0.1787% +0.2803% +0.4065%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.4218 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [10.752 ms 10.759 ms 10.765 ms]
                        change: [+0.0367% +0.1539% +0.2571%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  7 (7.00%) high mild
  1 (1.00%) high severe
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.1990 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.6979 ms 3.7049 ms 3.7120 ms]
                        change: [+0.7256% +0.9945% +1.2900%] (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.1521 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.390 µs 59.435 µs 59.478 µs]
                        change: [−0.2945% −0.2521% −0.2103%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 17 outliers among 100 measurements (17.00%)
  1 (1.00%) low mild
  11 (11.00%) high mild
  5 (5.00%) high severe
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.1532 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.649 µs 59.716 µs 59.774 µs]
                        change: [+0.0115% +0.0911% +0.1846%] (p = 0.03 < 0.05)
                        Change within noise threshold.

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.1389 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4340 ms 2.4345 ms 2.4350 ms]
                        change: [+0.2958% +0.3640% +0.4245%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1380 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4340 ms 2.4346 ms 2.4353 ms]
                        change: [+0.1572% +0.2390% +0.3065%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.2432 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [706.20 µs 707.06 µs 707.86 µs]
                        change: [−2.7361% −2.6363% −2.5262%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3176 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [819.20 µs 820.80 µs 822.50 µs]
                        change: [−3.5128% −3.1876% −2.8779%] (p = 0.00 < 0.05)
                        Performance has improved.

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.1004 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [6.2972 ms 6.2996 ms 6.3022 ms]
                        change: [−1.2589% −1.0565% −0.8719%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.2004 s (2400 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.1588 ms 2.1624 ms 2.1662 ms]
                        change: [−0.5371% −0.2760% −0.0111%] (p = 0.04 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild

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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Collecting 100 samples in estimated 6.2031 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2112 ms 1.2116 ms 1.2119 ms]
                        change: [+0.3167% +0.3591% +0.3966%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Collecting 100 samples in estimated 6.2018 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2115 ms 1.2120 ms 1.2125 ms]
                        change: [+0.4326% +0.4777% +0.5190%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) high mild
  3 (3.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.4462 s (1000 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.3964 ms 5.3976 ms 5.3988 ms]
                        change: [−0.7405% −0.6368% −0.5447%] (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 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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Collecting 100 samples in estimated 7.6917 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5201 ms 1.5226 ms 1.5252 ms]
                        change: [+1.1695% +1.4598% +1.7519%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 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.6305 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.2998 ms 1.3006 ms 1.3013 ms]
                        change: [−0.1076% −0.0603% −0.0141%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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 6.8937 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [683.81 µs 684.68 µs 685.59 µs]
                        change: [−0.7732% −0.5159% −0.2685%] (p = 0.00 < 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.0060 s (217k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [22.512 µs 22.536 µs 22.557 µs]
                        change: [−2.8266% −2.7527% −2.6790%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0016 s (217k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [22.537 µs 22.564 µs 22.588 µs]
                        change: [−2.8674% −2.7806% −2.6956%] (p = 0.00 < 0.05)
                        Performance has improved.

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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.3817 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6370 ms 1.6377 ms 1.6385 ms]
                        change: [+0.7098% +0.7585% +0.8083%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.2926 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [530.34 µs 531.60 µs 532.98 µs]
                        change: [+0.6603% +0.9754% +1.3045%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  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.7978 s (700 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.1899 ms 8.1916 ms 8.1933 ms]
                        change: [−0.8239% −0.6993% −0.5771%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.4017 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.4000 ms 5.4019 ms 5.4040 ms]
                        change: [+0.2999% +0.3569% +0.4166%] (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 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.5004 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [540.58 µs 541.20 µs 541.78 µs]
                        change: [−0.5533% −0.4826% −0.4159%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.4509 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [641.52 µs 643.51 µs 645.76 µs]
                        change: [−1.0596% −0.5753% −0.0919%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 15 outliers among 100 measurements (15.00%)
  15 (15.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.1987 s (2200 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.3384 ms 2.3390 ms 2.3396 ms]
                        change: [−0.0119% +0.0649% +0.1386%] (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 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.1620 s (1900 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.6882 ms 2.6903 ms 2.6924 ms]
                        change: [−0.3429% −0.1983% −0.0603%] (p = 0.01 < 0.05)
                        Change within noise threshold.

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.3883 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [7.6285 ms 7.6308 ms 7.6332 ms]
                        change: [−1.0563% −0.8938% −0.7386%] (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 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.2432 s (1500 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.4907 ms 3.4954 ms 3.5003 ms]
                        change: [−0.0682% +0.1363% +0.3397%] (p = 0.19 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Collecting 100 samples in estimated 6.3733 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2463 ms 1.2467 ms 1.2471 ms]
                        change: [+0.1475% +0.1921% +0.2360%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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 6.9495 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [691.71 µs 692.80 µs 693.83 µs]
                        change: [−0.5020% −0.2482% −0.0011%] (p = 0.06 > 0.05)
                        No change in performance detected.

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.5110 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [266.81 µs 267.09 µs 267.33 µs]
                        change: [−1.9481% −1.8723% −1.7914%] (p = 0.00 < 0.05)
                        Performance has improved.
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.4016 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [321.06 µs 322.35 µs 323.74 µs]
                        change: [+0.1353% +0.8439% +1.5402%] (p = 0.02 < 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 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.2091 s (1600 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.1973 ms 3.1990 ms 3.2008 ms]
                        change: [−0.1819% −0.1167% −0.0466%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.9s, enable flat sampling, or reduce sample count to 40.
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 9.9478 s (5050 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [1.9677 ms 1.9713 ms 1.9751 ms]
                        change: [−0.2807% −0.0555% +0.1694%] (p = 0.64 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.4083 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [416.96 µs 417.18 µs 417.38 µs]
                        change: [+0.1251% +0.1832% +0.2383%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.4133 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [417.03 µs 417.23 µs 417.41 µs]
                        change: [+0.1670% +0.2170% +0.2652%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.7115 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [276.40 µs 276.79 µs 277.15 µs]
                        change: [−2.1046% −2.0001% −1.9000%] (p = 0.00 < 0.05)
                        Performance has improved.
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.1463 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [392.16 µs 394.21 µs 396.46 µs]
                        change: [−6.7186% −5.0955% −3.4593%] (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 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.0011 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [841.34 ns 844.22 ns 847.18 ns]
                        change: [−13.810% −13.472% −13.154%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0007 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [840.80 ns 843.35 ns 846.01 ns]
                        change: [−13.660% −13.334% −13.018%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2999 s (1000 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.2383 ms 5.2400 ms 5.2417 ms]
                        change: [−0.3778% −0.3352% −0.2947%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.0210 s (1900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.6358 ms 2.6398 ms 2.6438 ms]
                        change: [+0.5509% +0.7776% +1.0139%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.1343 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.3254 ms 6.3280 ms 6.3308 ms]
                        change: [−0.0239% +0.0537% +0.1223%] (p = 0.15 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  7 (7.00%) high mild
  1 (1.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.0492 s (1900 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.6609 ms 2.6627 ms 2.6646 ms]
                        change: [−0.8247% −0.7245% −0.6215%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.4062 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [131.11 µs 131.25 µs 131.37 µs]
                        change: [−1.5305% −1.4639% −1.3859%] (p = 0.00 < 0.05)
                        Performance has improved.
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.4051 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [131.12 µs 131.26 µs 131.39 µs]
                        change: [−1.5285% −1.4607% −1.3828%] (p = 0.00 < 0.05)
                        Performance has improved.

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.0766 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.1319 ms 3.1328 ms 3.1338 ms]
                        change: [+0.2097% +0.2602% +0.3093%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  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.0950 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.7971 ms 1.7981 ms 1.7991 ms]
                        change: [+0.1420% +0.2359% +0.3335%] (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 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.6294 s (600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [9.2944 ms 9.2991 ms 9.3043 ms]
                        change: [−1.9271% −1.6933% −1.4695%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 8 outliers among 100 measurements (8.00%)
  4 (4.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.2029 s (1700 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.0639 ms 3.0707 ms 3.0775 ms]
                        change: [−1.0160% −0.6942% −0.3651%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.2318 s (1900 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7279 ms 2.7285 ms 2.7290 ms]
                        change: [+0.5786% +0.6033% +0.6279%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Collecting 100 samples in estimated 8.2674 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6344 ms 1.6357 ms 1.6372 ms]
                        change: [−0.0048% +0.1196% +0.2413%] (p = 0.06 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  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.2012 s (1700 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.0289 ms 3.0296 ms 3.0304 ms]
                        change: [−0.4691% −0.4106% −0.3564%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.1936 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2296 ms 1.2309 ms 1.2322 ms]
                        change: [−0.3341% −0.1559% +0.0417%] (p = 0.11 > 0.05)
                        No change in performance detected.
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 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.4686 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [914.87 µs 915.88 µs 916.80 µs]
                        change: [−2.5112% −2.4196% −2.3324%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3332 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [923.37 µs 924.78 µs 926.17 µs]
                        change: [−2.8429% −2.5925% −2.3392%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.1617 s (2100 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.4158 ms 2.4164 ms 2.4169 ms]
                        change: [+0.0749% +0.1125% +0.1525%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.9924 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.3869 ms 1.3886 ms 1.3904 ms]
                        change: [+0.2284% +0.4609% +0.6889%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild

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.2424 s (1600 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.2303 ms 3.2312 ms 3.2322 ms]
                        change: [+0.2585% +0.3177% +0.3747%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0872 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.4019 ms 1.4039 ms 1.4062 ms]
                        change: [+0.1607% +0.4195% +0.6685%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.7146 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [159.62 µs 159.88 µs 160.12 µs]
                        change: [−0.4542% −0.3783% −0.2919%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.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.7138 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [159.62 µs 159.87 µs 160.11 µs]
                        change: [−0.4550% −0.3715% −0.2793%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  10 (10.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.1899 s (2000 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.5731 ms 2.5739 ms 2.5747 ms]
                        change: [+0.7104% +0.7493% +0.7878%] (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 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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Collecting 100 samples in estimated 5.4386 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0798 ms 1.0824 ms 1.0851 ms]
                        change: [+0.3164% +0.8122% +1.3058%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.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.2160 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.4335 ms 7.4466 ms 7.4604 ms]
                        change: [+0.9291% +1.1885% +1.4410%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.2837 s (1600 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.2867 ms 3.2933 ms 3.3000 ms]
                        change: [−0.1902% +0.0874% +0.3451%] (p = 0.51 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Collecting 100 samples in estimated 9.6518 s (5050 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.8893 ms 1.8901 ms 1.8908 ms]
                        change: [+0.0332% +0.0784% +0.1236%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.3044 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [921.41 µs 922.94 µs 924.51 µs]
                        change: [+0.0942% +0.4475% +0.7860%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  1 (1.00%) high mild
  1 (1.00%) high severe

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.2326 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [5.7655 ms 5.7667 ms 5.7681 ms]
                        change: [−0.0520% +0.0279% +0.0871%] (p = 0.50 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.1373 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.5661 ms 2.5686 ms 2.5712 ms]
                        change: [+0.4513% +0.5947% +0.7423%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.1799 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.7897 ms 1.7912 ms 1.7926 ms]
                        change: [+0.0204% +0.0724% +0.1258%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.5991 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [856.09 µs 859.58 µs 863.62 µs]
                        change: [−0.8900% −0.3155% +0.2702%] (p = 0.30 > 0.05)
                        No change in performance detected.
Found 15 outliers among 100 measurements (15.00%)
  15 (15.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.1940 s (1100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [4.6701 ms 4.6717 ms 4.6736 ms]
                        change: [−0.3680% −0.2723% −0.1858%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  9 (9.00%) high mild
  1 (1.00%) high severe
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.2290 s (2100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.4865 ms 2.4901 ms 2.4938 ms]
                        change: [+1.6695% +1.9207% +2.1630%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5620 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.059 ms 11.064 ms 11.069 ms]
                        change: [+0.0159% +0.0676% +0.1247%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  6 (6.00%) high mild
  4 (4.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.2946 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.8162 ms 4.8186 ms 4.8209 ms]
                        change: [+0.1053% +0.1762% +0.2497%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.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.2514 s (1100 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [4.7221 ms 4.7234 ms 4.7249 ms]
                        change: [+0.3005% +0.3329% +0.3665%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) high mild
  1 (1.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.1168 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.4046 ms 3.4062 ms 3.4078 ms]
                        change: [+0.5600% +0.6303% +0.7035%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3472 s (1300 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.0809 ms 4.0819 ms 4.0829 ms]
                        change: [+0.1043% +0.1354% +0.1683%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.6663 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5173 ms 1.5201 ms 1.5229 ms]
                        change: [−0.2765% +0.0799% +0.4210%] (p = 0.66 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  5 (5.00%) low mild
  1 (1.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.6862 s (800 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.0399 ms 7.0417 ms 7.0436 ms]
                        change: [+0.0840% +0.1538% +0.2180%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.0233 s (1300 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.8529 ms 3.8610 ms 3.8693 ms]
                        change: [+1.2177% +1.5796% +1.9366%] (p = 0.00 < 0.05)
                        Performance has regressed.

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 10.0s, enable flat sampling, or reduce sample count to 40.
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Collecting 100 samples in estimated 9.9862 s (5050 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [1.9516 ms 1.9534 ms 1.9553 ms]
                        change: [−0.4822% −0.4321% −0.3828%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) high mild
  2 (2.00%) high severe
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.3525 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [927.79 µs 929.14 µs 930.63 µs]
                        change: [−0.8756% −0.5432% −0.1777%] (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 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.0826 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [393.13 µs 393.63 µs 394.09 µs]
                        change: [−2.8538% −2.7536% −2.6498%] (p = 0.00 < 0.05)
                        Performance has improved.
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 7.4071 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [488.31 µs 489.59 µs 490.89 µs]
                        change: [−1.5236% −1.1446% −0.7558%] (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 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.5131 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.4838 ms 1.4855 ms 1.4871 ms]
                        change: [+0.4433% +0.5044% +0.5736%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.00%) high mild
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.5017 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.4817 ms 1.4834 ms 1.4850 ms]
                        change: [+0.1956% +0.2590% +0.3222%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 17 outliers among 100 measurements (17.00%)
  14 (14.00%) high mild
  3 (3.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.0805 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [83.252 µs 83.299 µs 83.344 µs]
                        change: [−0.0589% +0.0476% +0.2130%] (p = 0.69 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  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.0583 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [82.778 µs 82.822 µs 82.863 µs]
                        change: [−0.6810% −0.6468% −0.6137%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 17 outliers among 100 measurements (17.00%)
  13 (13.00%) high mild
  4 (4.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.1444 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.3892 ms 1.3913 ms 1.3932 ms]
                        change: [−1.4142% −1.2967% −1.1748%] (p = 0.00 < 0.05)
                        Performance has improved.
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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 7.1605 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.3942 ms 1.3964 ms 1.3984 ms]
                        change: [−0.8259% −0.7080% −0.5808%] (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.0527 s (900 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [5.5428 ms 5.5475 ms 5.5535 ms]
                        change: [−0.4981% −0.3997% −0.2782%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.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 9.8s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Collecting 100 samples in estimated 9.8313 s (5050 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [1.9495 ms 1.9534 ms 1.9578 ms]
                        change: [−2.5706% −2.2687% −1.9652%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.0034 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.3814 µs 2.3826 µs 2.3837 µs]
                        change: [−5.8796% −5.7628% −5.6453%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 18 outliers among 100 measurements (18.00%)
  17 (17.00%) low severe
  1 (1.00%) high severe
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.0104 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.3836 µs 2.3850 µs 2.3863 µs]
                        change: [−5.6784% −5.5646% −5.4542%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.00%) low severe

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.1849 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [5.6839 ms 5.6864 ms 5.6892 ms]
                        change: [−2.6272% −2.2803% −1.9461%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  3 (3.00%) high mild
  2 (2.00%) high severe
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.1171 s (2300 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.2272 ms 2.2310 ms 2.2350 ms]
                        change: [−1.9758% −1.6887% −1.4015%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 17 outliers among 100 measurements (17.00%)
  16 (16.00%) high mild
  1 (1.00%) high severe

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.6152 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [365.58 µs 365.76 µs 365.93 µs]
                        change: [+0.8822% +0.9358% +0.9862%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6143 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [365.48 µs 365.65 µs 365.82 µs]
                        change: [+0.9595% +1.0119% +1.0627%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  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.1954 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [10.327 ms 10.350 ms 10.375 ms]
                        change: [−7.7437% −7.4518% −7.1680%] (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.0323 s (1500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.3507 ms 3.3554 ms 3.3600 ms]
                        change: [−1.5502% −1.3341% −1.1005%] (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.0000 s (76k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.366 µs 65.476 µs 65.575 µs]
                        change: [−0.6102% −0.5303% −0.4426%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 18 outliers among 100 measurements (18.00%)
  2 (2.00%) high mild
  16 (16.00%) high severe
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.0018 s (76k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.266 µs 65.306 µs 65.344 µs]
                        change: [−0.6820% −0.6413% −0.6033%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1675 s (1200 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.2473 ms 4.2497 ms 4.2526 ms]
                        change: [−7.7350% −7.5927% −7.4510%] (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 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.1348 s (2400 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1406 ms 2.1436 ms 2.1466 ms]
                        change: [−1.2165% −0.9906% −0.7569%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.8085 s (700 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.2616 ms 8.2676 ms 8.2749 ms]
                        change: [−3.1866% −3.1084% −3.0038%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) high mild
  5 (5.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.2333 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8147 ms 5.8177 ms 5.8208 ms]
                        change: [−0.7090% −0.6435% −0.5769%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.0723 s (1000 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [4.9726 ms 4.9770 ms 4.9833 ms]
                        change: [−9.5892% −9.3873% −9.1750%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.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.2032 s (2500 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.0986 ms 2.1034 ms 2.1082 ms]
                        change: [−2.3362% −2.0035% −1.6547%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2936 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.5218 ms 7.5256 ms 7.5305 ms]
                        change: [−4.0775% −3.9911% −3.9037%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 7 outliers among 100 measurements (7.00%)
  5 (5.00%) high mild
  2 (2.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.2693 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.7932 ms 4.7967 ms 4.8003 ms]
                        change: [−0.8891% −0.7965% −0.7030%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild

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.4377 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [529.83 µs 530.19 µs 530.53 µs]
                        change: [−2.7213% −2.6341% −2.5480%] (p = 0.00 < 0.05)
                        Performance has improved.
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.6137 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [373.21 µs 374.67 µs 376.26 µs]
                        change: [−3.2335% −2.6498% −2.0478%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.3875 s (900 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [5.8994 ms 5.9031 ms 5.9072 ms]
                        change: [−10.946% −10.851% −10.756%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) high mild
  3 (3.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.0253 s (2100 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.3872 ms 2.3928 ms 2.3985 ms]
                        change: [−4.9349% −4.5339% −4.1209%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.2271 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2199 ms 1.2206 ms 1.2212 ms]
                        change: [−0.6668% −0.6179% −0.5705%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 7.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 7.0336 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.3883 ms 1.3924 ms 1.3964 ms]
                        change: [−0.9401% −0.4975% −0.0642%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low severe
  2 (2.00%) low mild
  1 (1.00%) high mild
  1 (1.00%) high severe

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.4944 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [108.23 µs 108.32 µs 108.40 µs]
                        change: [−0.7550% −0.7089% −0.6637%] (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.4930 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.21 µs 108.30 µs 108.39 µs]
                        change: [−0.8419% −0.7910% −0.7428%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.9778 s (600 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [9.8059 ms 9.8340 ms 9.8645 ms]
                        change: [−8.4898% −8.2179% −7.9118%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) high mild
  3 (3.00%) high severe
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.2404 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [4.0261 ms 4.0349 ms 4.0438 ms]
                        change: [−2.2457% −1.9702% −1.6654%] (p = 0.00 < 0.05)
                        Performance has improved.

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.0593 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [789.56 µs 789.90 µs 790.22 µs]
                        change: [−0.7644% −0.7063% −0.6530%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.3973 s (15k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [487.35 µs 488.08 µs 488.86 µs]
                        change: [−1.5741% −1.2667% −0.9614%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.3078 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [621.97 µs 622.34 µs 622.71 µs]
                        change: [−0.0565% −0.0134% +0.0303%] (p = 0.54 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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 5.8910 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [388.23 µs 388.62 µs 389.01 µs]
                        change: [−2.8017% −2.6259% −2.4530%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low 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.1967 s (1900 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.7034 ms 2.7042 ms 2.7051 ms]
                        change: [−6.4192% −6.1281% −5.8305%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.2023 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.0293 ms 3.0330 ms 3.0370 ms]
                        change: [−7.7240% −7.4871% −7.2349%] (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 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.1791 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.2941 ms 2.2959 ms 2.2978 ms]
                        change: [−10.889% −10.399% −9.9009%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.1128 s (2400 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.1218 ms 2.1263 ms 2.1307 ms]
                        change: [−5.9616% −5.6347% −5.3126%] (p = 0.00 < 0.05)
                        Performance has improved.

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.1368 s (500 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [12.210 ms 12.246 ms 12.283 ms]
                        change: [−6.1606% −5.8703% −5.5997%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.0214 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.2946 ms 6.3005 ms 6.3066 ms]
                        change: [−4.1478% −4.0273% −3.9120%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.2115 s (1900 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.7146 ms 2.7156 ms 2.7167 ms]
                        change: [−5.5055% −5.2435% −4.9833%] (p = 0.00 < 0.05)
                        Performance has improved.
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.1806 s (1600 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.2079 ms 3.2132 ms 3.2187 ms]
                        change: [−4.3787% −4.0652% −3.7707%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.0667 s (1800 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [2.7917 ms 2.7939 ms 2.7965 ms]
                        change: [−3.8188% −3.5523% −3.2883%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 10 outliers among 100 measurements (10.00%)
  7 (7.00%) high mild
  3 (3.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.9806 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.7783 ms 1.7802 ms 1.7822 ms]
                        change: [−0.8078% −0.6322% −0.4727%] (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 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.5608 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [546.52 µs 546.73 µs 546.92 µs]
                        change: [+0.4713% +0.5034% +0.5356%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.5620 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [546.61 µs 546.82 µs 547.00 µs]
                        change: [+0.4609% +0.4935% +0.5270%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit 5dac600

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.54s
     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.4s, or reduce sample count to 90.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.4417 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [53.775 ms 53.867 ms 53.958 ms]
                        change: [−3.3448% −3.0938% −2.8572%] (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 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 8.9263 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [46.179 ms 46.839 ms 47.520 ms]
                        change: [−0.7231% +1.0371% +2.8731%] (p = 0.25 > 0.05)
                        No change in performance detected.

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.1s, or reduce sample count to 30.
Benchmarking Independent ERC20/Sequential: Collecting 100 samples in estimated 16.139 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [164.63 ms 164.98 ms 165.33 ms]
                        change: [+0.2541% +0.5367% +0.8198%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1s, or reduce sample count to 90.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.1377 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [52.274 ms 52.752 ms 53.236 ms]
                        change: [−3.3021% −1.9310% −0.4786%] (p = 0.01 < 0.05)
                        Change within noise threshold.

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.1s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 45.122 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [467.00 ms 467.77 ms 468.48 ms]
                        change: [−0.4321% −0.1775% +0.0775%] (p = 0.17 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  2 (2.00%) low severe
  6 (6.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.0140 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.041 ms 25.082 ms 25.122 ms]
                        change: [−0.6690% −0.4480% −0.2326%] (p = 0.00 < 0.05)
                        Change within noise threshold.

@duyquang6

Copy link
Copy Markdown
Contributor Author

benchmark

@riselabs-benchmark

Copy link
Copy Markdown

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

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

This pr:

Average: x1.97
Max: x3.97
Min: x0.7
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 48.61s
     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.2497 s (1100 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [4.7709 ms 4.7773 ms 4.7855 ms]
                        change: [+0.0564% +0.2841% +0.5281%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.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.3114 s (1500 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.5220 ms 3.5973 ms 3.6717 ms]
                        change: [−3.5331% −0.5093% +2.6274%] (p = 0.75 > 0.05)
                        No change in performance detected.

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.1634 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [17.075 ms 17.118 ms 17.161 ms]
                        change: [−0.6037% −0.2784% +0.0577%] (p = 0.10 > 0.05)
                        No change in performance detected.
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.2266 s (1200 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.3447 ms 4.3645 ms 4.3847 ms]
                        change: [−0.9226% −0.3336% +0.3258%] (p = 0.31 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild

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.4367 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [134.19 µs 134.35 µs 134.50 µs]
                        change: [−1.0711% −0.9453% −0.8261%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.4250 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [134.06 µs 134.21 µs 134.36 µs]
                        change: [−1.1718% −1.0457% −0.9309%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.7922 s (600 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [9.6316 ms 9.6504 ms 9.6695 ms]
                        change: [+0.2286% +0.5194% +0.7960%] (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.0870 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.2447 ms 4.2514 ms 4.2582 ms]
                        change: [+0.0025% +0.2513% +0.4917%] (p = 0.05 > 0.05)
                        No change in performance detected.

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.3512 s (1100 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [4.8356 ms 4.8434 ms 4.8528 ms]
                        change: [−1.5398% −1.0524% −0.5826%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) high mild
  5 (5.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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Collecting 100 samples in estimated 7.7313 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.5348 ms 1.5400 ms 1.5461 ms]
                        change: [−0.8008% −0.2383% +0.3239%] (p = 0.43 > 0.05)
                        No change in performance detected.

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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.1858 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6190 ms 1.6202 ms 1.6212 ms]
                        change: [+0.7912% +0.8541% +0.9232%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 7.4871 s (15k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [494.62 µs 496.21 µs 498.00 µs]
                        change: [−0.3916% +0.0253% +0.4534%] (p = 0.91 > 0.05)
                        No change in performance detected.

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.3931 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [7.7289 ms 7.7403 ms 7.7521 ms]
                        change: [+1.2910% +1.4514% +1.6265%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.0226 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.5626 ms 4.5645 ms 4.5665 ms]
                        change: [+0.1300% +0.2074% +0.2742%] (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.0213 s (600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [8.1260 ms 8.1511 ms 8.1776 ms]
                        change: [+1.7894% +2.1177% +2.4727%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
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.0100 s (1600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.1213 ms 3.1334 ms 3.1453 ms]
                        change: [+0.6502% +1.1989% +1.7766%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.0528 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [15.312 ms 15.345 ms 15.376 ms]
                        change: [+4.9752% +5.2648% +5.5698%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  2 (2.00%) low severe
  5 (5.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.5204 s (1000 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.5180 ms 5.5300 ms 5.5422 ms]
                        change: [+1.7685% +2.0901% +2.4009%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  3 (3.00%) low mild
  2 (2.00%) high mild

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.4654 s (5050 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [1.8651 ms 1.8683 ms 1.8714 ms]
                        change: [−0.9489% −0.7987% −0.6489%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1597 s (2600 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [1.9724 ms 1.9757 ms 1.9792 ms]
                        change: [−2.3377% −2.0655% −1.7873%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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 305.6s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 305.63 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [13.073 ms 13.093 ms 13.115 ms]
                        change: [−0.0385% +0.1875% +0.4091%] (p = 0.09 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
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.0525 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.3120 ms 6.3172 ms 6.3224 ms]
                        change: [−0.0367% +0.0802% +0.1873%] (p = 0.17 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.2479 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4300 ms 1.4310 ms 1.4320 ms]
                        change: [+0.9528% +1.0723% +1.1797%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.1983 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2377 ms 1.2401 ms 1.2424 ms]
                        change: [+0.7309% +0.9540% +1.1771%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.2006 s (1600 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.2488 ms 3.2507 ms 3.2527 ms]
                        change: [+0.4093% +0.4741% +0.5388%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2405 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [817.72 µs 818.56 µs 819.46 µs]
                        change: [−0.3257% −0.1682% −0.0075%] (p = 0.05 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.4978 s (1000 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.4995 ms 5.5075 ms 5.5164 ms]
                        change: [+0.0944% +0.2603% +0.4484%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 13 outliers among 100 measurements (13.00%)
  4 (4.00%) high mild
  9 (9.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.0820 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.1598 ms 3.1707 ms 3.1815 ms]
                        change: [−0.3876% +0.0544% +0.5046%] (p = 0.81 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Collecting 100 samples in estimated 9.5619 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.8964 ms 1.8989 ms 1.9014 ms]
                        change: [+0.6936% +0.8088% +0.9413%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3657 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4558 ms 1.4566 ms 1.4575 ms]
                        change: [+0.8970% +0.9951% +1.0871%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) low severe
  3 (3.00%) high mild
  3 (3.00%) high severe

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.1120 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.3918 ms 6.3949 ms 6.3990 ms]
                        change: [+0.4361% +0.4849% +0.5538%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.00%) high severe
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.6483 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.0970 ms 7.1044 ms 7.1123 ms]
                        change: [+1.0781% +1.1904% +1.3194%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild

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.5345 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [11.060 ms 11.089 ms 11.118 ms]
                        change: [+2.9429% +3.2268% +3.5075%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1827 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.6874 ms 3.6947 ms 3.7020 ms]
                        change: [+0.4234% +0.7146% +0.9977%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.1099 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.958 µs 60.021 µs 60.076 µs]
                        change: [+0.3009% +0.3953% +0.5094%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1095 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.605 µs 59.652 µs 59.698 µs]
                        change: [+0.0629% +0.1361% +0.2054%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1364 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4396 ms 2.4401 ms 2.4405 ms]
                        change: [+0.5247% +0.5930% +0.6522%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
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.1364 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4401 ms 2.4406 ms 2.4411 ms]
                        change: [+0.4051% +0.4858% +0.5508%] (p = 0.00 < 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.3668 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [729.17 µs 729.74 µs 730.26 µs]
                        change: [+0.2768% +0.3918% +0.5014%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3992 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [829.55 µs 831.21 µs 833.03 µs]
                        change: [−2.0743% −1.7045% −1.3444%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.0708 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [6.3203 ms 6.3278 ms 6.3366 ms]
                        change: [−0.8447% −0.6136% −0.3836%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  3 (3.00%) high mild
  7 (7.00%) high severe
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.1127 s (2400 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.1266 ms 2.1310 ms 2.1355 ms]
                        change: [−2.0117% −1.7245% −1.4348%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.1250 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2119 ms 1.2123 ms 1.2127 ms]
                        change: [+0.3887% +0.4359% +0.4777%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.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.1267 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2121 ms 1.2125 ms 1.2129 ms]
                        change: [+0.5038% +0.5405% +0.5759%] (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.4290 s (1000 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.4304 ms 5.4335 ms 5.4379 ms]
                        change: [−0.0978% +0.0248% +0.1425%] (p = 0.69 > 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 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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Collecting 100 samples in estimated 7.6208 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5091 ms 1.5115 ms 1.5140 ms]
                        change: [+0.2222% +0.5087% +0.8032%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) low mild
  3 (3.00%) high mild

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.6083 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.3062 ms 1.3069 ms 1.3076 ms]
                        change: [+0.3528% +0.4220% +0.4842%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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 6.9307 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [683.46 µs 684.48 µs 685.66 µs]
                        change: [−0.3214% −0.0453% +0.2306%] (p = 0.75 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high 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.0599 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [22.600 µs 22.621 µs 22.642 µs]
                        change: [−2.5283% −2.4097% −2.2892%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0587 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [22.653 µs 22.673 µs 22.693 µs]
                        change: [−2.5043% −2.3741% −2.2491%] (p = 0.00 < 0.05)
                        Performance has improved.

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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.2679 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6328 ms 1.6337 ms 1.6345 ms]
                        change: [+0.3639% +0.4167% +0.4723%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2888 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [519.16 µs 520.16 µs 521.25 µs]
                        change: [−1.1885% −0.8886% −0.5883%] (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 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.7633 s (700 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.2308 ms 8.2395 ms 8.2488 ms]
                        change: [−0.2855% −0.1188% +0.0414%] (p = 0.16 > 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 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.4128 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.4105 ms 5.4131 ms 5.4160 ms]
                        change: [+0.4962% +0.5650% +0.6320%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) high mild
  1 (1.00%) high severe

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.4939 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [544.13 µs 544.85 µs 545.59 µs]
                        change: [+0.0994% +0.2157% +0.3221%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.4489 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [640.31 µs 642.04 µs 644.04 µs]
                        change: [−1.2044% −0.7480% −0.2689%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  1 (1.00%) low mild
  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.1682 s (2200 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.3472 ms 2.3488 ms 2.3506 ms]
                        change: [+0.3767% +0.4830% +0.5787%] (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 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.1320 s (1900 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.7049 ms 2.7078 ms 2.7108 ms]
                        change: [+0.2861% +0.4520% +0.6153%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.3533 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [7.6269 ms 7.6384 ms 7.6520 ms]
                        change: [−1.0017% −0.7958% −0.5714%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  3 (3.00%) high mild
  6 (6.00%) high severe
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.2156 s (1500 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.4697 ms 3.4746 ms 3.4796 ms]
                        change: [−0.6626% −0.4603% −0.2483%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.3257 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2531 ms 1.2541 ms 1.2551 ms]
                        change: [+0.5992% +0.6707% +0.7398%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 6.8913 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [684.16 µs 685.46 µs 686.91 µs]
                        change: [−1.3070% −0.9970% −0.7217%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high 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.4426 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [267.89 µs 268.20 µs 268.50 µs]
                        change: [−1.6387% −1.5162% −1.4057%] (p = 0.00 < 0.05)
                        Performance has improved.
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.4073 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [319.76 µs 321.09 µs 322.56 µs]
                        change: [−0.5903% +0.0650% +0.7228%] (p = 0.84 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild

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.1528 s (1600 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.1865 ms 3.1890 ms 3.1916 ms]
                        change: [−0.5196% −0.4284% −0.3288%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 9.6584 s (5050 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [1.9205 ms 1.9238 ms 1.9272 ms]
                        change: [−2.6269% −2.3806% −2.1458%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2343 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [411.31 µs 411.53 µs 411.73 µs]
                        change: [−1.2161% −1.1577% −1.0981%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.2404 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [411.66 µs 411.87 µs 412.06 µs]
                        change: [−1.1281% −1.0765% −1.0212%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.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.6272 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [278.35 µs 278.68 µs 278.99 µs]
                        change: [−1.6211% −1.4738% −1.3337%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0355 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [392.85 µs 395.94 µs 399.35 µs]
                        change: [−7.1996% −5.6748% −4.1774%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low mild
  2 (2.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.0038 s (6.1M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [835.89 ns 838.31 ns 840.88 ns]
                        change: [−14.017% −13.708% −13.379%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0016 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [834.39 ns 836.77 ns 839.26 ns]
                        change: [−14.120% −13.809% −13.499%] (p = 0.00 < 0.05)
                        Performance has improved.

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.4450 s (1000 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.5926 ms 5.6094 ms 5.6259 ms]
                        change: [+6.4004% +6.6914% +6.9920%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.0235 s (1900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.6357 ms 2.6398 ms 2.6439 ms]
                        change: [+0.5453% +0.7771% +1.0134%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.2808 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.5512 ms 6.5648 ms 6.5782 ms]
                        change: [+3.5847% +3.7972% +4.0351%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0992 s (1900 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.6926 ms 2.6952 ms 2.6980 ms]
                        change: [+0.3608% +0.4872% +0.6192%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3565 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [131.81 µs 131.97 µs 132.11 µs]
                        change: [−1.1329% −1.0161% −0.8973%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3583 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [131.84 µs 132.00 µs 132.15 µs]
                        change: [−1.1456% −1.0304% −0.9042%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.0339 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.1481 ms 3.1499 ms 3.1517 ms]
                        change: [+0.7414% +0.8075% +0.8786%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0679 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.7955 ms 1.7965 ms 1.7974 ms]
                        change: [−0.1006% −0.0069% +0.0853%] (p = 0.89 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.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.6540 s (600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [9.4147 ms 9.4411 ms 9.4695 ms]
                        change: [−0.5444% −0.1917% +0.1727%] (p = 0.31 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  8 (8.00%) high mild
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.2384 s (1700 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.0671 ms 3.0739 ms 3.0807 ms]
                        change: [−0.9069% −0.5894% −0.2625%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1759 s (1900 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7268 ms 2.7283 ms 2.7299 ms]
                        change: [+0.5345% +0.5970% +0.6543%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2395 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6277 ms 1.6293 ms 1.6309 ms]
                        change: [−0.4908% −0.3528% −0.2088%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.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.1680 s (1700 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.0379 ms 3.0391 ms 3.0403 ms]
                        change: [−0.1680% −0.0992% −0.0381%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.2073 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2287 ms 1.2302 ms 1.2318 ms]
                        change: [−0.3699% −0.0687% +0.3137%] (p = 0.70 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  1 (1.00%) high mild
  1 (1.00%) high severe

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.3221 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [921.08 µs 921.88 µs 922.60 µs]
                        change: [−1.9651% −1.8602% −1.7377%] (p = 0.00 < 0.05)
                        Performance has improved.
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.1932 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [910.58 µs 912.19 µs 913.84 µs]
                        change: [−4.0287% −3.7706% −3.5270%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.0830 s (2100 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.4206 ms 2.4213 ms 2.4221 ms]
                        change: [+0.2744% +0.3191% +0.3607%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) low mild
  1 (1.00%) high mild
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 6.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Collecting 100 samples in estimated 6.9297 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.3735 ms 1.3757 ms 1.3781 ms]
                        change: [−0.5181% −0.2566% −0.0175%] (p = 0.05 > 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 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.1642 s (1600 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.2338 ms 3.2358 ms 3.2377 ms]
                        change: [+0.3828% +0.4585% +0.5346%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0685 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.3979 ms 1.4003 ms 1.4028 ms]
                        change: [−0.2032% +0.0960% +0.3702%] (p = 0.51 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low severe
  2 (2.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.6509 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [160.06 µs 160.25 µs 160.43 µs]
                        change: [−0.2883% −0.1832% −0.0771%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6517 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [160.05 µs 160.24 µs 160.41 µs]
                        change: [−0.3041% −0.1948% −0.0907%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1504 s (2000 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.5725 ms 2.5732 ms 2.5739 ms]
                        change: [+0.6864% +0.7242% +0.7584%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) low mild
  1 (1.00%) high mild
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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Collecting 100 samples in estimated 5.4188 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0732 ms 1.0755 ms 1.0777 ms]
                        change: [−0.5127% +0.0253% +0.5728%] (p = 0.93 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
  2 (2.00%) high severe

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.1213 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.3223 ms 7.3287 ms 7.3370 ms]
                        change: [−0.6258% −0.4130% −0.2058%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  6 (6.00%) high mild
  2 (2.00%) high severe
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.2669 s (1600 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.2829 ms 3.2893 ms 3.2959 ms]
                        change: [−0.3040% −0.0342% +0.2249%] (p = 0.80 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.5698 s (5050 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.8936 ms 1.8951 ms 1.8968 ms]
                        change: [+0.3385% +0.4019% +0.4680%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.2740 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [916.88 µs 918.31 µs 919.83 µs]
                        change: [−0.5671% −0.2315% +0.0827%] (p = 0.17 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low severe
  2 (2.00%) low mild
  2 (2.00%) high 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.2496 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [5.8125 ms 5.8206 ms 5.8298 ms]
                        change: [+0.7975% +0.9625% +1.1312%] (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 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.1116 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.5601 ms 2.5627 ms 2.5653 ms]
                        change: [+0.2165% +0.3629% +0.5120%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.1597 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.8131 ms 1.8144 ms 1.8156 ms]
                        change: [+1.2723% +1.3491% +1.4211%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.6793 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [861.47 µs 864.38 µs 867.72 µs]
                        change: [−0.3823% +0.1749% +0.7701%] (p = 0.55 > 0.05)
                        No change in performance detected.
Found 15 outliers among 100 measurements (15.00%)
  15 (15.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.3153 s (1100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [4.8153 ms 4.8274 ms 4.8396 ms]
                        change: [+2.7766% +3.0505% +3.3430%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1939 s (2100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.4739 ms 2.4779 ms 2.4818 ms]
                        change: [+1.1715% +1.4199% +1.6830%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.7566 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.553 ms 11.563 ms 11.574 ms]
                        change: [+4.4910% +4.5851% +4.6815%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.3138 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.8163 ms 4.8193 ms 4.8224 ms]
                        change: [+0.1082% +0.1913% +0.2810%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.2072 s (1100 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [4.7341 ms 4.7361 ms 4.7382 ms]
                        change: [+0.5597% +0.6035% +0.6482%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.1098 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.4007 ms 3.4027 ms 3.4047 ms]
                        change: [+0.4470% +0.5260% +0.6099%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  2 (2.00%) low mild
  4 (4.00%) high mild
  1 (1.00%) high severe

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.3300 s (1300 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.1049 ms 4.1090 ms 4.1139 ms]
                        change: [+0.7004% +0.7988% +0.9377%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) high mild
  5 (5.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.6759 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5142 ms 1.5166 ms 1.5191 ms]
                        change: [−0.3981% +0.0205% +0.4405%] (p = 0.92 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low severe
  2 (2.00%) low mild
  2 (2.00%) high mild
  1 (1.00%) high severe

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.6632 s (800 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.0658 ms 7.0688 ms 7.0719 ms]
                        change: [+0.4608% +0.5386% +0.6102%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  8 (8.00%) high mild
  1 (1.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.3785 s (1400 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.8511 ms 3.8629 ms 3.8747 ms]
                        change: [+1.2274% +1.6288% +2.0564%] (p = 0.00 < 0.05)
                        Performance has regressed.

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 40.
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Collecting 100 samples in estimated 9.9128 s (5050 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [1.9639 ms 1.9653 ms 1.9666 ms]
                        change: [+0.1503% +0.1920% +0.2360%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2633 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [914.29 µs 915.98 µs 917.84 µs]
                        change: [−2.1201% −1.8190% −1.5231%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0243 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [395.87 µs 396.18 µs 396.46 µs]
                        change: [−2.3449% −2.2440% −2.1333%] (p = 0.00 < 0.05)
                        Performance has improved.
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 7.2619 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [477.77 µs 479.10 µs 480.50 µs]
                        change: [−3.5824% −3.2168% −2.8552%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.4857 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.4840 ms 1.4844 ms 1.4849 ms]
                        change: [+0.5439% +0.5812% +0.6187%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low mild
  4 (4.00%) high mild
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.5215 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.4887 ms 1.4891 ms 1.4895 ms]
                        change: [+0.8235% +0.8568% +0.8905%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild

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.0277 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [82.932 µs 82.971 µs 83.007 µs]
                        change: [−0.4688% −0.4175% −0.3620%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0258 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [82.940 µs 82.979 µs 83.015 µs]
                        change: [−0.5096% −0.4576% −0.4089%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.0825 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.3975 ms 1.3990 ms 1.4002 ms]
                        change: [−0.8236% −0.7190% −0.6209%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0946 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.3998 ms 1.4014 ms 1.4028 ms]
                        change: [−0.3807% −0.2764% −0.1739%] (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.0983 s (900 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [5.6274 ms 5.6464 ms 5.6685 ms]
                        change: [+1.0271% +1.3761% +1.8164%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  8 (8.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
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Collecting 100 samples in estimated 5.1588 s (2600 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [1.9842 ms 1.9872 ms 1.9903 ms]
                        change: [−0.8452% −0.5736% −0.2991%] (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.0090 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.3895 µs 2.3906 µs 2.3917 µs]
                        change: [−5.5735% −5.4475% −5.3280%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 12 outliers among 100 measurements (12.00%)
  12 (12.00%) high mild
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.0116 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.3905 µs 2.3915 µs 2.3926 µs]
                        change: [−5.4246% −5.3104% −5.1933%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 17 outliers among 100 measurements (17.00%)
  1 (1.00%) low mild
  16 (16.00%) high mild

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.1722 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [5.7207 ms 5.7273 ms 5.7351 ms]
                        change: [−1.9488% −1.5777% −1.2210%] (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 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.0965 s (2300 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.2253 ms 2.2292 ms 2.2333 ms]
                        change: [−2.0611% −1.7675% −1.4779%] (p = 0.00 < 0.05)
                        Performance has improved.
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.6404 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [371.59 µs 371.81 µs 372.01 µs]
                        change: [+2.5533% +2.6173% +2.6730%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.6437 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [372.41 µs 372.62 µs 372.82 µs]
                        change: [+2.8983% +2.9549% +3.0134%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  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.2083 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [10.340 ms 10.363 ms 10.387 ms]
                        change: [−7.6044% −7.3348% −7.0505%] (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.0131 s (1500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.3342 ms 3.3385 ms 3.3430 ms]
                        change: [−2.0509% −1.8292% −1.6096%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2775 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.412 µs 65.461 µs 65.503 µs]
                        change: [−0.5011% −0.4312% −0.3611%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2779 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.420 µs 65.468 µs 65.512 µs]
                        change: [−0.5302% −0.4671% −0.3961%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1270 s (1200 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.2704 ms 4.2775 ms 4.2857 ms]
                        change: [−7.1878% −6.9895% −6.7490%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 11 outliers among 100 measurements (11.00%)
  4 (4.00%) high mild
  7 (7.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.0770 s (2400 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1111 ms 2.1142 ms 2.1175 ms]
                        change: [−2.5810% −2.3462% −2.1151%] (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.7880 s (700 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.2633 ms 8.2711 ms 8.2796 ms]
                        change: [−3.1638% −3.0676% −2.9560%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 12 outliers among 100 measurements (12.00%)
  5 (5.00%) high mild
  7 (7.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.2287 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8079 ms 5.8114 ms 5.8153 ms]
                        change: [−0.8243% −0.7516% −0.6740%] (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 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.0196 s (1000 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [4.9854 ms 4.9896 ms 4.9942 ms]
                        change: [−9.3524% −9.1563% −8.9543%] (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 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.1529 s (2500 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.0693 ms 2.0730 ms 2.0769 ms]
                        change: [−3.7367% −3.4201% −3.1042%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high 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.2769 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.5439 ms 7.5518 ms 7.5612 ms]
                        change: [−3.7820% −3.6569% −3.5289%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 13 outliers among 100 measurements (13.00%)
  5 (5.00%) high mild
  8 (8.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.2708 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.7868 ms 4.7889 ms 4.7912 ms]
                        change: [−1.0286% −0.9561% −0.8831%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.3991 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [534.37 µs 534.77 µs 535.15 µs]
                        change: [−1.9825% −1.8778% −1.7780%] (p = 0.00 < 0.05)
                        Performance has improved.
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.6222 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [371.31 µs 372.48 µs 373.78 µs]
                        change: [−3.6709% −3.1246% −2.5856%] (p = 0.00 < 0.05)
                        Performance has improved.

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.3802 s (900 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [5.9738 ms 5.9826 ms 5.9924 ms]
                        change: [−9.8083% −9.6497% −9.4874%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 15 outliers among 100 measurements (15.00%)
  8 (8.00%) high mild
  7 (7.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.1327 s (2200 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.3325 ms 2.3384 ms 2.3444 ms]
                        change: [−7.1021% −6.7057% −6.2971%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.1770 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2250 ms 1.2261 ms 1.2272 ms]
                        change: [−0.2844% −0.2156% −0.1497%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 60.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 6.8954 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.3663 ms 1.3692 ms 1.3721 ms]
                        change: [−2.3127% −1.9609% −1.6183%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low severe
  1 (1.00%) low mild
  2 (2.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.4850 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [108.68 µs 108.77 µs 108.85 µs]
                        change: [−0.3239% −0.2648% −0.1958%] (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.4827 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.63 µs 108.72 µs 108.80 µs]
                        change: [−0.4425% −0.3783% −0.3125%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1526 s (500 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [10.317 ms 10.347 ms 10.377 ms]
                        change: [−3.7240% −3.4275% −3.1575%] (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.2004 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [3.9955 ms 4.0020 ms 4.0087 ms]
                        change: [−3.0269% −2.7698% −2.5118%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.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.0086 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [792.19 µs 792.92 µs 793.65 µs]
                        change: [−0.4847% −0.4119% −0.3392%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.3642 s (15k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [485.03 µs 485.94 µs 486.93 µs]
                        change: [−2.0762% −1.7417% −1.4422%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2874 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [622.99 µs 623.50 µs 624.03 µs]
                        change: [+0.2456% +0.3191% +0.3952%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 5.9281 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [389.19 µs 389.77 µs 390.36 µs]
                        change: [−2.4302% −2.2159% −1.9928%] (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 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.2304 s (1900 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.7280 ms 2.7294 ms 2.7309 ms]
                        change: [−5.5482% −5.2532% −4.9488%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.1669 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.0354 ms 3.0384 ms 3.0414 ms]
                        change: [−7.5560% −7.3238% −7.0919%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.0909 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.2913 ms 2.2935 ms 2.2956 ms]
                        change: [−10.994% −10.494% −10.003%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0738 s (2500 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.0234 ms 2.0258 ms 2.0282 ms]
                        change: [−10.360% −10.096% −9.8314%] (p = 0.00 < 0.05)
                        Performance has improved.

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.0006 s (500 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [11.986 ms 12.010 ms 12.039 ms]
                        change: [−7.8941% −7.6827% −7.4626%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 11 outliers among 100 measurements (11.00%)
  2 (2.00%) high mild
  9 (9.00%) high severe
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.0037 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.2725 ms 6.2776 ms 6.2828 ms]
                        change: [−4.4929% −4.3769% −4.2687%] (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.1974 s (1900 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.7355 ms 2.7366 ms 2.7376 ms]
                        change: [−4.7772% −4.5127% −4.2503%] (p = 0.00 < 0.05)
                        Performance has improved.
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.1471 s (1600 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.2192 ms 3.2241 ms 3.2294 ms]
                        change: [−4.0334% −3.7407% −3.4360%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.0272 s (1800 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [2.7928 ms 2.7940 ms 2.7954 ms]
                        change: [−3.8078% −3.5504% −3.2979%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 8 outliers among 100 measurements (8.00%)
  7 (7.00%) high mild
  1 (1.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 8.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Collecting 100 samples in estimated 8.9368 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.7719 ms 1.7739 ms 1.7757 ms]
                        change: [−1.0935% −0.9034% −0.7126%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
  2 (2.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.5180 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [547.42 µs 547.81 µs 548.19 µs]
                        change: [+0.6137% +0.6799% +0.7531%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.5174 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [547.69 µs 548.07 µs 548.43 µs]
                        change: [+0.6139% +0.6856% +0.7675%] (p = 0.00 < 0.05)
                        Change within noise threshold.

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit 0f8052a

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 41.66s
     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.4s, or reduce sample count to 90.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.3581 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [54.028 ms 54.117 ms 54.211 ms]
                        change: [−2.8779% −2.6429% −2.3807%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.1069 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [45.614 ms 46.186 ms 46.763 ms]
                        change: [−1.9422% −0.3706% +1.1793%] (p = 0.65 > 0.05)
                        No change in performance detected.

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.2s, or reduce sample count to 30.
Benchmarking Independent ERC20/Sequential: Collecting 100 samples in estimated 16.172 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [162.94 ms 163.32 ms 163.70 ms]
                        change: [−0.7870% −0.4728% −0.1770%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1s, or reduce sample count to 90.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.1487 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [51.360 ms 51.846 ms 52.331 ms]
                        change: [−5.0305% −3.6153% −2.1761%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.2s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 45.201 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [467.45 ms 468.36 ms 469.28 ms]
                        change: [−0.3230% −0.0514% +0.2378%] (p = 0.71 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  4 (4.00%) low mild
  2 (2.00%) high 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.0368 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.090 ms 25.125 ms 25.159 ms]
                        change: [−0.4809% −0.2780% −0.0709%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit 0f8052a
Report:
Baseline main:

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

This pr:

Average: x1.94
Max: x3.96
Min: x0.7
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 49.24s
     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.2274 s (1100 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [4.7441 ms 4.7450 ms 4.7459 ms]
                        change: [−0.5803% −0.3941% −0.2290%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0298 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.5316 ms 3.5924 ms 3.6524 ms]
                        change: [−3.3851% −0.6454% +2.3515%] (p = 0.66 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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 6.6250 s (400 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [16.564 ms 16.581 ms 16.599 ms]
                        change: [−3.6369% −3.4096% −3.1841%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.3121 s (1200 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.3321 ms 4.3532 ms 4.3745 ms]
                        change: [−1.2618% −0.5937% +0.0428%] (p = 0.08 > 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.3723 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [132.49 µs 132.59 µs 132.69 µs]
                        change: [−2.1967% −2.1181% −2.0422%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3879 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [132.54 µs 132.65 µs 132.74 µs]
                        change: [−1.9963% −1.9141% −1.8350%] (p = 0.00 < 0.05)
                        Performance has improved.

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.6312 s (600 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [9.3825 ms 9.3866 ms 9.3910 ms]
                        change: [−2.4328% −2.2287% −2.0343%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
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.0616 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.2313 ms 4.2388 ms 4.2466 ms]
                        change: [−0.3183% −0.0452% +0.2182%] (p = 0.74 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high 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.2508 s (1100 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [4.7659 ms 4.7672 ms 4.7685 ms]
                        change: [−3.0587% −2.6098% −2.1781%] (p = 0.00 < 0.05)
                        Performance has improved.
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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Collecting 100 samples in estimated 7.6959 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.5460 ms 1.5530 ms 1.5612 ms]
                        change: [−0.2355% +0.4463% +1.1209%] (p = 0.18 > 0.05)
                        No change in performance detected.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.1797 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6168 ms 1.6172 ms 1.6177 ms]
                        change: [+0.7044% +0.7429% +0.7819%] (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 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 7.4036 s (15k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [492.03 µs 494.03 µs 496.38 µs]
                        change: [−0.7935% −0.2773% +0.2284%] (p = 0.29 > 0.05)
                        No change in performance detected.
Found 10 outliers among 100 measurements (10.00%)
  10 (10.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.3406 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [7.6312 ms 7.6326 ms 7.6341 ms]
                        change: [−0.0225% +0.0403% +0.0953%] (p = 0.19 > 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 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.0061 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.5475 ms 4.5493 ms 4.5512 ms]
                        change: [−0.1975% −0.1258% −0.0561%] (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.5874 s (700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [7.9647 ms 7.9690 ms 7.9739 ms]
                        change: [−0.2507% −0.1633% −0.0741%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) high mild
  3 (3.00%) high severe
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.2119 s (1700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.0763 ms 3.0903 ms 3.1042 ms]
                        change: [−0.8031% −0.1905% +0.4652%] (p = 0.55 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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 5.8136 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [14.512 ms 14.530 ms 14.550 ms]
                        change: [−0.5688% −0.3298% −0.0888%] (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 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.4366 s (1000 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.4461 ms 5.4576 ms 5.4690 ms]
                        change: [+0.4740% +0.7527% +1.0471%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Collecting 100 samples in estimated 9.3736 s (5050 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [1.8413 ms 1.8432 ms 1.8450 ms]
                        change: [−1.9494% −1.8421% −1.7305%] (p = 0.00 < 0.05)
                        Performance has improved.
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.1585 s (2600 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [2.0022 ms 2.0060 ms 2.0099 ms]
                        change: [−0.8660% −0.5657% −0.2645%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild

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 305.2s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 305.23 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [12.843 ms 12.861 ms 12.881 ms]
                        change: [−1.8011% −1.5938% −1.3744%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  4 (4.00%) high mild
  2 (2.00%) high severe
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.0459 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.3140 ms 6.3180 ms 6.3221 ms]
                        change: [−0.0090% +0.0923% +0.1972%] (p = 0.08 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.1783 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4148 ms 1.4157 ms 1.4166 ms]
                        change: [−0.1724% −0.0646% +0.0343%] (p = 0.22 > 0.05)
                        No change in performance detected.
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.1882 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2369 ms 1.2415 ms 1.2466 ms]
                        change: [+1.6900% +2.0473% +2.4006%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.1999 s (1600 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.2440 ms 3.2445 ms 3.2450 ms]
                        change: [+0.2585% +0.2823% +0.3051%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.2449 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [818.46 µs 819.47 µs 820.54 µs]
                        change: [−0.2919% −0.1227% +0.0462%] (p = 0.16 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.4695 s (1000 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.4677 ms 5.4689 ms 5.4702 ms]
                        change: [−0.5387% −0.4412% −0.3573%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.0853 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.1718 ms 3.1837 ms 3.1955 ms]
                        change: [−0.0137% +0.4647% +0.9412%] (p = 0.06 > 0.05)
                        No change in performance detected.

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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Collecting 100 samples in estimated 9.5604 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.8876 ms 1.8883 ms 1.8890 ms]
                        change: [+0.0361% +0.0796% +0.1251%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.3624 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4562 ms 1.4568 ms 1.4573 ms]
                        change: [+0.8930% +0.9858% +1.0719%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.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.1062 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.3784 ms 6.3800 ms 6.3817 ms]
                        change: [+0.2216% +0.2507% +0.2841%] (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 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.6265 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.0192 ms 7.0220 ms 7.0248 ms]
                        change: [−0.0531% +0.0154% +0.0810%] (p = 0.66 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.3987 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [10.795 ms 10.806 ms 10.820 ms]
                        change: [+0.4545% +0.5996% +0.7485%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 12 outliers among 100 measurements (12.00%)
  9 (9.00%) high mild
  3 (3.00%) high severe
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.1538 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.6669 ms 3.6735 ms 3.6801 ms]
                        change: [−0.1291% +0.1372% +0.4107%] (p = 0.33 > 0.05)
                        No change in performance detected.

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.1005 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.523 µs 59.600 µs 59.683 µs]
                        change: [+0.0050% +0.0865% +0.1745%] (p = 0.04 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.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.0980 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.315 µs 59.334 µs 59.352 µs]
                        change: [−0.2924% −0.2618% −0.2300%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1177 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4314 ms 2.4318 ms 2.4322 ms]
                        change: [+0.1863% +0.2534% +0.3114%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.1193 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4331 ms 2.4335 ms 2.4340 ms]
                        change: [+0.1133% +0.1930% +0.2591%] (p = 0.00 < 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.1674 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [707.64 µs 708.14 µs 708.61 µs]
                        change: [−2.4889% −2.4085% −2.3251%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.3232 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [822.86 µs 825.65 µs 828.90 µs]
                        change: [−2.4491% −2.0537% −1.6770%] (p = 0.00 < 0.05)
                        Performance has improved.

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.0620 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [6.3420 ms 6.3477 ms 6.3538 ms]
                        change: [−0.5277% −0.3012% −0.0978%] (p = 0.01 < 0.05)
                        Change within noise threshold.
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.1449 s (2400 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.1561 ms 2.1615 ms 2.1672 ms]
                        change: [−0.6342% −0.3162% +0.0154%] (p = 0.06 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.0995 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2066 ms 1.2069 ms 1.2072 ms]
                        change: [−0.0666% −0.0217% +0.0196%] (p = 0.33 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
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.1239 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2105 ms 1.2108 ms 1.2111 ms]
                        change: [+0.3782% +0.4264% +0.4709%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) high mild
  3 (3.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.5428 s (1000 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.5030 ms 5.5172 ms 5.5314 ms]
                        change: [+1.2587% +1.5657% +1.8395%] (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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Collecting 100 samples in estimated 7.6272 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5114 ms 1.5143 ms 1.5173 ms]
                        change: [+0.5112% +0.8363% +1.1756%] (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 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.6003 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.3040 ms 1.3047 ms 1.3054 ms]
                        change: [+0.2110% +0.2614% +0.3074%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 6.9025 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [683.75 µs 685.08 µs 686.53 µs]
                        change: [−0.5246% −0.2040% +0.1583%] (p = 0.23 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high severe

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.0224 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [22.492 µs 22.516 µs 22.537 µs]
                        change: [−2.9240% −2.8422% −2.7631%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0255 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [22.495 µs 22.520 µs 22.543 µs]
                        change: [−3.0684% −2.9854% −2.9005%] (p = 0.00 < 0.05)
                        Performance has improved.

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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.2868 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6297 ms 1.6301 ms 1.6306 ms]
                        change: [+0.2987% +0.3606% +0.4210%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  10 (10.00%) high mild
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.2200 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [520.54 µs 521.96 µs 523.60 µs]
                        change: [−0.9471% −0.6234% −0.3061%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  7 (7.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.7407 s (700 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.1936 ms 8.1951 ms 8.1966 ms]
                        change: [−0.7811% −0.6571% −0.5347%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.3816 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.3782 ms 5.3801 ms 5.3820 ms]
                        change: [−0.1046% −0.0480% +0.0100%] (p = 0.11 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.4741 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [540.56 µs 540.83 µs 541.09 µs]
                        change: [−0.5052% −0.4554% −0.4063%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.4485 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [645.80 µs 648.13 µs 650.92 µs]
                        change: [−0.0001% +0.5191% +1.0361%] (p = 0.05 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.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.1472 s (2200 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.3377 ms 2.3389 ms 2.3403 ms]
                        change: [−0.0303% +0.0603% +0.1479%] (p = 0.19 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.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.1439 s (1900 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.6968 ms 2.6991 ms 2.7016 ms]
                        change: [−0.0148% +0.1300% +0.2788%] (p = 0.09 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.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.3030 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [7.5672 ms 7.5705 ms 7.5741 ms]
                        change: [−1.8396% −1.6765% −1.5164%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 7 outliers among 100 measurements (7.00%)
  7 (7.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.1842 s (1500 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.4627 ms 3.4670 ms 3.4713 ms]
                        change: [−0.8721% −0.6768% −0.4888%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.2848 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2421 ms 1.2424 ms 1.2428 ms]
                        change: [−0.1643% −0.1191% −0.0766%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.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 6.8898 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [687.41 µs 688.56 µs 689.88 µs]
                        change: [−0.6996% −0.4329% −0.1565%] (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 severe

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.4110 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [265.62 µs 265.84 µs 266.04 µs]
                        change: [−2.3342% −2.2640% −2.1884%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3829 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [320.25 µs 322.04 µs 324.00 µs]
                        change: [−0.0381% +0.6767% +1.3361%] (p = 0.05 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) high mild

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.1131 s (1600 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.1694 ms 3.1715 ms 3.1736 ms]
                        change: [−1.0501% −0.9767% −0.9018%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 9.5041 s (5050 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [1.8952 ms 1.9009 ms 1.9074 ms]
                        change: [−3.3748% −3.0426% −2.7172%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.1931 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [407.08 µs 407.40 µs 407.71 µs]
                        change: [−2.2101% −2.1300% −2.0492%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.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.1790 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [406.87 µs 407.17 µs 407.46 µs]
                        change: [−2.2007% −2.1180% −2.0131%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.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.5835 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [275.34 µs 275.63 µs 275.89 µs]
                        change: [−2.4582% −2.3720% −2.2870%] (p = 0.00 < 0.05)
                        Performance has improved.
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 5.9475 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [390.73 µs 393.18 µs 395.63 µs]
                        change: [−7.9686% −6.3902% −4.9259%] (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 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.0014 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [841.31 ns 843.92 ns 846.65 ns]
                        change: [−13.510% −13.177% −12.840%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0033 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [839.27 ns 841.86 ns 844.59 ns]
                        change: [−13.675% −13.343% −13.020%] (p = 0.00 < 0.05)
                        Performance has improved.

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.4030 s (1000 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.4245 ms 5.4419 ms 5.4595 ms]
                        change: [+3.1453% +3.5057% +3.8680%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2530 s (2000 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.6224 ms 2.6263 ms 2.6303 ms]
                        change: [+0.0243% +0.2641% +0.4997%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.1701 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.4799 ms 6.4939 ms 6.5083 ms]
                        change: [+2.4581% +2.6766% +2.9156%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1319 s (1900 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.7051 ms 2.7078 ms 2.7106 ms]
                        change: [+0.8282% +0.9575% +1.0903%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.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.3041 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [130.42 µs 130.51 µs 130.59 µs]
                        change: [−2.0237% −1.9634% −1.9069%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3137 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [130.56 µs 130.68 µs 130.79 µs]
                        change: [−1.9261% −1.8553% −1.7833%] (p = 0.00 < 0.05)
                        Performance has improved.

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.0507 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.1469 ms 3.1497 ms 3.1526 ms]
                        change: [+0.6985% +0.8004% +0.9088%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1152 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.8029 ms 1.8039 ms 1.8049 ms]
                        change: [+0.3547% +0.4617% +0.5666%] (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 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.5708 s (600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [9.2636 ms 9.2717 ms 9.2816 ms]
                        change: [−2.2240% −1.9826% −1.7378%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  5 (5.00%) high mild
  1 (1.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.1775 s (1700 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.0661 ms 3.0734 ms 3.0806 ms]
                        change: [−0.9523% −0.6067% −0.2849%] (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 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.1689 s (1900 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7178 ms 2.7183 ms 2.7189 ms]
                        change: [+0.2074% +0.2304% +0.2557%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Collecting 100 samples in estimated 8.1420 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6077 ms 1.6093 ms 1.6110 ms]
                        change: [−1.5965% −1.4687% −1.3314%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2035 s (1700 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.0551 ms 3.0559 ms 3.0567 ms]
                        change: [+0.3914% +0.4532% +0.5084%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.1652 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2237 ms 1.2256 ms 1.2276 ms]
                        change: [−0.7328% −0.5151% −0.3044%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low mild
  3 (3.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.2809 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [914.02 µs 915.00 µs 915.99 µs]
                        change: [−2.5936% −2.5068% −2.4228%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.2853 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [922.69 µs 924.86 µs 927.27 µs]
                        change: [−2.0869% −1.7991% −1.5311%] (p = 0.00 < 0.05)
                        Performance has improved.

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.0663 s (2100 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.4073 ms 2.4077 ms 2.4082 ms]
                        change: [−0.2815% −0.2443% −0.2078%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 6.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Collecting 100 samples in estimated 6.9258 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.3730 ms 1.3754 ms 1.3779 ms]
                        change: [−0.7585% −0.5046% −0.2699%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  2 (2.00%) high mild

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.1782 s (1600 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.2255 ms 3.2267 ms 3.2280 ms]
                        change: [+0.1135% +0.1767% +0.2373%] (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 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.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Collecting 100 samples in estimated 7.0231 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.3898 ms 1.3933 ms 1.3974 ms]
                        change: [−0.4586% −0.1598% +0.1597%] (p = 0.32 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.6340 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [158.97 µs 159.07 µs 159.17 µs]
                        change: [−0.7904% −0.7325% −0.6791%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6325 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [159.05 µs 159.16 µs 159.26 µs]
                        change: [−0.7640% −0.7085% −0.6475%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1694 s (2000 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.5815 ms 2.5836 ms 2.5858 ms]
                        change: [+1.0403% +1.1325% +1.2156%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Collecting 100 samples in estimated 5.4433 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0772 ms 1.0797 ms 1.0825 ms]
                        change: [+0.0206% +0.5264% +1.0124%] (p = 0.04 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high severe

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.2850 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.4377 ms 7.4677 ms 7.4976 ms]
                        change: [+0.9720% +1.4757% +1.9445%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2252 s (1600 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.2662 ms 3.2732 ms 3.2803 ms]
                        change: [−0.8013% −0.5230% −0.2608%] (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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Collecting 100 samples in estimated 9.5440 s (5050 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.8839 ms 1.8843 ms 1.8847 ms]
                        change: [−0.2540% −0.2131% −0.1727%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.1683 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [910.55 µs 912.18 µs 913.99 µs]
                        change: [−0.9586% −0.5934% −0.2296%] (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 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.1914 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [5.7607 ms 5.7617 ms 5.7627 ms]
                        change: [−0.1384% −0.0592% −0.0028%] (p = 0.08 > 0.05)
                        No change in performance detected.
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.0807 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.5478 ms 2.5504 ms 2.5529 ms]
                        change: [−0.2598% −0.1205% +0.0281%] (p = 0.10 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.0233 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.7820 ms 1.7826 ms 1.7831 ms]
                        change: [−0.3686% −0.3198% −0.2770%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.5820 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [861.58 µs 865.23 µs 869.55 µs]
                        change: [−0.1485% +0.4631% +1.1009%] (p = 0.15 > 0.05)
                        No change in performance detected.
Found 17 outliers among 100 measurements (17.00%)
  10 (10.00%) high mild
  7 (7.00%) high severe

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.1335 s (1100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [4.6696 ms 4.6706 ms 4.6716 ms]
                        change: [−0.3880% −0.2972% −0.2196%] (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.1008 s (2100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.4341 ms 2.4384 ms 2.4429 ms]
                        change: [−0.4557% −0.1967% +0.0604%] (p = 0.15 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.5342 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.053 ms 11.057 ms 11.061 ms]
                        change: [−0.0390% +0.0044% +0.0471%] (p = 0.84 > 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 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.2868 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.8098 ms 4.8124 ms 4.8151 ms]
                        change: [−0.0272% +0.0483% +0.1298%] (p = 0.22 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.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.1859 s (1100 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [4.7116 ms 4.7123 ms 4.7130 ms]
                        change: [+0.0731% +0.0966% +0.1188%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.0972 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.3961 ms 3.3977 ms 3.3994 ms]
                        change: [+0.3069% +0.3805% +0.4573%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.3158 s (1300 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.0852 ms 4.0860 ms 4.0868 ms]
                        change: [+0.2082% +0.2357% +0.2624%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) high mild
  1 (1.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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Collecting 100 samples in estimated 7.6011 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5052 ms 1.5075 ms 1.5099 ms]
                        change: [−0.8787% −0.4731% −0.0818%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
  1 (1.00%) high mild
  2 (2.00%) high severe

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.6386 s (800 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.0421 ms 7.0445 ms 7.0470 ms]
                        change: [+0.1198% +0.1930% +0.2609%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) high mild
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.3448 s (1400 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.8060 ms 3.8161 ms 3.8259 ms]
                        change: [+0.0021% +0.3967% +0.7771%] (p = 0.04 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.8649 s (5050 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [1.9529 ms 1.9538 ms 1.9545 ms]
                        change: [−0.4470% −0.4039% −0.3595%] (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 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.2793 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [924.98 µs 927.63 µs 930.81 µs]
                        change: [−0.5428% −0.1955% +0.1661%] (p = 0.26 > 0.05)
                        No change in performance detected.

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 5.9703 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [391.16 µs 391.42 µs 391.65 µs]
                        change: [−3.2944% −3.2078% −3.1246%] (p = 0.00 < 0.05)
                        Performance has improved.
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 7.3041 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [484.74 µs 486.32 µs 488.03 µs]
                        change: [−2.1124% −1.6954% −1.2891%] (p = 0.00 < 0.05)
                        Performance has improved.

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.4604 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.4742 ms 1.4746 ms 1.4750 ms]
                        change: [−0.0025% +0.0433% +0.0870%] (p = 0.06 > 0.05)
                        No change in performance detected.
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.4566 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.4797 ms 1.4802 ms 1.4806 ms]
                        change: [+0.2163% +0.2514% +0.2873%] (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 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.0300 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [83.142 µs 83.173 µs 83.200 µs]
                        change: [−0.2878% −0.2391% −0.1915%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0434 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [82.915 µs 83.030 µs 83.133 µs]
                        change: [−0.6235% −0.5528% −0.4882%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 17 outliers among 100 measurements (17.00%)
  17 (17.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.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Collecting 100 samples in estimated 7.0380 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.3955 ms 1.3970 ms 1.3985 ms]
                        change: [−0.7302% −0.6452% −0.5564%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 7.0496 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.3997 ms 1.4011 ms 1.4026 ms]
                        change: [−0.1726% −0.0853% +0.0100%] (p = 0.07 > 0.05)
                        No change in performance detected.

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.5320 s (1000 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [5.5208 ms 5.5226 ms 5.5244 ms]
                        change: [−0.9082% −0.8465% −0.7881%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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 9.8s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Collecting 100 samples in estimated 9.7771 s (5050 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [1.9545 ms 1.9610 ms 1.9684 ms]
                        change: [−1.7773% −1.3570% −0.8412%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.0114 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.3845 µs 2.3896 µs 2.3942 µs]
                        change: [−5.8960% −5.7438% −5.6034%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.00%) high mild
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.0075 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.3834 µs 2.3888 µs 2.3939 µs]
                        change: [−5.8766% −5.7260% −5.5753%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.00%) high mild

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.1211 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [5.6829 ms 5.6845 ms 5.6860 ms]
                        change: [−2.6615% −2.3139% −1.9856%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0759 s (2300 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.2232 ms 2.2287 ms 2.2343 ms]
                        change: [−2.1180% −1.7914% −1.4281%] (p = 0.00 < 0.05)
                        Performance has improved.

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.4656 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [360.28 µs 360.38 µs 360.47 µs]
                        change: [−0.5856% −0.5302% −0.4794%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) low mild
  5 (5.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.4671 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [359.96 µs 360.10 µs 360.26 µs]
                        change: [−0.5243% −0.4817% −0.4398%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild

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.0848 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [10.154 ms 10.161 ms 10.170 ms]
                        change: [−9.3296% −9.1432% −8.9525%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 10 outliers among 100 measurements (10.00%)
  5 (5.00%) high mild
  5 (5.00%) high severe
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.3127 s (1600 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.3180 ms 3.3223 ms 3.3266 ms]
                        change: [−2.5158% −2.3065% −2.0817%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.2744 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.187 µs 65.212 µs 65.235 µs]
                        change: [−0.7263% −0.6960% −0.6665%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2736 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.216 µs 65.239 µs 65.259 µs]
                        change: [−0.7573% −0.7260% −0.6943%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.0869 s (1200 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.2308 ms 4.2318 ms 4.2329 ms]
                        change: [−8.1144% −7.9828% −7.8503%] (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.0364 s (2400 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1037 ms 2.1067 ms 2.1097 ms]
                        change: [−2.9257% −2.6959% −2.4753%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.7624 s (700 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.2285 ms 8.2302 ms 8.2320 ms]
                        change: [−3.5885% −3.5469% −3.5036%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.2226 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8028 ms 5.8060 ms 5.8095 ms]
                        change: [−0.9221% −0.8443% −0.7722%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.4281 s (1100 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [4.9189 ms 4.9211 ms 4.9237 ms]
                        change: [−10.587% −10.404% −10.215%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.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.1439 s (2500 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.0763 ms 2.0804 ms 2.0847 ms]
                        change: [−3.3942% −3.0737% −2.7667%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.2617 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.5168 ms 7.5186 ms 7.5207 ms]
                        change: [−4.1487% −4.0803% −4.0069%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 8 outliers among 100 measurements (8.00%)
  6 (6.00%) high mild
  2 (2.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.2572 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.7848 ms 4.7868 ms 4.7888 ms]
                        change: [−1.0761% −1.0005% −0.9261%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.3328 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [527.33 µs 527.66 µs 527.96 µs]
                        change: [−3.1708% −3.0846% −2.9984%] (p = 0.00 < 0.05)
                        Performance has improved.
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.5606 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [372.79 µs 374.34 µs 376.09 µs]
                        change: [−3.3676% −2.7848% −2.1945%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 16 outliers among 100 measurements (16.00%)
  14 (14.00%) high mild
  2 (2.00%) high severe

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.3349 s (900 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [5.9133 ms 5.9164 ms 5.9212 ms]
                        change: [−10.743% −10.649% −10.545%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.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.1927 s (2200 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.3546 ms 2.3601 ms 2.3656 ms]
                        change: [−6.2304% −5.8404% −5.4547%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.1961 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2252 ms 1.2258 ms 1.2263 ms]
                        change: [−0.2761% −0.2222% −0.1719%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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 60.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 6.8576 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.3570 ms 1.3600 ms 1.3630 ms]
                        change: [−2.7889% −2.4120% −2.0538%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 10 outliers among 100 measurements (10.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
  6 (6.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.5293 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [109.25 µs 109.34 µs 109.41 µs]
                        change: [−0.0191% +0.0469% +0.1240%] (p = 0.22 > 0.05)
                        No change in performance detected.
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.5147 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.78 µs 108.83 µs 108.87 µs]
                        change: [−0.2795% −0.2457% −0.2144%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.7988 s (600 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [9.6550 ms 9.6604 ms 9.6665 ms]
                        change: [−9.9058% −9.8379% −9.7697%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  3 (3.00%) high mild
  2 (2.00%) high severe
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.1364 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [3.9591 ms 3.9675 ms 3.9760 ms]
                        change: [−3.8884% −3.6094% −3.3133%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.0199 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [791.24 µs 791.50 µs 791.77 µs]
                        change: [−0.5174% −0.4607% −0.4085%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3671 s (15k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [487.75 µs 488.72 µs 489.85 µs]
                        change: [−1.4580% −1.1114% −0.7531%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) low mild
  5 (5.00%) high mild
  1 (1.00%) high severe

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.2724 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [623.92 µs 624.03 µs 624.14 µs]
                        change: [+0.1075% +0.1592% +0.2064%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 5.8232 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [384.67 µs 385.10 µs 385.58 µs]
                        change: [−3.5599% −3.3839% −3.1953%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe

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.1475 s (1900 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.7077 ms 2.7085 ms 2.7094 ms]
                        change: [−6.2696% −5.9782% −5.6798%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low mild
  3 (3.00%) high mild
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.1498 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.0296 ms 3.0324 ms 3.0352 ms]
                        change: [−7.7321% −7.5079% −7.2710%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low mild
  3 (3.00%) high mild

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.0642 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.2797 ms 2.2816 ms 2.2835 ms]
                        change: [−11.449% −10.957% −10.467%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.0720 s (2400 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.1254 ms 2.1285 ms 2.1317 ms]
                        change: [−5.8322% −5.5359% −5.2412%] (p = 0.00 < 0.05)
                        Performance has improved.

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 5.9749 s (500 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [11.942 ms 11.954 ms 11.969 ms]
                        change: [−8.2343% −8.1084% −7.9770%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 13 outliers among 100 measurements (13.00%)
  11 (11.00%) high mild
  2 (2.00%) high severe
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.6206 s (900 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.2740 ms 6.2786 ms 6.2834 ms]
                        change: [−4.4673% −4.3609% −4.2519%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild

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.1575 s (1900 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.7116 ms 2.7122 ms 2.7128 ms]
                        change: [−5.6223% −5.3627% −5.1035%] (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.1273 s (1600 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.1888 ms 3.1933 ms 3.1979 ms]
                        change: [−4.9565% −4.6583% −4.3695%] (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.0091 s (1800 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [2.7798 ms 2.7804 ms 2.7811 ms]
                        change: [−4.2684% −4.0183% −3.7697%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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 8.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Collecting 100 samples in estimated 8.9124 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.7652 ms 1.7671 ms 1.7692 ms]
                        change: [−1.5335% −1.3253% −1.1198%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low 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.5354 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [547.69 µs 547.83 µs 547.96 µs]
                        change: [+0.6917% +0.7198% +0.7471%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.5383 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [548.15 µs 548.29 µs 548.43 µs]
                        change: [+0.7331% +0.7677% +0.8023%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

@duyquang6

Copy link
Copy Markdown
Contributor Author

benchmark

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit d52bd51

Detail
   Compiling tikv-jemalloc-sys v0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7
   Compiling revm-handler v18.1.0 (/home/rise-bot/pevm/crates/revm-handler)
   Compiling revm-inspector v19.0.0
   Compiling revm v38.0.0
   Compiling op-revm v19.0.0
   Compiling revme v15.0.0
   Compiling tikv-jemallocator v0.6.1
   Compiling pevm v0.1.0 (/home/rise-bot/pevm/crates/pevm)
    Finished `bench` profile [optimized] target(s) in 48.21s
     Running benches/gigagas.rs (target/release/deps/gigagas-7aab4c4652b4675b)
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.4s, or reduce sample count to 90.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.4281 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [54.414 ms 54.519 ms 54.626 ms]
                        change: [−2.1739% −1.9207% −1.6488%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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 8.8500 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [45.395 ms 45.813 ms 46.238 ms]
                        change: [−2.4816% −1.1759% +0.1238%] (p = 0.09 > 0.05)
                        No change in performance detected.

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.0s, or reduce sample count to 30.
Benchmarking Independent ERC20/Sequential: Collecting 100 samples in estimated 16.037 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [161.97 ms 162.31 ms 162.64 ms]
                        change: [−1.3752% −1.0902% −0.8179%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1s, or reduce sample count to 90.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.1105 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [51.331 ms 51.877 ms 52.423 ms]
                        change: [−5.0582% −3.5577% −2.0247%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild

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.2s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 45.185 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [469.42 ms 469.88 ms 470.33 ms]
                        change: [+0.0515% +0.2723% +0.4957%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high 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.0090 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.054 ms 25.096 ms 25.140 ms]
                        change: [−0.6199% −0.3912% −0.1546%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit d52bd51
Report:
Baseline main:

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

This pr:

Average: x1.95
Max: x4.02
Min: x0.7
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 49.14s
     Running benches/mainnet.rs (target/release/deps/mainnet-4809e91b3393603f)
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.4366 s (1100 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [4.8215 ms 4.8326 ms 4.8442 ms]
                        change: [+1.1601% +1.4450% +1.7337%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.0821 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.4913 ms 3.5645 ms 3.6371 ms]
                        change: [−4.4404% −1.4163% +1.6551%] (p = 0.37 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.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.2451 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [17.455 ms 17.474 ms 17.492 ms]
                        change: [+1.5605% +1.7912% +2.0306%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) low 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.2348 s (1200 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.3227 ms 4.3448 ms 4.3670 ms]
                        change: [−1.4397% −0.7841% −0.1396%] (p = 0.02 < 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 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.3655 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [133.77 µs 134.09 µs 134.39 µs]
                        change: [−1.4027% −1.2697% −1.1298%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3653 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [133.69 µs 134.02 µs 134.33 µs]
                        change: [−1.4292% −1.2836% −1.1217%] (p = 0.00 < 0.05)
                        Performance has improved.

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.7946 s (600 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [9.8747 ms 9.9033 ms 9.9306 ms]
                        change: [+2.7982% +3.1531% +3.4925%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1068 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.2586 ms 4.2661 ms 4.2737 ms]
                        change: [+0.3269% +0.5976% +0.8664%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.3470 s (1100 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [4.8432 ms 4.8492 ms 4.8557 ms]
                        change: [−1.4065% −0.9346% −0.4768%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.9250 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.5571 ms 1.5631 ms 1.5700 ms]
                        change: [+0.4273% +1.0362% +1.6281%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 17 outliers among 100 measurements (17.00%)
  16 (16.00%) high mild
  1 (1.00%) high severe

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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.1957 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6185 ms 1.6194 ms 1.6202 ms]
                        change: [+0.8462% +0.8947% +0.9403%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.0339 s (10k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [500.02 µs 501.50 µs 503.20 µs]
                        change: [+0.3580% +0.8211% +1.2799%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  2 (2.00%) low mild
  12 (12.00%) high mild
  2 (2.00%) high severe

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.3793 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [7.6590 ms 7.6619 ms 7.6650 ms]
                        change: [+0.3527% +0.4243% +0.4870%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild
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.0149 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.5554 ms 4.5577 ms 4.5605 ms]
                        change: [−0.0222% +0.0573% +0.1423%] (p = 0.17 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe

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.5897 s (700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [7.9818 ms 7.9870 ms 7.9928 ms]
                        change: [−0.0375% +0.0621% +0.1489%] (p = 0.20 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) high mild
  1 (1.00%) high severe
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.1930 s (1700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.0659 ms 3.0761 ms 3.0864 ms]
                        change: [−1.1832% −0.6488% −0.1428%] (p = 0.02 < 0.05)
                        Change within noise threshold.

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 5.8414 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [14.535 ms 14.551 ms 14.567 ms]
                        change: [−0.4242% −0.1865% +0.0434%] (p = 0.12 > 0.05)
                        No change in performance detected.
Found 11 outliers among 100 measurements (11.00%)
  9 (9.00%) high mild
  2 (2.00%) high severe
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.4784 s (1000 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.4818 ms 5.4924 ms 5.5026 ms]
                        change: [+1.1176% +1.3956% +1.6848%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) low mild
  1 (1.00%) high mild

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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Collecting 100 samples in estimated 9.2562 s (5050 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [1.8312 ms 1.8357 ms 1.8398 ms]
                        change: [−2.5304% −2.3745% −2.2144%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0154 s (2500 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [1.9825 ms 2.0011 ms 2.0354 ms]
                        change: [−1.8121% −0.8072% +1.3440%] (p = 0.41 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high severe

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 305.6s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 305.58 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [12.877 ms 12.894 ms 12.913 ms]
                        change: [−1.5314% −1.3373% −1.1457%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 10 outliers among 100 measurements (10.00%)
  5 (5.00%) high mild
  5 (5.00%) high severe
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.0518 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.3055 ms 6.3105 ms 6.3155 ms]
                        change: [−0.1394% −0.0267% +0.0810%] (p = 0.64 > 0.05)
                        No change in performance detected.

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.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.1447 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4128 ms 1.4146 ms 1.4162 ms]
                        change: [−0.3931% −0.2674% −0.1503%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.1618 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2198 ms 1.2215 ms 1.2234 ms]
                        change: [−0.4164% −0.2045% +0.0275%] (p = 0.07 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.2168 s (1600 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.2544 ms 3.2552 ms 3.2560 ms]
                        change: [+0.5823% +0.6141% +0.6438%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2806 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [821.03 µs 822.09 µs 823.20 µs]
                        change: [−0.0833% +0.0976% +0.2705%] (p = 0.27 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.5043 s (1000 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.5424 ms 5.5525 ms 5.5629 ms]
                        change: [+0.8737% +1.0803% +1.2809%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.1252 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.1893 ms 3.2012 ms 3.2132 ms]
                        change: [+0.5533% +1.0172% +1.4990%] (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.4870 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.8750 ms 1.8759 ms 1.8768 ms]
                        change: [−0.6653% −0.6111% −0.5512%] (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 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.4390 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4689 ms 1.4700 ms 1.4713 ms]
                        change: [+1.8656% +1.9861% +2.1137%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe

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.1607 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.4344 ms 6.4404 ms 6.4467 ms]
                        change: [+1.0972% +1.2000% +1.3103%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.6525 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.0439 ms 7.0494 ms 7.0551 ms]
                        change: [+0.3035% +0.4064% +0.5029%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.4795 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [10.944 ms 10.968 ms 10.993 ms]
                        change: [+1.8536% +2.1035% +2.3280%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1780 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.6993 ms 3.7069 ms 3.7142 ms]
                        change: [+0.7572% +1.0473% +1.3611%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.1035 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.451 µs 59.492 µs 59.529 µs]
                        change: [−0.1262% −0.0767% −0.0279%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1033 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.446 µs 59.488 µs 59.526 µs]
                        change: [−0.0691% −0.0165% +0.0410%] (p = 0.52 > 0.05)
                        No change in performance detected.

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.1246 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4333 ms 2.4339 ms 2.4346 ms]
                        change: [+0.2718% +0.3407% +0.4031%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.1267 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4329 ms 2.4335 ms 2.4342 ms]
                        change: [+0.1133% +0.1938% +0.2640%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild

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.2286 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [715.66 µs 717.22 µs 718.65 µs]
                        change: [−1.3954% −1.2385% −1.0869%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3878 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [825.71 µs 827.92 µs 830.30 µs]
                        change: [−3.0597% −2.6753% −2.3092%] (p = 0.00 < 0.05)
                        Performance has improved.

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.1420 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [6.4734 ms 6.5032 ms 6.5340 ms]
                        change: [+1.6538% +2.1406% +2.6690%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0049 s (2300 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.1631 ms 2.1688 ms 2.1747 ms]
                        change: [−0.3280% +0.0217% +0.3670%] (p = 0.90 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.1356 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2142 ms 1.2146 ms 1.2150 ms]
                        change: [+0.5471% +0.5896% +0.6328%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.1326 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2120 ms 1.2124 ms 1.2127 ms]
                        change: [+0.4900% +0.5221% +0.5529%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.4354 s (1000 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.4271 ms 5.4318 ms 5.4371 ms]
                        change: [−0.1384% −0.0074% +0.1254%] (p = 0.91 > 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 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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Collecting 100 samples in estimated 7.5849 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.4942 ms 1.4969 ms 1.4997 ms]
                        change: [−0.5990% −0.2939% +0.0162%] (p = 0.07 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low mild
  4 (4.00%) high mild

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.5719 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.2999 ms 1.3013 ms 1.3027 ms]
                        change: [−0.0963% −0.0304% +0.0338%] (p = 0.40 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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 6.8839 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [681.95 µs 682.73 µs 683.57 µs]
                        change: [−1.1177% −0.8410% −0.5734%] (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 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.0349 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [22.712 µs 22.766 µs 22.815 µs]
                        change: [−1.8663% −1.6951% −1.5332%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0295 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [22.681 µs 22.736 µs 22.786 µs]
                        change: [−2.1670% −2.0162% −1.8535%] (p = 0.00 < 0.05)
                        Performance has improved.

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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.2647 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6317 ms 1.6326 ms 1.6334 ms]
                        change: [+0.3103% +0.3575% +0.4049%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2911 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [523.29 µs 524.46 µs 525.68 µs]
                        change: [−0.3900% −0.0812% +0.2146%] (p = 0.59 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.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.7662 s (700 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.2247 ms 8.2265 ms 8.2283 ms]
                        change: [−0.4010% −0.2759% −0.1525%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3966 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.3951 ms 5.3972 ms 5.3996 ms]
                        change: [+0.2060% +0.2711% +0.3333%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  6 (6.00%) high mild
  1 (1.00%) high severe

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.5412 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [549.04 µs 549.88 µs 550.66 µs]
                        change: [+1.1022% +1.1852% +1.2716%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5244 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [645.47 µs 647.33 µs 649.32 µs]
                        change: [−0.5316% −0.0077% +0.5147%] (p = 0.98 > 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 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.1839 s (2200 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.3536 ms 2.3544 ms 2.3551 ms]
                        change: [+0.6392% +0.7203% +0.7959%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1763 s (1900 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.7005 ms 2.7032 ms 2.7060 ms]
                        change: [+0.1251% +0.2807% +0.4351%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3332 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [7.6053 ms 7.6104 ms 7.6166 ms]
                        change: [−1.3319% −1.1591% −0.9803%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) high mild
  2 (2.00%) high severe
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.2242 s (1500 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.4621 ms 3.4664 ms 3.4708 ms]
                        change: [−0.8830% −0.6946% −0.5039%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.3068 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2452 ms 1.2459 ms 1.2466 ms]
                        change: [+0.0580% +0.1155% +0.1706%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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 6.9710 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [691.71 µs 693.02 µs 694.49 µs]
                        change: [−0.2293% +0.2608% +0.9362%] (p = 0.43 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.4215 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [267.66 µs 268.26 µs 268.82 µs]
                        change: [−1.6127% −1.4860% −1.3502%] (p = 0.00 < 0.05)
                        Performance has improved.
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.4784 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [320.69 µs 322.07 µs 323.57 µs]
                        change: [−0.4498% +0.2047% +0.8473%] (p = 0.54 > 0.05)
                        No change in performance detected.

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.1535 s (1600 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.2150 ms 3.2185 ms 3.2225 ms]
                        change: [+0.3688% +0.4913% +0.6163%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
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.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 9.8905 s (5050 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [1.9478 ms 1.9510 ms 1.9545 ms]
                        change: [−1.1991% −0.9687% −0.7266%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.3492 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [418.30 µs 418.54 µs 418.77 µs]
                        change: [+0.5194% +0.5961% +0.6684%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  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.3564 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [418.66 µs 418.90 µs 419.13 µs]
                        change: [+0.5796% +0.6428% +0.7080%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.5762 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [276.56 µs 277.35 µs 278.08 µs]
                        change: [−2.1065% −1.9346% −1.7700%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.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.0997 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [393.49 µs 396.13 µs 399.23 µs]
                        change: [−6.3706% −4.5391% −2.7446%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  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.0003 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [849.22 ns 850.53 ns 851.70 ns]
                        change: [−13.186% −12.868% −12.554%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0002 s (6.1M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [839.16 ns 840.50 ns 841.65 ns]
                        change: [−14.039% −13.742% −13.448%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2763 s (1000 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.2711 ms 5.2727 ms 5.2743 ms]
                        change: [+0.2439% +0.2867% +0.3278%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.2111 s (2000 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.5971 ms 2.6013 ms 2.6056 ms]
                        change: [−0.9291% −0.6924% −0.4584%] (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.0775 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.3364 ms 6.3383 ms 6.3403 ms]
                        change: [+0.1454% +0.2168% +0.2784%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.0430 s (1900 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.6540 ms 2.6560 ms 2.6580 ms]
                        change: [−1.0772% −0.9767% −0.8715%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3139 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [131.42 µs 131.73 µs 132.02 µs]
                        change: [−1.2316% −1.0804% −0.9231%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3090 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [131.28 µs 131.59 µs 131.88 µs]
                        change: [−1.3765% −1.2207% −1.0542%] (p = 0.00 < 0.05)
                        Performance has improved.

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.0305 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.1385 ms 3.1393 ms 3.1400 ms]
                        change: [+0.4224% +0.4680% +0.5087%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0971 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.8000 ms 1.8011 ms 1.8022 ms]
                        change: [+0.2602% +0.3600% +0.4619%] (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 severe

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.5911 s (600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [9.2931 ms 9.2971 ms 9.3014 ms]
                        change: [−1.9453% −1.7144% −1.4905%] (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 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.2361 s (1700 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.0721 ms 3.0782 ms 3.0843 ms]
                        change: [−0.7802% −0.4515% −0.1317%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low mild
  4 (4.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.2269 s (1900 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7324 ms 2.7330 ms 2.7337 ms]
                        change: [+0.7423% +0.7707% +0.7972%] (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.2056 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6232 ms 1.6247 ms 1.6262 ms]
                        change: [−0.6942% −0.5307% −0.3667%] (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 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.1847 s (1700 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.0457 ms 3.0467 ms 3.0477 ms]
                        change: [+0.0867% +0.1503% +0.2090%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.1803 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2206 ms 1.2219 ms 1.2233 ms]
                        change: [−0.9646% −0.7890% −0.6095%] (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 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.3182 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [924.00 µs 926.13 µs 928.09 µs]
                        change: [−1.5921% −1.4520% −1.3200%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 17 outliers among 100 measurements (17.00%)
  17 (17.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.3450 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [920.19 µs 921.34 µs 922.51 µs]
                        change: [−3.1591% −2.9152% −2.6969%] (p = 0.00 < 0.05)
                        Performance has improved.

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.0969 s (2100 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.4246 ms 2.4256 ms 2.4266 ms]
                        change: [+0.4412% +0.4938% +0.5451%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
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.9904 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.3884 ms 1.3898 ms 1.3912 ms]
                        change: [+0.1845% +0.4230% +0.6691%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  2 (2.00%) low severe
  4 (4.00%) low mild
  1 (1.00%) high mild
  2 (2.00%) high severe

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.1875 s (1600 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.2328 ms 3.2343 ms 3.2358 ms]
                        change: [+0.3457% +0.4131% +0.4765%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Collecting 100 samples in estimated 7.0420 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.3938 ms 1.3957 ms 1.3978 ms]
                        change: [−0.5546% −0.2841% −0.0140%] (p = 0.04 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  2 (2.00%) low mild
  1 (1.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.6311 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [159.59 µs 159.91 µs 160.21 µs]
                        change: [−0.5266% −0.4074% −0.2889%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6329 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [159.17 µs 159.40 µs 159.61 µs]
                        change: [−0.7706% −0.6905% −0.6000%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1539 s (2000 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.5739 ms 2.5745 ms 2.5751 ms]
                        change: [+0.7419% +0.7748% +0.8087%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Collecting 100 samples in estimated 5.4047 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0703 ms 1.0726 ms 1.0751 ms]
                        change: [−0.7929% −0.2830% +0.1842%] (p = 0.26 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.1351 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.3327 ms 7.3373 ms 7.3429 ms]
                        change: [−0.4984% −0.2970% −0.1047%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) high mild
  3 (3.00%) high severe
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.2626 s (1600 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.2927 ms 3.2986 ms 3.3045 ms]
                        change: [+0.0024% +0.2484% +0.4938%] (p = 0.05 > 0.05)
                        No change in performance detected.

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.6075 s (5050 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.8970 ms 1.8976 ms 1.8982 ms]
                        change: [+0.4491% +0.4939% +0.5377%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.2552 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [916.60 µs 918.33 µs 920.07 µs]
                        change: [−0.4198% −0.0760% +0.2449%] (p = 0.64 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.00%) high severe

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.2213 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [5.7896 ms 5.7910 ms 5.7925 ms]
                        change: [+0.3677% +0.4486% +0.5099%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.0897 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.5451 ms 2.5476 ms 2.5502 ms]
                        change: [−0.3691% −0.2289% −0.0879%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.0771 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.7951 ms 1.7965 ms 1.7978 ms]
                        change: [+0.3949% +0.4573% +0.5215%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6322 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [861.45 µs 864.39 µs 867.61 µs]
                        change: [−0.9477% −0.3433% +0.2055%] (p = 0.25 > 0.05)
                        No change in performance detected.

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.1512 s (1100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [4.6806 ms 4.6828 ms 4.6851 ms]
                        change: [−0.1376% −0.0370% +0.0543%] (p = 0.45 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
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.1361 s (2100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.4461 ms 2.4506 ms 2.4551 ms]
                        change: [+0.0396% +0.3017% +0.5748%] (p = 0.03 < 0.05)
                        Change within noise threshold.

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.5432 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.079 ms 11.084 ms 11.089 ms]
                        change: [+0.1928% +0.2475% +0.3000%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  6 (6.00%) high mild
  2 (2.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.3029 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.8131 ms 4.8157 ms 4.8183 ms]
                        change: [+0.0410% +0.1159% +0.1909%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.2202 s (1100 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [4.7375 ms 4.7387 ms 4.7400 ms]
                        change: [+0.6274% +0.6581% +0.6933%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0828 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.3853 ms 3.3871 ms 3.3889 ms]
                        change: [−0.0107% +0.0657% +0.1421%] (p = 0.09 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.3292 s (1300 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.0924 ms 4.0933 ms 4.0942 ms]
                        change: [+0.3873% +0.4150% +0.4443%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Collecting 100 samples in estimated 7.6055 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5111 ms 1.5139 ms 1.5167 ms]
                        change: [−0.5623% −0.1949% +0.1638%] (p = 0.31 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  4 (4.00%) low mild
  3 (3.00%) high mild
  1 (1.00%) high severe

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.6783 s (800 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.0833 ms 7.0853 ms 7.0874 ms]
                        change: [+0.7032% +0.7736% +0.8389%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.3345 s (1400 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.8032 ms 3.8135 ms 3.8235 ms]
                        change: [−0.0649% +0.3300% +0.7163%] (p = 0.09 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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 40.
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Collecting 100 samples in estimated 9.9258 s (5050 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [1.9636 ms 1.9655 ms 1.9673 ms]
                        change: [+0.1582% +0.2200% +0.2807%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3399 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [918.90 µs 920.75 µs 922.68 µs]
                        change: [−1.9086% −1.5847% −1.2666%] (p = 0.00 < 0.05)
                        Performance has improved.

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 5.9873 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [394.86 µs 395.78 µs 396.64 µs]
                        change: [−2.4446% −2.3042% −2.1608%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.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 7.3616 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [481.94 µs 483.01 µs 484.09 µs]
                        change: [−2.9465% −2.6141% −2.2956%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.4620 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.4782 ms 1.4787 ms 1.4793 ms]
                        change: [+0.1663% +0.1986% +0.2317%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.4752 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.4813 ms 1.4817 ms 1.4823 ms]
                        change: [+0.2923% +0.3278% +0.3693%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
  2 (2.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.0151 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [82.986 µs 83.057 µs 83.122 µs]
                        change: [−0.3574% −0.3025% −0.2535%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0222 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [83.082 µs 83.162 µs 83.235 µs]
                        change: [−0.2889% −0.2319% −0.1704%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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 6.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Collecting 100 samples in estimated 6.9483 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.3842 ms 1.3857 ms 1.3872 ms]
                        change: [−1.7214% −1.6245% −1.5306%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 6.9795 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.3905 ms 1.3920 ms 1.3935 ms]
                        change: [−0.9809% −0.8807% −0.7820%] (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.5402 s (1000 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [5.5354 ms 5.5384 ms 5.5417 ms]
                        change: [−0.6383% −0.5621% −0.4866%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.9606 s (5050 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [1.9676 ms 1.9710 ms 1.9746 ms]
                        change: [−1.8576% −1.5805% −1.2984%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 11 outliers among 100 measurements (11.00%)
  1 (1.00%) low mild
  10 (10.00%) high mild

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.0059 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.3926 µs 2.3965 µs 2.4000 µs]
                        change: [−5.4741% −5.3342% −5.1895%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0098 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.3883 µs 2.3922 µs 2.3957 µs]
                        change: [−5.5596% −5.4157% −5.2726%] (p = 0.00 < 0.05)
                        Performance has improved.

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.1271 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [5.6910 ms 5.6927 ms 5.6945 ms]
                        change: [−2.5192% −2.1721% −1.8388%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.0997 s (2300 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.2170 ms 2.2211 ms 2.2253 ms]
                        change: [−2.4091% −2.1251% −1.8387%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 12 outliers among 100 measurements (12.00%)
  12 (12.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.5128 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [364.86 µs 365.68 µs 366.50 µs]
                        change: [+0.9688% +1.1135% +1.2892%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.5365 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [366.14 µs 366.64 µs 367.09 µs]
                        change: [+0.8879% +1.0050% +1.1337%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1036 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [10.201 ms 10.210 ms 10.221 ms]
                        change: [−8.8951% −8.7022% −8.4962%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 9 outliers among 100 measurements (9.00%)
  6 (6.00%) high mild
  3 (3.00%) high severe
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.3016 s (1600 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.3136 ms 3.3179 ms 3.3222 ms]
                        change: [−2.6505% −2.4355% −2.2138%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.2805 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.417 µs 65.480 µs 65.535 µs]
                        change: [−0.3830% −0.3213% −0.2634%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2785 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.623 µs 65.716 µs 65.798 µs]
                        change: [−0.2769% −0.1982% −0.1145%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 14 outliers among 100 measurements (14.00%)
  14 (14.00%) high mild

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.0887 s (1200 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.2349 ms 4.2363 ms 4.2377 ms]
                        change: [−8.0196% −7.8851% −7.7520%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0222 s (2400 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.0915 ms 2.0942 ms 2.0969 ms]
                        change: [−3.4862% −3.2727% −3.0530%] (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.7868 s (700 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.2599 ms 8.2629 ms 8.2664 ms]
                        change: [−3.2171% −3.1628% −3.1114%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) high mild
  3 (3.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.2311 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8084 ms 5.8112 ms 5.8140 ms]
                        change: [−0.8158% −0.7548% −0.6861%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.4962 s (1100 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [4.9880 ms 4.9933 ms 4.9995 ms]
                        change: [−9.2894% −9.0894% −8.8669%] (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.0225 s (2400 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.0767 ms 2.0788 ms 2.0809 ms]
                        change: [−3.4323% −3.1520% −2.8796%] (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.2760 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.5226 ms 7.5251 ms 7.5281 ms]
                        change: [−4.0709% −3.9978% −3.9232%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) high mild
  3 (3.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.2711 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.7859 ms 4.7878 ms 4.7898 ms]
                        change: [−1.0510% −0.9793% −0.9096%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.3614 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [533.12 µs 533.83 µs 534.53 µs]
                        change: [−2.0207% −1.9026% −1.7849%] (p = 0.00 < 0.05)
                        Performance has improved.
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.6536 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [371.77 µs 373.16 µs 374.65 µs]
                        change: [−3.9376% −3.3548% −2.7770%] (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.3213 s (900 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [5.9054 ms 5.9086 ms 5.9120 ms]
                        change: [−10.858% −10.767% −10.679%] (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 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.1651 s (2200 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.3439 ms 2.3500 ms 2.3562 ms]
                        change: [−6.6498% −6.2410% −5.8392%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild

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.2129 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2215 ms 1.2223 ms 1.2229 ms]
                        change: [−0.3736% −0.2777% −0.1752%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  6 (6.00%) high mild
  1 (1.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 7.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 7.0620 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.3858 ms 1.3884 ms 1.3911 ms]
                        change: [−0.7179% −0.3618% −0.0078%] (p = 0.05 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
  1 (1.00%) high severe

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.4807 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [108.65 µs 108.76 µs 108.86 µs]
                        change: [−0.4299% −0.3720% −0.3105%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 20 outliers among 100 measurements (20.00%)
  1 (1.00%) low mild
  17 (17.00%) high mild
  2 (2.00%) high severe
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.4779 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.66 µs 108.76 µs 108.86 µs]
                        change: [−0.4932% −0.4374% −0.3756%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 21 outliers among 100 measurements (21.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
  19 (19.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.8453 s (600 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [9.7356 ms 9.7420 ms 9.7488 ms]
                        change: [−9.1540% −9.0769% −8.9913%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  5 (5.00%) high mild
  1 (1.00%) high severe
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.1523 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [3.9575 ms 3.9647 ms 3.9716 ms]
                        change: [−3.9572% −3.6767% −3.4223%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low 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.0466 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [793.23 µs 793.61 µs 793.95 µs]
                        change: [−0.3072% −0.2469% −0.1888%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.3265 s (15k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [483.93 µs 484.70 µs 485.51 µs]
                        change: [−2.4154% −2.0868% −1.7529%] (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 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.2813 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [620.93 µs 621.21 µs 621.50 µs]
                        change: [−0.2008% −0.1566% −0.1192%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
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 5.8735 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [387.80 µs 388.28 µs 388.77 µs]
                        change: [−2.5549% −2.3819% −2.1829%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe

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.1755 s (1900 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.7251 ms 2.7272 ms 2.7295 ms]
                        change: [−5.6305% −5.3298% −5.0234%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
  4 (4.00%) high mild
  2 (2.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.1710 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.0351 ms 3.0395 ms 3.0442 ms]
                        change: [−7.5451% −7.2907% −7.0381%] (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 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.1251 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.3189 ms 2.3216 ms 2.3244 ms]
                        change: [−9.9002% −9.3944% −8.8897%] (p = 0.00 < 0.05)
                        Performance has improved.
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.1398 s (2400 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.1297 ms 2.1318 ms 2.1339 ms]
                        change: [−5.6677% −5.3894% −5.1258%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.0651 s (500 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [12.080 ms 12.107 ms 12.136 ms]
                        change: [−7.1430% −6.9367% −6.6928%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.0558 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.3376 ms 6.3463 ms 6.3553 ms]
                        change: [−3.4874% −3.3298% −3.1671%] (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)/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.1896 s (1900 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.7283 ms 2.7296 ms 2.7309 ms]
                        change: [−5.0178% −4.7554% −4.4896%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2317 s (1600 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.2633 ms 3.2694 ms 3.2754 ms]
                        change: [−2.6903% −2.3868% −2.0693%] (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.0717 s (1800 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [2.8030 ms 2.8041 ms 2.8051 ms]
                        change: [−3.4576% −3.2028% −2.9478%] (p = 0.00 < 0.05)
                        Performance has improved.
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 8.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Collecting 100 samples in estimated 8.9475 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.7683 ms 1.7702 ms 1.7721 ms]
                        change: [−1.4397% −1.2507% −1.0584%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  2 (2.00%) low mild
  1 (1.00%) high mild

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.5253 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [546.28 µs 546.45 µs 546.63 µs]
                        change: [+0.4438% +0.4699% +0.4968%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.5329 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [547.13 µs 547.33 µs 547.51 µs]
                        change: [+0.5590% +0.5920% +0.6220%] (p = 0.00 < 0.05)
                        Change within noise threshold.

@duyquang6

Copy link
Copy Markdown
Contributor Author

benchmark

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit 04eed56

Detail
   Compiling tikv-jemalloc-sys v0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7
   Compiling revm-handler v18.1.0 (/home/rise-bot/pevm/crates/revm-handler)
   Compiling revm-inspector v19.0.0
   Compiling revm v38.0.0
   Compiling op-revm v19.0.0
   Compiling revme v15.0.0
   Compiling tikv-jemallocator v0.6.1
   Compiling pevm v0.1.0 (/home/rise-bot/pevm/crates/pevm)
    Finished `bench` profile [optimized] target(s) in 54.31s
     Running benches/gigagas.rs (target/release/deps/gigagas-7aab4c4652b4675b)
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.5305 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [55.390 ms 55.503 ms 55.615 ms]
                        change: [−1.4557% −1.2065% −0.9555%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2672 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [46.183 ms 46.682 ms 47.195 ms]
                        change: [−0.9981% +0.4177% +1.8285%] (p = 0.56 > 0.05)
                        No change in performance detected.

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.2s, or reduce sample count to 30.
Benchmarking Independent ERC20/Sequential: Collecting 100 samples in estimated 16.229 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [167.16 ms 167.52 ms 167.89 ms]
                        change: [−0.3045% +0.0269% +0.3496%] (p = 0.88 > 0.05)
                        No change in performance detected.
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.3s, or reduce sample count to 90.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.3040 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [52.706 ms 53.367 ms 54.022 ms]
                        change: [−2.2920% −0.4636% +1.3317%] (p = 0.61 > 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.9s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 45.851 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [476.98 ms 477.54 ms 478.07 ms]
                        change: [+1.7344% +1.8830% +2.0349%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low severe
  4 (4.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.2064 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.820 ms 25.873 ms 25.927 ms]
                        change: [+3.1195% +3.3845% +3.6544%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit 04eed56
Report:
Baseline main:

Average: x1.95
Max: x3.96
Min: x0.68

This pr:

Average: x2.01
Max: x3.95
Min: x0.64
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 53.61s
     Running benches/mainnet.rs (target/release/deps/mainnet-4809e91b3393603f)
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.2332 s (1000 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [5.1943 ms 5.2014 ms 5.2081 ms]
                        change: [+9.4196% +9.5596% +9.7209%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) low mild
  1 (1.00%) high mild
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.1030 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.5326 ms 3.6116 ms 3.6939 ms]
                        change: [−4.9120% −2.0853% +0.8591%] (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 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.3188 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [17.607 ms 17.617 ms 17.627 ms]
                        change: [+3.3454% +3.5265% +3.7104%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 9 outliers among 100 measurements (9.00%)
  6 (6.00%) low mild
  3 (3.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.4123 s (1200 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.4982 ms 4.5191 ms 4.5396 ms]
                        change: [+1.9536% +2.6441% +3.3335%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.4568 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [133.84 µs 134.02 µs 134.17 µs]
                        change: [−1.5919% −1.4593% −1.3203%] (p = 0.00 < 0.05)
                        Performance has improved.
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.4554 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [133.94 µs 134.18 µs 134.37 µs]
                        change: [−1.4752% −1.3426% −1.1952%] (p = 0.00 < 0.05)
                        Performance has improved.

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.1799 s (500 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [10.327 ms 10.340 ms 10.352 ms]
                        change: [+8.1462% +8.3524% +8.5663%] (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 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.2484 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.3673 ms 4.3771 ms 4.3872 ms]
                        change: [+2.8533% +3.1399% +3.4372%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high 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.2632 s (1000 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [5.2140 ms 5.2359 ms 5.2574 ms]
                        change: [+8.2271% +8.7047% +9.1936%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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 8.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Collecting 100 samples in estimated 7.9623 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.5838 ms 1.5939 ms 1.6063 ms]
                        change: [+4.0792% +4.7719% +5.5022%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.3125 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6460 ms 1.6486 ms 1.6512 ms]
                        change: [+1.9307% +2.1132% +2.2699%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1063 s (10k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [505.75 µs 507.72 µs 510.03 µs]
                        change: [+2.5282% +3.0328% +3.5293%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5183 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [7.8535 ms 7.8666 ms 7.8795 ms]
                        change: [+2.2822% +2.4705% +2.6696%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0579 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.6033 ms 4.6063 ms 4.6094 ms]
                        change: [+1.0958% +1.1683% +1.2466%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2526 s (600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [8.7258 ms 8.7422 ms 8.7578 ms]
                        change: [+7.6004% +7.8538% +8.1269%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
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.0648 s (1600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.1441 ms 3.1584 ms 3.1726 ms]
                        change: [+0.6426% +1.1936% +1.7569%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.2598 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [15.611 ms 15.623 ms 15.635 ms]
                        change: [+4.7625% +4.9294% +5.0977%] (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 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.1117 s (900 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.6561 ms 5.6683 ms 5.6803 ms]
                        change: [+2.5849% +2.8543% +3.1386%] (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
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Collecting 100 samples in estimated 5.0158 s (2500 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [1.9458 ms 1.9582 ms 1.9710 ms]
                        change: [+4.2553% +4.9036% +5.5896%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0722 s (2400 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [2.0997 ms 2.1072 ms 2.1148 ms]
                        change: [+3.2573% +3.6738% +4.0947%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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 305.9s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 305.87 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [13.564 ms 13.593 ms 13.624 ms]
                        change: [+2.4613% +2.7224% +2.9944%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) high mild
  6 (6.00%) high severe
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.1611 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.4399 ms 6.4469 ms 6.4539 ms]
                        change: [+1.6143% +1.7609% +1.8907%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.6591 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4835 ms 1.4892 ms 1.4950 ms]
                        change: [+3.9592% +4.4293% +4.9067%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.5s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.4702 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2774 ms 1.2808 ms 1.2847 ms]
                        change: [+3.8433% +4.1719% +4.5383%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.3072 s (1600 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.3045 ms 3.3087 ms 3.3128 ms]
                        change: [+1.8814% +2.0155% +2.1576%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.4475 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [836.14 µs 837.08 µs 838.09 µs]
                        change: [+1.8734% +2.0554% +2.2378%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.2276 s (900 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.7908 ms 5.8042 ms 5.8171 ms]
                        change: [+5.2193% +5.4751% +5.7214%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
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.1653 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.2173 ms 3.2284 ms 3.2399 ms]
                        change: [+0.8727% +1.3418% +1.8363%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.8s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Collecting 100 samples in estimated 9.7807 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.9265 ms 1.9296 ms 1.9329 ms]
                        change: [+2.9981% +3.1968% +3.4008%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  7 (7.00%) high mild
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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Collecting 100 samples in estimated 7.5142 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4820 ms 1.4835 ms 1.4851 ms]
                        change: [+2.2385% +2.3591% +2.4780%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3470 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.6362 ms 6.6475 ms 6.6587 ms]
                        change: [+3.6420% +3.8127% +4.0021%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.1175 s (700 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.2998 ms 7.3097 ms 7.3192 ms]
                        change: [+3.3144% +3.4749% +3.6362%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  5 (5.00%) low mild
  1 (1.00%) high mild

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.8357 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [11.677 ms 11.700 ms 11.722 ms]
                        change: [+5.9962% +6.3351% +6.6555%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low severe
  4 (4.00%) low 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.3367 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.8100 ms 3.8222 ms 3.8340 ms]
                        change: [+3.0756% +3.5265% +3.9281%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.1200 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.315 µs 59.339 µs 59.359 µs]
                        change: [−0.4917% −0.4546% −0.4150%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1218 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.389 µs 59.419 µs 59.446 µs]
                        change: [−0.3713% −0.3271% −0.2798%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.1431 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4420 ms 2.4428 ms 2.4436 ms]
                        change: [+0.2590% +0.3626% +0.4636%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.1412 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4427 ms 2.4434 ms 2.4442 ms]
                        change: [+0.1920% +0.2905% +0.3842%] (p = 0.00 < 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.5650 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [727.26 µs 728.78 µs 730.16 µs]
                        change: [−0.9895% −0.8041% −0.6231%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.7466 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [859.29 µs 862.09 µs 865.43 µs]
                        change: [+2.8222% +3.2691% +3.7148%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.5811 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [6.9630 ms 6.9866 ms 7.0087 ms]
                        change: [+8.5198% +8.9203% +9.3247%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low severe
  1 (1.00%) low 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.1762 s (2300 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.2404 ms 2.2486 ms 2.2566 ms]
                        change: [+4.0490% +4.4448% +4.8827%] (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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Collecting 100 samples in estimated 6.1704 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2172 ms 1.2180 ms 1.2188 ms]
                        change: [+0.6369% +0.8678% +1.2400%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Collecting 100 samples in estimated 6.1577 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2170 ms 1.2179 ms 1.2189 ms]
                        change: [+0.5172% +0.5914% +0.6675%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild

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.2084 s (900 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.7918 ms 5.8000 ms 5.8077 ms]
                        change: [+7.0661% +7.2304% +7.3962%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Collecting 100 samples in estimated 7.6943 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5196 ms 1.5226 ms 1.5257 ms]
                        change: [+0.6264% +1.0222% +1.4057%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  2 (2.00%) low severe
  3 (3.00%) low mild
  3 (3.00%) high mild
  1 (1.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.8s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Collecting 100 samples in estimated 6.7686 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.3268 ms 1.3288 ms 1.3309 ms]
                        change: [+2.1300% +2.3249% +2.5148%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.0710 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [699.19 µs 700.57 µs 702.04 µs]
                        change: [+1.8144% +2.0851% +2.3646%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.0477 s (217k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [22.793 µs 22.820 µs 22.845 µs]
                        change: [−2.3988% −2.2624% −2.1216%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0447 s (217k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [22.831 µs 22.858 µs 22.882 µs]
                        change: [−2.3859% −2.2413% −2.0952%] (p = 0.00 < 0.05)
                        Performance has improved.

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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.4424 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6699 ms 1.6730 ms 1.6761 ms]
                        change: [+1.7843% +1.9706% +2.1423%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.4438 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [537.85 µs 539.59 µs 541.51 µs]
                        change: [+2.5729% +2.9437% +3.3380%] (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 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.1128 s (600 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.5075 ms 8.5169 ms 8.5259 ms]
                        change: [+3.7435% +3.8699% +3.9868%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) low mild
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.4731 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.4847 ms 5.4882 ms 5.4917 ms]
                        change: [+1.9575% +2.0316% +2.1097%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low mild
  3 (3.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.5216 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [541.97 µs 542.26 µs 542.52 µs]
                        change: [−0.5583% −0.4906% −0.4235%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6598 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [663.35 µs 665.61 µs 668.22 µs]
                        change: [+3.1343% +3.6055% +4.0747%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 10 outliers among 100 measurements (10.00%)
  1 (1.00%) low mild
  9 (9.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.0760 s (2100 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.3961 ms 2.4025 ms 2.4091 ms]
                        change: [+2.8141% +3.0613% +3.3577%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.0791 s (1800 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.8132 ms 2.8227 ms 2.8323 ms]
                        change: [+4.1702% +4.5645% +4.9141%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.7560 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [8.1376 ms 8.1571 ms 8.1754 ms]
                        change: [+5.4774% +5.7714% +6.0306%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low severe
  1 (1.00%) low 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.0221 s (1400 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.5916 ms 3.6013 ms 3.6113 ms]
                        change: [+2.9185% +3.2196% +3.5634%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Collecting 100 samples in estimated 6.4283 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2716 ms 1.2744 ms 1.2771 ms]
                        change: [+1.6831% +1.8539% +2.0272%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.1953 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [713.67 µs 714.73 µs 715.87 µs]
                        change: [+3.1532% +3.3969% +3.6435%] (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 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.5725 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [269.22 µs 269.53 µs 269.79 µs]
                        change: [−1.5289% −1.3981% −1.2684%] (p = 0.00 < 0.05)
                        Performance has improved.
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 5.0394 s (15k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [334.87 µs 336.70 µs 338.75 µs]
                        change: [+3.9314% +4.5729% +5.1905%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.3521 s (1500 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.4582 ms 3.4811 ms 3.5036 ms]
                        change: [+6.6844% +7.4220% +8.1449%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 5.0697 s (2500 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [2.0237 ms 2.0295 ms 2.0354 ms]
                        change: [+2.7719% +3.1080% +3.4360%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3798 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [419.76 µs 419.88 µs 420.00 µs]
                        change: [+1.7123% +1.7751% +1.8355%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
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.3778 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [419.92 µs 420.14 µs 420.42 µs]
                        change: [+1.4255% +1.5025% +1.5752%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 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.7361 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [279.57 µs 279.98 µs 280.32 µs]
                        change: [−1.6643% −1.5287% −1.3883%] (p = 0.00 < 0.05)
                        Performance has improved.
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.5811 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [428.73 µs 438.81 µs 450.43 µs]
                        change: [+1.6912% +3.9724% +6.2303%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  4 (4.00%) high mild
  4 (4.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.0017 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [838.23 ns 840.55 ns 842.99 ns]
                        change: [−14.002% −13.682% −13.350%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0009 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [840.32 ns 842.87 ns 845.52 ns]
                        change: [−13.696% −13.329% −12.975%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild

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.1723 s (900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.7345 ms 5.7504 ms 5.7660 ms]
                        change: [+8.4361% +8.7584% +9.0740%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.0376 s (1900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.6574 ms 2.6626 ms 2.6679 ms]
                        change: [+1.2436% +1.4876% +1.7394%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low mild
  3 (3.00%) high mild

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.4699 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.8274 ms 6.8366 ms 6.8458 ms]
                        change: [+7.0998% +7.2592% +7.4215%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2367 s (1900 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.7425 ms 2.7463 ms 2.7501 ms]
                        change: [+2.5782% +2.7436% +2.9165%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.4235 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [131.83 µs 131.97 µs 132.09 µs]
                        change: [−1.4974% −1.3752% −1.2458%] (p = 0.00 < 0.05)
                        Performance has improved.
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.4314 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [131.86 µs 132.00 µs 132.12 µs]
                        change: [−1.5065% −1.3891% −1.2688%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2117 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.2428 ms 3.2484 ms 3.2539 ms]
                        change: [+3.4592% +3.6412% +3.7978%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Collecting 100 samples in estimated 9.2652 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.8331 ms 1.8344 ms 1.8357 ms]
                        change: [+2.2009% +2.3082% +2.4201%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
  3 (3.00%) high severe

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.0160 s (500 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [10.008 ms 10.022 ms 10.035 ms]
                        change: [+5.4472% +5.6687% +5.8775%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low severe
  4 (4.00%) low mild
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.1157 s (1600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.2007 ms 3.2095 ms 3.2183 ms]
                        change: [+4.3109% +4.7074% +5.1081%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0069 s (1800 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7764 ms 2.7790 ms 2.7816 ms]
                        change: [+2.2041% +2.3008% +2.3981%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Collecting 100 samples in estimated 8.4392 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6653 ms 1.6673 ms 1.6695 ms]
                        change: [+0.7906% +0.9742% +1.1528%] (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 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.2387 s (1600 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.2506 ms 3.2648 ms 3.2787 ms]
                        change: [+6.5268% +6.9595% +7.4206%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.3792 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2631 ms 1.2657 ms 1.2684 ms]
                        change: [+2.0306% +2.2830% +2.5273%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  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.8526 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [944.71 µs 947.71 µs 950.63 µs]
                        change: [−0.0170% +0.2350% +0.4946%] (p = 0.07 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.7643 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [960.27 µs 962.91 µs 965.88 µs]
                        change: [+2.2502% +2.6017% +2.9513%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0926 s (2000 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.5503 ms 2.5554 ms 2.5605 ms]
                        change: [+5.7667% +5.9807% +6.1814%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Collecting 100 samples in estimated 7.1922 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.4260 ms 1.4280 ms 1.4302 ms]
                        change: [+3.5816% +3.8974% +4.2486%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 9 outliers among 100 measurements (9.00%)
  5 (5.00%) low mild
  3 (3.00%) high mild
  1 (1.00%) high severe

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.1924 s (1500 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.4414 ms 3.4514 ms 3.4613 ms]
                        change: [+6.7450% +7.0812% +7.3796%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Collecting 100 samples in estimated 7.4088 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.4643 ms 1.4682 ms 1.4724 ms]
                        change: [+4.1144% +4.4777% +4.8233%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.6993 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [159.25 µs 159.36 µs 159.46 µs]
                        change: [−1.0588% −0.9659% −0.8777%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.7025 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [159.37 µs 159.49 µs 159.59 µs]
                        change: [−0.9405% −0.8499% −0.7582%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1354 s (1900 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.7117 ms 2.7188 ms 2.7258 ms]
                        change: [+5.7969% +6.0722% +6.3750%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5183 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0905 ms 1.0929 ms 1.0953 ms]
                        change: [+0.8594% +1.3850% +1.8635%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  5 (5.00%) low mild
  2 (2.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.5301 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.8571 ms 7.8667 ms 7.8760 ms]
                        change: [+7.1501% +7.3131% +7.4691%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 9 outliers among 100 measurements (9.00%)
  1 (1.00%) low severe
  6 (6.00%) low mild
  2 (2.00%) high mild
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.0449 s (1500 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.3630 ms 3.3701 ms 3.3770 ms]
                        change: [+2.0166% +2.2946% +2.5823%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild

Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Collecting 100 samples in estimated 5.0314 s (2500 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [2.0125 ms 2.0182 ms 2.0239 ms]
                        change: [+6.9098% +7.2368% +7.5654%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5025 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [939.93 µs 941.77 µs 943.67 µs]
                        change: [+2.4656% +2.8463% +3.2213%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe

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.5633 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [6.1545 ms 6.1610 ms 6.1672 ms]
                        change: [+6.4927% +6.6045% +6.7202%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) low severe
  5 (5.00%) low mild
  1 (1.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.2155 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.6011 ms 2.6045 ms 2.6080 ms]
                        change: [+1.3738% +1.5452% +1.7199%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.4451 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.8519 ms 1.8551 ms 1.8583 ms]
                        change: [+3.0544% +3.2889% +3.5085%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) high mild
  1 (1.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.9261 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [895.60 µs 899.67 µs 904.32 µs]
                        change: [+4.1027% +4.6802% +5.2816%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 13 outliers among 100 measurements (13.00%)
  13 (13.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.0886 s (1000 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [5.0553 ms 5.0624 ms 5.0694 ms]
                        change: [+7.8759% +8.0274% +8.1772%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0415 s (2000 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.5110 ms 2.5160 ms 2.5210 ms]
                        change: [+1.8779% +2.1425% +2.4027%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.8522 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.666 ms 11.672 ms 11.677 ms]
                        change: [+4.1345% +4.3037% +4.4653%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.4145 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.9293 ms 4.9329 ms 4.9365 ms]
                        change: [+2.1612% +2.2501% +2.3445%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low 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.0388 s (1000 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [5.0428 ms 5.0497 ms 5.0565 ms]
                        change: [+6.8021% +6.9429% +7.0914%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  3 (3.00%) low mild
  2 (2.00%) high mild
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.2431 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.4862 ms 3.4894 ms 3.4926 ms]
                        change: [+2.6058% +2.7110% +2.8111%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.2708 s (1200 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.4108 ms 4.4188 ms 4.4266 ms]
                        change: [+7.8121% +8.0149% +8.2247%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
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.8s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Collecting 100 samples in estimated 7.8339 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5529 ms 1.5558 ms 1.5589 ms]
                        change: [+1.9170% +2.3033% +2.6849%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 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.3495 s (700 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.6152 ms 7.6257 ms 7.6361 ms]
                        change: [+7.3128% +7.4688% +7.6392%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.1644 s (1300 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.9615 ms 3.9728 ms 3.9841 ms]
                        change: [+3.1634% +3.5956% +4.0271%] (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 12522062(177 txs, 15028295 gas)/Sequential
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Collecting 100 samples in estimated 5.0780 s (2500 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [2.0172 ms 2.0225 ms 2.0279 ms]
                        change: [+2.7789% +3.0412% +3.3586%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.6733 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [950.11 µs 952.85 µs 956.09 µs]
                        change: [+2.8829% +3.2845% +3.6620%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.1853 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [398.50 µs 398.96 µs 399.39 µs]
                        change: [−2.0273% −1.8867% −1.7398%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0877 s (10k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [504.64 µs 506.27 µs 508.04 µs]
                        change: [+1.4015% +1.8697% +2.3405%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high 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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Collecting 100 samples in estimated 7.6288 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.5064 ms 1.5080 ms 1.5097 ms]
                        change: [+1.8996% +2.0073% +2.1108%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Collecting 100 samples in estimated 7.6134 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.5080 ms 1.5091 ms 1.5101 ms]
                        change: [+1.8215% +1.9178% +2.0046%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild

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.0432 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [82.868 µs 82.897 µs 82.923 µs]
                        change: [−0.7149% −0.6658% −0.6184%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.0630 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [83.233 µs 83.262 µs 83.287 µs]
                        change: [−0.3091% −0.2620% −0.2151%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Collecting 100 samples in estimated 7.2389 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.4324 ms 1.4349 ms 1.4374 ms]
                        change: [+3.1554% +3.3978% +3.6552%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 7.1822 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.4224 ms 1.4247 ms 1.4270 ms]
                        change: [+2.6922% +2.9171% +3.1548%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.5585 s (900 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [6.1428 ms 6.1572 ms 6.1714 ms]
                        change: [+9.7829% +10.052% +10.352%] (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 15199017(866 txs, 30028395 gas)/Parallel
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Collecting 100 samples in estimated 5.1606 s (2500 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [2.0748 ms 2.0810 ms 2.0873 ms]
                        change: [+5.6622% +6.0357% +6.4033%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0102 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.4016 µs 2.4040 µs 2.4059 µs]
                        change: [−5.4437% −5.3340% −5.2235%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0037 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.3996 µs 2.4019 µs 2.4038 µs]
                        change: [−5.6777% −5.5616% −5.4460%] (p = 0.00 < 0.05)
                        Performance has improved.

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.5055 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [6.0745 ms 6.0832 ms 6.0914 ms]
                        change: [+5.8158% +5.9924% +6.1609%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low severe
  2 (2.00%) low 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.0464 s (2200 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.3007 ms 2.3069 ms 2.3131 ms]
                        change: [+3.4862% +3.8436% +4.2130%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.5297 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [363.49 µs 363.96 µs 364.44 µs]
                        change: [−0.1545% −0.0711% +0.0153%] (p = 0.11 > 0.05)
                        No change in performance detected.
Found 7 outliers among 100 measurements (7.00%)
  4 (4.00%) high mild
  3 (3.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.5301 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [363.63 µs 363.80 µs 363.96 µs]
                        change: [−0.0893% −0.0381% +0.0164%] (p = 0.17 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  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.6901 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [11.351 ms 11.366 ms 11.381 ms]
                        change: [+8.8555% +9.1297% +9.4038%] (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 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.1998 s (1500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.4911 ms 3.4978 ms 3.5046 ms]
                        change: [+4.9192% +5.1475% +5.3788%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3143 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.385 µs 65.418 µs 65.445 µs]
                        change: [−0.7601% −0.7078% −0.6587%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3165 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.379 µs 65.411 µs 65.438 µs]
                        change: [−0.8191% −0.7713% −0.7215%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1338 s (1100 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.6350 ms 4.6459 ms 4.6567 ms]
                        change: [+9.2021% +9.4763% +9.7465%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0120 s (2300 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1899 ms 2.1945 ms 2.1991 ms]
                        change: [+3.0768% +3.3661% +3.6448%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.1369 s (600 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.5437 ms 8.5514 ms 8.5588 ms]
                        change: [+3.4599% +3.5612% +3.6553%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
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.2932 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8812 ms 5.8841 ms 5.8871 ms]
                        change: [+1.1388% +1.2090% +1.2838%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 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.0273 s (900 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [5.4325 ms 5.4486 ms 5.4645 ms]
                        change: [+8.0494% +8.3957% +8.7209%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.1763 s (2400 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.1851 ms 2.1936 ms 2.2022 ms]
                        change: [+4.7876% +5.2341% +5.6627%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5150 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.8624 ms 7.8668 ms 7.8712 ms]
                        change: [+4.1767% +4.2634% +4.3492%] (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 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.3421 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.8521 ms 4.8556 ms 4.8591 ms]
                        change: [+1.3038% +1.3848% +1.4699%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.5352 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [538.49 µs 539.11 µs 539.70 µs]
                        change: [−0.0250% +0.1109% +0.2526%] (p = 0.13 > 0.05)
                        No change in performance detected.
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.8205 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [387.30 µs 389.28 µs 391.50 µs]
                        change: [+3.6920% +4.3346% +4.9840%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.2760 s (800 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [6.5572 ms 6.5654 ms 6.5732 ms]
                        change: [+9.8716% +10.046% +10.214%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.1238 s (2000 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.5385 ms 2.5475 ms 2.5566 ms]
                        change: [+7.9768% +8.4532% +8.9624%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.2362 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2309 ms 1.2315 ms 1.2320 ms]
                        change: [+0.8708% +0.9203% +0.9674%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 7.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 7.5039 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.4827 ms 1.4869 ms 1.4912 ms]
                        change: [+8.5868% +9.2234% +9.8294%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  2 (2.00%) low mild
  5 (5.00%) high mild
  1 (1.00%) high severe

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.5000 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [108.82 µs 108.87 µs 108.92 µs]
                        change: [−0.4549% −0.3965% −0.3402%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
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.5003 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.82 µs 108.87 µs 108.92 µs]
                        change: [−0.5093% −0.4514% −0.3990%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  5 (5.00%) low mild
  3 (3.00%) high mild

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.3938 s (500 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [10.718 ms 10.728 ms 10.738 ms]
                        change: [+8.3831% +8.6005% +8.8196%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.3460 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [4.1002 ms 4.1085 ms 4.1169 ms]
                        change: [+2.9570% +3.2572% +3.5532%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0603 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [794.70 µs 794.95 µs 795.17 µs]
                        change: [+0.4320% +0.4745% +0.5161%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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 5.0852 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [505.11 µs 506.21 µs 507.42 µs]
                        change: [+4.1453% +4.4531% +4.7608%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  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.3123 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [623.58 µs 623.72 µs 623.87 µs]
                        change: [+0.2665% +0.3152% +0.3641%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
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.0962 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [403.26 µs 403.77 µs 404.30 µs]
                        change: [+3.6548% +3.8565% +4.0547%] (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 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.0443 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [3.0060 ms 3.0111 ms 3.0162 ms]
                        change: [+10.320% +10.516% +10.698%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
  4 (4.00%) high mild
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.0926 s (1500 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.3309 ms 3.3402 ms 3.3490 ms]
                        change: [+9.2898% +9.6127% +9.9362%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) low mild
  1 (1.00%) high mild

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.1173 s (1900 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.5701 ms 2.5865 ms 2.6029 ms]
                        change: [+8.1583% +8.8785% +9.5208%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.0103 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.2554 ms 2.2648 ms 2.2741 ms]
                        change: [+5.7373% +6.1999% +6.6453%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 5.1855 s (400 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [12.926 ms 12.934 ms 12.943 ms]
                        change: [+4.9908% +5.2029% +5.4150%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.2422 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.5646 ms 6.5701 ms 6.5756 ms]
                        change: [+3.9286% +4.0746% +4.2109%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.0328 s (1700 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.9383 ms 2.9461 ms 2.9535 ms]
                        change: [+8.0000% +8.3160% +8.5799%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low severe
  4 (4.00%) low 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.2071 s (1500 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.4476 ms 3.4551 ms 3.4626 ms]
                        change: [+7.4362% +7.7175% +7.9878%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.1522 s (1700 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [2.9948 ms 3.0014 ms 3.0077 ms]
                        change: [+7.3618% +7.5870% +7.8140%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Collecting 100 samples in estimated 9.1882 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.8184 ms 1.8206 ms 1.8229 ms]
                        change: [+2.5299% +2.7648% +2.9888%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 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.5170 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [545.87 µs 546.03 µs 546.17 µs]
                        change: [+0.2616% +0.3027% +0.3403%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.5168 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [545.85 µs 546.01 µs 546.15 µs]
                        change: [+0.1868% +0.2346% +0.2799%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

@duyquang6

Copy link
Copy Markdown
Contributor Author

benchmark

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit 371f6ae

Detail
   Compiling tikv-jemalloc-sys v0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7
   Compiling revm-handler v18.1.0 (/home/rise-bot/pevm/crates/revm-handler)
   Compiling revm-inspector v19.0.0
   Compiling revm v38.0.0
   Compiling op-revm v19.0.0
   Compiling revme v15.0.0
   Compiling tikv-jemallocator v0.6.1
   Compiling pevm v0.1.0 (/home/rise-bot/pevm/crates/pevm)
    Finished `bench` profile [optimized] target(s) in 53.51s
     Running benches/gigagas.rs (target/release/deps/gigagas-7aab4c4652b4675b)
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.6s, or reduce sample count to 80.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.5674 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [55.742 ms 55.859 ms 55.980 ms]
                        change: [−0.8356% −0.5730% −0.3311%] (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.1369 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [45.982 ms 46.422 ms 46.875 ms]
                        change: [−1.4628% −0.1427% +1.1784%] (p = 0.84 > 0.05)
                        No change in performance detected.

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.5s, or reduce sample count to 30.
Benchmarking Independent ERC20/Sequential: Collecting 100 samples in estimated 16.479 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [169.25 ms 169.62 ms 170.00 ms]
                        change: [+0.9434% +1.2791% +1.6228%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.3629 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [52.676 ms 53.273 ms 53.872 ms]
                        change: [−2.3629% −0.6394% +1.0671%] (p = 0.47 > 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 46.2s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 46.164 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [478.91 ms 479.75 ms 480.60 ms]
                        change: [+2.1597% +2.3549% +2.5584%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1435 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.582 ms 25.637 ms 25.694 ms]
                        change: [+2.1678% +2.4424% +2.7088%] (p = 0.00 < 0.05)
                        Performance has regressed.

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit 371f6ae
Report:
Baseline main:

Average: x1.95
Max: x3.96
Min: x0.68

This pr:

Average: x2.01
Max: x3.96
Min: x0.63
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 53.31s
     Running benches/mainnet.rs (target/release/deps/mainnet-4809e91b3393603f)
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.2372 s (1000 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [5.2154 ms 5.2248 ms 5.2341 ms]
                        change: [+9.8570% +10.054% +10.270%] (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 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.1562 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.5832 ms 3.6712 ms 3.7612 ms]
                        change: [−3.4510% −0.4703% +2.4166%] (p = 0.76 > 0.05)
                        No change in performance detected.

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.2994 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [17.654 ms 17.663 ms 17.673 ms]
                        change: [+3.6145% +3.7984% +3.9760%] (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 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.4113 s (1200 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.4726 ms 4.4924 ms 4.5131 ms]
                        change: [+1.3429% +2.0371% +2.7668%] (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 severe

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.4121 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [132.92 µs 133.01 µs 133.10 µs]
                        change: [−1.9441% −1.8522% −1.7594%] (p = 0.00 < 0.05)
                        Performance has improved.
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.4211 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [133.04 µs 133.13 µs 133.21 µs]
                        change: [−1.7552% −1.6597% −1.5681%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2294 s (500 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [10.432 ms 10.442 ms 10.452 ms]
                        change: [+9.2217% +9.4234% +9.6170%] (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 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.2729 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.3970 ms 4.4048 ms 4.4128 ms]
                        change: [+3.5332% +3.7921% +4.0457%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.4784 s (1000 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [5.3452 ms 5.3628 ms 5.3799 ms]
                        change: [+10.926% +11.339% +11.708%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
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 8.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Collecting 100 samples in estimated 8.0858 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.6271 ms 1.6329 ms 1.6390 ms]
                        change: [+5.2180% +5.8078% +6.3746%] (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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.4785 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6685 ms 1.6716 ms 1.6749 ms]
                        change: [+3.6502% +3.8559% +4.0701%] (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)/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.1447 s (10k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [515.04 µs 516.73 µs 518.68 µs]
                        change: [+3.6516% +4.1578% +4.6241%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.5952 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [7.9891 ms 7.9936 ms 7.9982 ms]
                        change: [+4.0194% +4.1249% +4.2277%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.0879 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.6198 ms 4.6222 ms 4.6246 ms]
                        change: [+1.4476% +1.5163% +1.5808%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low mild
  3 (3.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.3121 s (600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [8.8188 ms 8.8261 ms 8.8336 ms]
                        change: [+8.6934% +8.8892% +9.0817%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.2479 s (1600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.2620 ms 3.2753 ms 3.2884 ms]
                        change: [+4.3743% +4.9371% +5.4687%] (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.2792 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [15.625 ms 15.637 ms 15.648 ms]
                        change: [+4.8572% +5.0220% +5.1888%] (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 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.0968 s (900 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.6395 ms 5.6501 ms 5.6606 ms]
                        change: [+2.2609% +2.5241% +2.7737%] (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
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Collecting 100 samples in estimated 5.1288 s (2500 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [2.0350 ms 2.0510 ms 2.0671 ms]
                        change: [+9.0276% +9.8800% +10.703%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0711 s (2400 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [2.1478 ms 2.1554 ms 2.1629 ms]
                        change: [+5.6161% +6.0443% +6.4749%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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 305.7s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 305.73 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [13.731 ms 13.741 ms 13.752 ms]
                        change: [+3.6905% +3.8468% +3.9882%] (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.2318 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.5146 ms 6.5207 ms 6.5268 ms]
                        change: [+2.7996% +2.9256% +3.0480%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.6932 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4985 ms 1.5054 ms 1.5122 ms]
                        change: [+5.7737% +6.2461% +6.8217%] (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.5s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.4723 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2814 ms 1.2839 ms 1.2864 ms]
                        change: [+3.5726% +3.8542% +4.1579%] (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 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.0280 s (1500 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.3351 ms 3.3374 ms 3.3397 ms]
                        change: [+2.8256% +2.9015% +2.9893%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5618 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [842.61 µs 843.61 µs 844.72 µs]
                        change: [+2.6861% +2.8939% +3.0860%] (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 severe

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.3264 s (900 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.9224 ms 5.9282 ms 5.9342 ms]
                        change: [+7.6061% +7.7293% +7.8499%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.1879 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.2314 ms 3.2427 ms 3.2542 ms]
                        change: [+1.2886% +1.7911% +2.2714%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Collecting 100 samples in estimated 9.8803 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.9675 ms 1.9728 ms 1.9782 ms]
                        change: [+4.9537% +5.2085% +5.4680%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  5 (5.00%) low mild
  2 (2.00%) high mild
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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Collecting 100 samples in estimated 7.5596 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4925 ms 1.4942 ms 1.4958 ms]
                        change: [+3.0896% +3.2266% +3.3685%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe

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.4122 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.7694 ms 6.7754 ms 6.7816 ms]
                        change: [+5.7033% +5.8097% +5.9121%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.1784 s (700 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.3637 ms 7.3731 ms 7.3837 ms]
                        change: [+4.2205% +4.3724% +4.5403%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  3 (3.00%) low mild
  4 (4.00%) high mild
  1 (1.00%) high severe

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.8915 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [11.814 ms 11.825 ms 11.837 ms]
                        change: [+7.1825% +7.4701% +7.7596%] (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.3808 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.8396 ms 3.8485 ms 3.8574 ms]
                        change: [+3.9113% +4.2410% +4.5602%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.1018 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.306 µs 59.321 µs 59.336 µs]
                        change: [−0.4229% −0.3903% −0.3571%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.1023 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.309 µs 59.336 µs 59.360 µs]
                        change: [−0.4372% −0.3966% −0.3555%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1552 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4497 ms 2.4503 ms 2.4510 ms]
                        change: [+0.5693% +0.6713% +0.7715%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1615 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4519 ms 2.4528 ms 2.4537 ms]
                        change: [+0.5742% +0.6732% +0.7725%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.5078 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [728.54 µs 729.74 µs 731.03 µs]
                        change: [−0.2063% +0.0330% +0.2910%] (p = 0.78 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.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.6814 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [874.82 µs 877.90 µs 880.94 µs]
                        change: [+3.5053% +3.9381% +4.4136%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0113 s (700 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [7.1037 ms 7.1120 ms 7.1201 ms]
                        change: [+10.681% +10.876% +11.080%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  6 (6.00%) low mild
  1 (1.00%) high severe
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.1283 s (2300 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.2647 ms 2.2717 ms 2.2788 ms]
                        change: [+5.1380% +5.5223% +5.9068%] (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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Collecting 100 samples in estimated 6.2030 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2225 ms 1.2236 ms 1.2247 ms]
                        change: [+1.1227% +1.2318% +1.3439%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Collecting 100 samples in estimated 6.1917 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2244 ms 1.2257 ms 1.2270 ms]
                        change: [+1.1189% +1.2172% +1.3314%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  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.2929 s (900 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.8476 ms 5.8535 ms 5.8593 ms]
                        change: [+8.0916% +8.2196% +8.3566%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Collecting 100 samples in estimated 7.6817 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5140 ms 1.5180 ms 1.5217 ms]
                        change: [+0.2561% +0.6518% +1.0691%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.7s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Collecting 100 samples in estimated 6.7431 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.3206 ms 1.3234 ms 1.3263 ms]
                        change: [+1.5933% +1.7523% +1.9331%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0975 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [706.37 µs 707.64 µs 708.96 µs]
                        change: [+2.6678% +2.9575% +3.2307%] (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 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.0705 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [22.576 µs 22.596 µs 22.615 µs]
                        change: [−3.0280% −2.9113% −2.7954%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0633 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [22.590 µs 22.611 µs 22.630 µs]
                        change: [−3.1253% −3.0052% −2.8922%] (p = 0.00 < 0.05)
                        Performance has improved.

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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.7175 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6916 ms 1.6947 ms 1.6977 ms]
                        change: [+3.4742% +3.7210% +3.9510%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
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.4890 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [548.76 µs 550.09 µs 551.33 µs]
                        change: [+4.0442% +4.4271% +4.7896%] (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 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.1622 s (600 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.5943 ms 8.5991 ms 8.6036 ms]
                        change: [+4.7924% +4.8715% +4.9498%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 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.4908 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.4829 ms 5.4854 ms 5.4879 ms]
                        change: [+1.9227% +1.9795% +2.0373%] (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 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.5185 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [542.90 µs 543.20 µs 543.49 µs]
                        change: [−0.2886% −0.2031% −0.1219%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.6637 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [666.34 µs 667.99 µs 669.79 µs]
                        change: [+3.5202% +3.9386% +4.3426%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.0184 s (2000 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.5392 ms 2.5438 ms 2.5482 ms]
                        change: [+8.9351% +9.1214% +9.3150%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.0747 s (1700 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.9358 ms 2.9431 ms 2.9502 ms]
                        change: [+8.7384% +9.0228% +9.2745%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.8263 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [8.3012 ms 8.3095 ms 8.3176 ms]
                        change: [+7.5831% +7.7471% +7.9063%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  4 (4.00%) low mild
  2 (2.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.2760 s (1400 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.7652 ms 3.7739 ms 3.7826 ms]
                        change: [+7.8549% +8.1646% +8.4677%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.6s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Collecting 100 samples in estimated 6.5531 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2741 ms 1.2762 ms 1.2781 ms]
                        change: [+2.4985% +2.6768% +2.8535%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
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.1736 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [716.27 µs 717.54 µs 718.81 µs]
                        change: [+2.9135% +3.1736% +3.4440%] (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 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.4977 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [268.77 µs 269.05 µs 269.32 µs]
                        change: [−1.4798% −1.3629% −1.2595%] (p = 0.00 < 0.05)
                        Performance has improved.
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 5.0661 s (15k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [338.76 µs 340.17 µs 341.66 µs]
                        change: [+4.8288% +5.4358% +6.0449%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.1443 s (1400 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.6361 ms 3.6503 ms 3.6640 ms]
                        change: [+12.196% +12.642% +13.076%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) low mild
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 5.0229 s (2400 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [2.0674 ms 2.0742 ms 2.0810 ms]
                        change: [+4.9914% +5.3780% +5.7471%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3561 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [417.99 µs 418.13 µs 418.27 µs]
                        change: [+1.3531% +1.4216% +1.4890%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 9 outliers among 100 measurements (9.00%)
  7 (7.00%) high mild
  2 (2.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.3673 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [419.13 µs 419.35 µs 419.56 µs]
                        change: [+1.3124% +1.4026% +1.4894%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  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.6666 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [277.84 µs 278.13 µs 278.39 µs]
                        change: [−1.9279% −1.8059% −1.6818%] (p = 0.00 < 0.05)
                        Performance has improved.
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.7971 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [437.90 µs 443.84 µs 450.05 µs]
                        change: [+3.2661% +5.1822% +7.1326%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild

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.0002 s (6.1M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [836.82 ns 841.32 ns 846.38 ns]
                        change: [−14.103% −13.718% −13.362%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.0025 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [839.30 ns 843.84 ns 849.04 ns]
                        change: [−13.618% −13.263% −12.930%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild

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.3003 s (900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.8832 ms 5.8909 ms 5.8984 ms]
                        change: [+11.217% +11.415% +11.607%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0421 s (1900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.6520 ms 2.6581 ms 2.6640 ms]
                        change: [+1.0464% +1.3156% +1.6153%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5263 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.8347 ms 6.8439 ms 6.8531 ms]
                        change: [+7.2014% +7.3735% +7.5311%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.2065 s (1900 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.7455 ms 2.7489 ms 2.7523 ms]
                        change: [+2.6777% +2.8407% +2.9839%] (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 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.3522 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [131.23 µs 131.33 µs 131.42 µs]
                        change: [−1.6822% −1.5885% −1.4946%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3546 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [131.33 µs 131.42 µs 131.51 µs]
                        change: [−1.6386% −1.5398% −1.4392%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.2968 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.2791 ms 3.2840 ms 3.2890 ms]
                        change: [+4.6044% +4.7790% +4.9299%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Collecting 100 samples in estimated 9.3005 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.8436 ms 1.8454 ms 1.8472 ms]
                        change: [+2.7529% +2.8650% +2.9743%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.0829 s (500 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [10.141 ms 10.149 ms 10.157 ms]
                        change: [+6.8184% +7.0063% +7.1920%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.1213 s (1600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.2155 ms 3.2248 ms 3.2343 ms]
                        change: [+4.8007% +5.2070% +5.6276%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0102 s (1800 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7685 ms 2.7716 ms 2.7747 ms]
                        change: [+1.9010% +2.0295% +2.1567%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Collecting 100 samples in estimated 8.4119 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6668 ms 1.6684 ms 1.6699 ms]
                        change: [+0.9279% +1.1369% +1.3272%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low mild
  3 (3.00%) high mild
  1 (1.00%) high severe

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.0179 s (1500 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.3427 ms 3.3506 ms 3.3582 ms]
                        change: [+9.5112% +9.7701% +10.016%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.4128 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2744 ms 1.2768 ms 1.2792 ms]
                        change: [+2.3242% +2.6353% +2.9348%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  2 (2.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.9302 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [967.17 µs 970.30 µs 973.36 µs]
                        change: [+2.2249% +2.5566% +2.8574%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.7774 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [972.80 µs 975.09 µs 977.38 µs]
                        change: [+2.7668% +3.0737% +3.4055%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.0862 s (2000 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.5363 ms 2.5404 ms 2.5444 ms]
                        change: [+5.1948% +5.3568% +5.5257%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Collecting 100 samples in estimated 7.1322 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.4168 ms 1.4187 ms 1.4207 ms]
                        change: [+2.7664% +3.0385% +3.3063%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild

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.2035 s (1500 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.4784 ms 3.4861 ms 3.4935 ms]
                        change: [+7.9487% +8.1571% +8.3721%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) low 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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Collecting 100 samples in estimated 7.3735 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.4629 ms 1.4651 ms 1.4674 ms]
                        change: [+4.0143% +4.3211% +4.6344%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe

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.6535 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [159.14 µs 159.25 µs 159.34 µs]
                        change: [−1.0166% −0.9288% −0.8434%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6601 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [159.27 µs 159.36 µs 159.45 µs]
                        change: [−0.8938% −0.8075% −0.7239%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1811 s (1900 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.7566 ms 2.7608 ms 2.7649 ms]
                        change: [+7.5385% +7.7118% +7.8715%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.4940 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0904 ms 1.0929 ms 1.0954 ms]
                        change: [+0.7836% +1.6287% +2.7082%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  4 (4.00%) low mild
  2 (2.00%) high mild
  1 (1.00%) high severe

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.5495 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.9188 ms 7.9264 ms 7.9339 ms]
                        change: [+7.9949% +8.1274% +8.2690%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.0434 s (1500 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.3612 ms 3.3679 ms 3.3746 ms]
                        change: [+1.9523% +2.2286% +2.5392%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Collecting 100 samples in estimated 5.0199 s (2500 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.9837 ms 1.9891 ms 1.9944 ms]
                        change: [+5.4163% +5.6887% +6.0007%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.4007 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [934.87 µs 936.79 µs 938.71 µs]
                        change: [+1.3874% +1.7683% +2.1568%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
  2 (2.00%) high 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.5547 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [6.1655 ms 6.1698 ms 6.1743 ms]
                        change: [+6.6636% +6.7568% +6.8536%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2126 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.6045 ms 2.6074 ms 2.6103 ms]
                        change: [+1.4984% +1.6566% +1.8172%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.6100 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.8604 ms 1.8646 ms 1.8694 ms]
                        change: [+4.0883% +4.3206% +4.5854%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.8791 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [901.61 µs 904.75 µs 908.17 µs]
                        change: [+3.8885% +4.4903% +5.0900%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.1386 s (1000 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [5.1047 ms 5.1104 ms 5.1161 ms]
                        change: [+8.9203% +9.0534% +9.2028%] (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 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.0024 s (2000 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.4920 ms 2.4972 ms 2.5024 ms]
                        change: [+1.1140% +1.3814% +1.6301%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.8663 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.742 ms 11.748 ms 11.755 ms]
                        change: [+4.8144% +4.9879% +5.1495%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.4303 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.9348 ms 4.9386 ms 4.9424 ms]
                        change: [+2.2652% +2.3670% +2.4635%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.1013 s (1000 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [5.0868 ms 5.0915 ms 5.0962 ms]
                        change: [+7.7158% +7.8284% +7.9322%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2617 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.5075 ms 3.5105 ms 3.5135 ms]
                        change: [+3.2338% +3.3310% +3.4382%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3292 s (1200 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.3972 ms 4.4074 ms 4.4170 ms]
                        change: [+7.4509% +7.7356% +7.9862%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) low mild
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.8s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Collecting 100 samples in estimated 7.8421 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5540 ms 1.5576 ms 1.5612 ms]
                        change: [+1.5008% +1.9438% +2.3417%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  2 (2.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.4076 s (700 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.7057 ms 7.7129 ms 7.7201 ms]
                        change: [+8.5551% +8.6970% +8.8218%] (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 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.1916 s (1300 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.9597 ms 3.9710 ms 3.9819 ms]
                        change: [+3.1323% +3.5476% +3.9757%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Collecting 100 samples in estimated 5.0286 s (2400 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [2.0650 ms 2.0710 ms 2.0768 ms]
                        change: [+5.2136% +5.5103% +5.8408%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5193 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [956.12 µs 957.77 µs 959.48 µs]
                        change: [+2.4429% +2.8052% +3.1576%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0807 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [398.15 µs 398.49 µs 398.82 µs]
                        change: [−1.7620% −1.6296% −1.4780%] (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 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.1064 s (10k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [508.44 µs 509.85 µs 511.36 µs]
                        change: [+1.8764% +2.2636% +2.6467%] (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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Collecting 100 samples in estimated 7.6296 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.5072 ms 1.5085 ms 1.5098 ms]
                        change: [+1.9523% +2.0608% +2.1808%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  5 (5.00%) high mild
  2 (2.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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Collecting 100 samples in estimated 7.6024 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.5104 ms 1.5116 ms 1.5127 ms]
                        change: [+1.9052% +2.0075% +2.1033%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0292 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [82.944 µs 82.965 µs 82.984 µs]
                        change: [−0.5467% −0.5012% −0.4563%] (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 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.0299 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [82.843 µs 82.859 µs 82.873 µs]
                        change: [−0.6658% −0.6241% −0.5823%] (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 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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Collecting 100 samples in estimated 7.3421 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.4583 ms 1.4609 ms 1.4637 ms]
                        change: [+5.2239% +5.4832% +5.7643%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 7.4094 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.4377 ms 1.4401 ms 1.4425 ms]
                        change: [+4.0530% +4.3308% +4.6061%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 9 outliers among 100 measurements (9.00%)
  1 (1.00%) low mild
  7 (7.00%) high mild
  1 (1.00%) high severe

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.0106 s (800 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [6.2602 ms 6.2716 ms 6.2828 ms]
                        change: [+11.866% +12.098% +12.324%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Collecting 100 samples in estimated 5.1076 s (2400 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [2.1279 ms 2.1343 ms 2.1406 ms]
                        change: [+8.3532% +8.7510% +9.1360%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.0093 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.3916 µs 2.3949 µs 2.3987 µs]
                        change: [−5.7150% −5.6028% −5.4864%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.3900 µs 2.3932 µs 2.3969 µs]
                        change: [−5.8185% −5.7071% −5.5898%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high severe

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.5532 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [6.1723 ms 6.1792 ms 6.1860 ms]
                        change: [+7.5201% +7.6658% +7.8213%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.0981 s (2200 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.3313 ms 2.3367 ms 2.3423 ms]
                        change: [+4.8587% +5.1879% +5.5484%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5085 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [362.26 µs 362.43 µs 362.63 µs]
                        change: [−0.4681% −0.3960% −0.3222%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  4 (4.00%) high mild
  2 (2.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.5014 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [361.85 µs 361.99 µs 362.13 µs]
                        change: [−0.4709% −0.4203% −0.3685%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.7319 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [11.428 ms 11.441 ms 11.454 ms]
                        change: [+9.5780% +9.8470% +10.106%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.2570 s (1500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.4974 ms 3.5040 ms 3.5107 ms]
                        change: [+5.0865% +5.3344% +5.5671%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.2867 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.283 µs 65.302 µs 65.320 µs]
                        change: [−0.8076% −0.7640% −0.7205%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2887 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.277 µs 65.295 µs 65.311 µs]
                        change: [−0.8754% −0.8315% −0.7874%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.1964 s (1100 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.7002 ms 4.7080 ms 4.7157 ms]
                        change: [+10.755% +10.940% +11.144%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0262 s (2300 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1879 ms 2.1922 ms 2.1965 ms]
                        change: [+2.9942% +3.2565% +3.5234%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1408 s (600 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.5811 ms 8.5857 ms 8.5902 ms]
                        change: [+3.9087% +3.9758% +4.0378%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.2875 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8759 ms 5.8789 ms 5.8820 ms]
                        change: [+1.0489% +1.1205% +1.1952%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0473 s (900 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [5.5223 ms 5.5365 ms 5.5499 ms]
                        change: [+9.8306% +10.144% +10.407%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) low mild
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.1222 s (2300 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.2626 ms 2.2705 ms 2.2784 ms]
                        change: [+8.5079% +8.9240% +9.2940%] (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 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.5348 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.9052 ms 7.9098 ms 7.9147 ms]
                        change: [+4.7436% +4.8337% +4.9253%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 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.3486 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.8589 ms 4.8618 ms 4.8650 ms]
                        change: [+1.4397% +1.5130% +1.5896%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe

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.5056 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [540.06 µs 540.67 µs 541.27 µs]
                        change: [+0.2763% +0.4269% +0.5755%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low mild
  4 (4.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.8381 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [392.24 µs 393.63 µs 395.02 µs]
                        change: [+3.9634% +4.5341% +5.0807%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3042 s (800 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [6.6456 ms 6.6527 ms 6.6597 ms]
                        change: [+11.355% +11.509% +11.661%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) low mild
  1 (1.00%) high mild
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.1000 s (2000 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.5350 ms 2.5465 ms 2.5580 ms]
                        change: [+7.8148% +8.4097% +8.9854%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.3s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Collecting 100 samples in estimated 6.2629 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2334 ms 1.2339 ms 1.2344 ms]
                        change: [+1.1510% +1.2214% +1.2922%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 9 outliers among 100 measurements (9.00%)
  1 (1.00%) low mild
  7 (7.00%) high mild
  1 (1.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 7.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 7.4146 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.4641 ms 1.4693 ms 1.4750 ms]
                        change: [+7.2385% +7.7452% +8.2617%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  2 (2.00%) low mild
  5 (5.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.4963 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [108.72 µs 108.75 µs 108.78 µs]
                        change: [−0.4971% −0.4447% −0.3917%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  3 (3.00%) low severe
  13 (13.00%) low mild
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.4955 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.72 µs 108.74 µs 108.77 µs]
                        change: [−0.5473% −0.4947% −0.4421%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  8 (8.00%) low mild
  1 (1.00%) high mild

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.4337 s (500 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [10.771 ms 10.781 ms 10.791 ms]
                        change: [+8.9102% +9.1341% +9.3488%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.3830 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [4.1397 ms 4.1472 ms 4.1548 ms]
                        change: [+3.9608% +4.2286% +4.5016%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1201 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [798.80 µs 799.38 µs 800.00 µs]
                        change: [+1.0591% +1.1369% +1.2043%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 5.1003 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [508.11 µs 509.04 µs 509.96 µs]
                        change: [+4.2536% +4.5860% +4.9269%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low mild
  4 (4.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.3009 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [622.71 µs 622.89 µs 623.09 µs]
                        change: [+0.2074% +0.2677% +0.3266%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.1762 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [405.35 µs 405.97 µs 406.59 µs]
                        change: [+4.1752% +4.3870% +4.5934%] (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 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.0992 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.9990 ms 3.0069 ms 3.0144 ms]
                        change: [+10.111% +10.362% +10.654%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
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.1121 s (1500 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.3654 ms 3.3756 ms 3.3851 ms]
                        change: [+10.390% +10.773% +11.149%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.2357 s (2000 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.6772 ms 2.6927 ms 2.7074 ms]
                        change: [+12.631% +13.348% +13.975%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) low mild
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.1187 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.3080 ms 2.3161 ms 2.3241 ms]
                        change: [+8.1884% +8.6060% +9.0205%] (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 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 5.2318 s (400 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [13.058 ms 13.068 ms 13.078 ms]
                        change: [+6.0692% +6.2873% +6.5037%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2312 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.5582 ms 6.5643 ms 6.5704 ms]
                        change: [+3.8310% +3.9833% +4.1339%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.2903 s (1800 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.9129 ms 2.9207 ms 2.9283 ms]
                        change: [+7.1095% +7.3844% +7.6869%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.2135 s (1500 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.4839 ms 3.4920 ms 3.4999 ms]
                        change: [+8.5715% +8.8678% +9.1505%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.1366 s (1700 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [3.0327 ms 3.0388 ms 3.0446 ms]
                        change: [+8.7034% +8.9272% +9.1599%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Collecting 100 samples in estimated 9.1399 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.8044 ms 1.8074 ms 1.8106 ms]
                        change: [+1.7789% +2.0071% +2.2379%] (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 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.5209 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [546.09 µs 546.27 µs 546.44 µs]
                        change: [+0.3079% +0.3480% +0.3867%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.5225 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [546.01 µs 546.17 µs 546.31 µs]
                        change: [+0.2577% +0.3070% +0.3527%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

@duyquang6

Copy link
Copy Markdown
Contributor Author

benchmark

@duyquang6

Copy link
Copy Markdown
Contributor Author

benchmark

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit 3313682

Detail
   Compiling tikv-jemalloc-sys v0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7
   Compiling revm-handler v18.1.0 (/home/rise-bot/pevm/crates/revm-handler)
   Compiling revm-inspector v19.0.0
   Compiling revm v38.0.0
   Compiling op-revm v19.0.0
   Compiling revme v15.0.0
   Compiling tikv-jemallocator v0.6.1
   Compiling pevm v0.1.0 (/home/rise-bot/pevm/crates/pevm)
    Finished `bench` profile [optimized] target(s) in 55.92s
     Running benches/gigagas.rs (target/release/deps/gigagas-7aab4c4652b4675b)
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.6s, or reduce sample count to 80.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.5647 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [55.902 ms 56.033 ms 56.167 ms]
                        change: [−0.5258% −0.2632% +0.0227%] (p = 0.06 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0581 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [46.472 ms 46.865 ms 47.263 ms]
                        change: [−0.3667% +0.8113% +2.0616%] (p = 0.20 > 0.05)
                        No change in performance detected.

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.313 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [167.07 ms 167.56 ms 168.06 ms]
                        change: [−0.3366% +0.0511% +0.4284%] (p = 0.79 > 0.05)
                        No change in performance detected.
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.5s, or reduce sample count to 90.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.5402 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [54.607 ms 55.322 ms 56.038 ms]
                        change: [+1.2767% +3.1826% +5.0564%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.9s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 45.871 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [478.19 ms 478.97 ms 479.76 ms]
                        change: [+1.9952% +2.1883% +2.3672%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.1778 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.720 ms 25.765 ms 25.810 ms]
                        change: [+2.7077% +2.9506% +3.1800%] (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

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit 3313682
Report:
Baseline main:

Average: x1.95
Max: x3.96
Min: x0.68

This pr:

Average: x2.02
Max: x4.02
Min: x0.64
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 54.24s
     Running benches/mainnet.rs (target/release/deps/mainnet-4809e91b3393603f)
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.2353 s (1000 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [5.1881 ms 5.1979 ms 5.2076 ms]
                        change: [+9.2845% +9.4869% +9.6942%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
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.1352 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.5871 ms 3.6629 ms 3.7389 ms]
                        change: [−3.4992% −0.6958% +2.1020%] (p = 0.64 > 0.05)
                        No change in performance detected.

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.3127 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [17.677 ms 17.687 ms 17.697 ms]
                        change: [+3.7553% +3.9392% +4.1195%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.4122 s (1200 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.4792 ms 4.5027 ms 4.5258 ms]
                        change: [+1.5206% +2.2716% +2.9788%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3845 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [132.77 µs 132.92 µs 133.06 µs]
                        change: [−2.0671% −1.9608% −1.8548%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
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.3854 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [132.88 µs 133.04 µs 133.19 µs]
                        change: [−1.9187% −1.8185% −1.7210%] (p = 0.00 < 0.05)
                        Performance has improved.

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.1960 s (500 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [10.331 ms 10.344 ms 10.357 ms]
                        change: [+8.1858% +8.3969% +8.6100%] (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 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.2658 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.4017 ms 4.4110 ms 4.4205 ms]
                        change: [+3.6478% +3.9381% +4.2171%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.3980 s (1000 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [5.3916 ms 5.4036 ms 5.4150 ms]
                        change: [+11.933% +12.186% +12.450%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  2 (2.00%) low severe
  6 (6.00%) low mild
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 8.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Collecting 100 samples in estimated 8.1726 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.6074 ms 1.6171 ms 1.6285 ms]
                        change: [+5.4561% +6.0850% +6.7502%] (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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.4382 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6902 ms 1.6939 ms 1.6974 ms]
                        change: [+4.3195% +4.5361% +4.7679%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.1553 s (10k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [509.62 µs 511.66 µs 514.05 µs]
                        change: [+3.4310% +3.9314% +4.4636%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.6310 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [8.0343 ms 8.0392 ms 8.0440 ms]
                        change: [+4.6147% +4.7179% +4.8203%] (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 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.0790 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.6080 ms 4.6106 ms 4.6133 ms]
                        change: [+1.1899% +1.2631% +1.3286%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.3196 s (600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [8.8097 ms 8.8192 ms 8.8285 ms]
                        change: [+8.5919% +8.8032% +9.0087%] (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 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.1187 s (1600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.1711 ms 3.1830 ms 3.1946 ms]
                        change: [+1.4990% +1.9811% +2.5138%] (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.2389 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [15.619 ms 15.630 ms 15.642 ms]
                        change: [+4.8169% +4.9803% +5.1431%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low mild
  4 (4.00%) high 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.1192 s (900 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.6751 ms 5.6876 ms 5.7001 ms]
                        change: [+2.9209% +3.2056% +3.5054%] (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
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Collecting 100 samples in estimated 5.2024 s (2500 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [2.1259 ms 2.1372 ms 2.1485 ms]
                        change: [+13.802% +14.497% +15.074%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0236 s (2300 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [2.1596 ms 2.1682 ms 2.1769 ms]
                        change: [+6.2215% +6.6764% +7.1731%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.44 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [13.677 ms 13.690 ms 13.702 ms]
                        change: [+3.3006% +3.4550% +3.6163%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.2020 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.4739 ms 6.4800 ms 6.4860 ms]
                        change: [+2.1614% +2.2827% +2.4072%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.4869 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4968 ms 1.5035 ms 1.5110 ms]
                        change: [+5.9411% +6.5353% +7.0863%] (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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.4375 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2868 ms 1.2903 ms 1.2939 ms]
                        change: [+4.1342% +4.4475% +4.7811%] (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 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.0352 s (1500 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.3506 ms 3.3535 ms 3.3563 ms]
                        change: [+3.3100% +3.3961% +3.4928%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.4277 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [832.57 µs 833.73 µs 834.94 µs]
                        change: [+1.3470% +1.5424% +1.7594%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.3383 s (900 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.8770 ms 5.8869 ms 5.8965 ms]
                        change: [+6.8008% +6.9784% +7.1571%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
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.1491 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.1919 ms 3.2035 ms 3.2148 ms]
                        change: [+0.0456% +0.5585% +1.0543%] (p = 0.03 < 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 10.0s, enable flat sampling, or reduce sample count to 40.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Collecting 100 samples in estimated 9.9742 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.9495 ms 1.9537 ms 1.9580 ms]
                        change: [+4.6425% +4.9244% +5.2150%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Collecting 100 samples in estimated 7.5247 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4906 ms 1.4920 ms 1.4932 ms]
                        change: [+2.8378% +2.9721% +3.1067%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.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.4356 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.7916 ms 6.7968 ms 6.8021 ms]
                        change: [+6.0433% +6.1441% +6.2472%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.1729 s (700 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.3513 ms 7.3568 ms 7.3624 ms]
                        change: [+4.0288% +4.1423% +4.2536%] (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)/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.9666 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [11.963 ms 11.972 ms 11.982 ms]
                        change: [+8.5226% +8.8045% +9.0881%] (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.0091 s (1300 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.8602 ms 3.8688 ms 3.8776 ms]
                        change: [+4.4403% +4.7910% +5.1206%] (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 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.0914 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.255 µs 59.270 µs 59.285 µs]
                        change: [−0.4982% −0.4652% −0.4301%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.1421 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.882 µs 59.917 µs 59.948 µs]
                        change: [+0.5678% +0.6207% +0.6769%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) low 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.1520 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4439 ms 2.4448 ms 2.4456 ms]
                        change: [+0.3377% +0.4423% +0.5447%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1521 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4476 ms 2.4482 ms 2.4489 ms]
                        change: [+0.3908% +0.4880% +0.5824%] (p = 0.00 < 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.3984 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [734.54 µs 736.42 µs 738.28 µs]
                        change: [−0.0138% +0.2464% +0.5130%] (p = 0.06 > 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 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.6874 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [855.63 µs 858.69 µs 862.28 µs]
                        change: [+2.9374% +3.3988% +3.9209%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.6931 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [7.1614 ms 7.1703 ms 7.1791 ms]
                        change: [+11.571% +11.785% +11.978%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0181 s (2200 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.2852 ms 2.2917 ms 2.2982 ms]
                        change: [+6.0999% +6.4480% +6.8048%] (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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Collecting 100 samples in estimated 6.1899 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2204 ms 1.2212 ms 1.2221 ms]
                        change: [+0.8217% +0.9185% +1.0177%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Collecting 100 samples in estimated 6.1909 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2228 ms 1.2239 ms 1.2250 ms]
                        change: [+1.0950% +1.1826% +1.2662%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.2378 s (900 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.8001 ms 5.8072 ms 5.8142 ms]
                        change: [+7.2139% +7.3637% +7.5112%] (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 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.7551 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5350 ms 1.5382 ms 1.5415 ms]
                        change: [+1.7550% +2.1708% +2.5899%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
  4 (4.00%) high mild

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.8s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Collecting 100 samples in estimated 6.8198 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.3522 ms 1.3555 ms 1.3587 ms]
                        change: [+3.8635% +4.0664% +4.2783%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
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.0551 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [700.40 µs 701.75 µs 703.18 µs]
                        change: [+1.9737% +2.2485% +2.5423%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.0176 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [22.516 µs 22.539 µs 22.559 µs]
                        change: [−3.3094% −3.1915% −3.0827%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0147 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [22.506 µs 22.529 µs 22.549 µs]
                        change: [−3.4839% −3.3681% −3.2565%] (p = 0.00 < 0.05)
                        Performance has improved.

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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.6538 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6885 ms 1.6933 ms 1.6984 ms]
                        change: [+3.6171% +3.8405% +4.1149%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.4289 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [542.68 µs 544.11 µs 545.59 µs]
                        change: [+2.9969% +3.3938% +3.7566%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.1597 s (600 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.5829 ms 8.5896 ms 8.5963 ms]
                        change: [+4.6536% +4.7559% +4.8581%] (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 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.4919 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.4894 ms 5.4918 ms 5.4943 ms]
                        change: [+2.0426% +2.0987% +2.1549%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5778 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [547.77 µs 548.73 µs 549.59 µs]
                        change: [+0.3834% +0.5082% +0.6341%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6352 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [660.02 µs 661.83 µs 663.96 µs]
                        change: [+2.7510% +3.1863% +3.6441%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0670 s (2000 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.5056 ms 2.5115 ms 2.5172 ms]
                        change: [+7.5083% +7.7370% +7.9871%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2284 s (1800 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.8831 ms 2.8893 ms 2.8954 ms]
                        change: [+6.7931% +7.0307% +7.2851%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0159 s (600 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [8.3536 ms 8.3617 ms 8.3703 ms]
                        change: [+8.2539% +8.4244% +8.5784%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2163 s (1400 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.7266 ms 3.7362 ms 3.7456 ms]
                        change: [+6.7737% +7.0842% +7.4062%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Collecting 100 samples in estimated 6.5198 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2829 ms 1.2850 ms 1.2872 ms]
                        change: [+3.0151% +3.4016% +3.8791%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.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.1135 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [704.25 µs 705.42 µs 706.65 µs]
                        change: [+1.9842% +2.2194% +2.4482%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.4466 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [268.07 µs 268.37 µs 268.66 µs]
                        change: [−1.5997% −1.5092% −1.4073%] (p = 0.00 < 0.05)
                        Performance has improved.
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 5.0138 s (15k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [333.00 µs 334.72 µs 336.65 µs]
                        change: [+3.6821% +4.3272% +4.9268%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.2118 s (1400 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.6856 ms 3.6990 ms 3.7119 ms]
                        change: [+13.791% +14.145% +14.523%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 5.0764 s (2400 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [2.1292 ms 2.1368 ms 2.1444 ms]
                        change: [+8.1491% +8.5570% +8.9889%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3358 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [417.35 µs 417.48 µs 417.60 µs]
                        change: [+1.1789% +1.2422% +1.3113%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low mild
  3 (3.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.3428 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [417.56 µs 417.84 µs 418.21 µs]
                        change: [+0.8773% +0.9614% +1.0498%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.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.6560 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [278.56 µs 278.92 µs 279.26 µs]
                        change: [−1.7659% −1.6378% −1.5144%] (p = 0.00 < 0.05)
                        Performance has improved.
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.7314 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [430.05 µs 436.32 µs 443.10 µs]
                        change: [+2.7147% +4.7076% +6.7210%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild

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.0036 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [842.27 ns 846.35 ns 850.72 ns]
                        change: [−13.097% −12.764% −12.430%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.00%) low mild
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.0040 s (6.1M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [841.44 ns 845.27 ns 849.36 ns]
                        change: [−13.034% −12.681% −12.340%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 17 outliers among 100 measurements (17.00%)
  17 (17.00%) low mild

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.2940 s (900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.8264 ms 5.8363 ms 5.8455 ms]
                        change: [+10.151% +10.383% +10.609%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
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.1198 s (1900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.6901 ms 2.6962 ms 2.7022 ms]
                        change: [+2.4899% +2.7689% +3.0699%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.4915 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.8543 ms 6.8631 ms 6.8720 ms]
                        change: [+7.5169% +7.6742% +7.8359%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  3 (3.00%) low mild
  4 (4.00%) high mild
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.2458 s (1900 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.7431 ms 2.7470 ms 2.7510 ms]
                        change: [+2.5921% +2.7705% +2.9434%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.3086 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [130.71 µs 130.82 µs 130.93 µs]
                        change: [−2.0876% −1.9973% −1.9030%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3134 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [130.83 µs 130.94 µs 131.05 µs]
                        change: [−2.0550% −1.9621% −1.8669%] (p = 0.00 < 0.05)
                        Performance has improved.

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.3282 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.3155 ms 3.3195 ms 3.3234 ms]
                        change: [+5.8057% +5.9108% +6.0538%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low severe
  1 (1.00%) high mild
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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Collecting 100 samples in estimated 9.2740 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.8261 ms 1.8275 ms 1.8290 ms]
                        change: [+1.8361% +1.9412% +2.0452%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0636 s (500 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [10.096 ms 10.106 ms 10.115 ms]
                        change: [+6.3549% +6.5512% +6.7435%] (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 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.1293 s (1600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.2103 ms 3.2187 ms 3.2274 ms]
                        change: [+4.6020% +5.0091% +5.3841%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0244 s (1800 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7849 ms 2.7873 ms 2.7897 ms]
                        change: [+2.5100% +2.6077% +2.6897%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low 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.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Collecting 100 samples in estimated 8.3550 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6544 ms 1.6560 ms 1.6577 ms]
                        change: [+0.1582% +0.3457% +0.5415%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  4 (4.00%) low mild
  3 (3.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.0205 s (1500 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.3200 ms 3.3291 ms 3.3380 ms]
                        change: [+8.7962% +9.0659% +9.3460%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.3890 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2704 ms 1.2722 ms 1.2740 ms]
                        change: [+2.1379% +2.3857% +2.6412%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  7 (7.00%) low 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.7622 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [959.20 µs 961.95 µs 964.62 µs]
                        change: [+1.8896% +2.1789% +2.4840%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.8244 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [962.32 µs 965.44 µs 968.81 µs]
                        change: [+2.6723% +3.0663% +3.4830%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1089 s (2000 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.5490 ms 2.5532 ms 2.5573 ms]
                        change: [+5.7240% +5.8865% +6.0805%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Collecting 100 samples in estimated 7.1591 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.4091 ms 1.4119 ms 1.4151 ms]
                        change: [+2.5674% +2.8521% +3.1216%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low severe
  1 (1.00%) high mild

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.1213 s (1500 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.4152 ms 3.4244 ms 3.4334 ms]
                        change: [+5.9520% +6.2433% +6.5052%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low 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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Collecting 100 samples in estimated 7.1977 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.4230 ms 1.4269 ms 1.4311 ms]
                        change: [+1.3954% +1.7090% +2.0273%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.6466 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [159.28 µs 159.41 µs 159.52 µs]
                        change: [−0.9519% −0.8652% −0.7748%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6561 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [159.66 µs 159.79 µs 159.90 µs]
                        change: [−0.6844% −0.5965% −0.5118%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.2242 s (1900 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.7303 ms 2.7348 ms 2.7392 ms]
                        change: [+6.5334% +6.6951% +6.8708%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.4977 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0835 ms 1.0861 ms 1.0888 ms]
                        change: [+0.5155% +1.0479% +1.5294%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.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.5649 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.9567 ms 7.9639 ms 7.9714 ms]
                        change: [+8.4956% +8.6393% +8.7750%] (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.0803 s (1500 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.3696 ms 3.3755 ms 3.3814 ms]
                        change: [+2.1917% +2.4592% +2.7224%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Collecting 100 samples in estimated 5.0356 s (2500 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.9876 ms 1.9926 ms 1.9976 ms]
                        change: [+5.5808% +5.8777% +6.1280%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.4690 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [935.32 µs 937.13 µs 938.96 µs]
                        change: [+1.7211% +2.0353% +2.3773%] (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 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.5303 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [6.1561 ms 6.1623 ms 6.1684 ms]
                        change: [+6.5092% +6.6268% +6.7458%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.2312 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.5994 ms 2.6028 ms 2.6062 ms]
                        change: [+1.3057% +1.4774% +1.6572%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.5219 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.8613 ms 1.8663 ms 1.8715 ms]
                        change: [+4.1546% +4.4163% +4.6946%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.8560 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [878.88 µs 882.51 µs 886.79 µs]
                        change: [+2.2775% +2.8730% +3.4811%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe

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.0715 s (1000 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [5.1083 ms 5.1148 ms 5.1214 ms]
                        change: [+9.0097% +9.1471% +9.3052%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0385 s (2000 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.5123 ms 2.5176 ms 2.5230 ms]
                        change: [+1.9360% +2.2105% +2.4952%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.8709 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.727 ms 11.734 ms 11.741 ms]
                        change: [+4.6849% +4.8618% +5.0262%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.4235 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.9307 ms 4.9343 ms 4.9379 ms]
                        change: [+2.1828% +2.2791% +2.3765%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low severe
  1 (1.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.0510 s (1000 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [5.0633 ms 5.0698 ms 5.0760 ms]
                        change: [+7.2355% +7.3677% +7.4983%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.2643 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.4970 ms 3.4999 ms 3.5028 ms]
                        change: [+2.9226% +3.0195% +3.1284%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3359 s (1200 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.4426 ms 4.4486 ms 4.4545 ms]
                        change: [+8.5831% +8.7428% +8.9146%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
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.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Collecting 100 samples in estimated 7.8505 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5467 ms 1.5503 ms 1.5543 ms]
                        change: [+1.5062% +1.9182% +2.3444%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.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.3781 s (700 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.6721 ms 7.6804 ms 7.6884 ms]
                        change: [+8.0962% +8.2389% +8.3783%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
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.1019 s (1300 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.8998 ms 3.9133 ms 3.9264 ms]
                        change: [+1.5719% +2.0435% +2.5394%] (p = 0.00 < 0.05)
                        Performance has regressed.
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
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Collecting 100 samples in estimated 5.1498 s (2500 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [2.0564 ms 2.0613 ms 2.0660 ms]
                        change: [+4.7550% +5.0164% +5.2750%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5528 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [943.41 µs 945.53 µs 947.88 µs]
                        change: [+1.6196% +1.9943% +2.3165%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0479 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [394.99 µs 395.44 µs 395.88 µs]
                        change: [−2.4921% −2.3600% −2.2282%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0394 s (10k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [502.99 µs 504.24 µs 505.56 µs]
                        change: [+0.5276% +0.9558% +1.4009%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) low mild
  3 (3.00%) high 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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Collecting 100 samples in estimated 7.6136 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.5074 ms 1.5085 ms 1.5097 ms]
                        change: [+1.7905% +1.8838% +1.9874%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Collecting 100 samples in estimated 7.6069 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.5011 ms 1.5018 ms 1.5024 ms]
                        change: [+1.3930% +1.4615% +1.5286%] (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 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.0089 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [83.173 µs 83.202 µs 83.226 µs]
                        change: [−0.5001% −0.4277% −0.3511%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0371 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [83.134 µs 83.161 µs 83.186 µs]
                        change: [−0.3527% −0.3052% −0.2613%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild

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.1031 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.4061 ms 1.4086 ms 1.4111 ms]
                        change: [+1.0334% +1.2078% +1.3823%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe
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.1003 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.4093 ms 1.4118 ms 1.4144 ms]
                        change: [+1.5524% +1.7549% +1.9681%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.0938 s (800 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [6.2946 ms 6.3077 ms 6.3201 ms]
                        change: [+12.466% +12.742% +12.985%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) low severe
  4 (4.00%) low mild
  2 (2.00%) high mild
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Collecting 100 samples in estimated 5.1942 s (2500 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [2.1038 ms 2.1104 ms 2.1170 ms]
                        change: [+7.1448% +7.5312% +7.9264%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0025 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.3882 µs 2.3890 µs 2.3899 µs]
                        change: [−5.7080% −5.6030% −5.4982%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0108 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.3862 µs 2.3870 µs 2.3879 µs]
                        change: [−5.8472% −5.7392% −5.6305%] (p = 0.00 < 0.05)
                        Performance has improved.

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.5130 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [6.1264 ms 6.1332 ms 6.1399 ms]
                        change: [+6.7135% +6.8642% +7.0100%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.0977 s (2200 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.3300 ms 2.3353 ms 2.3407 ms]
                        change: [+4.7988% +5.1227% +5.4791%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.5191 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [364.65 µs 365.35 µs 366.00 µs]
                        change: [+0.0437% +0.1541% +0.2685%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.00%) high mild
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.5282 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [365.91 µs 366.46 µs 367.05 µs]
                        change: [+0.4882% +0.6053% +0.7289%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.7364 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [11.424 ms 11.437 ms 11.450 ms]
                        change: [+9.5399% +9.8086% +10.071%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.2142 s (1500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.4713 ms 3.4784 ms 3.4856 ms]
                        change: [+4.3321% +4.5655% +4.8092%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2758 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.603 µs 65.635 µs 65.663 µs]
                        change: [−0.4772% −0.4068% −0.3417%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2764 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.317 µs 65.381 µs 65.443 µs]
                        change: [−0.8614% −0.8018% −0.7442%] (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 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.2002 s (1100 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.6878 ms 4.6966 ms 4.7052 ms]
                        change: [+10.472% +10.671% +10.881%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0531 s (2300 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1807 ms 2.1851 ms 2.1897 ms]
                        change: [+2.6661% +2.9226% +3.1802%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.1587 s (600 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.5906 ms 8.5948 ms 8.5990 ms]
                        change: [+4.0302% +4.0867% +4.1448%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2869 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8738 ms 5.8766 ms 5.8794 ms]
                        change: [+1.0053% +1.0794% +1.1514%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0664 s (900 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [5.6147 ms 5.6259 ms 5.6370 ms]
                        change: [+11.696% +11.923% +12.176%] (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 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.0756 s (2200 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.2984 ms 2.3079 ms 2.3176 ms]
                        change: [+10.248% +10.718% +11.204%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5373 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.9082 ms 7.9123 ms 7.9165 ms]
                        change: [+4.7760% +4.8669% +4.9474%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
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.3416 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.8594 ms 4.8620 ms 4.8647 ms]
                        change: [+1.4435% +1.5185% +1.5864%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.4729 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [539.82 µs 540.49 µs 541.16 µs]
                        change: [+0.1892% +0.3229% +0.4479%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.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.8546 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [386.80 µs 388.34 µs 390.03 µs]
                        change: [+3.2198% +3.7791% +4.3435%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3205 s (800 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [6.6056 ms 6.6154 ms 6.6251 ms]
                        change: [+10.693% +10.884% +11.079%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0562 s (2000 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.5689 ms 2.5779 ms 2.5868 ms]
                        change: [+9.2728% +9.7468% +10.218%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low mild
  3 (3.00%) high mild

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.3s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Collecting 100 samples in estimated 6.2820 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2358 ms 1.2367 ms 1.2375 ms]
                        change: [+1.4646% +1.5456% +1.6294%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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 7.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 7.8938 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.5607 ms 1.5685 ms 1.5770 ms]
                        change: [+14.290% +15.099% +15.880%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 10 outliers among 100 measurements (10.00%)
  4 (4.00%) low mild
  5 (5.00%) high mild
  1 (1.00%) high severe

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.5088 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [108.93 µs 109.07 µs 109.20 µs]
                        change: [−0.3750% −0.2891% −0.2091%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 34 outliers among 100 measurements (34.00%)
  14 (14.00%) low mild
  20 (20.00%) high severe
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.4906 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.94 µs 109.05 µs 109.14 µs]
                        change: [−0.3868% −0.3046% −0.2189%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3896 s (500 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [10.770 ms 10.782 ms 10.794 ms]
                        change: [+8.9155% +9.1508% +9.3695%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) low mild
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.3893 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [4.1307 ms 4.1405 ms 4.1505 ms]
                        change: [+3.7328% +4.0603% +4.3696%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1008 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [801.09 µs 801.81 µs 802.55 µs]
                        change: [+1.2265% +1.2995% +1.3772%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 5.0053 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [495.07 µs 496.24 µs 497.51 µs]
                        change: [+1.8519% +2.1579% +2.5002%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.3086 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [624.33 µs 624.58 µs 624.81 µs]
                        change: [+0.3856% +0.4459% +0.5040%] (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 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.0266 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [400.69 µs 401.22 µs 401.73 µs]
                        change: [+3.0168% +3.2303% +3.4658%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
  2 (2.00%) high severe

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.0688 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.9777 ms 2.9852 ms 2.9925 ms]
                        change: [+9.2633% +9.5628% +9.8518%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
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.3284 s (1600 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.3332 ms 3.3406 ms 3.3477 ms]
                        change: [+9.3786% +9.6246% +9.8878%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.2262 s (1900 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.7456 ms 2.7621 ms 2.7782 ms]
                        change: [+15.555% +16.271% +16.984%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0686 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.2999 ms 2.3111 ms 2.3221 ms]
                        change: [+7.8281% +8.3717% +8.9454%] (p = 0.00 < 0.05)
                        Performance has regressed.

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 5.2239 s (400 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [13.060 ms 13.072 ms 13.083 ms]
                        change: [+6.0923% +6.3192% +6.5370%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.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.2731 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.5989 ms 6.6041 ms 6.6093 ms]
                        change: [+4.4677% +4.6133% +4.7476%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.0463 s (1700 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.9376 ms 2.9458 ms 2.9538 ms]
                        change: [+8.0133% +8.3071% +8.6279%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low 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.1408 s (1500 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.4345 ms 3.4433 ms 3.4517 ms]
                        change: [+7.0333% +7.3495% +7.6293%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
  1 (1.00%) high mild

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.1235 s (1700 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [3.0056 ms 3.0129 ms 3.0198 ms]
                        change: [+7.7390% +7.9988% +8.2504%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Collecting 100 samples in estimated 9.1602 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.8099 ms 1.8127 ms 1.8156 ms]
                        change: [+2.2168% +2.4850% +2.7538%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild
  3 (3.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.5311 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [546.67 µs 546.82 µs 546.97 µs]
                        change: [+0.4567% +0.5023% +0.5477%] (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 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.5286 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [546.52 µs 546.74 µs 546.96 µs]
                        change: [+0.3899% +0.4414% +0.4928%] (p = 0.00 < 0.05)
                        Change within noise threshold.

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit d52bd51

Detail
   Compiling tikv-jemalloc-sys v0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7
   Compiling revm-handler v18.1.0 (/home/rise-bot/pevm/crates/revm-handler)
   Compiling revm-inspector v19.0.0
   Compiling revm v38.0.0
   Compiling op-revm v19.0.0
   Compiling revme v15.0.0
   Compiling tikv-jemallocator v0.6.1
   Compiling pevm v0.1.0 (/home/rise-bot/pevm/crates/pevm)
    Finished `bench` profile [optimized] target(s) in 55.25s
     Running benches/gigagas.rs (target/release/deps/gigagas-7aab4c4652b4675b)
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.6s, or reduce sample count to 80.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.5850 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [55.847 ms 55.974 ms 56.103 ms]
                        change: [−0.6379% −0.3682% −0.1032%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.1341 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [46.735 ms 47.160 ms 47.593 ms]
                        change: [+0.0774% +1.4450% +2.7669%] (p = 0.03 < 0.05)
                        Change within noise threshold.

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.4s, or reduce sample count to 30.
Benchmarking Independent ERC20/Sequential: Collecting 100 samples in estimated 16.420 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [168.66 ms 168.86 ms 169.07 ms]
                        change: [+0.5525% +0.8287% +1.1102%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.3s, or reduce sample count to 90.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.2696 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [52.301 ms 52.960 ms 53.604 ms]
                        change: [−3.0570% −1.2232% +0.4674%] (p = 0.18 > 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 46.1s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 46.066 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [475.35 ms 475.95 ms 476.50 ms]
                        change: [+1.3830% +1.5426% +1.7030%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  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.1790 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.637 ms 25.690 ms 25.745 ms]
                        change: [+2.3942% +2.6534% +2.9091%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit d52bd51
Report:
Baseline main:

Average: x1.95
Max: x3.96
Min: x0.68

This pr:

Average: x2.03
Max: x4.01
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 53.46s
     Running benches/mainnet.rs (target/release/deps/mainnet-4809e91b3393603f)
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.2679 s (1000 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [5.2004 ms 5.2086 ms 5.2167 ms]
                        change: [+9.5537% +9.7123% +9.8817%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2965 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.5934 ms 3.6731 ms 3.7555 ms]
                        change: [−3.2810% −0.4183% +2.5370%] (p = 0.77 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3381 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [17.781 ms 17.793 ms 17.805 ms]
                        change: [+4.3757% +4.5610% +4.7445%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.3872 s (1200 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.4673 ms 4.4909 ms 4.5140 ms]
                        change: [+1.2580% +2.0039% +2.7657%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

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.3739 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [133.48 µs 133.64 µs 133.80 µs]
                        change: [−1.4664% −1.2958% −1.1272%] (p = 0.00 < 0.05)
                        Performance has improved.
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.3708 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [133.47 µs 133.65 µs 133.82 µs]
                        change: [−1.3856% −1.2184% −1.0491%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2473 s (500 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [10.447 ms 10.458 ms 10.468 ms]
                        change: [+9.3857% +9.5886% +9.7919%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) low mild
  3 (3.00%) high mild
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.2555 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.3862 ms 4.3950 ms 4.4041 ms]
                        change: [+3.2744% +3.5615% +3.8536%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.4484 s (1000 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [5.4568 ms 5.4647 ms 5.4726 ms]
                        change: [+13.261% +13.456% +13.648%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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 8.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Collecting 100 samples in estimated 8.1546 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.6400 ms 1.6483 ms 1.6580 ms]
                        change: [+7.2091% +7.8858% +8.5136%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.5014 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6675 ms 1.6703 ms 1.6731 ms]
                        change: [+3.3201% +3.5007% +3.6744%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0823 s (10k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [508.30 µs 510.11 µs 512.25 µs]
                        change: [+2.3702% +2.8444% +3.3422%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 13 outliers among 100 measurements (13.00%)
  2 (2.00%) low mild
  11 (11.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.6231 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [8.0372 ms 8.0416 ms 8.0461 ms]
                        change: [+4.6427% +4.7490% +4.8476%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.0908 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.6276 ms 4.6300 ms 4.6324 ms]
                        change: [+1.6262% +1.6878% +1.7610%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.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.3365 s (600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [8.8569 ms 8.8660 ms 8.8751 ms]
                        change: [+9.1762% +9.3813% +9.5895%] (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.0937 s (1600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.1448 ms 3.1567 ms 3.1687 ms]
                        change: [+0.6277% +1.1385% +1.6459%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

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.3006 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [15.726 ms 15.736 ms 15.747 ms]
                        change: [+5.5289% +5.6921% +5.8536%] (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 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.1075 s (900 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.6806 ms 5.6921 ms 5.7040 ms]
                        change: [+3.0004% +3.2880% +3.5674%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Collecting 100 samples in estimated 5.0093 s (2400 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [1.9858 ms 2.0028 ms 2.0200 ms]
                        change: [+6.4309% +7.2945% +8.2705%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0484 s (2400 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [2.1283 ms 2.1347 ms 2.1413 ms]
                        change: [+4.6467% +5.0285% +5.3970%] (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 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 305.7s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 305.71 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [13.770 ms 13.783 ms 13.797 ms]
                        change: [+3.9967% +4.1617% +4.3243%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.2175 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.5306 ms 6.5369 ms 6.5433 ms]
                        change: [+3.0611% +3.1809% +3.3127%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild

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.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.8539 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.5180 ms 1.5248 ms 1.5318 ms]
                        change: [+7.7809% +8.4290% +9.1052%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.5s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.5491 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2970 ms 1.3007 ms 1.3044 ms]
                        change: [+4.8251% +5.1680% +5.5251%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0512 s (1500 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.3502 ms 3.3521 ms 3.3541 ms]
                        change: [+3.2791% +3.3557% +3.4300%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.4444 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [834.46 µs 835.66 µs 836.97 µs]
                        change: [+1.6937% +1.8671% +2.0441%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3056 s (900 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.8969 ms 5.9024 ms 5.9077 ms]
                        change: [+7.1412% +7.2593% +7.3684%] (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 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.1333 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.2168 ms 3.2261 ms 3.2355 ms]
                        change: [+0.8173% +1.2688% +1.7193%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Collecting 100 samples in estimated 5.0589 s (2500 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [2.0110 ms 2.0162 ms 2.0215 ms]
                        change: [+7.3291% +7.6445% +7.9091%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Collecting 100 samples in estimated 7.5357 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4910 ms 1.4923 ms 1.4936 ms]
                        change: [+3.0328% +3.1756% +3.3441%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
  2 (2.00%) high severe

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.4471 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.7988 ms 6.8043 ms 6.8096 ms]
                        change: [+6.1710% +6.2607% +6.3612%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  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.1628 s (700 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.3717 ms 7.3762 ms 7.3807 ms]
                        change: [+4.3107% +4.4166% +4.5197%] (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 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.9573 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [11.893 ms 11.904 ms 11.915 ms]
                        change: [+7.9007% +8.1871% +8.4745%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low mild
  4 (4.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.3646 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.8141 ms 3.8226 ms 3.8311 ms]
                        change: [+3.2106% +3.5372% +3.8651%] (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 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.1453 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.575 µs 59.650 µs 59.737 µs]
                        change: [+0.1821% +0.2658% +0.3562%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0995 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.614 µs 59.716 µs 59.810 µs]
                        change: [−0.0444% +0.0393% +0.1363%] (p = 0.41 > 0.05)
                        No change in performance detected.
Found 12 outliers among 100 measurements (12.00%)
  12 (12.00%) high mild

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.1595 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4487 ms 2.4495 ms 2.4503 ms]
                        change: [+0.5317% +0.6356% +0.7366%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1526 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4495 ms 2.4503 ms 2.4512 ms]
                        change: [+0.4770% +0.5743% +0.6723%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.3923 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [731.48 µs 733.02 µs 734.55 µs]
                        change: [+0.0510% +0.2692% +0.5100%] (p = 0.04 < 0.05)
                        Change within noise threshold.
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 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.4396 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [841.00 µs 844.05 µs 847.45 µs]
                        change: [+0.4897% +0.9356% +1.3937%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.0439 s (700 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [7.1628 ms 7.1761 ms 7.1887 ms]
                        change: [+11.614% +11.874% +12.111%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.1982 s (2300 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.2754 ms 2.2819 ms 2.2885 ms]
                        change: [+5.6140% +5.9935% +6.3752%] (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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Collecting 100 samples in estimated 6.2115 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2304 ms 1.2315 ms 1.2325 ms]
                        change: [+1.6718% +1.7891% +1.8994%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Collecting 100 samples in estimated 6.2069 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2293 ms 1.2306 ms 1.2319 ms]
                        change: [+1.6921% +1.7958% +1.9029%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.2739 s (900 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.8365 ms 5.8413 ms 5.8460 ms]
                        change: [+7.8789% +7.9935% +8.1139%] (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.7638 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5418 ms 1.5444 ms 1.5471 ms]
                        change: [+1.9230% +2.3272% +2.7174%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low severe
  3 (3.00%) high mild

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.8s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Collecting 100 samples in estimated 6.8116 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.3529 ms 1.3553 ms 1.3576 ms]
                        change: [+4.1423% +4.3522% +4.5899%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low mild
  3 (3.00%) high mild
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.0744 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [708.40 µs 709.69 µs 711.03 µs]
                        change: [+2.7980% +3.0900% +3.3827%] (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 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.0209 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [22.662 µs 22.692 µs 22.726 µs]
                        change: [−2.3308% −2.0609% −1.8026%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0235 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [22.670 µs 22.701 µs 22.735 µs]
                        change: [−2.4150% −2.1463% −1.8657%] (p = 0.00 < 0.05)
                        Performance has improved.

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.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.6838 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.7070 ms 1.7108 ms 1.7146 ms]
                        change: [+4.8282% +5.0548% +5.3146%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.4115 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [534.42 µs 535.69 µs 537.17 µs]
                        change: [+2.2006% +2.6518% +3.1076%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.00%) high severe

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.1554 s (600 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.5768 ms 8.5810 ms 8.5850 ms]
                        change: [+4.5746% +4.6507% +4.7265%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.4689 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.4676 ms 5.4702 ms 5.4729 ms]
                        change: [+1.6358% +1.6973% +1.7546%] (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 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.5731 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [551.91 µs 552.17 µs 552.44 µs]
                        change: [+1.4241% +1.5100% +1.5965%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5952 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [661.01 µs 663.35 µs 665.99 µs]
                        change: [+2.8219% +3.3085% +3.7752%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 12 outliers among 100 measurements (12.00%)
  11 (11.00%) high mild
  1 (1.00%) high severe

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.0490 s (2000 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.5173 ms 2.5236 ms 2.5298 ms]
                        change: [+7.9654% +8.2569% +8.5390%] (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 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.2100 s (1800 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.8425 ms 2.8496 ms 2.8566 ms]
                        change: [+5.3018% +5.5605% +5.8187%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) low mild
  1 (1.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.7667 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [8.2700 ms 8.2776 ms 8.2852 ms]
                        change: [+7.1782% +7.3335% +7.4875%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.1227 s (1400 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.6634 ms 3.6714 ms 3.6793 ms]
                        change: [+4.9495% +5.2261% +5.5084%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Collecting 100 samples in estimated 6.4674 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2793 ms 1.2810 ms 1.2829 ms]
                        change: [+2.6547% +2.8292% +2.9951%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.0925 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [705.36 µs 706.75 µs 708.16 µs]
                        change: [+2.0810% +2.3473% +2.6089%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high 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.4484 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [269.11 µs 269.41 µs 269.73 µs]
                        change: [−1.0017% −0.8127% −0.6212%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6574 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [331.70 µs 333.35 µs 335.23 µs]
                        change: [+3.2452% +3.8423% +4.4558%] (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)/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.0999 s (1400 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.6321 ms 3.6493 ms 3.6661 ms]
                        change: [+12.056% +12.611% +13.117%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 5.0758 s (2500 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [2.1004 ms 2.1099 ms 2.1196 ms]
                        change: [+6.6524% +7.1920% +7.6641%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3524 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [418.14 µs 418.34 µs 418.54 µs]
                        change: [+1.4080% +1.4831% +1.5590%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.3434 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [417.87 µs 418.13 µs 418.42 µs]
                        change: [+0.9676% +1.0587% +1.1443%] (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 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.6212 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [278.41 µs 278.75 µs 279.12 µs]
                        change: [−1.4858% −1.2811% −1.0535%] (p = 0.00 < 0.05)
                        Performance has improved.
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.1596 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [402.45 µs 406.01 µs 409.89 µs]
                        change: [−4.0084% −2.6508% −1.3413%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild

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.0030 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [843.23 ns 847.55 ns 852.09 ns]
                        change: [−13.499% −13.134% −12.753%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0003 s (6.0M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [845.00 ns 849.28 ns 853.76 ns]
                        change: [−13.184% −12.800% −12.430%] (p = 0.00 < 0.05)
                        Performance has improved.

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.2818 s (900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.8107 ms 5.8196 ms 5.8285 ms]
                        change: [+9.8531% +10.067% +10.280%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0867 s (1900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.6617 ms 2.6673 ms 2.6729 ms]
                        change: [+1.4041% +1.6685% +1.9233%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.4854 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.8510 ms 6.8596 ms 6.8679 ms]
                        change: [+7.4762% +7.6205% +7.7767%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  2 (2.00%) low mild
  1 (1.00%) high mild
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.1951 s (1900 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.7390 ms 2.7428 ms 2.7467 ms]
                        change: [+2.4443% +2.6139% +2.7825%] (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 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.3069 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [131.38 µs 131.50 µs 131.64 µs]
                        change: [−1.3225% −1.1264% −0.9188%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3098 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [131.41 µs 131.54 µs 131.68 µs]
                        change: [−1.3196% −1.1221% −0.9254%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.2091 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.2690 ms 3.2742 ms 3.2793 ms]
                        change: [+4.2956% +4.4660% +4.6438%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Collecting 100 samples in estimated 9.2359 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.8235 ms 1.8249 ms 1.8264 ms]
                        change: [+1.7669% +1.8839% +2.0020%] (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 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.0718 s (500 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [10.105 ms 10.118 ms 10.130 ms]
                        change: [+6.4567% +6.6788% +6.8829%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) low mild
  1 (1.00%) high mild
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.0858 s (1600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.1924 ms 3.2003 ms 3.2083 ms]
                        change: [+4.0280% +4.4085% +4.7855%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0355 s (1800 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7880 ms 2.7914 ms 2.7948 ms]
                        change: [+2.6263% +2.7565% +2.8923%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Collecting 100 samples in estimated 8.3441 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6479 ms 1.6496 ms 1.6515 ms]
                        change: [−0.1079% +0.0630% +0.2242%] (p = 0.47 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  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.0785 s (1500 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.4051 ms 3.4105 ms 3.4158 ms]
                        change: [+11.544% +11.730% +11.905%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) low mild
  1 (1.00%) high mild
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.4s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.3524 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2618 ms 1.2638 ms 1.2660 ms]
                        change: [+1.7380% +1.9998% +2.2740%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 10 outliers among 100 measurements (10.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
  5 (5.00%) high mild
  1 (1.00%) high severe

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.8103 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [954.01 µs 955.93 µs 958.00 µs]
                        change: [+2.0797% +2.4244% +2.8414%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.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.4783 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [947.87 µs 950.23 µs 952.71 µs]
                        change: [+0.8666% +1.1937% +1.5183%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.1561 s (2000 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.5583 ms 2.5629 ms 2.5674 ms]
                        change: [+6.0992% +6.2915% +6.4646%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
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.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Collecting 100 samples in estimated 7.0954 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.4081 ms 1.4104 ms 1.4132 ms]
                        change: [+2.3475% +2.6158% +2.8804%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low severe
  4 (4.00%) high mild

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.2235 s (1500 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.4421 ms 3.4509 ms 3.4595 ms]
                        change: [+6.7804% +7.0652% +7.3336%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Collecting 100 samples in estimated 7.1804 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.4249 ms 1.4284 ms 1.4324 ms]
                        change: [+1.3011% +1.6202% +1.9569%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  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.6463 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [159.64 µs 159.72 µs 159.82 µs]
                        change: [−0.6190% −0.5022% −0.3884%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.6578 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [159.90 µs 159.99 µs 160.09 µs]
                        change: [−0.3779% −0.2669% −0.1555%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1069 s (1900 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.7056 ms 2.7126 ms 2.7193 ms]
                        change: [+5.5062% +5.8291% +6.0712%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
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.5028 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0873 ms 1.0899 ms 1.0927 ms]
                        change: [+0.5860% +1.1773% +1.7340%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild
  2 (2.00%) high mild
  1 (1.00%) high severe

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.5036 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.8764 ms 7.8868 ms 7.8968 ms]
                        change: [+7.4158% +7.5868% +7.7534%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
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.0314 s (1500 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.3573 ms 3.3644 ms 3.3716 ms]
                        change: [+1.8400% +2.1218% +2.4412%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Collecting 100 samples in estimated 5.0216 s (2500 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [2.0040 ms 2.0092 ms 2.0143 ms]
                        change: [+6.5015% +6.7559% +7.0498%] (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 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.4842 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [933.52 µs 935.52 µs 937.68 µs]
                        change: [+1.6033% +1.9691% +2.3202%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  3 (3.00%) high 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.5906 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [6.2061 ms 6.2117 ms 6.2172 ms]
                        change: [+7.3647% +7.4809% +7.5880%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.2122 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.5981 ms 2.6015 ms 2.6048 ms]
                        change: [+1.2536% +1.4264% +1.6063%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.5403 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.8741 ms 1.8789 ms 1.8836 ms]
                        change: [+4.9947% +5.2375% +5.5002%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.9326 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [893.22 µs 898.18 µs 904.21 µs]
                        change: [+4.4758% +5.1192% +5.7625%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 9 outliers among 100 measurements (9.00%)
  9 (9.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.1389 s (1000 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [5.1519 ms 5.1588 ms 5.1654 ms]
                        change: [+9.9337% +10.086% +10.228%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.0412 s (2000 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.5121 ms 2.5175 ms 2.5230 ms]
                        change: [+1.9367% +2.2052% +2.4764%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.8609 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.723 ms 11.731 ms 11.738 ms]
                        change: [+4.6576% +4.8316% +5.0016%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.4232 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.9263 ms 4.9294 ms 4.9325 ms]
                        change: [+2.0910% +2.1772% +2.2623%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.0699 s (1000 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [5.0514 ms 5.0583 ms 5.0651 ms]
                        change: [+6.9789% +7.1249% +7.2680%] (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 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.2133 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.4790 ms 3.4825 ms 3.4859 ms]
                        change: [+2.3803% +2.5070% +2.6367%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.3584 s (1200 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.4430 ms 4.4497 ms 4.4563 ms]
                        change: [+8.5889% +8.7693% +8.9281%] (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 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.8s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Collecting 100 samples in estimated 7.8174 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5392 ms 1.5423 ms 1.5455 ms]
                        change: [+0.7807% +1.1630% +1.5469%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low severe
  1 (1.00%) low mild
  2 (2.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.3742 s (700 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.6956 ms 7.7042 ms 7.7127 ms]
                        change: [+8.4183% +8.5750% +8.7268%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
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.1024 s (1300 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.9125 ms 3.9245 ms 3.9366 ms]
                        change: [+1.9309% +2.3353% +2.7586%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Collecting 100 samples in estimated 5.2013 s (2500 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [2.0844 ms 2.0886 ms 2.0925 ms]
                        change: [+6.1718% +6.4062% +6.5868%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low severe
  2 (2.00%) low 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.5252 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [948.53 µs 950.92 µs 953.61 µs]
                        change: [+2.3174% +2.6907% +3.0281%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0461 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [397.60 µs 398.03 µs 398.52 µs]
                        change: [−1.6090% −1.4224% −1.2178%] (p = 0.00 < 0.05)
                        Performance has improved.
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 7.4815 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [497.61 µs 499.27 µs 501.00 µs]
                        change: [+0.1232% +0.5049% +0.8754%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high 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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Collecting 100 samples in estimated 7.6072 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.5135 ms 1.5149 ms 1.5163 ms]
                        change: [+2.0689% +2.1597% +2.2601%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Collecting 100 samples in estimated 7.6333 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.5127 ms 1.5138 ms 1.5149 ms]
                        change: [+1.9932% +2.1047% +2.2004%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0336 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [83.359 µs 83.387 µs 83.418 µs]
                        change: [+0.0296% +0.1002% +0.1668%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0170 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [83.094 µs 83.178 µs 83.253 µs]
                        change: [−0.4325% −0.3539% −0.2760%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Collecting 100 samples in estimated 7.1991 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.4322 ms 1.4350 ms 1.4378 ms]
                        change: [+3.0305% +3.2138% +3.4147%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 7.2433 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.4606 ms 1.4645 ms 1.4685 ms]
                        change: [+5.0922% +5.3703% +5.6678%] (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 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.0637 s (800 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [6.2650 ms 6.2789 ms 6.2927 ms]
                        change: [+11.953% +12.226% +12.493%] (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 15199017(866 txs, 30028395 gas)/Parallel
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Collecting 100 samples in estimated 5.0929 s (2400 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [2.1453 ms 2.1527 ms 2.1600 ms]
                        change: [+9.2568% +9.6874% +10.103%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0084 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.3949 µs 2.3961 µs 2.3975 µs]
                        change: [−5.4959% −5.3631% −5.2309%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0115 s (2.1M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.3893 µs 2.3906 µs 2.3921 µs]
                        change: [−5.7417% −5.6063% −5.4731%] (p = 0.00 < 0.05)
                        Performance has improved.

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.5781 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [6.1567 ms 6.1637 ms 6.1706 ms]
                        change: [+7.2509% +7.3959% +7.5399%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0870 s (2200 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.3300 ms 2.3362 ms 2.3426 ms]
                        change: [+4.7803% +5.1653% +5.5290%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5572 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [368.53 µs 369.18 µs 369.78 µs]
                        change: [+1.1195% +1.2709% +1.4079%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.5580 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [368.55 µs 369.27 µs 369.95 µs]
                        change: [+1.1468% +1.2974% +1.4642%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.6812 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [11.408 ms 11.419 ms 11.430 ms]
                        change: [+9.3810% +9.6393% +9.8903%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
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.2112 s (1500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.4521 ms 3.4588 ms 3.4654 ms]
                        change: [+3.7275% +3.9749% +4.2031%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.2865 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.476 µs 65.499 µs 65.525 µs]
                        change: [−0.4281% −0.3600% −0.2910%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2854 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.385 µs 65.412 µs 65.440 µs]
                        change: [−0.5757% −0.5089% −0.4326%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1676 s (1100 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.6833 ms 4.6925 ms 4.7016 ms]
                        change: [+10.344% +10.575% +10.782%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0407 s (2300 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1926 ms 2.1978 ms 2.2029 ms]
                        change: [+3.2193% +3.5199% +3.8057%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.1691 s (600 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.6151 ms 8.6197 ms 8.6243 ms]
                        change: [+4.3231% +4.3881% +4.4534%] (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 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.2944 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8762 ms 5.8793 ms 5.8824 ms]
                        change: [+1.0523% +1.1261% +1.2032%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0647 s (900 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [5.6157 ms 5.6265 ms 5.6372 ms]
                        change: [+11.709% +11.935% +12.164%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
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.2032 s (2300 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.2594 ms 2.2681 ms 2.2767 ms]
                        change: [+8.3797% +8.8095% +9.2563%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5509 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.9498 ms 7.9540 ms 7.9582 ms]
                        change: [+5.3292% +5.4193% +5.5021%] (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 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.3384 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.8549 ms 4.8576 ms 4.8603 ms]
                        change: [+1.3559% +1.4255% +1.4963%] (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 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.4711 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [542.91 µs 543.48 µs 544.07 µs]
                        change: [+0.8396% +0.9635% +1.0883%] (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 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.8427 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [388.88 µs 390.61 µs 392.48 µs]
                        change: [+4.0840% +4.6789% +5.2697%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2797 s (800 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [6.5984 ms 6.6075 ms 6.6167 ms]
                        change: [+10.565% +10.752% +10.941%] (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 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.0260 s (2000 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.5063 ms 2.5161 ms 2.5260 ms]
                        change: [+6.5912% +7.1138% +7.6167%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.2248 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2340 ms 1.2358 ms 1.2378 ms]
                        change: [+1.1216% +1.2216% +1.3164%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  4 (4.00%) high mild
  4 (4.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 7.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 7.1822 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.4177 ms 1.4220 ms 1.4264 ms]
                        change: [+4.0135% +4.5042% +4.9554%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  3 (3.00%) low mild
  1 (1.00%) high mild
  1 (1.00%) high severe

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.4933 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [108.49 µs 108.54 µs 108.58 µs]
                        change: [−0.6603% −0.5910% −0.5249%] (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.4757 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.46 µs 108.51 µs 108.55 µs]
                        change: [−0.7261% −0.6572% −0.5926%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

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.3909 s (500 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [10.738 ms 10.749 ms 10.760 ms]
                        change: [+8.5955% +8.8179% +9.0345%] (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 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.3768 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [4.1461 ms 4.1537 ms 4.1612 ms]
                        change: [+4.1062% +4.3916% +4.6770%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  4 (4.00%) low mild
  2 (2.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.1350 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [802.84 µs 803.22 µs 803.57 µs]
                        change: [+1.5449% +1.6156% +1.6857%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 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 5.0271 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [496.93 µs 497.92 µs 499.01 µs]
                        change: [+2.4945% +2.7935% +3.0963%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  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.3228 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [623.62 µs 623.87 µs 624.11 µs]
                        change: [+0.2468% +0.3003% +0.3538%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
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.0605 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [400.04 µs 400.69 µs 401.32 µs]
                        change: [+2.6536% +2.9024% +3.1651%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe

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.1381 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [3.0410 ms 3.0475 ms 3.0539 ms]
                        change: [+11.620% +11.851% +12.085%] (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 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.0723 s (1500 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.3373 ms 3.3451 ms 3.3527 ms]
                        change: [+9.4910% +9.7725% +10.059%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.2214 s (1900 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.6867 ms 2.7040 ms 2.7210 ms]
                        change: [+13.079% +13.825% +14.604%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
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.0025 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.2591 ms 2.2663 ms 2.2737 ms]
                        change: [+5.8782% +6.2740% +6.6805%] (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 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 5.2133 s (400 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [12.995 ms 13.004 ms 13.013 ms]
                        change: [+5.5524% +5.7682% +5.9814%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.2743 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.5792 ms 6.5850 ms 6.5909 ms]
                        change: [+4.1682% +4.3118% +4.4599%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild

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.2808 s (1800 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.9347 ms 2.9421 ms 2.9494 ms]
                        change: [+7.9046% +8.1713% +8.4300%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low 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.1697 s (1500 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.4189 ms 3.4269 ms 3.4346 ms]
                        change: [+6.5543% +6.8370% +7.1253%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild

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.0512 s (1700 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [3.0095 ms 3.0165 ms 3.0232 ms]
                        change: [+7.8502% +8.1272% +8.3651%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
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.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Collecting 100 samples in estimated 9.1179 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.8079 ms 1.8104 ms 1.8132 ms]
                        change: [+2.0120% +2.2536% +2.4801%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 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.5241 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [546.39 µs 546.52 µs 546.64 µs]
                        change: [+0.3749% +0.4159% +0.4542%] (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 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.5270 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [546.89 µs 547.04 µs 547.17 µs]
                        change: [+0.4300% +0.4850% +0.5477%] (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

duyquang6 added 15 commits June 9, 2026 10:30
  transaction_id was designed for transact_many — cross-tx account warmth
  via integer comparison. We always call transact() (transact_one +
  finalize), so state is empty at the start of every tx. The
  transaction_id != current check was always false; only the Cold status
  bit (set by sub-call checkpoint reverts) ever mattered.

  Replace is_cold_transaction_id with direct Cold bit checks. Simplify
  discard_tx to skip journal replay — finalize() takes and discards state
  immediately after on failed txs.
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