Skip to content

fix: require full block_size validations before scheduler completion#510

Open
datnguyencse wants to merge 2 commits into
risechain:mainfrom
datnguyencse:fix/scheduler-completion-threshold
Open

fix: require full block_size validations before scheduler completion#510
datnguyencse wants to merge 2 commits into
risechain:mainfrom
datnguyencse:fix/scheduler-completion-threshold

Conversation

@datnguyencse

Copy link
Copy Markdown
Contributor

With NeedValidation = 1 (distinct bit values), lazy and first transactions
auto-validate in finish_execution, incrementing num_validated without going
through the validation queue. This left min_validation_idx > 0, making the
completion threshold block_size - min_validation_idx < block_size.

Threads could exit as soon as that lower threshold was met, while the
remaining high-conflict non-lazy tail transactions were still mid
re-execution. Those transactions then ran with a shrinking thread pool,
degrading parallelism on contentious workloads.

Fix: require num_validated >= block_size unconditionally. Auto-validations
still count toward the total, so pure lazy blocks are unaffected; all
threads now stay alive until every transaction's conflict resolution is
complete.

Benchmark:

  • NeedValidation = 0
Mainnet:
Average: x1.97
Max: x3.97
Min: x0.66

Gigagas:
Raw: 47.715 ms
ERC20: 54.146 ms
Uniswap: 25.270 ms
  • NeedValidation = 1
Average: x1.93
Max: x3.92
Min: x0.67

Raw: 47.287 ms
ERC20: 54.055 ms
Uniswap: 25.179 ms
  • This PR:
Average: x1.97
Max: x3.94
Min: x0.66

Raw: 47.526 ms
ERC20: 53.470 ms
Uniswap: 25.217 ms

@claude claude 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.

Claude Code Review

This pull request is from a fork — automated review is disabled. A repository maintainer can comment @claude review to run a one-time review.

@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 updates the thread exit condition in crates/pevm/src/scheduler.rs to require all transactions to be validated before any thread exits. This ensures that tail transactions requiring re-execution do not run on a shrinking thread pool. There are no review comments to address.

@risechain risechain deleted a comment from riselabs-benchmark Bot May 27, 2026
@datnguyencse datnguyencse requested review from a team as code owners May 27, 2026 07:39
@tu-doan

tu-doan commented May 27, 2026

Copy link
Copy Markdown
Contributor

benchmark

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit 393e96d

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.07s
     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.4492 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [54.538 ms 54.657 ms 54.777 ms]
                        change: [−0.7862% −0.5203% −0.2653%] (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.1775 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [46.259 ms 46.693 ms 47.141 ms]
                        change: [−5.2194% −3.6790% −2.1405%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild

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.062 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [164.64 ms 164.99 ms 165.34 ms]
                        change: [+0.2225% +0.4833% +0.7515%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Independent ERC20/Parallel
Benchmarking Independent ERC20/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.5s, or reduce sample count to 90.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.4683 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [53.551 ms 54.327 ms 55.092 ms]
                        change: [−2.2660% −0.4962% +1.3356%] (p = 0.59 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.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 44.9s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 44.900 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [466.41 ms 467.05 ms 467.69 ms]
                        change: [−0.4055% −0.2235% −0.0524%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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 7.4423 s (300 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [24.816 ms 24.856 ms 24.896 ms]
                        change: [−2.2168% −1.9751% −1.7269%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit 393e96d
Report:
Baseline main:

Average: x1.95
Max: x3.92
Min: x0.65

This pr:

Average: x1.92
Max: x3.96
Min: x0.66
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.08s
     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.2384 s (1100 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [4.7861 ms 4.7950 ms 4.8042 ms]
                        change: [+0.0326% +0.2230% +0.4470%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  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.1784 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.6720 ms 3.7433 ms 3.8159 ms]
                        change: [−1.2117% +1.6690% +4.7870%] (p = 0.25 > 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.0211 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [16.588 ms 16.611 ms 16.635 ms]
                        change: [−3.5148% −3.2818% −3.0500%] (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 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.1748 s (1100 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.6987 ms 4.7230 ms 4.7473 ms]
                        change: [+7.0692% +7.7620% +8.5062%] (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.3759 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [134.19 µs 134.36 µs 134.54 µs]
                        change: [−0.0127% +0.1105% +0.2301%] (p = 0.08 > 0.05)
                        No change in performance detected.
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.3710 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [134.11 µs 134.27 µs 134.45 µs]
                        change: [+0.0168% +0.1302% +0.2486%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.7395 s (600 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [9.5508 ms 9.5646 ms 9.5790 ms]
                        change: [−0.4806% −0.2680% −0.0555%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.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.0662 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.2259 ms 4.2339 ms 4.2422 ms]
                        change: [−1.0737% −0.8287% −0.6041%] (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.2809 s (1100 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [4.8014 ms 4.8045 ms 4.8080 ms]
                        change: [−1.4823% −1.1869% −0.9119%] (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 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.0540 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.5929 ms 1.6006 ms 1.6088 ms]
                        change: [+0.2684% +0.8219% +1.3484%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.1139 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6071 ms 1.6087 ms 1.6106 ms]
                        change: [−0.2534% −0.1859% −0.1185%] (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 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.0825 s (10k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [503.45 µs 505.47 µs 507.85 µs]
                        change: [−0.9784% −0.5512% −0.1025%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.3407 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [7.6268 ms 7.6289 ms 7.6311 ms]
                        change: [−3.4571% −3.3711% −3.2812%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0188 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.5606 ms 4.5629 ms 4.5655 ms]
                        change: [−0.5742% −0.5070% −0.4306%] (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 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.5655 s (700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [7.9672 ms 7.9741 ms 7.9815 ms]
                        change: [−7.8612% −7.7099% −7.5586%] (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 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.2870 s (1700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.0940 ms 3.1050 ms 3.1160 ms]
                        change: [−3.6580% −3.1897% −2.7123%] (p = 0.00 < 0.05)
                        Performance has improved.

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.8367 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [14.575 ms 14.590 ms 14.606 ms]
                        change: [−5.5244% −5.4193% −5.3040%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  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.0062 s (900 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.5586 ms 5.5687 ms 5.5786 ms]
                        change: [+0.0284% +0.2911% +0.5669%] (p = 0.04 < 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 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.2901 s (5050 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [1.8538 ms 1.8555 ms 1.8574 ms]
                        change: [+0.6619% +0.7635% +0.8596%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.0698 s (2500 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [2.0503 ms 2.0575 ms 2.0679 ms]
                        change: [−6.6349% −2.4813% +0.2861%] (p = 0.22 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  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 306.0s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 306.00 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [12.870 ms 12.890 ms 12.912 ms]
                        change: [−2.6647% −2.3839% −2.0903%] (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 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.0756 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.3435 ms 6.3464 ms 6.3494 ms]
                        change: [−0.4650% −0.3717% −0.2798%] (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 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.1358 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4234 ms 1.4247 ms 1.4261 ms]
                        change: [+0.3673% +0.4615% +0.5546%] (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 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.3712 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2622 ms 1.2648 ms 1.2675 ms]
                        change: [−0.0775% +0.1242% +0.3423%] (p = 0.24 > 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 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.1753 s (1600 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.2351 ms 3.2358 ms 3.2365 ms]
                        change: [−0.1800% −0.1531% −0.1240%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.2519 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [816.89 µs 817.63 µs 818.39 µs]
                        change: [−1.4642% −1.3247% −1.1833%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) low mild
  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.4463 s (1000 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.4601 ms 5.4632 ms 5.4665 ms]
                        change: [−0.8969% −0.7975% −0.7024%] (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.2887 s (1700 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.1016 ms 3.1095 ms 3.1174 ms]
                        change: [−2.8228% −2.4454% −2.0750%] (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 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.5349 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.8891 ms 1.8897 ms 1.8904 ms]
                        change: [−0.0395% +0.0092% +0.0610%] (p = 0.72 > 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 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.5088 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4833 ms 1.4841 ms 1.4850 ms]
                        change: [−0.1258% −0.0050% +0.1383%] (p = 0.94 > 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 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.0996 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.3869 ms 6.3921 ms 6.3980 ms]
                        change: [−0.5033% −0.3886% −0.2724%] (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 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.6843 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.0625 ms 7.0672 ms 7.0723 ms]
                        change: [−0.6440% −0.5245% −0.4036%] (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 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.3870 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [10.759 ms 10.772 ms 10.787 ms]
                        change: [−3.2208% −2.9182% −2.6195%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 7 outliers among 100 measurements (7.00%)
  4 (4.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.1664 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.6948 ms 3.7022 ms 3.7095 ms]
                        change: [−0.5970% −0.3197% −0.0310%] (p = 0.03 < 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.0950 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.477 µs 59.529 µs 59.591 µs]
                        change: [+0.0412% +0.0897% +0.1412%] (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 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.0887 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.461 µs 59.506 µs 59.559 µs]
                        change: [+0.1334% +0.1785% +0.2267%] (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 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.1108 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4312 ms 2.4317 ms 2.4322 ms]
                        change: [−0.0324% −0.0022% +0.0289%] (p = 0.89 > 0.05)
                        No change in performance detected.
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.1092 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4309 ms 2.4317 ms 2.4326 ms]
                        change: [−0.0904% −0.0523% −0.0130%] (p = 0.01 < 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 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.1781 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [717.21 µs 718.09 µs 719.03 µs]
                        change: [−0.0061% +0.1141% +0.2395%] (p = 0.07 > 0.05)
                        No change in performance detected.
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.7036 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [875.77 µs 877.67 µs 879.51 µs]
                        change: [+1.1820% +1.5930% +1.9882%] (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.0448 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [6.3099 ms 6.3128 ms 6.3159 ms]
                        change: [−2.1593% −1.9503% −1.7456%] (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 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.0571 s (2300 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.2168 ms 2.2225 ms 2.2283 ms]
                        change: [+0.7413% +1.0553% +1.3674%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1074 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2082 ms 1.2087 ms 1.2091 ms]
                        change: [+0.0190% +0.0678% +0.1205%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  5 (5.00%) high mild
  3 (3.00%) high severe
Benchmarking Block 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.0986 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2085 ms 1.2090 ms 1.2095 ms]
                        change: [−0.0612% −0.0136% +0.0370%] (p = 0.57 > 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 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.4437 s (1000 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.4108 ms 5.4132 ms 5.4158 ms]
                        change: [−0.9708% −0.8924% −0.8123%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  4 (4.00%) high mild
  3 (3.00%) high severe
Benchmarking Block 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.7761 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5360 ms 1.5389 ms 1.5415 ms]
                        change: [+1.2434% +1.5918% +1.9112%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  3 (3.00%) low severe
  1 (1.00%) low mild
  1 (1.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.5s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Collecting 100 samples in estimated 6.5498 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.3002 ms 1.3012 ms 1.3023 ms]
                        change: [+0.3581% +0.4214% +0.4845%] (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 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.0321 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [696.78 µs 698.48 µs 700.35 µs]
                        change: [−0.4080% −0.1574% +0.0786%] (p = 0.21 > 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 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.0624 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [22.982 µs 23.025 µs 23.075 µs]
                        change: [+0.0224% +0.1923% +0.3572%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.0669 s (222k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [23.009 µs 23.056 µs 23.110 µs]
                        change: [−0.0313% +0.1386% +0.3179%] (p = 0.12 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.2077 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6251 ms 1.6259 ms 1.6268 ms]
                        change: [−0.4656% −0.3940% −0.3312%] (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 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.4052 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [536.03 µs 537.38 µs 538.87 µs]
                        change: [−0.3535% −0.0895% +0.2342%] (p = 0.56 > 0.05)
                        No change in performance detected.
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 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.7865 s (700 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.1774 ms 8.1818 ms 8.1872 ms]
                        change: [−0.9580% −0.8376% −0.7147%] (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 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.4011 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.4027 ms 5.4044 ms 5.4061 ms]
                        change: [−0.2808% −0.2336% −0.1876%] (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)/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.4569 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [542.23 µs 543.51 µs 545.00 µs]
                        change: [−0.3090% −0.2182% −0.0871%] (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 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.6348 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [660.46 µs 662.77 µs 665.38 µs]
                        change: [−0.3611% +0.0957% +0.5417%] (p = 0.68 > 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)/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.1277 s (2200 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.3370 ms 2.3384 ms 2.3399 ms]
                        change: [+0.0489% +0.1194% +0.1929%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  7 (7.00%) high mild
  2 (2.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.1364 s (1900 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.7133 ms 2.7167 ms 2.7201 ms]
                        change: [−1.1595% −1.0058% −0.8345%] (p = 0.00 < 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.3664 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [7.6056 ms 7.6111 ms 7.6176 ms]
                        change: [−1.2923% −1.0741% −0.8536%] (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 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.1986 s (1500 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.4752 ms 3.4807 ms 3.4864 ms]
                        change: [−1.8634% −1.6696% −1.4608%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.2771 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.2447 ms 1.2455 ms 1.2465 ms]
                        change: [+0.3625% +0.4234% +0.4939%] (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 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.0694 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [701.43 µs 702.39 µs 703.44 µs]
                        change: [−0.9723% −0.6584% −0.3660%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.4156 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [269.22 µs 269.60 µs 270.05 µs]
                        change: [+0.0509% +0.1669% +0.2821%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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 5.0193 s (15k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [331.92 µs 333.62 µs 335.39 µs]
                        change: [−0.4383% +0.1522% +0.7823%] (p = 0.65 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  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.1239 s (1600 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.2312 ms 3.2371 ms 3.2432 ms]
                        change: [+1.0998% +1.3027% +1.5193%] (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.1608 s (2600 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [1.9927 ms 1.9969 ms 2.0013 ms]
                        change: [−1.4761% −1.1825% −0.8888%] (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.2436 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [411.43 µs 411.62 µs 411.85 µs]
                        change: [−0.9065% −0.8506% −0.7976%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 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.2390 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [411.56 µs 411.74 µs 411.95 µs]
                        change: [−0.8199% −0.7714% −0.7246%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low mild
  2 (2.00%) high 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.5695 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [278.94 µs 279.43 µs 280.00 µs]
                        change: [−0.1935% −0.0385% +0.1397%] (p = 0.64 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.3248 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [417.51 µs 421.92 µs 426.48 µs]
                        change: [−4.0258% −1.9497% +0.1092%] (p = 0.07 > 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 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.0007 s (5.1M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [972.03 ns 974.47 ns 976.83 ns]
                        change: [−0.8286% −0.5499% −0.2710%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0026 s (5.1M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [971.03 ns 973.52 ns 975.90 ns]
                        change: [−1.2263% −0.9384% −0.6539%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.3892 s (1000 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.3764 ms 5.3966 ms 5.4171 ms]
                        change: [+1.2798% +1.6961% +2.1320%] (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.0367 s (1900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.6489 ms 2.6531 ms 2.6574 ms]
                        change: [+0.8085% +1.0401% +1.2880%] (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.0475 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.3100 ms 6.3122 ms 6.3146 ms]
                        change: [−1.6545% −1.4902% −1.3367%] (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 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.0994 s (1900 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.6839 ms 2.6859 ms 2.6879 ms]
                        change: [−0.3237% −0.2232% −0.1234%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  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.3056 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [132.17 µs 132.36 µs 132.58 µs]
                        change: [−0.0123% +0.1217% +0.2400%] (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 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.3119 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [132.22 µs 132.41 µs 132.64 µs]
                        change: [−0.0489% +0.0752% +0.1983%] (p = 0.25 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild

Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Collecting 100 samples in estimated 5.3077 s (1700 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.1301 ms 3.1318 ms 3.1338 ms]
                        change: [−0.3265% −0.2609% −0.1841%] (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 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.2176 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.8216 ms 1.8225 ms 1.8234 ms]
                        change: [−0.5926% −0.5058% −0.4157%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 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.6099 s (600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [9.3585 ms 9.3729 ms 9.3884 ms]
                        change: [−3.5272% −3.2613% −3.0051%] (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 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.2774 s (1700 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.1064 ms 3.1131 ms 3.1197 ms]
                        change: [+0.0347% +0.3400% +0.6444%] (p = 0.03 < 0.05)
                        Change within noise threshold.
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.1531 s (1900 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7137 ms 2.7144 ms 2.7151 ms]
                        change: [−0.1493% −0.1181% −0.0855%] (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 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.2444 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6241 ms 1.6254 ms 1.6267 ms]
                        change: [−0.7318% −0.5956% −0.4612%] (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)/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.1439 s (1700 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.0270 ms 3.0278 ms 3.0287 ms]
                        change: [−0.1995% −0.1567% −0.1149%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.3s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.3057 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2484 ms 1.2499 ms 1.2515 ms]
                        change: [−0.9207% −0.7376% −0.5462%] (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 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.3230 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [929.95 µs 930.90 µs 931.95 µs]
                        change: [+0.3315% +0.4389% +0.5435%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.7308 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [975.43 µs 977.84 µs 980.26 µs]
                        change: [+0.3547% +0.6880% +1.0054%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0523 s (2100 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.4051 ms 2.4058 ms 2.4065 ms]
                        change: [−0.4080% −0.3620% −0.3181%] (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 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 7.0277 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.3939 ms 1.3959 ms 1.3981 ms]
                        change: [−0.7151% −0.4344% −0.1363%] (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 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.1326 s (1600 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.2116 ms 3.2126 ms 3.2137 ms]
                        change: [−0.2857% −0.2371% −0.1907%] (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 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.1437 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.4175 ms 1.4207 ms 1.4244 ms]
                        change: [−0.9054% −0.5807% −0.2844%] (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 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.6460 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [160.76 µs 161.03 µs 161.34 µs]
                        change: [+0.1562% +0.2571% +0.3568%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.6508 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [160.89 µs 161.16 µs 161.47 µs]
                        change: [+0.3100% +0.3983% +0.4959%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.1129 s (2000 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.5587 ms 2.5592 ms 2.5598 ms]
                        change: [−1.2717% −1.1994% −1.1303%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.3645 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0583 ms 1.0608 ms 1.0634 ms]
                        change: [−2.4784% −2.0423% −1.5374%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 10 outliers among 100 measurements (10.00%)
  2 (2.00%) low severe
  5 (5.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.1082 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.2954 ms 7.3034 ms 7.3143 ms]
                        change: [−1.2142% −0.9883% −0.7579%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  5 (5.00%) high mild
  5 (5.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.2451 s (1600 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.2701 ms 3.2769 ms 3.2837 ms]
                        change: [−1.1642% −0.9008% −0.6207%] (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.5277 s (5050 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.8881 ms 1.8892 ms 1.8905 ms]
                        change: [+0.2919% +0.3351% +0.3850%] (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 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.3395 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [922.48 µs 924.51 µs 926.58 µs]
                        change: [−0.1558% +0.2131% +0.5828%] (p = 0.28 > 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 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.2148 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [5.8658 ms 5.8817 ms 5.8984 ms]
                        change: [+1.2578% +1.5651% +1.8063%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.1216 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.5603 ms 2.5631 ms 2.5660 ms]
                        change: [+0.1266% +0.2638% +0.4190%] (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.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.0409 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.7911 ms 1.7929 ms 1.7949 ms]
                        change: [+0.2296% +0.2973% +0.3657%] (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 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.9370 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [888.13 µs 892.57 µs 897.62 µs]
                        change: [+0.3640% +0.8679% +1.4032%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 21 outliers among 100 measurements (21.00%)
  2 (2.00%) low mild
  14 (14.00%) high mild
  5 (5.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.2513 s (1100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [4.7049 ms 4.7104 ms 4.7163 ms]
                        change: [−0.8553% −0.3412% +0.0966%] (p = 0.17 > 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 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.1812 s (2100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.4674 ms 2.4711 ms 2.4748 ms]
                        change: [+0.0237% +0.2428% +0.4666%] (p = 0.04 < 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.6776 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.292 ms 11.316 ms 11.340 ms]
                        change: [+0.4419% +0.7416% +1.0281%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3279 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.8720 ms 4.8758 ms 4.8795 ms]
                        change: [+0.0942% +0.1915% +0.2806%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.2016 s (1100 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [4.7847 ms 4.7912 ms 4.7978 ms]
                        change: [−2.0209% −1.7951% −1.5720%] (p = 0.00 < 0.05)
                        Performance has improved.
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.1518 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.4243 ms 3.4267 ms 3.4291 ms]
                        change: [−0.6120% −0.5235% −0.4355%] (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)/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.2956 s (1300 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.0743 ms 4.0765 ms 4.0788 ms]
                        change: [−3.9257% −3.6084% −3.2924%] (p = 0.00 < 0.05)
                        Performance has improved.
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.6123 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5061 ms 1.5090 ms 1.5119 ms]
                        change: [−2.2613% −1.9297% −1.5995%] (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 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.6289 s (800 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.0367 ms 7.0392 ms 7.0419 ms]
                        change: [−4.7821% −4.6077% −4.4321%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 12 outliers among 100 measurements (12.00%)
  11 (11.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.0047 s (1300 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.8626 ms 3.8729 ms 3.8832 ms]
                        change: [−0.8770% −0.5198% −0.1475%] (p = 0.01 < 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)/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.8636 s (5050 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [1.9572 ms 1.9585 ms 1.9601 ms]
                        change: [−0.4086% −0.3614% −0.3177%] (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 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.4520 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [943.53 µs 945.43 µs 947.51 µs]
                        change: [−0.0586% +0.2583% +0.5694%] (p = 0.12 > 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 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.0249 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [400.78 µs 401.43 µs 402.11 µs]
                        change: [+0.1334% +0.2894% +0.4459%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2004 s (10k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [518.51 µs 520.10 µs 521.64 µs]
                        change: [+0.4017% +0.7753% +1.1751%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.4705 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.4812 ms 1.4816 ms 1.4820 ms]
                        change: [−0.2372% −0.1913% −0.1477%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.4783 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.4807 ms 1.4811 ms 1.4816 ms]
                        change: [−0.1860% −0.1419% −0.0948%] (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)/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.0226 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [83.096 µs 83.149 µs 83.213 µs]
                        change: [−0.0304% +0.0154% +0.0634%] (p = 0.52 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.0234 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [83.083 µs 83.137 µs 83.202 µs]
                        change: [−0.0304% +0.0131% +0.0553%] (p = 0.56 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
  3 (3.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.0137 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.4036 ms 1.4047 ms 1.4058 ms]
                        change: [+1.5577% +1.7481% +1.9318%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 16 outliers among 100 measurements (16.00%)
  16 (16.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.0s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 6.9938 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.4003 ms 1.4014 ms 1.4024 ms]
                        change: [+1.7642% +1.9440% +2.1258%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.0054 s (900 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [5.5623 ms 5.5658 ms 5.5695 ms]
                        change: [−1.1284% −0.9451% −0.7716%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.1179 s (2500 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [2.0487 ms 2.0525 ms 2.0565 ms]
                        change: [+1.0275% +1.2898% +1.5380%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0088 s (2.0M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.5225 µs 2.5236 µs 2.5247 µs]
                        change: [−0.2273% −0.1463% −0.0665%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 15 outliers among 100 measurements (15.00%)
  1 (1.00%) low mild
  14 (14.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.0016 s (2.0M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.5250 µs 2.5260 µs 2.5270 µs]
                        change: [−0.2149% −0.1327% −0.0546%] (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 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.1121 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [5.6867 ms 5.6898 ms 5.6934 ms]
                        change: [−0.9417% −0.7811% −0.6315%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  2 (2.00%) high mild
  5 (5.00%) high severe
Benchmarking Block 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.1696 s (2300 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.2540 ms 2.2586 ms 2.2634 ms]
                        change: [−0.1194% +0.1350% +0.3965%] (p = 0.33 > 0.05)
                        No change in performance detected.
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.4162 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [357.55 µs 357.94 µs 358.33 µs]
                        change: [+0.3836% +0.4691% +0.5592%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.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.4148 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [357.32 µs 357.64 µs 357.98 µs]
                        change: [+0.0332% +0.1411% +0.2495%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.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.0629 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [10.119 ms 10.133 ms 10.149 ms]
                        change: [−3.2683% −2.9578% −2.6622%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 10 outliers among 100 measurements (10.00%)
  6 (6.00%) high mild
  4 (4.00%) high severe
Benchmarking Block 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.0122 s (1500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.3383 ms 3.3422 ms 3.3462 ms]
                        change: [−0.5573% −0.3726% −0.1874%] (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 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.2787 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.546 µs 65.607 µs 65.681 µs]
                        change: [+0.0383% +0.0891% +0.1442%] (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 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.2804 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.582 µs 65.643 µs 65.715 µs]
                        change: [+0.1605% +0.2130% +0.2718%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  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.0567 s (1200 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.2163 ms 4.2175 ms 4.2187 ms]
                        change: [−0.7415% −0.6578% −0.5797%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
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.1062 s (2400 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1266 ms 2.1298 ms 2.1332 ms]
                        change: [−0.7874% −0.5754% −0.3643%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.7708 s (700 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.2405 ms 8.2433 ms 8.2469 ms]
                        change: [−0.5858% −0.5142% −0.4393%] (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 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.2426 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8228 ms 5.8250 ms 5.8273 ms]
                        change: [−0.3020% −0.2249% −0.1550%] (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.4671 s (1100 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [4.9792 ms 4.9815 ms 4.9839 ms]
                        change: [−1.2677% −1.0934% −0.9378%] (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)/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.1986 s (2400 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.1743 ms 2.1771 ms 2.1800 ms]
                        change: [+0.8265% +1.0096% +1.2020%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2934 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.5351 ms 7.5418 ms 7.5492 ms]
                        change: [−0.9381% −0.8101% −0.6810%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 11 outliers among 100 measurements (11.00%)
  8 (8.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.2878 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.8027 ms 4.8055 ms 4.8084 ms]
                        change: [−0.1846% −0.1113% −0.0392%] (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.3375 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [532.63 µs 533.28 µs 534.01 µs]
                        change: [−0.1710% −0.0673% +0.0259%] (p = 0.19 > 0.05)
                        No change in performance detected.
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.8770 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [387.91 µs 389.67 µs 391.66 µs]
                        change: [−0.1659% +0.3575% +0.9496%] (p = 0.20 > 0.05)
                        No change in performance detected.

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.3545 s (900 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [5.9183 ms 5.9310 ms 5.9459 ms]
                        change: [−2.8656% −2.5248% −2.1772%] (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 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.2295 s (2200 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.3818 ms 2.3891 ms 2.3966 ms]
                        change: [+0.7770% +1.1856% +1.5745%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Collecting 100 samples in estimated 6.1364 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2168 ms 1.2180 ms 1.2195 ms]
                        change: [−0.1469% −0.0995% −0.0498%] (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 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.0501 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.3878 ms 1.3918 ms 1.3956 ms]
                        change: [−0.2546% +0.1796% +0.5874%] (p = 0.43 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.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.4873 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [108.69 µs 108.77 µs 108.85 µs]
                        change: [+0.0364% +0.0857% +0.1369%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
  3 (3.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.4869 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.73 µs 108.80 µs 108.89 µs]
                        change: [+0.0250% +0.0740% +0.1261%] (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 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.8356 s (600 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [9.6978 ms 9.7050 ms 9.7126 ms]
                        change: [−3.7340% −3.4302% −3.1232%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.1756 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [3.9696 ms 3.9787 ms 3.9877 ms]
                        change: [−0.7228% −0.4004% −0.0890%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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 7.9811 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [789.89 µs 790.37 µs 790.95 µs]
                        change: [−0.2642% −0.2279% −0.1931%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.2317 s (15k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [478.25 µs 479.29 µs 480.42 µs]
                        change: [−2.5932% −2.2964% −2.0048%] (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 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.2676 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [621.42 µs 621.95 µs 622.58 µs]
                        change: [+0.0381% +0.0836% +0.1337%] (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 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.9774 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [394.51 µs 395.10 µs 395.69 µs]
                        change: [−0.2268% −0.0241% +0.1749%] (p = 0.82 > 0.05)
                        No change in performance detected.
Found 10 outliers among 100 measurements (10.00%)
  4 (4.00%) low mild
  6 (6.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.1471 s (1900 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.7110 ms 2.7137 ms 2.7168 ms]
                        change: [−0.5458% −0.4117% −0.2800%] (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 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.2100 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.0648 ms 3.0706 ms 3.0770 ms]
                        change: [+0.1251% +0.3794% +0.6257%] (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 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.1064 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.3404 ms 2.3429 ms 2.3456 ms]
                        change: [+0.9094% +1.0426% +1.1951%] (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 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.1549 s (2300 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.2504 ms 2.2546 ms 2.2589 ms]
                        change: [+4.6441% +4.8690% +5.1262%] (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 6.1165 s (500 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [12.126 ms 12.166 ms 12.208 ms]
                        change: [−1.6245% −1.2211% −0.7902%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0451 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.3134 ms 6.3187 ms 6.3242 ms]
                        change: [−0.3773% −0.2479% −0.1139%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1466 s (1900 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.7260 ms 2.7313 ms 2.7367 ms]
                        change: [+0.6698% +0.8680% +1.0646%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.2194 s (1600 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.2573 ms 3.2656 ms 3.2740 ms]
                        change: [+0.6232% +0.9376% +1.2277%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.0318 s (1800 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [2.7969 ms 2.8014 ms 2.8060 ms]
                        change: [+0.2292% +0.3952% +0.5674%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1209 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.8029 ms 1.8053 ms 1.8076 ms]
                        change: [+1.1255% +1.3733% +1.6270%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  2 (2.00%) low severe
  4 (4.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.4953 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [544.98 µs 545.40 µs 545.89 µs]
                        change: [+0.0988% +0.1380% +0.1785%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.4975 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [545.21 µs 545.62 µs 546.11 µs]
                        change: [+0.0668% +0.1076% +0.1501%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high severe

@tu-doan

tu-doan commented Jun 2, 2026

Copy link
Copy Markdown
Contributor

benchmark

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit 393e96d

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.76s
     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.7s, or reduce sample count to 80.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.6605 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [55.447 ms 55.529 ms 55.611 ms]
                        change: [−0.3432% −0.1037% +0.1376%] (p = 0.40 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.0772 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [45.700 ms 46.200 ms 46.722 ms]
                        change: [−1.8717% −0.3400% +1.2090%] (p = 0.65 > 0.05)
                        No change in performance detected.
Found 9 outliers among 100 measurements (9.00%)
  9 (9.00%) high mild

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.461 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [167.17 ms 167.49 ms 167.82 ms]
                        change: [+1.7857% +2.0681% +2.3680%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 10.6s, or reduce sample count to 40.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 10.597 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [103.82 ms 104.86 ms 105.91 ms]
                        change: [+92.052% +94.941% +97.980%] (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.7s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 45.728 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [471.06 ms 471.50 ms 471.93 ms]
                        change: [+0.4051% +0.6183% +0.8425%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low severe
  1 (1.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.0237 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [25.143 ms 25.180 ms 25.218 ms]
                        change: [−0.2748% −0.0578% +0.1402%] (p = 0.59 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit 393e96d
Report:
Baseline main:

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

This pr:

Average: x2.01
Max: x4.0
Min: x0.62
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 51.15s
     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.0861 s (1000 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [4.9963 ms 5.0076 ms 5.0187 ms]
                        change: [+4.7857% +5.1176% +5.3860%] (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 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.0882 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.6266 ms 3.6937 ms 3.7603 ms]
                        change: [−0.6437% +2.1561% +5.3095%] (p = 0.16 > 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.2620 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [17.503 ms 17.511 ms 17.519 ms]
                        change: [+1.7903% +2.0081% +2.2273%] (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.3469 s (1200 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.4369 ms 4.4560 ms 4.4753 ms]
                        change: [+1.1399% +1.7556% +2.3665%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  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.4650 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [135.24 µs 135.34 µs 135.45 µs]
                        change: [+0.0855% +0.2161% +0.3317%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.4587 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [135.12 µs 135.22 µs 135.33 µs]
                        change: [+0.0697% +0.1805% +0.2858%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.0595 s (500 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [9.9561 ms 9.9713 ms 9.9862 ms]
                        change: [+3.6110% +3.8617% +4.1354%] (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.0943 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.2250 ms 4.2331 ms 4.2414 ms]
                        change: [−0.4505% −0.1805% +0.0899%] (p = 0.20 > 0.05)
                        No change in performance detected.
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.3949 s (1100 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [4.8529 ms 4.8609 ms 4.8693 ms]
                        change: [−1.1759% −0.6946% −0.2277%] (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)/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.8468 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.5411 ms 1.5474 ms 1.5544 ms]
                        change: [−1.0527% −0.4294% +0.1785%] (p = 0.16 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.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.1759 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6170 ms 1.6174 ms 1.6178 ms]
                        change: [+0.7510% +0.7934% +0.8364%] (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 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.0070 s (10k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [493.31 µs 494.83 µs 496.39 µs]
                        change: [−0.9572% −0.5167% −0.0563%] (p = 0.03 < 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 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.4044 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [7.7371 ms 7.7453 ms 7.7536 ms]
                        change: [+1.3925% +1.5175% +1.6439%] (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.0182 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.5590 ms 4.5606 ms 4.5624 ms]
                        change: [+0.0500% +0.1222% +0.1867%] (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.0534 s (600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [8.3922 ms 8.4060 ms 8.4201 ms]
                        change: [+5.1384% +5.3109% +5.5082%] (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.2890 s (1700 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.0847 ms 3.0968 ms 3.1086 ms]
                        change: [−0.5288% +0.0191% +0.6091%] (p = 0.94 > 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 6.1127 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [15.219 ms 15.233 ms 15.247 ms]
                        change: [+4.2585% +4.4973% +4.7294%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Collecting 100 samples in estimated 5.5138 s (1000 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.5096 ms 5.5231 ms 5.5376 ms]
                        change: [+1.6388% +1.9629% +2.2892%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Collecting 100 samples in estimated 9.5946 s (5050 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [1.9079 ms 1.9117 ms 1.9155 ms]
                        change: [+1.6126% +1.7492% +1.8941%] (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.1496 s (2500 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [2.0389 ms 2.0427 ms 2.0465 ms]
                        change: [+0.9549% +1.2529% +1.5552%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 305.5s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 305.52 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [13.481 ms 13.489 ms 13.497 ms]
                        change: [+3.0475% +3.2149% +3.3761%] (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)/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.0954 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.3653 ms 6.3707 ms 6.3763 ms]
                        change: [+0.8111% +0.9269% +1.0466%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.2385 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4289 ms 1.4297 ms 1.4305 ms]
                        change: [+1.1020% +1.2534% +1.3899%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.3s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.3089 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.2420 ms 1.2436 ms 1.2454 ms]
                        change: [+1.0735% +1.2908% +1.5101%] (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 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.1957 s (1600 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.2448 ms 3.2456 ms 3.2465 ms]
                        change: [+0.2851% +0.3174% +0.3485%] (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 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.1810 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [809.81 µs 810.54 µs 811.28 µs]
                        change: [−1.3228% −1.1735% −1.0207%] (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 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.0118 s (900 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.5203 ms 5.5271 ms 5.5343 ms]
                        change: [+0.4608% +0.6178% +0.7703%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.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.2573 s (1700 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.0942 ms 3.1036 ms 3.1131 ms]
                        change: [−2.4779% −2.0625% −1.6536%] (p = 0.00 < 0.05)
                        Performance has improved.

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.6298 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.9061 ms 1.9079 ms 1.9100 ms]
                        change: [+0.9689% +1.0695% +1.1774%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.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.3s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Collecting 100 samples in estimated 7.3455 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4509 ms 1.4518 ms 1.4529 ms]
                        change: [+0.6297% +0.7308% +0.8253%] (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 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.1503 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.4347 ms 6.4420 ms 6.4502 ms]
                        change: [+1.1032% +1.2253% +1.3618%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 15 outliers among 100 measurements (15.00%)
  9 (9.00%) high mild
  6 (6.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.6845 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.0877 ms 7.0931 ms 7.0986 ms]
                        change: [+0.9315% +1.0282% +1.1243%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.5722 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [11.210 ms 11.236 ms 11.262 ms]
                        change: [+4.3501% +4.5980% +4.8586%] (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.1343 s (1400 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.6669 ms 3.6746 ms 3.6824 ms]
                        change: [−0.1163% +0.1686% +0.4735%] (p = 0.27 > 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.1180 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.594 µs 59.607 µs 59.621 µs]
                        change: [+0.1573% +0.1861% +0.2162%] (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.1137 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.568 µs 59.581 µs 59.596 µs]
                        change: [+0.1884% +0.2250% +0.2623%] (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.1070 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4289 ms 2.4298 ms 2.4308 ms]
                        change: [+0.0950% +0.1698% +0.2385%] (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 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.1030 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4268 ms 2.4275 ms 2.4284 ms]
                        change: [−0.1352% −0.0532% +0.0199%] (p = 0.19 > 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 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.3732 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [731.34 µs 732.28 µs 733.25 µs]
                        change: [+0.9287% +1.0437% +1.1532%] (p = 0.00 < 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)/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.5750 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [837.13 µs 839.89 µs 842.59 µs]
                        change: [−1.3345% −0.9693% −0.6265%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low 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.5449 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [6.9428 ms 6.9610 ms 6.9788 ms]
                        change: [+8.9873% +9.3302% +9.6864%] (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.1417 s (2300 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.2453 ms 2.2502 ms 2.2553 ms]
                        change: [+3.4573% +3.7738% +4.0828%] (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.1540 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2145 ms 1.2147 ms 1.2150 ms]
                        change: [+0.6301% +0.6803% +0.7299%] (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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Collecting 100 samples in estimated 6.1557 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2155 ms 1.2160 ms 1.2166 ms]
                        change: [+0.9687% +1.0341% +1.1047%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.0557 s (900 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.6406 ms 5.6527 ms 5.6653 ms]
                        change: [+3.8249% +4.0602% +4.3019%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 11 outliers among 100 measurements (11.00%)
  11 (11.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.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Collecting 100 samples in estimated 7.6190 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5080 ms 1.5112 ms 1.5143 ms]
                        change: [+0.2322% +0.6212% +1.0218%] (p = 0.00 < 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 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.6092 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.3071 ms 1.3078 ms 1.3085 ms]
                        change: [+0.4871% +0.5476% +0.6083%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  7 (7.00%) high mild
  2 (2.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.9402 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [684.48 µs 685.75 µs 687.07 µs]
                        change: [−0.8678% −0.5754% −0.2949%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.0350 s (217k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [23.254 µs 23.270 µs 23.289 µs]
                        change: [+0.6128% +0.7332% +0.8689%] (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)/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.0325 s (217k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [23.277 µs 23.294 µs 23.313 µs]
                        change: [+0.5754% +0.6946% +0.8138%] (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)/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.2994 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.6399 ms 1.6406 ms 1.6414 ms]
                        change: [+0.8945% +0.9591% +1.0299%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.3278 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [524.58 µs 525.63 µs 526.79 µs]
                        change: [−0.1882% +0.1013% +0.3827%] (p = 0.49 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  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.0560 s (600 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.4495 ms 8.4543 ms 8.4590 ms]
                        change: [+2.3482% +2.4861% +2.6258%] (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.4242 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.4262 ms 5.4293 ms 5.4323 ms]
                        change: [+0.7948% +0.8659% +0.9443%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.5171 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [546.74 µs 546.97 µs 547.18 µs]
                        change: [+0.5762% +0.6197% +0.6685%] (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 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.5987 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [660.42 µs 662.31 µs 664.36 µs]
                        change: [+0.9013% +1.4304% +1.9696%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1174 s (2000 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.5526 ms 2.5541 ms 2.5555 ms]
                        change: [+9.1624% +9.2662% +9.3615%] (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 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.0110 s (1700 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.9537 ms 2.9580 ms 2.9623 ms]
                        change: [+9.5359% +9.7327% +9.9361%] (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.8216 s (700 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [8.8480 ms 8.9086 ms 8.9666 ms]
                        change: [+14.889% +15.702% +16.483%] (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.0903 s (1300 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.9147 ms 3.9271 ms 3.9397 ms]
                        change: [+12.074% +12.503% +12.870%] (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.8s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Collecting 100 samples in estimated 6.7744 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.3392 ms 1.3435 ms 1.3479 ms]
                        change: [+8.1273% +8.4898% +8.9004%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) high mild
  2 (2.00%) high severe
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Collecting 100 samples in estimated 7.4473 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [736.59 µs 739.04 µs 741.71 µs]
                        change: [+6.5380% +6.8934% +7.2441%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.5687 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [276.04 µs 276.33 µs 276.61 µs]
                        change: [+1.5786% +1.7096% +1.8472%] (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 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.4161 s (15k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [353.85 µs 356.20 µs 358.66 µs]
                        change: [+10.221% +11.083% +11.958%] (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.0134 s (1200 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [4.1860 ms 4.2051 ms 4.2246 ms]
                        change: [+30.704% +31.297% +31.886%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 5.0958 s (2200 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [2.2957 ms 2.3089 ms 2.3224 ms]
                        change: [+16.578% +17.248% +17.919%] (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)/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.2490 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [411.23 µs 411.67 µs 412.27 µs]
                        change: [−1.1747% −1.1017% −1.0254%] (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 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.2553 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [411.00 µs 411.13 µs 411.28 µs]
                        change: [−1.1518% −1.0720% −0.9918%] (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 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.7534 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [285.41 µs 285.72 µs 286.03 µs]
                        change: [+1.4018% +1.5457% +1.6963%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.9344 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [455.85 µs 461.13 µs 466.75 µs]
                        change: [+8.2635% +10.414% +12.591%] (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 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.0042 s (5.1M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [978.62 ns 981.86 ns 984.88 ns]
                        change: [+0.2384% +0.6365% +1.0460%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0006 s (5.1M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [976.91 ns 980.35 ns 983.62 ns]
                        change: [+0.2823% +0.6803% +1.0764%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.1830 s (800 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [6.3299 ms 6.3538 ms 6.3786 ms]
                        change: [+20.357% +20.850% +21.360%] (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.2540 s (1900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.7410 ms 2.7482 ms 2.7553 ms]
                        change: [+4.5981% +4.9152% +5.2577%] (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.6058 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [7.0531 ms 7.0728 ms 7.0921 ms]
                        change: [+11.506% +11.830% +12.115%] (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.1600 s (1800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.8482 ms 2.8551 ms 2.8624 ms]
                        change: [+6.2051% +6.4491% +6.7396%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.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.4086 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [133.77 µs 133.84 µs 133.92 µs]
                        change: [+0.6998% +0.8024% +0.9160%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.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.4073 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [133.83 µs 133.90 µs 133.98 µs]
                        change: [+0.7515% +0.8400% +0.9474%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Collecting 100 samples in estimated 5.2336 s (1500 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.4710 ms 3.4807 ms 3.4906 ms]
                        change: [+11.063% +11.395% +11.739%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Collecting 100 samples in estimated 9.4686 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.8739 ms 1.8763 ms 1.8786 ms]
                        change: [+4.2925% +4.4918% +4.6901%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  4 (4.00%) low mild
  4 (4.00%) high mild

Benchmarking Block 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.5346 s (500 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [10.812 ms 10.852 ms 10.894 ms]
                        change: [+14.229% +14.722% +15.216%] (p = 0.00 < 0.05)
                        Performance has regressed.
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 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.0239 s (1500 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.2585 ms 3.2703 ms 3.2822 ms]
                        change: [+5.3184% +5.7618% +6.2248%] (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.0788 s (1800 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.8028 ms 2.8057 ms 2.8087 ms]
                        change: [+3.3318% +3.4517% +3.5591%] (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.4246 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6832 ms 1.6866 ms 1.6900 ms]
                        change: [+2.3471% +2.5729% +2.8162%] (p = 0.00 < 0.05)
                        Performance has regressed.

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.1735 s (1400 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.6892 ms 3.7053 ms 3.7217 ms]
                        change: [+21.280% +21.800% +22.428%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.6s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.6134 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.3061 ms 1.3097 ms 1.3134 ms]
                        change: [+5.7923% +6.1782% +6.5324%] (p = 0.00 < 0.05)
                        Performance has regressed.
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

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Collecting 100 samples in estimated 5.2291 s (5050 iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [1.0226 ms 1.0299 ms 1.0371 ms]
                        change: [+9.3097% +9.9964% +10.626%] (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)/Parallel
Benchmarking Block 12300570(687 txs, 14934316 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.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Collecting 100 samples in estimated 5.1771 s (5050 iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [1.0136 ms 1.0190 ms 1.0244 ms]
                        change: [+7.5637% +8.1772% +8.7611%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.1866 s (2000 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.5524 ms 2.5590 ms 2.5656 ms]
                        change: [+5.7255% +6.0220% +6.2842%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Collecting 100 samples in estimated 7.2479 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.4144 ms 1.4175 ms 1.4208 ms]
                        change: [+2.9807% +3.2994% +3.6589%] (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 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.2739 s (1600 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.2381 ms 3.2413 ms 3.2448 ms]
                        change: [+0.5181% +0.6293% +0.7417%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 11 outliers among 100 measurements (11.00%)
  7 (7.00%) high mild
  4 (4.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.0462 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.3958 ms 1.3986 ms 1.4016 ms]
                        change: [−0.2317% +0.0581% +0.3475%] (p = 0.70 > 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 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.6605 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [160.11 µs 160.18 µs 160.26 µs]
                        change: [+0.0020% +0.0546% +0.1133%] (p = 0.05 < 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.6608 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [160.12 µs 160.19 µs 160.27 µs]
                        change: [+0.0344% +0.0842% +0.1399%] (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)/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.1333 s (2000 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.5614 ms 2.5624 ms 2.5635 ms]
                        change: [+0.2612% +0.3023% +0.3514%] (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 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.3878 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.0643 ms 1.0669 ms 1.0694 ms]
                        change: [−1.4974% −0.9873% −0.5124%] (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 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.2814 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.5243 ms 7.5358 ms 7.5476 ms]
                        change: [+2.1425% +2.4013% +2.6393%] (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 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.2828 s (1600 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.2929 ms 3.2988 ms 3.3046 ms]
                        change: [+0.0169% +0.2535% +0.5205%] (p = 0.05 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low 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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Collecting 100 samples in estimated 9.5366 s (5050 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.8854 ms 1.8860 ms 1.8866 ms]
                        change: [−0.2024% −0.1558% −0.1132%] (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 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.2220 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [909.84 µs 911.77 µs 913.80 µs]
                        change: [−1.1236% −0.8057% −0.4774%] (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 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.2467 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [5.8368 ms 5.8431 ms 5.8496 ms]
                        change: [+1.2129% +1.3522% +1.4768%] (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.1139 s (2000 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.5473 ms 2.5500 ms 2.5529 ms]
                        change: [−0.2834% −0.1329% +0.0293%] (p = 0.09 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

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.0812 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.7966 ms 1.7972 ms 1.7978 ms]
                        change: [+0.4554% +0.5002% +0.5482%] (p = 0.00 < 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.6545 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [854.30 µs 857.79 µs 861.79 µs]
                        change: [−1.6056% −0.9856% −0.3732%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 21 outliers among 100 measurements (21.00%)
  2 (2.00%) low mild
  10 (10.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.2180 s (1100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [4.7486 ms 4.7557 ms 4.7634 ms]
                        change: [+1.3486% +1.5203% +1.6914%] (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.1249 s (2100 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.4311 ms 2.4354 ms 2.4398 ms]
                        change: [−0.5716% −0.3202% −0.0531%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Collecting 100 samples in estimated 5.7835 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.509 ms 11.522 ms 11.534 ms]
                        change: [+4.0815% +4.2071% +4.3260%] (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.3284 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.8319 ms 4.8348 ms 4.8379 ms]
                        change: [+0.4329% +0.5144% +0.6010%] (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.2572 s (1100 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [4.7440 ms 4.7483 ms 4.7527 ms]
                        change: [+0.7721% +0.8617% +0.9511%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 12244000(133 txs, 12450737 gas)/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.1038 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.4069 ms 3.4099 ms 3.4132 ms]
                        change: [+0.6309% +0.7385% +0.8384%] (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 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.3355 s (1300 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.0980 ms 4.1021 ms 4.1063 ms]
                        change: [+0.5152% +0.6308% +0.7271%] (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.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Collecting 100 samples in estimated 7.5436 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.4880 ms 1.4905 ms 1.4932 ms]
                        change: [−1.6564% −1.1746% −0.6083%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  1 (1.00%) low mild
  4 (4.00%) high mild
  4 (4.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.0989 s (700 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.1799 ms 7.1925 ms 7.2054 ms]
                        change: [+2.1287% +2.2976% +2.4977%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.3471 s (1400 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [3.8007 ms 3.8121 ms 3.8233 ms]
                        change: [−0.1044% +0.2907% +0.7070%] (p = 0.16 > 0.05)
                        No change in performance detected.
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 40.
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Collecting 100 samples in estimated 9.9318 s (5050 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [1.9706 ms 1.9731 ms 1.9757 ms]
                        change: [+0.3401% +0.4233% +0.5039%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 12 outliers among 100 measurements (12.00%)
  8 (8.00%) high mild
  4 (4.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.4135 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [925.85 µs 927.67 µs 929.70 µs]
                        change: [−0.9811% −0.6904% −0.4193%] (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 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.1446 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [406.28 µs 406.81 µs 407.31 µs]
                        change: [+0.5181% +0.6347% +0.7554%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.0922 s (10k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [500.32 µs 501.51 µs 502.72 µs]
                        change: [+0.9226% +1.2928% +1.7208%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 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.4813 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.4815 ms 1.4818 ms 1.4822 ms]
                        change: [+0.3785% +0.4100% +0.4427%] (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.4842 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.4839 ms 1.4847 ms 1.4856 ms]
                        change: [+0.4011% +0.4460% +0.4932%] (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 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.0383 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [83.234 µs 83.254 µs 83.274 µs]
                        change: [+0.0298% +0.0700% +0.1117%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.0417 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [83.225 µs 83.243 µs 83.262 µs]
                        change: [−0.0013% +0.0424% +0.0850%] (p = 0.06 > 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 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.1666 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.4102 ms 1.4117 ms 1.4133 ms]
                        change: [+0.3627% +0.5162% +0.6801%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 7.1820 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.4107 ms 1.4125 ms 1.4144 ms]
                        change: [+0.7242% +0.8989% +1.0712%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  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.5198 s (900 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [6.0396 ms 6.0612 ms 6.0827 ms]
                        change: [+8.4287% +8.8242% +9.1944%] (p = 0.00 < 0.05)
                        Performance has regressed.
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.0200 s (2500 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [1.9939 ms 1.9979 ms 2.0019 ms]
                        change: [−0.3398% −0.0406% +0.2555%] (p = 0.79 > 0.05)
                        No change in performance detected.

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.0012 s (2.0M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.5358 µs 2.5399 µs 2.5437 µs]
                        change: [+0.3288% +0.4941% +0.6461%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Collecting 100 samples in estimated 5.0026 s (2.0M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.5362 µs 2.5401 µs 2.5437 µs]
                        change: [+0.4723% +0.6300% +0.7884%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Collecting 100 samples in estimated 5.3063 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [5.9684 ms 5.9827 ms 5.9968 ms]
                        change: [+2.3744% +2.8105% +3.2312%] (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.0008 s (2200 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.2602 ms 2.2643 ms 2.2685 ms]
                        change: [−0.5111% −0.2224% +0.0641%] (p = 0.14 > 0.05)
                        No change in performance detected.

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.5218 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [363.96 µs 364.10 µs 364.25 µs]
                        change: [+0.4563% +0.5220% +0.5827%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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 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.5170 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [363.68 µs 363.77 µs 363.87 µs]
                        change: [+0.4826% +0.5230% +0.5630%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.6191 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [11.248 ms 11.257 ms 11.265 ms]
                        change: [+0.4527% +0.6530% +0.8673%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1003 s (1500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.3758 ms 3.3814 ms 3.3872 ms]
                        change: [−0.8063% −0.5676% −0.3143%] (p = 0.00 < 0.05)
                        Change within noise threshold.

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.3044 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.747 µs 65.781 µs 65.811 µs]
                        change: [+0.1371% +0.1788% +0.2245%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.3037 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.745 µs 65.778 µs 65.808 µs]
                        change: [+0.0746% +0.1185% +0.1655%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Collecting 100 samples in estimated 5.0496 s (1100 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.5703 ms 4.5787 ms 4.5871 ms]
                        change: [−0.6708% −0.4392% −0.2220%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1717 s (2400 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.1504 ms 2.1544 ms 2.1585 ms]
                        change: [−0.7510% −0.4895% −0.2139%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1234 s (600 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.5264 ms 8.5310 ms 8.5356 ms]
                        change: [−0.0862% −0.0208% +0.0493%] (p = 0.54 > 0.05)
                        No change in performance detected.
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.2629 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8430 ms 5.8457 ms 5.8485 ms]
                        change: [−0.2280% −0.1652% −0.0998%] (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.0330 s (900 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [5.5144 ms 5.5251 ms 5.5356 ms]
                        change: [+0.3130% +0.5932% +0.8601%] (p = 0.00 < 0.05)
                        Change within noise threshold.
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.1523 s (2400 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.1232 ms 2.1285 ms 2.1338 ms]
                        change: [−1.1906% −0.8358% −0.4732%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.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.4229 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.7372 ms 7.7476 ms 7.7579 ms]
                        change: [−1.3254% −1.1591% −1.0149%] (p = 0.00 < 0.05)
                        Performance has improved.
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.2782 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.7874 ms 4.7893 ms 4.7911 ms]
                        change: [−1.0221% −0.9496% −0.8810%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Collecting 100 samples in estimated 5.4074 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [537.61 µs 537.96 µs 538.28 µs]
                        change: [−1.2589% −1.1521% −1.0493%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.6385 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [369.69 µs 371.10 µs 372.61 µs]
                        change: [−4.0189% −3.4613% −2.9359%] (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.3682 s (900 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [5.9747 ms 5.9840 ms 5.9938 ms]
                        change: [−9.7879% −9.6290% −9.4688%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.0350 s (2100 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.3688 ms 2.3753 ms 2.3819 ms]
                        change: [−5.6494% −5.2330% −4.8010%] (p = 0.00 < 0.05)
                        Performance has improved.

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

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Collecting 100 samples in estimated 6.1686 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2217 ms 1.2218 ms 1.2220 ms]
                        change: [−0.5366% −0.4929% −0.4491%] (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 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.8s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 6.8477 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.3492 ms 1.3523 ms 1.3554 ms]
                        change: [−3.4196% −3.0490% −2.6199%] (p = 0.00 < 0.05)
                        Performance has improved.
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.5088 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [109.04 µs 109.06 µs 109.08 µs]
                        change: [+0.0560% +0.0827% +0.1091%] (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.5053 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.99 µs 109.02 µs 109.04 µs]
                        change: [−0.0434% −0.0147% +0.0123%] (p = 0.30 > 0.05)
                        No change in performance detected.
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.0057 s (500 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [10.038 ms 10.062 ms 10.085 ms]
                        change: [−6.3349% −6.0906% −5.8462%] (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.1335 s (1300 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [3.9301 ms 3.9386 ms 3.9473 ms]
                        change: [−4.6082% −4.3111% −4.0188%] (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.0102 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [792.17 µs 792.27 µs 792.38 µs]
                        change: [−0.4505% −0.3966% −0.3450%] (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 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.1288 s (15k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [471.35 µs 472.98 µs 474.85 µs]
                        change: [−4.6447% −4.3281% −4.0050%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  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.2805 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [621.73 µs 621.83 µs 621.92 µs]
                        change: [−0.0894% −0.0561% −0.0236%] (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 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.9614 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [392.22 µs 392.63 µs 393.05 µs]
                        change: [−1.6054% −1.4155% −1.2283%] (p = 0.00 < 0.05)
                        Performance has improved.
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 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.2003 s (1900 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.7327 ms 2.7340 ms 2.7353 ms]
                        change: [−5.3911% −5.0964% −4.7921%] (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 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.1807 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.0381 ms 3.0407 ms 3.0433 ms]
                        change: [−7.4779% −7.2534% −7.0253%] (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)/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.1860 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.3641 ms 2.3665 ms 2.3691 ms]
                        change: [−8.1582% −7.6457% −7.1344%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.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.1889 s (2400 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.1570 ms 2.1596 ms 2.1621 ms]
                        change: [−4.4421% −4.1586% −3.8773%] (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)/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.0512 s (400 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [12.595 ms 12.615 ms 12.636 ms]
                        change: [−3.2061% −3.0286% −2.8601%] (p = 0.00 < 0.05)
                        Performance has improved.
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.0626 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.3255 ms 6.3312 ms 6.3369 ms]
                        change: [−3.6784% −3.5604% −3.4454%] (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.2071 s (1900 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.7378 ms 2.7406 ms 2.7436 ms]
                        change: [−4.6498% −4.3718% −4.0946%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.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.1837 s (1600 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.2559 ms 3.2619 ms 3.2681 ms]
                        change: [−2.9340% −2.6097% −2.2878%] (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.0588 s (1800 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [2.8084 ms 2.8117 ms 2.8154 ms]
                        change: [−3.2192% −2.9382% −2.6556%] (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 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.9713 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.7813 ms 1.7835 ms 1.7857 ms]
                        change: [−0.7037% −0.4790% −0.2409%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  1 (1.00%) low severe
  3 (3.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.5010 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [544.60 µs 544.67 µs 544.75 µs]
                        change: [+0.1302% +0.1488% +0.1676%] (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 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.4998 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [544.62 µs 544.69 µs 544.76 µs]
                        change: [+0.0869% +0.1125% +0.1377%] (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

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.

2 participants