From f342814f31f52793300c19b44bfd10b16e88c0aa Mon Sep 17 00:00:00 2001 From: Dario Gabriel Lipicar Date: Fri, 17 Oct 2025 17:55:10 -0300 Subject: [PATCH 1/2] feat: gas estimator --- .golangci.yml | 6 +- README.md | 89 +- docs/specs.md | 236 +- examples/gas-comparison/README.md | 86 + examples/gas-comparison/data/README.md | 163 + examples/gas-comparison/data/arbitrum/data.go | 25953 ++++++++++++ examples/gas-comparison/data/base/data.go | 29978 ++++++++++++++ examples/gas-comparison/data/ethereum/data.go | 33950 ++++++++++++++++ examples/gas-comparison/data/fake-client.go | 181 + .../gas-comparison/data/fake-client_test.go | 492 + examples/gas-comparison/data/generator/go.mod | 35 + examples/gas-comparison/data/generator/go.sum | 181 + .../gas-comparison/data/generator/main.go | 350 + examples/gas-comparison/data/optimism/data.go | 26525 ++++++++++++ .../data/optimismsepolia/data.go | 25773 ++++++++++++ examples/gas-comparison/data/polygon/data.go | 27507 +++++++++++++ examples/gas-comparison/data/types.go | 17 + examples/gas-comparison/go.mod | 33 + examples/gas-comparison/go.sum | 183 + examples/gas-comparison/main.go | 773 + examples/gas-comparison/old/common.go | 108 + examples/gas-comparison/old/estimated_time.go | 270 + examples/gas-comparison/old/fees.go | 199 + examples/gas-comparison/old/fees_history.go | 63 + .../gas-comparison/old/suggested_priority.go | 177 + examples/gas-comparison/real_client.go | 77 + go.mod | 8 +- go.sum | 20 +- pkg/ethclient/types.go | 9 + pkg/gas/README.md | 253 + pkg/gas/congestion.go | 34 + pkg/gas/congestion_impl_test.go | 36 + pkg/gas/ethclient.go | 18 + pkg/gas/gasprice.go | 43 + pkg/gas/gasprice_linea.go | 47 + pkg/gas/inclusion.go | 78 + pkg/gas/infura/client.go | 59 + pkg/gas/infura/types.go | 329 + pkg/gas/mock/ethclient.go | 89 + pkg/gas/priorityfee.go | 51 + pkg/gas/suggestions.go | 68 + pkg/gas/suggestions_common.go | 27 + pkg/gas/suggestions_l1.go | 82 + pkg/gas/suggestions_l2.go | 73 + pkg/gas/suggestions_linea.go | 81 + pkg/gas/suggestions_test.go | 307 + pkg/gas/txgas_linea.go | 13 + pkg/gas/types.go | 93 + pkg/gas/utils.go | 71 + pkg/gas/utils_impl_test.go | 42 + 50 files changed, 175306 insertions(+), 30 deletions(-) create mode 100644 examples/gas-comparison/README.md create mode 100644 examples/gas-comparison/data/README.md create mode 100644 examples/gas-comparison/data/arbitrum/data.go create mode 100644 examples/gas-comparison/data/base/data.go create mode 100644 examples/gas-comparison/data/ethereum/data.go create mode 100644 examples/gas-comparison/data/fake-client.go create mode 100644 examples/gas-comparison/data/fake-client_test.go create mode 100644 examples/gas-comparison/data/generator/go.mod create mode 100644 examples/gas-comparison/data/generator/go.sum create mode 100644 examples/gas-comparison/data/generator/main.go create mode 100644 examples/gas-comparison/data/optimism/data.go create mode 100644 examples/gas-comparison/data/optimismsepolia/data.go create mode 100644 examples/gas-comparison/data/polygon/data.go create mode 100644 examples/gas-comparison/data/types.go create mode 100644 examples/gas-comparison/go.mod create mode 100644 examples/gas-comparison/go.sum create mode 100644 examples/gas-comparison/main.go create mode 100644 examples/gas-comparison/old/common.go create mode 100644 examples/gas-comparison/old/estimated_time.go create mode 100644 examples/gas-comparison/old/fees.go create mode 100644 examples/gas-comparison/old/fees_history.go create mode 100644 examples/gas-comparison/old/suggested_priority.go create mode 100644 examples/gas-comparison/real_client.go create mode 100644 pkg/gas/README.md create mode 100644 pkg/gas/congestion.go create mode 100644 pkg/gas/congestion_impl_test.go create mode 100644 pkg/gas/ethclient.go create mode 100644 pkg/gas/gasprice.go create mode 100644 pkg/gas/gasprice_linea.go create mode 100644 pkg/gas/inclusion.go create mode 100644 pkg/gas/infura/client.go create mode 100644 pkg/gas/infura/types.go create mode 100644 pkg/gas/mock/ethclient.go create mode 100644 pkg/gas/priorityfee.go create mode 100644 pkg/gas/suggestions.go create mode 100644 pkg/gas/suggestions_common.go create mode 100644 pkg/gas/suggestions_l1.go create mode 100644 pkg/gas/suggestions_l2.go create mode 100644 pkg/gas/suggestions_linea.go create mode 100644 pkg/gas/suggestions_test.go create mode 100644 pkg/gas/txgas_linea.go create mode 100644 pkg/gas/types.go create mode 100644 pkg/gas/utils.go create mode 100644 pkg/gas/utils_impl_test.go diff --git a/.golangci.yml b/.golangci.yml index 3a50ea3..8c3b16c 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -4,7 +4,7 @@ run: concurrency: 0 timeout: 10m issues-exit-code: 1 - tests: true + tests: false output: formats: @@ -32,6 +32,7 @@ linters: # You can't disable typecheck, see: # https://github.com/golangci/golangci-lint/blob/master/docs/src/docs/welcome/faq.mdx#why-do-you-have-typecheck-errors - unconvert + - bodyclose settings: errcheck: check-type-assertions: false @@ -46,6 +47,9 @@ linters: goconst: min-len: 3 min-occurrences: 2 + gosec: + excludes: + - G115 formatters: exclusions: diff --git a/README.md b/README.md index edf93ca..0565dda 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,42 @@ go get github.com/status-im/go-wallet-sdk - Smart fallback between different fetching methods - Chain-agnostic design +- **`pkg/multicall`**: Efficient batching of contract calls using Multicall3 + - Batch multiple contract calls into single transactions + - Support for ETH, ERC20, ERC721, and ERC1155 balance queries + - Automatic chunking and error handling + - Synchronous and asynchronous execution modes + ### Ethereum Client - **`pkg/ethclient`**: Full-featured Ethereum client with go-ethereum compatibility - Complete RPC method coverage (eth_*, net_*, web3_*) - Go-ethereum ethclient compatible interface for easy migration + - Chain-agnostic methods for any EVM-compatible network + +### Gas Estimation +- **`pkg/gas`**: Comprehensive gas fee estimation and suggestions + - Smart fee estimation for three priority levels (low, medium, high) + - Transaction inclusion time predictions + - Multi-chain support (L1, Arbitrum, Optimism, Linea) + - Network congestion analysis for L1 chains + - Chain-specific optimizations + +### Event Filtering & Parsing +- **`pkg/eventfilter`**: Efficient event filtering for ERC20, ERC721, and ERC1155 transfers + - Minimizes eth_getLogs API calls + - Direction-based filtering (send, receive, both) + - Concurrent query processing + +- **`pkg/eventlog`**: Automatic event log detection and parsing + - Type-safe access to parsed event data + - Support for Transfer, Approval, and other standard events + - Works seamlessly with eventfilter + +### Smart Contract Bindings +- **`pkg/contracts`**: Go bindings for smart contracts + - Multicall3 with 200+ chain deployments + - ERC20, ERC721, and ERC1155 token standards + - Automated deployment address management ### Common Utilities - **`pkg/common`**: Shared utilities and constants used across the SDK @@ -43,6 +75,32 @@ cd examples/ethclient-usage go run . ``` +### Gas Comparison Tool + +```bash +cd examples/gas-comparison + +# Test with local mock data +go run . -fake + +# Test with real networks (requires Infura API key) +go run . -infura-api-key YOUR_API_KEY +``` + +### Multicall Usage + +```bash +cd examples/multiclient3-usage +go run . +``` + +### Event Filter Example + +```bash +cd examples/eventfilter-example +go run . -account 0xYourAddress -start 19000000 -end 19100000 +``` + ## Testing ```bash @@ -54,18 +112,43 @@ go test ./... ``` go-wallet-sdk/ ├── pkg/ # Core SDK packages -│ ├── balance/ # Balance-related functionality +│ ├── balance/ # Balance fetching functionality +│ ├── multicall/ # Multicall3 batching │ ├── ethclient/ # Ethereum client with full RPC support +│ ├── gas/ # Gas estimation and fee suggestions +│ ├── eventfilter/ # Event filtering for transfers +│ ├── eventlog/ # Event log parsing +│ ├── contracts/ # Smart contract bindings │ └── common/ # Shared utilities ├── examples/ # Usage examples -└── README.md # This file +│ ├── balance-fetcher-web/ # Web interface for balance fetching +│ ├── ethclient-usage/ # Ethereum client examples +│ ├── gas-comparison/ # Gas fee comparison tool +│ ├── multiclient3-usage/ # Multicall examples +│ ├── multistandardfetcher-example/ # Multi-standard balance fetching +│ └── eventfilter-example/ # Event filtering examples +└── README.md # This file ``` ## Documentation +### Package Documentation - [Balance Fetcher](pkg/balance/fetcher/README.md) - Balance fetching functionality +- [Multicall](pkg/multicall/README.md) - Efficient contract call batching - [Ethereum Client](pkg/ethclient/README.md) - Complete Ethereum RPC client -- [Web Example](examples/balance-fetcher-web/README.md) - Complete web application +- [Gas Estimation](pkg/gas/README.md) - Gas fee estimation and suggestions +- [Event Filter](pkg/eventfilter/README.md) - Event filtering for transfers +- [Event Log Parser](pkg/eventlog/README.md) - Event log parsing + +### Example Documentation +- [Web Balance Fetcher](examples/balance-fetcher-web/README.md) - Web interface for balance fetching +- [Ethereum Client Usage](examples/ethclient-usage/README.md) - Ethereum client examples +- [Gas Comparison](examples/gas-comparison/README.md) - Gas fee comparison tool +- [Multicall Usage](examples/multiclient3-usage/README.md) - Multicall examples +- [Event Filter Example](examples/eventfilter-example/README.md) - Event filtering examples + +### Specifications +- [Technical Specifications](docs/specs.md) - Complete SDK specifications and architecture ## Contributing diff --git a/docs/specs.md b/docs/specs.md index e11121f..4881ada 100644 --- a/docs/specs.md +++ b/docs/specs.md @@ -10,11 +10,12 @@ Go Wallet SDK is a modular Go library intended to support the development of m | `pkg/balance/fetcher` | High‑performance balance fetcher for EVM‑compatible chains. The package can fetch native token balances or ERC‑20 balances for multiple addresses in batches using smart fallback strategies. It includes automatic fallback strategies (Multicall3 contract or standard RPC batching) and exposes simple APIs to fetch balances for many addresses or tokens | | `pkg/multicall` | Efficient batching of multiple Ethereum contract calls into single transactions using Multicall3. Supports native ETH, ERC20, ERC721, and ERC1155 balance queries with chunked processing, error handling, and both synchronous and asynchronous execution modes. | | `pkg/ethclient` | Chain‑agnostic Ethereum JSON‑RPC client. It provides two method sets: a drop‑in replacement compatible with go‑ethereum's `ethclient` and a custom implementation that follows the Ethereum JSON‑RPC specification without assuming chain‑specific types. It supports JSON‑RPC methods covering `eth_`, `net_` and `web3_` namespace | +| `pkg/gas` | Comprehensive gas estimation and fee suggestion package for Ethereum and L2 networks. Provides smart fee estimation with priority fees, base fees, max fees, and inclusion time estimates. Supports multiple chain classes including L1 (Ethereum, Polygon, BSC), Arbitrum Stack, Optimism Stack, and Linea Stack with chain-specific optimizations. | | `pkg/eventfilter` | Efficient filtering for Ethereum transfer events across ERC20, ERC721, and ERC1155 tokens. Minimizes `eth_getLogs` API calls while capturing all relevant transfers involving specified addresses with optimized query generation and direction-based filtering. | | `pkg/eventlog` | Ethereum event log parser for ERC20, ERC721, and ERC1155 events. Automatically detects and parses token events with type-safe access to event data, supporting Transfer, Approval, and other standard token events. | | `pkg/common` | Shared types and constants. Such as canonical chain IDs (e.g., Ethereum Mainnet, Optimism, Arbitrum, BSC, Base). Developers use these values when configuring the SDK or examples. | | `pkg/contracts/` | Solidity contracts and Go bindings for smart contract interactions. Includes Multicall3, ERC20, ERC721, and ERC1155 contracts with deployment addresses for multiple chains. | -| `examples/` | Demonstrations of SDK usage. Includes `balance-fetcher-web` (a web interface for batch balance fetching), `ethclient‑usage` (an example that exercises the Ethereum client across multiple RPC endpoints), `multiclient3-usage` (demonstrates multicall functionality), `multistandardfetcher-example` (shows multi-standard balance fetching across all token types), and `eventfilter-example` (shows event filtering and parsing capabilities). | | +| `examples/` | Demonstrations of SDK usage. Includes `balance-fetcher-web` (a web interface for batch balance fetching), `ethclient‑usage` (an example that exercises the Ethereum client across multiple RPC endpoints), `multiclient3-usage` (demonstrates multicall functionality), `multistandardfetcher-example` (shows multi-standard balance fetching across all token types), `eventfilter-example` (shows event filtering and parsing capabilities), and `gas-comparison` (compares gas estimation implementations across multiple networks). | | ## 2. Architecture @@ -24,6 +25,7 @@ Go Wallet SDK follows a modular architecture where each package encapsulates a s - **Balance Fetcher** – Provides efficient methods to retrieve account balances (native or ERC‑20) across many addresses and tokens. It abstracts over RPC batch calls and Multicall3 contract calls. Developers supply a minimal RPC client interface (`RPCClient` and optionally `BatchCaller`) and the package returns a map of balances - **Multicall** – Efficiently batches multiple Ethereum contract calls into single transactions using Multicall3. Supports native ETH, ERC20, ERC721, and ERC1155 balance queries with automatic chunking, error handling, and both synchronous and asynchronous execution modes. Provides call builders and result processors for different token types. - **Ethereum Client** – Exposes the full Ethereum JSON‑RPC API. It wraps a standard RPC client and offers two sets of methods: chain‑agnostic versions prefixed with `Eth*` and a drop‑in `BalanceAt`, `BlockNumber` etc. that mirror go‑ethereum's ethclient. The client covers methods including network info, block and transaction queries, account state, contract code and gas estimation +- **Gas Estimation** – Provides comprehensive gas fee estimation and suggestions for Ethereum and L2 networks. Analyzes historical fee data to suggest optimal priority fees, base fees, and max fees for three priority levels (low, medium, high). Estimates transaction inclusion time based on network congestion and chain parameters. Supports multiple chain classes with specific optimizations for L1, Arbitrum Stack, Optimism Stack, and Linea Stack. - **Event Filter** – Efficiently filters Ethereum transfer events across ERC20, ERC721, and ERC1155 tokens. Minimizes `eth_getLogs` API calls through optimized query generation and supports direction-based filtering (send, receive, or both). Uses intelligent query merging to reduce the number of RPC calls required. - **Event Log Parser** – Automatically detects and parses Ethereum event logs for ERC20, ERC721, and ERC1155 tokens. Provides type-safe access to event data with support for Transfer, Approval, and other standard token events. Works seamlessly with the Event Filter package. - **Common Utilities** – Houses shared types (e.g., `ChainID`) and enumerated constants for well‑known networks. This allows examples and client code to refer to network IDs without hard‑coding numbers. @@ -90,6 +92,41 @@ The `pkg/contracts` package provides Go bindings for smart contracts and deploym - **Token Standards** – ERC20, ERC721, and ERC1155 contract bindings with standard interface implementations. - **Deployment Management** – Automated deployment address management with utilities to regenerate addresses from official deployment lists. +### 2.9 Gas Estimation Design + +The `pkg/gas` package provides comprehensive gas fee estimation and suggestions for Ethereum and L2 networks: + +- **Multi-Chain Support** – Supports four chain classes with specific optimization strategies: + - **L1 (Ethereum, Polygon, BSC)**: Uses congestion-based base fee multipliers for dynamic fee adjustment (1.025x base with 10x congestion factor for medium/high) + - **ArbStack (Arbitrum)**: Fast 0.25s block times with fixed multipliers (1.025x, 4.1x, 10.25x) for L2 optimization + - **OPStack (Optimism, Base)**: Fixed base fee multipliers (1.025x, 4.1x, 10.25x) for predictable fees + - **LineaStack (Linea)**: Uses dedicated `linea_estimateGas` RPC method with 2x base fee for all levels + +- **Fee Calculation** – Analyzes historical fee data from `eth_feeHistory` to calculate three priority levels: + - **Low Priority**: Uses 10th percentile of historical priority fees, base fee with 1.025x multiplier (no congestion adjustment on L1) + - **Medium Priority**: Uses 45th percentile with configurable base fee multipliers (1.025x for L1, 4.1x for L2) and optional congestion adjustment (10x factor on L1) + - **High Priority**: Uses 90th percentile with higher base fee multipliers (1.025x for L1, 10.25x for L2) and optional congestion adjustment (10x factor on L1) + +- **Inclusion Time Estimation** – Estimates transaction inclusion time based on: + - Historical base fees and priority fees from recent blocks + - Chain-specific block times (12s for Ethereum, 2s for L2s, 0.25s for Arbitrum) + - Fee competitiveness relative to network conditions + - Returns min/max blocks and min/max seconds until inclusion + +- **Network Congestion** – Calculates congestion score (0-1 scale) for L1 chains by analyzing: + - Average base fee trends + - Average priority fee levels + - Gas usage ratios across recent blocks + - Weighted scoring of priority fees (70%) and gas usage (30%) + +- **Configurable Parameters** – Developers can customize: + - Number of blocks for congestion analysis (default: 10) + - Number of blocks for gas price estimation (default: 10 for L1, 50 for L2) + - Reward percentiles for low/medium/high priority (10/45/90) + - Base fee multipliers per priority level (default: 1.025 for L1, 1.025/4.1/10.25 for L2) + - Congestion-based adjustment factors for L1 chains (default: 0.0/10.0/10.0) + - Fine-grained control over fee calculation for each priority level + ## 3. API Description ### 3.1 Multicall API (`pkg/multicall`) @@ -364,11 +401,161 @@ Converts Go `ethereum.FilterQuery` structs into JSON-RPC filter objects: This enables `EthGetLogs`, `EthNewFilter`, and other event filtering methods to work correctly across all EVM chains. -### 3.3 Event Filter API (`pkg/eventfilter`) +### 3.3 Gas Estimation API (`pkg/gas`) + +The gas package provides comprehensive gas fee estimation and transaction inclusion time predictions for Ethereum and L2 networks. + +#### 3.3.1 Core Functions + +| Function | Purpose | Parameters | Returns | +|----------|---------|------------|---------| +| `GetTxSuggestions(ctx, ethClient, params, config, callMsg)` | Get fee suggestions and gas limit for a transaction | `ctx`: `context.Context`, `ethClient`: `EthClient`, `params`: `ChainParameters`, `config`: `SuggestionsConfig`, `callMsg`: `*ethereum.CallMsg` | `*TxSuggestions`, `error` | +| `EstimateInclusion(ctx, ethClient, params, config, fee)` | Estimate inclusion time for a specific fee | `ctx`: `context.Context`, `ethClient`: `EthClient`, `params`: `ChainParameters`, `config`: `SuggestionsConfig`, `fee`: `Fee` | `*Inclusion`, `error` | +| `DefaultConfig(chainClass)` | Get default configuration for a chain class | `chainClass`: `ChainClass` | `SuggestionsConfig` | + +#### 3.3.2 Chain Parameters + +```go +type ChainParameters struct { + ChainClass ChainClass // L1, ArbStack, OPStack, or LineaStack + NetworkBlockTime float64 // Average block time in seconds +} +``` + +| ChainClass | Description | Example Networks | Block Time | +|------------|-------------|------------------|------------| +| `ChainClassL1` | Ethereum L1 chains | Ethereum, Polygon, BSC | 12s (Ethereum), 2.25s (Polygon), 0.75s (BSC) | +| `ChainClassArbStack` | Arbitrum-based chains | Arbitrum One, Arbitrum Nova | 0.25s | +| `ChainClassOPStack` | Optimism-based chains | Optimism, Base, OP Sepolia | 2s | +| `ChainClassLineaStack` | Linea-based chains | Linea Mainnet, Status Network | 2s | + +#### 3.3.3 Configuration + +```go +type SuggestionsConfig struct { + NetworkCongestionBlocks int // Blocks to analyze for congestion (default: 10) + GasPriceEstimationBlocks int // Blocks for gas price estimation (default: 10 for L1, 50 for L2) + LowRewardPercentile float64 // Percentile for low priority (default: 10) + MediumRewardPercentile float64 // Percentile for medium priority (default: 45) + HighRewardPercentile float64 // Percentile for high priority (default: 90) + LowBaseFeeMultiplier float64 // Base fee multiplier for low level (default: 1.025) + MediumBaseFeeMultiplier float64 // Base fee multiplier for medium level (default: 1.025 for L1, 4.1 for L2) + HighBaseFeeMultiplier float64 // Base fee multiplier for high level (default: 1.025 for L1, 10.25 for L2) + LowBaseFeeCongestionMultiplier float64 // Congestion adjustment for low (L1 only, default: 0.0) + MediumBaseFeeCongestionMultiplier float64 // Congestion adjustment for medium (L1 only, default: 10.0) + HighBaseFeeCongestionMultiplier float64 // Congestion adjustment for high (L1 only, default: 10.0) +} +``` + +#### 3.3.4 Response Types + +```go +type TxSuggestions struct { + GasLimit *big.Int // Estimated gas limit for the transaction + FeeSuggestions *FeeSuggestions // Fee suggestions for three priority levels +} + +type FeeSuggestions struct { + // Fee suggestions for three priority levels + Low Fee // Low priority fee + Medium Fee // Medium priority fee + High Fee // High priority fee + + // Inclusion time estimates + LowInclusion Inclusion // Low priority inclusion estimate + MediumInclusion Inclusion // Medium priority inclusion estimate + HighInclusion Inclusion // High priority inclusion estimate + + // Network state + EstimatedBaseFee *big.Int // Next block's estimated base fee (wei) + PriorityFeeLowerBound *big.Int // Recommended min priority fee (wei) + PriorityFeeUpperBound *big.Int // Recommended max priority fee (wei) + NetworkCongestion float64 // Congestion score 0-1 (L1 only) +} + +type Fee struct { + MaxPriorityFeePerGas *big.Int // Max priority fee per gas (wei) + MaxFeePerGas *big.Int // Max fee per gas (wei) +} + +type Inclusion struct { + MinBlocksUntilInclusion int // Minimum blocks until inclusion + MaxBlocksUntilInclusion int // Maximum blocks until inclusion + MinTimeUntilInclusion float64 // Minimum time in seconds + MaxTimeUntilInclusion float64 // Maximum time in seconds +} +``` + +#### 3.3.5 EthClient Interface + +```go +type EthClient interface { + FeeHistory(ctx context.Context, blockCount uint64, lastBlock *big.Int, + rewardPercentiles []float64) (*ethereum.FeeHistory, error) + EstimateGas(ctx context.Context, msg ethereum.CallMsg) (uint64, error) + LineaEstimateGas(ctx context.Context, msg ethereum.CallMsg) (*LineaEstimateGasResult, error) +} +``` + +#### 3.3.6 Usage Example + +```go +import "github.com/status-im/go-wallet-sdk/pkg/gas" + +// Define chain parameters +params := gas.ChainParameters{ + ChainClass: gas.ChainClassL1, + NetworkBlockTime: 12.0, // Ethereum block time +} + +// Get default config or customize +config := gas.DefaultConfig(params.ChainClass) + +// Create transaction call message +callMsg := ðereum.CallMsg{ + From: common.HexToAddress("0x..."), + To: &toAddress, + Value: big.NewInt(0), + Data: txData, +} + +// Get fee suggestions +suggestions, err := gas.GetTxSuggestions(ctx, ethClient, params, config, callMsg) +if err != nil { + return err +} + +// Use medium priority fees +maxPriorityFee := suggestions.FeeSuggestions.Medium.MaxPriorityFeePerGas +maxFee := suggestions.FeeSuggestions.Medium.MaxFeePerGas +gasLimit := suggestions.GasLimit + +// Check estimated wait time +minWait := suggestions.FeeSuggestions.MediumInclusion.MinTimeUntilInclusion +maxWait := suggestions.FeeSuggestions.MediumInclusion.MaxTimeUntilInclusion + +// Estimate inclusion for custom fee +customFee := gas.Fee{ + MaxPriorityFeePerGas: big.NewInt(2000000000), // 2 gwei + MaxFeePerGas: big.NewInt(30000000000), // 30 gwei +} +inclusion, err := gas.EstimateInclusion(ctx, ethClient, params, config, customFee) +``` + +#### 3.3.7 Chain-Specific Behavior + +| Chain Class | Base Fee Strategy | Priority Fee Source | Congestion Analysis | +|-------------|-------------------|---------------------|---------------------| +| L1 | Dynamic (1.025x base for all levels + congestion multiplier for medium/high) | Historical percentiles (10/45/90) | Yes (0-1 scale, 0x/10x/10x factors) | +| ArbStack | Fixed (1.025x, 4.1x, 10.25x multipliers) | Historical percentiles (10/45/90) | No (0x/0x/0x factors) | +| OPStack | Fixed (1.025x, 4.1x, 10.25x multipliers) | Historical percentiles (10/45/90) | No (0x/0x/0x factors) | +| LineaStack | 2x base fee for all levels | `linea_estimateGas` RPC | No | + +### 3.4 Event Filter API (`pkg/eventfilter`) The event filter package provides efficient filtering for Ethereum transfer events across ERC20, ERC721, and ERC1155 tokens with concurrent processing capabilities. -#### 3.3.1 Configuration +#### 3.4.1 Configuration | Type | Description | Values | |------|-------------|---------| @@ -376,7 +563,7 @@ The event filter package provides efficient filtering for Ethereum transfer even | `Direction` | Transfer direction | `Send`, `Receive`, `Both` | | `TransferQueryConfig` | Main configuration struct | See below | -#### 3.3.2 TransferQueryConfig +#### 3.4.2 TransferQueryConfig ```go type TransferQueryConfig struct { @@ -389,14 +576,14 @@ type TransferQueryConfig struct { } ``` -#### 3.3.3 Core Functions +#### 3.4.3 Core Functions | Function | Purpose | Parameters | Returns | |----------|---------|------------|---------| | `FilterTransfers(ctx, client, config)` | Filter and parse transfer events with concurrent processing | `ctx`: `context.Context`, `client`: `FilterClient`, `config`: `TransferQueryConfig` | `[]eventlog.Event`, `error` | | `config.ToFilterQueries()` | Generate optimized filter queries | `config`: `TransferQueryConfig` | `[]ethereum.FilterQuery` | -#### 3.3.4 FilterClient Interface +#### 3.4.4 FilterClient Interface ```go type FilterClient interface { @@ -404,7 +591,7 @@ type FilterClient interface { } ``` -#### 3.3.5 Concurrent Processing +#### 3.4.5 Concurrent Processing The `FilterTransfers` function provides concurrent processing of filter queries: @@ -413,7 +600,7 @@ The `FilterTransfers` function provides concurrent processing of filter queries: - **Event Collection**: Results from all queries are merged into a single event slice - **Resource Management**: Proper cleanup of goroutines and channels -#### 3.3.6 Query Optimization +#### 3.4.6 Query Optimization The package minimizes API calls through intelligent query merging: @@ -422,11 +609,11 @@ The package minimizes API calls through intelligent query merging: - **Event Signature Merging**: Multiple event types in single query using OR operations - **Topic Structure Optimization**: Merges compatible queries by omitting empty trailing topics -### 3.4 Event Log Parser API (`pkg/eventlog`) +### 3.5 Event Log Parser API (`pkg/eventlog`) The event log parser package provides automatic detection and parsing of Ethereum event logs. -#### 3.4.1 Core Types +#### 3.5.1 Core Types ```go type Event struct { @@ -441,13 +628,13 @@ type ContractKey string type EventKey string ``` -#### 3.4.2 Core Functions +#### 3.5.2 Core Functions | Function | Purpose | Parameters | Returns | |----------|---------|------------|---------| | `ParseLog(log)` | Parse a single log into events | `log`: `types.Log` | `[]Event` | -#### 3.4.3 Supported Events +#### 3.5.3 Supported Events | Contract | Event Types | Unpacked Type | |----------|-------------|---------------| @@ -455,7 +642,7 @@ type EventKey string | ERC721 | Transfer, Approval, ApprovalForAll | `erc721.Erc721Transfer`, `erc721.Erc721Approval`, `erc721.Erc721ApprovalForAll` | | ERC1155 | TransferSingle, TransferBatch, ApprovalForAll, URI | `erc1155.Erc1155TransferSingle`, `erc1155.Erc1155TransferBatch`, `erc1155.Erc1155ApprovalForAll`, `erc1155.Erc1155URI` | -#### 3.4.4 Event Signatures +#### 3.5.4 Event Signatures Uses standardized signatures from the `eventlog` package: - **ERC20/ERC721 Transfer**: `0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef` @@ -618,6 +805,29 @@ The `examples/eventfilter-example` folder demonstrates how to use the event filt - **Integration** – The example demonstrates the seamless integration between the `eventfilter` and `eventlog` packages, showing how to filter events and parse them into type-safe Go structs for application use with improved performance through concurrent processing. +### 4.6 Gas Comparison Example + +The `examples/gas-comparison` folder demonstrates gas fee estimation across multiple networks and compares different implementations with comprehensive analysis tools. + +- **Features** – The example provides a multi-network gas fee comparison tool that tests gas estimation accuracy across Ethereum, Arbitrum, Optimism, Base, Polygon, Linea, BSC, and Status Network Sepolia. It compares three implementations: the new `GetTxSuggestions` API, a legacy estimator, and Infura's Gas API. The tool displays comprehensive analysis including priority fees, max fees, base fees, wait times, and network congestion metrics. + +- **Usage** – Users can run with local mock data (`-fake` flag) for testing without network access, or with real networks by providing an Infura API key (`-infura-api-key YOUR_KEY`). The tool automatically configures chain-specific parameters including block times and estimation strategies for each network. Example output shows detailed comparisons in wei with percentage differences between implementations. + +- **Chain-Specific Parameters** – The example demonstrates proper configuration for different chain classes: + - **Ethereum Mainnet**: 12s block time, 10 blocks for estimation, L1 congestion analysis + - **Arbitrum One**: 0.25s block time, 50 blocks for estimation, ArbStack optimizations + - **Optimism/Base**: 2s block time, 50 blocks for estimation, OPStack fixed multipliers + - **Polygon**: 2.25s block time, 50 blocks for estimation, L1 congestion analysis + - **Linea/Status Network**: 2s block time, 50 blocks for estimation, LineaStack with `linea_estimateGas` + +- **Test Transaction** – Uses a simple 0-valued ETH transfer from Vitalik's address (`0xd8da6bf26964af9d7eed9e03e53415d37aa96045`) to the zero address for consistent testing across networks. This minimal transaction allows focus on fee estimation accuracy without contract complexity. + +- **Mock Data Support** – Includes pre-captured network data for offline testing. The `data/generator` subdirectory provides tools to regenerate test data by fetching fresh blockchain data including latest blocks with full transactions, 1024 blocks of fee history, current gas prices, and Infura fee suggestions. + +- **Output Format** – Displays comprehensive comparison results showing fee suggestions for three priority levels, time estimates with min/max ranges in seconds, network congestion scores (L1 only), and percentage differences between implementations. Results help validate estimation accuracy and identify optimization opportunities. + +- **Data Generator** – The `data/generator` tool captures real blockchain data for testing. Users run `go run main.go -rpc YOUR_RPC_URL` to fetch data from any EVM chain. The tool automatically detects chain ID and generates chain-specific Go code with embedded test data for reproducible offline testing. + ## 5. Testing & Development ### 5.1 Fetching SDK diff --git a/examples/gas-comparison/README.md b/examples/gas-comparison/README.md new file mode 100644 index 0000000..2854abc --- /dev/null +++ b/examples/gas-comparison/README.md @@ -0,0 +1,86 @@ +# Gas Comparison Tool + +A multi-network gas fee comparison tool that compares our gas estimation implementation against legacy estimators and Infura's Gas API. + +## What It Does + +- **Compares implementations**: Our new `GetTxSuggestions` vs old estimator vs Infura API +- **Multi-network support**: Ethereum, Arbitrum, Optimism, Base, Polygon, Linea, BSC, Status Network +- **Comprehensive analysis**: Priority fees, max fees, base fees, wait times, network congestion +- **Real vs local data**: Test with live networks or use local mock data + +## Quick Start + +```bash +# Test with local mock data +./gas-comparison -fake + +# Test with real networks (requires Infura API key) +./gas-comparison -infura-api-key YOUR_API_KEY +``` + +## What You'll See + +``` +🔸 LOW PRIORITY FEES + Current Implementation: 200000 wei + Old Implementation: 330120 wei + Infura: 1000000 wei + Current vs Old: -130120 wei (-39.4%) + Current vs Infura: -800000 wei (-80.0%) + +🔸 LOW WAIT TIME + Wait Time (Current): 12.0-72.0 seconds + Wait Time (Old): 125 seconds + Wait Time (Infura): 12.0-48.0 seconds +``` + +## Test Transaction + +Uses a simple 0-valued ETH transfer from Vitalik's address: +- **From**: `0xd8da6bf26964af9d7eed9e03e53415d37aa96045` +- **To**: Zero address +- **Value**: 0 ETH +- **Data**: Empty + +## Networks Tested + +- **Ethereum Mainnet** (L1) - 12s block time +- **Arbitrum One** (ArbStack) - 0.25s block time +- **Optimism** (OPStack) - 2s block time +- **Optimism Sepolia** (OPStack) - 2s block time +- **Base** (OPStack) - 2s block time +- **Polygon** (L1) - 2.25s block time +- **Linea** (LineaStack) - 2s block time +- **BNB Smart Chain** (L1) - 0.75s block time +- **Status Network Sepolia** (LineaStack) - 2s block time + +## Use Cases + +- **Development**: Test gas estimation accuracy across networks +- **Comparison**: Evaluate different fee strategies (current vs legacy vs Infura) +- **Monitoring**: Track gas fee trends and network conditions +- **Validation**: Ensure our implementation matches industry standards + +## Architecture + +The tool uses: +- **Chain-specific parameters**: Each network has optimized block counts and configurations +- **DefaultConfig**: Automatically configures estimation based on chain class +- **Separate inclusions**: Time estimates are now in dedicated inclusion structs +- **Mock data support**: Test locally with pre-captured network data + +## Data Generator + +Generate fresh test data for any network: + +```bash +cd data/generator +go run main.go -rpc https://mainnet.infura.io/v3/YOUR_API_KEY +``` + +This captures: +- Latest block with full transactions +- Fee history (1024 blocks) +- Current gas prices +- Infura fee suggestions diff --git a/examples/gas-comparison/data/README.md b/examples/gas-comparison/data/README.md new file mode 100644 index 0000000..bb0fc63 --- /dev/null +++ b/examples/gas-comparison/data/README.md @@ -0,0 +1,163 @@ +# Gas Data Generator + +This program converts the functionality of `feesData.sh` into a Go program that fetches gas data from any blockchain network and generates a `data.go` file with the results using the existing SDK types. + +## Usage + +Run the generator with the required command line arguments: + +```bash +cd examples/gas-comparison/internal/data + +# BSC Mainnet +go run main.go -infura-api-key YOUR_API_KEY -rpc https://bsc-mainnet.infura.io/v3/YOUR_API_KEY + +# Ethereum Mainnet +go run main.go -infura-api-key YOUR_API_KEY -rpc https://mainnet.infura.io/v3/YOUR_API_KEY + +# Polygon Mainnet +go run main.go -infura-api-key YOUR_API_KEY -rpc https://polygon-mainnet.infura.io/v3/YOUR_API_KEY + +# Show help +go run main.go -help +``` + +3. The program will: + - Create an RPC client connection to the specified network + - Automatically detect the chain ID from the RPC endpoint + - Use SDK's ethclient to fetch the latest block with full transactions + - Use SDK's ethclient to fetch fee history with percentiles [0, 5, 10, ..., 95, 100] + - Use SDK's infura client to fetch suggested gas fees for the detected chain ID + - Generate a chain-specific package and `data.go` file based on the detected chain ID + +### Command Line Arguments + +- **`-infura-api-key`** (required): Infura API key for gas suggestions +- **`-rpc`** (required): RPC URL for the blockchain network +- **`-help`**: Show help message with examples + +### Automatic Chain ID Detection + +The generator automatically detects the chain ID by calling `eth_chainId` on the RPC endpoint, eliminating the need to manually specify it. + +### Supported Networks + +The generator creates human-readable package names for popular networks: + +| Chain ID | Package Name | Network Name | +|----------|--------------|--------------| +| 1 | `ethereum` | Ethereum Mainnet | +| 56 | `bsc` | BSC Mainnet | +| 137 | `polygon` | Polygon Mainnet | +| 42161 | `arbitrum` | Arbitrum One | +| 10 | `optimism` | Optimism Mainnet | +| 8453 | `base` | Base Mainnet | +| 43114 | `avalanche` | Avalanche C-Chain | +| 250 | `fantom` | Fantom Opera | +| 100 | `gnosis` | Gnosis Chain | +| 25 | `cronos` | Cronos Mainnet | +| Other | `chainXXX` | Chain XXX | + +For unknown networks, the package name follows the format `chainXXX` where XXX is the chain ID. + +## What it replaces + +This Go program replaces the shell script `feesData.sh` which made these 3 requests: + +1. **Latest Block**: `eth_getBlockByNumber` with `"latest"` and `true` parameters +2. **Fee History**: `eth_feeHistory` with block count `0x400` (1024 blocks) and percentiles +3. **Infura Suggested Fees**: GET request to `https://gas-api.metaswap.codefi.network/networks/{chainID}/suggestedGasFees` + +Now supports any blockchain network through command line arguments with automatic chain ID detection. + +## Generated Output + +The generator creates chain-specific packages to allow multiple networks in a single program: + +### **Package Structure:** +``` +examples/gas-comparison/internal/data/ +├── ethereum/ # Chain ID 1 (Ethereum Mainnet) +│ └── data.go +├── bsc/ # Chain ID 56 (BSC Mainnet) +│ └── data.go +├── polygon/ # Chain ID 137 (Polygon Mainnet) +│ └── data.go +└── chain123/ # Chain ID 123 (Unknown networks use chainXXX format) + └── data.go +``` + +### **Generated File Contents:** +Each `data.go` file contains: +- Chain-specific package name (e.g., `package ethereum`, `package bsc`) +- Import of the shared `data.GasData` type from `github.com/status-im/go-wallet-sdk/examples/gas-comparison/internal/data` +- A `GetGasData()` function that returns `*data.GasData` with parsed data from embedded JSON constants +- Embedded JSON data from all three API calls +- Comments indicating the specific network and chain ID + +The `GasData` struct is defined once in `data/types.go` and reused across all generated packages, ensuring consistency and reducing code duplication. + +### **Usage in Go Programs:** +```go +import ( + "github.com/status-im/go-wallet-sdk/examples/gas-comparison/internal/data" + ethereumData "github.com/status-im/go-wallet-sdk/examples/gas-comparison/internal/data/ethereum" + bscData "github.com/status-im/go-wallet-sdk/examples/gas-comparison/internal/data/bsc" + polygonData "github.com/status-im/go-wallet-sdk/examples/gas-comparison/internal/data/polygon" +) + +// Use data from different networks - all return the same *data.GasData type +var ethData, bscGasData, polygonGasData *data.GasData +var err error + +ethData, err = ethereumData.GetGasData() +bscGasData, err = bscData.GetGasData() +polygonGasData, err = polygonData.GetGasData() + +// All data uses the same GasData type for consistency +fmt.Printf("Ethereum base fee: %s\n", ethData.LatestBlock.BaseFeePerGas) +fmt.Printf("BSC base fee: %s\n", bscGasData.LatestBlock.BaseFeePerGas) +``` + +## SDK Integration + +The generator now uses the SDK's client methods instead of raw HTTP requests: + +### **Client Methods Used:** +- **Ethereum Client**: `ethclient.NewClient()` with RPC client + - `client.ChainID(ctx)` - automatically detects chain ID + - `client.GetLatestBlock(ctx)` - fetches latest block with full transactions + - `client.FeeHistory(ctx, blockCount, lastBlock, percentiles)` - fetches fee history +- **Infura Client**: `infura.NewClient(apiKey)` + - `client.GetGasSuggestions(ctx, chainID)` - fetches gas suggestions + +### **SDK Types Used:** +- **Block Data**: `github.com/status-im/go-wallet-sdk/pkg/ethclient.BlockWithFullTxs` +- **Fee History**: `github.com/status-im/go-wallet-sdk/pkg/ethclient.FeeHistory` +- **Infura Fees**: `github.com/status-im/go-wallet-sdk/pkg/gas/infura.GasResponse` + +### **Benefits:** +✅ **Proper Error Handling**: Uses SDK's built-in error handling and retries +✅ **Type Safety**: Automatic JSON marshaling/unmarshaling with proper types +✅ **Connection Management**: Proper RPC connection lifecycle management +✅ **Consistency**: Uses the same client methods as the rest of the SDK +✅ **Timeout Handling**: Built-in timeout and context management +✅ **Auto Chain Detection**: Automatically detects chain ID from RPC endpoint +✅ **Multi-Network Support**: Generate data for multiple networks without conflicts +✅ **Clean Package Structure**: Each network gets its own package namespace +✅ **Shared Type Definitions**: Single `GasData` type definition prevents duplication and ensures consistency +✅ **Type Safety**: All generated packages return the same `*data.GasData` type for easy interoperability + +This ensures full integration with the SDK and allows you to use the gas data in your Go programs without making additional API calls. + +## Important Note + +If you have existing generated files from previous versions of the generator, you should regenerate them to use the new shared `data.GasData` type instead of having duplicate type definitions in each file. Simply run the generator again for each network you want to update: + +```bash +cd examples/gas-comparison/internal/data/generator + +# Regenerate existing data files to use shared types +go run main.go -infura-api-key YOUR_API_KEY -rpc https://mainnet.infura.io/v3/YOUR_API_KEY +go run main.go -infura-api-key YOUR_API_KEY -rpc https://bsc-mainnet.infura.io/v3/YOUR_API_KEY +``` \ No newline at end of file diff --git a/examples/gas-comparison/data/arbitrum/data.go b/examples/gas-comparison/data/arbitrum/data.go new file mode 100644 index 0000000..a1662de --- /dev/null +++ b/examples/gas-comparison/data/arbitrum/data.go @@ -0,0 +1,25953 @@ +package arbitrum + +import ( + "encoding/json" + "gas-comparison/data" + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" + "math/big" +) + +// GetGasData returns the gas data fetched from Arbitrum One (Chain ID: 42161) +func GetGasData() (*data.GasData, error) { + // Parse the embedded JSON data + var block ethclient.BlockWithFullTxs + err := json.Unmarshal([]byte(latestBlockJSON), &block) + if err != nil { + return nil, err + } + + var gasPrice *big.Int + gasPrice, err = hexutil.DecodeBig(gasPriceJSON) + if err != nil { + return nil, err + } + + var maxPriorityFeePerGas *big.Int + maxPriorityFeePerGas, err = hexutil.DecodeBig(maxPriorityFeePerGasJSON) + if err != nil { + return nil, err + } + + var feeHistory ethereum.FeeHistory + err = json.Unmarshal([]byte(feeHistoryJSON), &feeHistory) + if err != nil { + return nil, err + } + + var infuraFees infura.GasResponse + err = json.Unmarshal([]byte(infuraFeesJSON), &infuraFees) + if err != nil { + return nil, err + } + + return &data.GasData{ + LatestBlock: &block, + GasPrice: gasPrice, + MaxPriorityFeePerGas: maxPriorityFeePerGas, + FeeHistory: &feeHistory, + InfuraSuggestedFees: &infuraFees, + }, nil +} + +// Embedded JSON data +const latestBlockJSON = `{ + "number": "0x1747426c", + "hash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "parentHash": "0xc5b16486af85111d50a8c8de903df7ef5f8b370807a8abad3b5f6b27191e678c", + "nonce": "0x000000000020fe5f", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "logsBloom": "0x10280010000020000040010080040000004000000000002000020200000000200000000000000000100000000006000000014021400004008000200000200000540890010040800000000048020080620001040000000000005000000000000002400000020200400000000400082a0000000010002000800000041000000000002042000000000000000000000000002000002000000008800000402000800002000800800000000000000000008000000000000000000100004000340005000000a002000000000000002800000000000000000000201000000000000020040010100000008000000000000000200210000000002000000000080000050000", + "transactionsRoot": "0x1143f11764e50b141943da7db8555d6e1654f904640b48da5bd8e2fb4fddabc0", + "stateRoot": "0xffd8a3930e112f60cd0d34541dcf52a194dc18b2cb687d5e051ea84afa6542f8", + "receiptsRoot": "0x24fc9fb013e68408fb0cbe9acf2b6fa84890ba21f0812b3b2b4fdb87eeec8a5c", + "miner": "0xa4b000000000000000000073657175656e636572", + "difficulty": "0x1", + "totalDifficulty": null, + "extraData": "0xf14f52a24d354e939a8455ddf119b060f323e4aebf7c33592e30497879d29fb3", + "size": "0xfb2", + "gasLimit": "0x4000000000000", + "gasUsed": "0x15851e", + "timestamp": "0x68f276fb", + "baseFeePerGas": "0xb1b818", + "transactions": [ + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0x00000000000000000000000000000000000a4b05", + "gas": "0x0", + "gasPrice": "0x0", + "hash": "0x5a15a1b042038b59bfe129b86c49ff38012176e1caf6c2fd9e3611f1967a14bc", + "input": "0x6bf6a42d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016816a2000000000000000000000000000000000000000000000000000000001747426c0000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x00000000000000000000000000000000000a4b05", + "transactionIndex": "0x0", + "value": "0x0", + "v": "0x0", + "r": "0x0", + "s": "0x0", + "type": "0x6a", + "chainId": "0xa4b1" + }, + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0xd95d7761a585bbc1b59b4b6f441b9edc2878dade", + "gas": "0x30d400", + "gasPrice": "0xd7e1a0", + "hash": "0x1c329691a903e106f5240ae67c9d893a8c791ef738ae315dd780e71cf58fe5b5", + "input": "0xb143044b000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000007b9e184e07a6ee1ac23eae0fe8d6be2f663f05e600000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f2cb1100000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000e40223536e000000000000000000000000000000000000000000000000000000000000006047c3c10420b827fa1ecefd04edd3b461bcbfec749641b364983b7c93bc8e48b300000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000051010000000000000434000075c1000000000000000000000000e1ad845d93853fff44990ae0dcecd8575293681e0000759e000000000000000000000000f1fcb4cbd57b67d683972a59b6a7b1e2e8bf27e6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041973499a15459e4cb42416a07f39e16c72f67f53ed47da2b52a8e49f3c265bd8e0f90459f30c425c68e380b8c58a0a46e00dcf42c6196c85731a6d6b090f8eb531b00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xba47d", + "to": "0x5756a74e8e18d8392605ba667171962b2b2826b5", + "transactionIndex": "0x1", + "value": "0x0", + "v": "0x14986", + "r": "0xacc85613bc0e2109acc01c8b9cd732eb1b536ede0773f751b3183cda9949e887", + "s": "0x2b6ab95b66129b73e52c025e8e84acac2f0837b89861a15a3b51326da06aa2fa", + "type": "0x0", + "chainId": "0xa4b1" + }, + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0x8476388b9c15d454a770b9bdf11086032ec20eb8", + "gas": "0x3d0900", + "gasPrice": "0xb1b818", + "hash": "0xdd255323c7eac8a04f63165d85a761bd6f41006bce92faef8ce98424edfe0172", + "input": "0x02000c000200271000c8c6442d434a78c0021b58d711fa9dd963d436a240b9685783c2ff085a6bfb2553010100271000c8e9d55bd42770e29cb7690437b833cc72878cd3aaa90e0296d1063c6457ca76fe", + "nonce": "0x5428b", + "to": "0x601d16bb796d08721e37f8eb97b36ea4a0e07f48", + "transactionIndex": "0x2", + "value": "0x0", + "v": "0x1", + "r": "0x9f3090eeade0492c2a364986b7d81316a91e56d131569d5ae059b55118d4fa84", + "s": "0x2e285c47a6b028a5de0aa187c4bcbeee8acdd1e7dd8cd5e67fb8f8bdc873e73d", + "type": "0x2", + "chainId": "0xa4b1", + "maxFeePerGas": "0x168aff0", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0x1202a889495d56430aee6931cb1eac9bc3e0715f", + "gas": "0x111196", + "gasPrice": "0x7402f98", + "hash": "0x94cb9e1ac6da448915c9c64d1fee9aaf2b547e4512da275e9b5312f9addff49a", + "input": "0x0dc4bdae00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000068f284fc0000000000000000000000001202a889495d56430aee6931cb1eac9bc3e0715f00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab10100000000000000000000008cfe327cec66d1c090dd72bd0ff11d690c33a2eb0000000000000000000000000000000000000000000000056bc75e2d63100000000000000000000000000000000000000000000000000000000000000285d7e00000000000000000000000000000000000000000000000000429d069189e0000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000000020000000000000000000000002a5c6db79e1a03f932e92d4998d8d42f6506e76c000000000000000000000000fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb90000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d6c36b6666f4139e954342683bbf6677fc019d9d00000000000000000000000000000000000000000000000000000000000000416eb23c3c1d38bd0f2a676b2ee500344ee1b6d51957fc637afd55eb8b416c6fb15495d1d0243da0d7abaabf520ae14bd5ed8ae0176e957772a0d37df79e4b94151b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007616e64726f696400000000000000000000000000000000000000000000000000", + "nonce": "0x1b", + "to": "0x07964f135f276412b3182a3b2407b8dd45000000", + "transactionIndex": "0x3", + "value": "0x0", + "v": "0x0", + "r": "0x96018e967e76251fcde528e5323cb708593acfcdd6cc3970841b86554cd9ddc9", + "s": "0x4cc645530ade0759d08eab888f0942faa2211dd2c676c4458379184bdf873ceb", + "type": "0x2", + "chainId": "0xa4b1", + "maxFeePerGas": "0x9fd9e00", + "maxPriorityFeePerGas": "0x68e7780", + "accessList": [] + }, + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0x09fb4c25f675982ae41c004e4275861c074f1acf", + "gas": "0x3d0900", + "gasPrice": "0xb1b818", + "hash": "0x8256fb34bc4b60a9d4326b575a431a51215c634bb0581af33bc921d54c948d16", + "input": "0x02000c000200271000c8c6442d434a78c0021b58d711fa9dd963d436a240b9685783c2ff085a6bfb2553010100271000c8e9d55bd42770e29cb7690437b833cc72878cd3aaa90e0296d1063c6457ca76fe", + "nonce": "0x5433d", + "to": "0x601d16bb796d08721e37f8eb97b36ea4a0e07f48", + "transactionIndex": "0x4", + "value": "0x0", + "v": "0x0", + "r": "0x6726d93daa351532fb4982547d5e4dde533d9396e7efa5c53d603d37c3f5e0e6", + "s": "0x6861ee417160060d3bbd4bbca6bbf76c3a598b215476f17e6d9a8c75ebd11e25", + "type": "0x2", + "chainId": "0xa4b1", + "maxFeePerGas": "0x168aff0", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0x7d2619824b2e4f12757899d711cce80a73427d6e", + "gas": "0x3d0900", + "gasPrice": "0xb1b818", + "hash": "0x4dfb483ca8590f4d0be36fca2408428b0dc9a0f68c81ba684904df61ca4ef239", + "input": "0x02000c000200271000c8c6442d434a78c0021b58d711fa9dd963d436a240b9685783c2ff085a6bfb2553010100271000c8e9d55bd42770e29cb7690437b833cc72878cd3aaa90e0296d1063c6457ca76fe", + "nonce": "0x54426", + "to": "0x601d16bb796d08721e37f8eb97b36ea4a0e07f48", + "transactionIndex": "0x5", + "value": "0x0", + "v": "0x0", + "r": "0xfc018c7c12ef387d053decdd49de46660e81a5843f79d5df9fa70e6069a42312", + "s": "0x8f8ef61df2e0d73756a6b641f1786034eab2d86a3e673801eefed93beba12f5", + "type": "0x2", + "chainId": "0xa4b1", + "maxFeePerGas": "0x168aff0", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0x83405376e355c9460b16d43ce737b5170e538f41", + "gas": "0x493e0", + "gasPrice": "0xb1b818", + "hash": "0x943a0764271dd307d26c09046f0d1ab884ca5ddf990f769278ab5a8f37350d00", + "input": "0x563dd6130000000000000000000000000002ffffffffffffffffffffffffffffffff000c", + "nonce": "0x76", + "to": "0x794a61358d6845594f94dc1db02a252b5b4814ad", + "transactionIndex": "0x6", + "value": "0x0", + "v": "0x1", + "r": "0xe4ff6e04043e32047731703b80dcb970309875b12aa7db2bb0a2b488ecd82d9a", + "s": "0x68c5b5d6de0555266b5f7811f111eb617c7d20458f20ef6d58772d078792158", + "type": "0x2", + "chainId": "0xa4b1", + "maxFeePerGas": "0xf848be", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0x34ce1932b2a7fbb9637fec5b6a2c8f0c272e8fc0", + "gas": "0x34d49", + "gasPrice": "0x1bd5227", + "hash": "0x03eec9247014431c5621ae8a5ec160841e96c4555e4850736d6798549f034fde", + "input": "0x414bf3890000000000000000000000004e200fe2f3efb977d5fd9c430a41531fb04d97b800000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab100000000000000000000000000000000000000000000000000000000000009c400000000000000000000000034ce1932b2a7fbb9637fec5b6a2c8f0c272e8fc00000000000000000000000000000000000000000000000000000000068f2771600000000000000000000000000000000000000000000005e1bd6f2471e2000000000000000000000000000000000000000000000000000000158d5716ed4672d0000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x28bf", + "to": "0x1b81d678ffb9c0263b24a97847620c99d213eb14", + "transactionIndex": "0x7", + "value": "0x0", + "v": "0x1", + "r": "0x5c9717712421b5a9ebd5b5e29c7c2d7e5648063821d6b81cc940834a68860815", + "s": "0x36487882e4257d7a1be040009104c52fa3511cc4df93b1a92662941bbf461557", + "type": "0x2", + "chainId": "0xa4b1", + "maxFeePerGas": "0x1bd5227", + "maxPriorityFeePerGas": "0x1bd5227", + "accessList": [] + }, + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0x3447f702c4bc1539793b593bb69ea5e65a21f651", + "gas": "0x3d0900", + "gasPrice": "0xb1b818", + "hash": "0xed1aabfece0f681fc360cedd6df28f8ad12e0f67a4516fe30be205e779848f8e", + "input": "0x02000c000200271000c8c6442d434a78c0021b58d711fa9dd963d436a240b9685783c2ff085a6bfb2553010100271000c8e9d55bd42770e29cb7690437b833cc72878cd3aaa90e0296d1063c6457ca76fe", + "nonce": "0x543ee", + "to": "0x601d16bb796d08721e37f8eb97b36ea4a0e07f48", + "transactionIndex": "0x8", + "value": "0x0", + "v": "0x1", + "r": "0x9f2ebbe4d3b1c0e75259ef3a9e7df95a8dd2c5279c7ae36bae55ec260f293c7b", + "s": "0x6d269f17f094d28c0a5eafa2c364fac2d0f4a7603ced46408002a41d0506b760", + "type": "0x2", + "chainId": "0xa4b1", + "maxFeePerGas": "0x168aff0", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0x0e8e26048c71e53cd92100fb6ab58850eb47933f", + "gas": "0x1588a", + "gasPrice": "0x13090c0", + "hash": "0x4d43132eca62c12a4373fd54fc51cb4181da21d820c9bd5bc7218d4a083610df", + "input": "0x095ea7b30000000000000000000000000d05a7d3448512b78fa8a9e46c4872c88c4a0d0500000000000000000000000000000000000000000000000000000000073719aa", + "nonce": "0xb0", + "to": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", + "transactionIndex": "0x9", + "value": "0x0", + "v": "0x14986", + "r": "0x9417424d6430e211381590d39a00df51a7b8a892da86d42c3a40c9279731d72b", + "s": "0x1f56190fa3be8a5953fd57325138d63bbcb290c5a30caf23661df413627dac8c", + "type": "0x0", + "chainId": "0xa4b1" + }, + { + "blockHash": "0xfd45b10c9a333e85575d0da3e6f453ea86126a7a2f11352ab5c8855e018129f5", + "blockNumber": "0x1747426c", + "from": "0xf3b5dd400539fae0cec58b076295f1ce603f3724", + "gas": "0x3d0900", + "gasPrice": "0xb1b818", + "hash": "0xa158e579d50f84aa7b0a3d58650b794d3ecc2d0fd55616443af5720718a55910", + "input": "0x02000c000200271000c8c6442d434a78c0021b58d711fa9dd963d436a240b9685783c2ff085a6bfb2553010100271000c8e9d55bd42770e29cb7690437b833cc72878cd3aaa90e0296d1063c6457ca76fe", + "nonce": "0x543ba", + "to": "0x601d16bb796d08721e37f8eb97b36ea4a0e07f48", + "transactionIndex": "0xa", + "value": "0x0", + "v": "0x1", + "r": "0x769728e6f9d4449bd267af170f7e5f10f0f11045865b4acb3d1824dc657b088b", + "s": "0x14ed0c119f20bc61d6cb3f171b5d6f2f503546dfcf8c0bc31d95fd919d429dd5", + "type": "0x2", + "chainId": "0xa4b1", + "maxFeePerGas": "0x1656430", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + } + ], + "uncles": [] +}` + +const gasPriceJSON = `0xb248a0` + +const maxPriorityFeePerGasJSON = `0x0` + +const feeHistoryJSON = `{ + "OldestBlock": 390545005, + "Reward": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + ], + "BaseFee": [ + 10626000, + 10639000, + 10645000, + 10764000, + 10668000, + 10672000, + 10687000, + 10737000, + 10645000, + 10657000, + 10667000, + 10706000, + 10645000, + 10675000, + 10726000, + 10730000, + 10660000, + 10671000, + 10683000, + 10691000, + 10598000, + 10613000, + 10636000, + 10640000, + 10551000, + 10584000, + 10623000, + 10654000, + 10589000, + 10600000, + 10690000, + 10757000, + 10659000, + 10664000, + 10701000, + 10748000, + 10651000, + 10669000, + 10674000, + 10725000, + 10624000, + 10680000, + 10689000, + 10699000, + 10599000, + 10604000, + 10613000, + 10632000, + 10534000, + 10546000, + 10566000, + 10578000, + 10480000, + 10497000, + 10514000, + 10520000, + 10447000, + 10460000, + 10470000, + 10480000, + 10390000, + 10395000, + 10459000, + 10468000, + 10482000, + 10527000, + 10607000, + 10611000, + 10541000, + 10555000, + 10568000, + 10582000, + 10543000, + 10547000, + 10603000, + 10503000, + 10511000, + 10529000, + 10536000, + 10444000, + 10544000, + 10552000, + 10557000, + 10461000, + 10467000, + 10481000, + 10579000, + 10492000, + 10516000, + 10536000, + 10552000, + 10463000, + 10478000, + 10527000, + 10537000, + 10470000, + 10697000, + 10703000, + 10740000, + 10725000, + 10827000, + 10881000, + 10895000, + 10796000, + 10825000, + 10889000, + 10922000, + 10837000, + 10872000, + 10948000, + 10961000, + 10861000, + 10867000, + 10879000, + 10891000, + 10823000, + 10853000, + 10874000, + 10880000, + 10850000, + 10907000, + 10966000, + 10989000, + 10901000, + 10941000, + 10960000, + 11088000, + 10985000, + 11042000, + 11061000, + 11078000, + 10977000, + 11077000, + 11103000, + 11119000, + 11031000, + 11042000, + 11048000, + 11062000, + 10962000, + 10981000, + 10985000, + 10997000, + 10899000, + 10904000, + 10911000, + 10917000, + 10825000, + 10830000, + 10876000, + 10882000, + 10818000, + 10827000, + 10884000, + 10896000, + 10840000, + 10863000, + 10890000, + 10905000, + 10974000, + 10988000, + 10993000, + 10998000, + 10903000, + 10946000, + 10952000, + 11007000, + 10941000, + 10947000, + 10989000, + 10999000, + 10935000, + 10957000, + 11010000, + 11038000, + 10977000, + 11018000, + 11046000, + 11048000, + 10948000, + 10952000, + 11002000, + 11075000, + 11037000, + 11047000, + 11074000, + 11083000, + 10985000, + 11010000, + 11016000, + 11024000, + 10932000, + 10947000, + 10974000, + 10991000, + 10896000, + 10927000, + 10987000, + 11070000, + 10978000, + 10989000, + 11016000, + 11029000, + 10931000, + 10940000, + 10966000, + 10971000, + 10910000, + 10929000, + 10965000, + 10982000, + 10931000, + 10953000, + 10974000, + 11017000, + 10971000, + 10985000, + 11009000, + 11025000, + 10954000, + 11009000, + 11062000, + 11081000, + 10980000, + 10986000, + 11035000, + 11047000, + 10965000, + 10996000, + 11013000, + 11041000, + 11040000, + 11063000, + 11179000, + 11237000, + 11162000, + 11209000, + 11220000, + 11229000, + 11133000, + 11158000, + 11219000, + 11265000, + 11210000, + 11256000, + 11279000, + 11300000, + 11238000, + 11259000, + 11265000, + 11271000, + 11174000, + 11190000, + 11379000, + 11432000, + 11333000, + 11342000, + 11348000, + 11356000, + 11298000, + 11308000, + 11315000, + 11332000, + 11268000, + 11282000, + 11294000, + 11299000, + 11208000, + 11214000, + 11223000, + 11273000, + 11206000, + 11290000, + 11336000, + 11415000, + 11313000, + 11428000, + 11480000, + 11525000, + 11440000, + 11453000, + 11495000, + 11533000, + 11432000, + 11438000, + 11453000, + 11467000, + 11367000, + 11409000, + 11443000, + 11460000, + 11353000, + 11376000, + 11406000, + 11430000, + 11325000, + 11350000, + 11358000, + 11375000, + 11304000, + 11357000, + 11366000, + 11371000, + 11276000, + 11341000, + 11350000, + 11376000, + 11354000, + 11399000, + 11441000, + 11452000, + 11347000, + 11358000, + 11371000, + 11376000, + 11277000, + 11286000, + 11291000, + 11299000, + 11195000, + 11262000, + 11266000, + 11271000, + 11168000, + 11216000, + 11280000, + 11297000, + 11197000, + 11244000, + 11259000, + 11274000, + 11216000, + 11254000, + 11328000, + 11340000, + 11269000, + 11289000, + 11309000, + 11316000, + 11242000, + 11246000, + 11259000, + 11277000, + 11220000, + 11232000, + 11237000, + 11243000, + 11139000, + 11167000, + 11264000, + 11276000, + 11190000, + 11195000, + 11226000, + 11229000, + 11157000, + 11171000, + 11205000, + 11242000, + 11232000, + 11329000, + 11378000, + 11393000, + 11288000, + 11291000, + 11432000, + 11436000, + 11330000, + 11336000, + 11350000, + 11357000, + 11291000, + 11322000, + 11329000, + 11409000, + 11360000, + 11465000, + 11543000, + 11630000, + 11549000, + 11556000, + 11575000, + 11582000, + 11532000, + 11547000, + 11569000, + 11576000, + 11476000, + 11487000, + 11493000, + 11501000, + 11430000, + 11456000, + 11498000, + 11552000, + 11502000, + 11553000, + 11607000, + 11622000, + 11570000, + 11577000, + 11584000, + 11589000, + 11533000, + 11544000, + 11561000, + 11588000, + 11481000, + 11488000, + 11496000, + 11517000, + 11413000, + 11418000, + 11437000, + 11443000, + 11339000, + 11389000, + 11404000, + 11417000, + 11313000, + 11359000, + 11378000, + 11382000, + 11273000, + 11283000, + 11317000, + 11389000, + 11305000, + 11333000, + 11415000, + 11499000, + 11576000, + 11628000, + 11662000, + 11676000, + 11612000, + 11619000, + 11636000, + 11649000, + 11588000, + 11593000, + 11604000, + 11655000, + 11582000, + 11608000, + 11647000, + 11656000, + 11551000, + 11574000, + 11639000, + 11639000, + 11639000, + 11639000, + 11639000, + 11639000, + 11640000, + 11776000, + 11685000, + 11746000, + 11780000, + 11894000, + 11796000, + 11803000, + 11830000, + 11894000, + 11792000, + 11797000, + 11847000, + 11918000, + 11889000, + 11954000, + 11999000, + 12019000, + 11986000, + 12025000, + 12041000, + 12045000, + 11936000, + 11945000, + 12004000, + 12054000, + 11991000, + 12014000, + 12023000, + 12039000, + 11929000, + 11936000, + 11951000, + 11969000, + 11973000, + 11984000, + 12002000, + 12023000, + 11915000, + 11921000, + 11948000, + 12005000, + 12071000, + 12088000, + 12160000, + 12223000, + 12188000, + 12199000, + 12204000, + 12216000, + 12157000, + 12173000, + 12218000, + 12226000, + 12116000, + 12126000, + 12142000, + 12205000, + 12093000, + 12104000, + 12129000, + 12149000, + 12100000, + 12114000, + 12129000, + 12193000, + 12082000, + 12099000, + 12105000, + 12111000, + 12056000, + 12068000, + 12082000, + 12105000, + 11994000, + 12015000, + 12024000, + 12029000, + 11915000, + 11927000, + 11969000, + 12069000, + 11987000, + 12030000, + 12036000, + 12042000, + 11938000, + 11950000, + 11985000, + 11988000, + 11875000, + 11907000, + 11921000, + 11970000, + 11914000, + 11923000, + 11939000, + 11829000, + 11854000, + 11875000, + 11879000, + 11769000, + 11780000, + 11791000, + 11806000, + 11698000, + 11746000, + 11818000, + 11853000, + 11764000, + 11780000, + 11785000, + 11800000, + 11738000, + 11742000, + 11745000, + 11763000, + 11685000, + 11720000, + 11739000, + 11759000, + 11650000, + 11718000, + 11729000, + 11772000, + 11686000, + 11723000, + 11804000, + 11867000, + 11849000, + 11910000, + 11943000, + 11969000, + 11923000, + 11940000, + 11964000, + 12008000, + 11912000, + 11936000, + 11951000, + 11974000, + 11873000, + 11917000, + 11924000, + 11929000, + 11850000, + 11868000, + 11890000, + 11895000, + 11845000, + 11893000, + 11905000, + 11917000, + 11826000, + 11837000, + 11855000, + 11876000, + 11835000, + 11837000, + 11850000, + 11857000, + 11745000, + 11765000, + 11772000, + 11777000, + 11682000, + 11712000, + 11718000, + 11732000, + 11667000, + 11711000, + 11819000, + 11914000, + 11819000, + 11857000, + 11914000, + 11992000, + 11930000, + 11982000, + 12116000, + 12183000, + 12221000, + 12276000, + 12283000, + 12309000, + 12198000, + 12223000, + 12245000, + 12249000, + 12133000, + 12167000, + 12180000, + 12188000, + 12075000, + 12080000, + 12085000, + 12102000, + 11997000, + 12030000, + 12056000, + 12069000, + 11963000, + 11976000, + 11997000, + 12014000, + 11910000, + 11913000, + 11919000, + 11921000, + 11828000, + 11901000, + 11931000, + 11950000, + 11842000, + 11847000, + 11856000, + 11877000, + 11772000, + 11778000, + 11806000, + 11821000, + 11713000, + 11739000, + 11743000, + 11750000, + 11640000, + 11699000, + 11730000, + 11759000, + 11650000, + 11720000, + 11724000, + 11732000, + 11622000, + 11697000, + 11705000, + 11723000, + 11614000, + 11622000, + 11668000, + 11674000, + 11568000, + 11583000, + 11599000, + 11611000, + 11506000, + 11510000, + 11515000, + 11525000, + 11420000, + 11431000, + 11478000, + 11494000, + 11385000, + 11398000, + 11429000, + 11436000, + 11405000, + 11409000, + 11477000, + 11537000, + 11445000, + 11449000, + 11509000, + 11545000, + 11449000, + 11453000, + 11471000, + 11488000, + 11393000, + 11408000, + 11514000, + 11521000, + 11418000, + 11425000, + 11448000, + 11460000, + 11362000, + 11381000, + 11404000, + 11415000, + 11308000, + 11329000, + 11360000, + 11424000, + 11343000, + 11398000, + 11456000, + 11508000, + 11469000, + 11504000, + 11646000, + 11686000, + 11581000, + 11643000, + 11654000, + 11664000, + 11556000, + 11625000, + 11632000, + 11651000, + 11552000, + 11617000, + 11630000, + 11655000, + 11574000, + 11592000, + 11604000, + 11621000, + 11515000, + 11524000, + 11530000, + 11538000, + 11431000, + 11447000, + 11470000, + 11472000, + 11367000, + 11376000, + 11381000, + 11430000, + 11341000, + 11357000, + 11366000, + 11376000, + 11280000, + 11282000, + 11362000, + 11399000, + 11291000, + 11338000, + 11343000, + 11356000, + 11252000, + 11292000, + 11304000, + 11308000, + 11204000, + 11209000, + 11254000, + 11261000, + 11158000, + 11182000, + 11189000, + 11200000, + 11164000, + 11224000, + 11322000, + 11379000, + 11287000, + 11292000, + 11296000, + 11308000, + 11210000, + 11228000, + 11236000, + 11249000, + 11144000, + 11188000, + 11198000, + 11203000, + 11104000, + 11111000, + 11127000, + 11129000, + 11092000, + 11112000, + 11138000, + 11157000, + 11067000, + 11087000, + 11091000, + 11174000, + 11085000, + 11102000, + 11121000, + 11130000, + 11129000, + 11137000, + 11150000, + 11161000, + 11099000, + 11162000, + 11215000, + 11257000, + 11187000, + 11226000, + 11241000, + 11254000, + 11160000, + 11162000, + 11167000, + 11190000, + 11087000, + 11090000, + 11094000, + 11129000, + 11035000, + 11049000, + 11061000, + 11067000, + 10981000, + 10995000, + 11016000, + 11163000, + 11062000, + 11134000, + 11140000, + 11147000, + 11061000, + 11084000, + 11141000, + 11158000, + 11066000, + 11072000, + 11080000, + 11089000, + 10988000, + 11005000, + 11041000, + 11050000, + 10959000, + 10971000, + 10982000, + 10986000, + 10890000, + 10953000, + 10966000, + 10976000, + 10888000, + 10902000, + 10965000, + 10973000, + 10871000, + 10881000, + 10907000, + 10913000, + 10811000, + 10826000, + 10831000, + 10838000, + 10760000, + 10829000, + 10834000, + 10840000, + 10788000, + 10792000, + 10798000, + 10802000, + 10731000, + 10735000, + 10797000, + 10930000, + 10864000, + 10891000, + 10946000, + 10955000, + 10872000, + 10932000, + 10952000, + 10959000, + 10855000, + 10872000, + 10878000, + 10938000, + 10886000, + 10891000, + 10937000, + 11019000, + 10935000, + 10961000, + 11007000, + 11031000, + 10928000, + 10932000, + 10939000, + 10960000, + 10856000, + 10924000, + 10970000, + 10985000, + 10894000, + 10900000, + 10904000, + 10908000, + 10819000, + 10825000, + 10829000, + 10850000, + 10813000, + 10821000, + 10902000, + 11053000, + 11109000, + 11268000, + 11358000, + 11500000, + 11483000, + 11657000, + 11740000, + 11749000, + 11644000, + 11667000, + 11744000, + 11763000, + 11655000, + 11663000, + 11668000, + 11676000, + 11585000, + 11686000, + 11733000, + 11796000, + 11770000, + 11887000, + 12135000, + 12235000, + 12156000, + 12166000, + 12173000, + 12200000, + 12191000, + 12212000, + 12218000, + 12256000, + 12145000, + 12167000, + 12195000, + 12212000, + 12100000, + 12105000, + 12111000, + 12120000, + 12034000, + 12108000, + 12152000, + 12205000, + 12092000, + 12098000, + 12102000, + 12122000, + 12032000, + 12053000, + 12057000, + 12064000, + 11967000, + 11987000, + 11991000, + 12052000, + 11939000, + 11944000, + 11950000, + 11955000, + 11848000, + 11854000, + 11918000, + 11925000, + 11870000, + 11882000, + 11889000, + 11779000, + 11790000, + 11812000, + 11819000, + 11711000, + 11723000, + 11727000, + 11743000, + 11647000, + 11684000 + ], + "GasUsedRatio": [ + 1, + 1, + 1, + 0.02343857142857143, + 0.091094, + 0.33191607142857144, + 0.392362, + 0.05862135714285714, + 0.10630228571428571, + 0.2934742857142857, + 0.5045906428571428, + 0.14001028571428573, + 0.3777610714285714, + 0.4020935, + 0.5691892142857143, + 0.05134628571428571, + 0.10877907142857143, + 0.14868371428571428, + 0.20090807142857142, + 0.06908942857142857, + 0.1823015, + 0.2034267857142857, + 0.2755357857142857, + 0.15683835714285715, + 0.3470122857142857, + 0.4925935, + 0.6796873571428571, + 0.05245985714285714, + 0.4857472857142857, + 0.8005889285714286, + 0.8380096428571429, + 0.0224945, + 0.1994885, + 0.4227765, + 0.45859592857142856, + 0.08880557142857143, + 0.11407835714285715, + 0.3549285, + 0.37277807142857144, + 0.26835657142857144, + 0.3140140714285714, + 0.3559842857142857, + 0.3778739285714286, + 0.025202285714285715, + 0.06887892857142858, + 0.16027964285714286, + 0.19138735714285715, + 0.05450085714285714, + 0.14887178571428572, + 0.20763657142857142, + 0.23528392857142857, + 0.08533364285714286, + 0.16442435714285714, + 0.192775, + 0.3385788571428571, + 0.06339592857142858, + 0.11563757142857142, + 0.16130085714285713, + 0.2192667857142857, + 0.027183214285714286, + 0.340331, + 0.38292842857142856, + 0.9513522857142858, + 0.2189007857142857, + 0.6074004285714286, + 0.6277900714285715, + 0.7861245714285714, + 0.07008092857142857, + 0.13272192857142856, + 0.197608, + 0.5108277857142857, + 0.01784957142857143, + 0.287588, + 0.3054375714285714, + 0.037043714285714284, + 0.12397757142857142, + 0.16385878571428572, + 0.21395507142857143, + 0.4843722142857143, + 0.523781, + 0.5479886428571429, + 0.5788012857142857, + 0.030103857142857144, + 0.09731892857142857, + 0.5744352857142857, + 0.6529946428571428, + 0.11923114285714285, + 0.21516914285714286, + 0.29262314285714286, + 0.35745514285714286, + 0.07367185714285714, + 0.3122397142857143, + 0.3651345714285714, + 0.5346209285714286, + 1, + 1, + 1, + 1, + 0.48355328571428574, + 0.7397636428571429, + 0.8056354285714286, + 0.8394853571428571, + 0.13434721428571428, + 0.4365246428571429, + 0.5896620714285714, + 0.6936324285714286, + 0.165713, + 0.5173502857142858, + 0.5794704285714286, + 0.6078309285714286, + 0.03513678571428572, + 0.09027314285714286, + 0.14330607142857144, + 0.32346492857142856, + 0.1451437142857143, + 0.24202321428571427, + 0.2697062142857143, + 0.6262128571428571, + 0.271756, + 0.544682, + 0.6544945, + 0.7430043571428572, + 0.1867645, + 0.27470664285714286, + 0.86717, + 0.8923882142857142, + 0.26612764285714285, + 0.35066342857142857, + 0.4269772857142857, + 0.4604708571428571, + 0.46320792857142856, + 0.5845571428571429, + 0.6569852857142857, + 0.7511448571428572, + 0.04953414285714286, + 0.07885128571428572, + 0.14277014285714285, + 0.17777735714285714, + 0.088687, + 0.10735385714285714, + 0.1639682142857143, + 0.20481757142857143, + 0.02443607142857143, + 0.05922064285714286, + 0.0861045, + 0.1553535, + 0.023194714285714287, + 0.237129, + 0.2703845, + 0.4690648571428571, + 0.04170407142857143, + 0.30964657142857144, + 0.36648114285714284, + 0.6010262857142857, + 0.10524442857142857, + 0.2332295, + 0.3047325, + 1, + 0.065129, + 0.08475171428571429, + 0.11306992857142857, + 0.168367, + 0.19713185714285714, + 0.227951, + 0.4842242857142857, + 0.6801173571428571, + 0.024231285714285716, + 0.22327678571428572, + 0.2700374285714286, + 0.46451964285714287, + 0.10466007142857142, + 0.35350678571428573, + 0.4812241428571429, + 0.700794, + 0.1894255, + 0.31808307142857145, + 0.32715535714285715, + 0.3641237857142857, + 0.019300642857142856, + 0.24674735714285714, + 0.5927323571428571, + 0.91018, + 0.04741857142857143, + 0.17508835714285714, + 0.21580292857142858, + 0.26175657142857145, + 0.11656607142857142, + 0.14179557142857144, + 0.17744914285714286, + 0.254466, + 0.06797828571428571, + 0.19382807142857142, + 0.26902421428571427, + 0.3333570714285714, + 0.1395105, + 0.4240862142857143, + 0.8050773571428571, + 0.8826654285714286, + 0.04854428571428571, + 0.16997592857142857, + 0.23406192857142857, + 0.2801389285714286, + 0.0403045, + 0.16305385714285714, + 0.18490471428571428, + 0.395759, + 0.09183271428571428, + 0.26210557142857144, + 0.3405035714285714, + 0.6063520714285714, + 0.09750064285714286, + 0.19842385714285715, + 0.3968375, + 0.6807976428571428, + 0.06604821428571428, + 0.18060692857142857, + 0.2514932142857143, + 0.42307392857142856, + 0.2552, + 0.5006646428571428, + 0.5878102857142857, + 0.6189966428571428, + 0.028240857142857144, + 0.2534977857142857, + 0.30932135714285713, + 0.43509021428571426, + 0.13905564285714286, + 0.2185562857142857, + 0.3483729285714286, + 0.8430653571428571, + 0.10880128571428571, + 0.6380743571428571, + 0.9038092857142858, + 1, + 0.21039707142857142, + 0.2648061428571429, + 0.30164292857142855, + 0.366294, + 0.1099725, + 0.3932872142857143, + 0.5989095, + 0.8514704285714285, + 0.207131, + 0.3115252142857143, + 0.40582135714285716, + 0.6273346428571429, + 0.0907215, + 0.11963478571428571, + 0.14916071428571429, + 0.20666885714285715, + 0.07323635714285714, + 0.9261797857142857, + 1, + 1, + 0.041786, + 0.06481835714285715, + 0.1016545, + 0.3405962142857143, + 0.047379642857142856, + 0.07829871428571429, + 0.15333028571428572, + 0.3614685, + 0.070306, + 0.12143528571428572, + 0.14350514285714286, + 0.23428421428571428, + 0.0215255, + 0.06525728571428571, + 0.29294764285714286, + 0.48533457142857145, + 0.3841872142857143, + 0.5893341428571428, + 0.9439385714285714, + 0.9882224285714286, + 0.5126382142857143, + 0.7501898571428571, + 0.9461898571428572, + 1, + 0.05507735714285714, + 0.24618285714285715, + 0.4141365714285714, + 0.4638342857142857, + 0.026063285714285716, + 0.09386814285714286, + 0.15434914285714285, + 0.20748007142857142, + 0.1890115, + 0.3393009285714286, + 0.41542835714285714, + 0.4334512857142857, + 0.11023457142857143, + 0.24140864285714286, + 0.3464022857142857, + 0.37837635714285717, + 0.1120515, + 0.1504095, + 0.22577942857142858, + 0.4038922142857143, + 0.2410625, + 0.27857314285714285, + 0.3028165, + 0.3735977857142857, + 0.29662278571428574, + 0.3337695, + 0.4535007142857143, + 0.8497547857142858, + 0.20678285714285713, + 0.3959256428571429, + 0.4401092142857143, + 0.4691613571428571, + 0.05457542857142857, + 0.110519, + 0.13417228571428572, + 0.1880437142857143, + 0.03890328571428572, + 0.06294757142857142, + 0.09722285714285714, + 0.12353514285714286, + 0.30684314285714287, + 0.32617471428571426, + 0.34995292857142857, + 0.38033585714285717, + 0.21918764285714284, + 0.5106507857142857, + 0.5847289285714286, + 0.6310622857142857, + 0.21683014285714286, + 0.28007078571428573, + 0.35196785714285717, + 0.5882106428571429, + 0.173352, + 0.5017739285714286, + 0.5605102857142857, + 0.7385981428571429, + 0.0927055, + 0.18566414285714286, + 0.21386957142857144, + 0.37695507142857143, + 0.019820642857142856, + 0.07913664285714286, + 0.16045607142857143, + 0.40492764285714283, + 0.04920614285714286, + 0.07657142857142857, + 0.10215442857142858, + 0.12706464285714286, + 0.12589157142857144, + 0.5695169285714285, + 0.6215926428571429, + 0.7321475714285715, + 0.02403792857142857, + 0.16268114285714286, + 0.178164, + 0.34902335714285715, + 0.06844092857142857, + 0.22068707142857144, + 0.3859936428571429, + 0.8416864285714286, + 0.4379052142857143, + 0.6570599285714286, + 0.7316835714285714, + 0.753888, + 0.01802207142857143, + 0.6500274285714286, + 0.6655094285714286, + 0.6878431428571429, + 0.02592042857142857, + 0.09158928571428572, + 0.12224171428571429, + 0.3299834285714286, + 0.1362445, + 0.1683127142857143, + 0.5272425, + 0.8084074285714286, + 0.47089, + 0.8102191428571428, + 1, + 1, + 0.028517857142857143, + 0.11228678571428571, + 0.1424045, + 0.42086142857142855, + 0.06735921428571429, + 0.16484171428571429, + 0.194911, + 0.25140578571428573, + 0.05092778571428572, + 0.07821407142857142, + 0.11101442857142857, + 0.29496335714285715, + 0.11691207142857143, + 0.3017768571428571, + 0.5407922857142857, + 0.819835, + 0.2277357142857143, + 0.4646618571428571, + 0.5338470714285715, + 0.8005882857142858, + 0.03142242857142857, + 0.06522857142857143, + 0.08301542857142857, + 0.3369304285714286, + 0.047950285714285716, + 0.12328964285714286, + 0.239756, + 0.27156235714285715, + 0.030253642857142857, + 0.06965442857142858, + 0.15866492857142858, + 0.19380514285714287, + 0.024885285714285714, + 0.10655792857142857, + 0.13298728571428572, + 0.16987607142857142, + 0.225611, + 0.2892257857142857, + 0.3525915, + 0.3817032142857143, + 0.2097142142857143, + 0.29062807142857144, + 0.31174778571428574, + 0.32469057142857144, + 0.04161735714285714, + 0.19438021428571428, + 0.5165412142857143, + 0.6382055714285715, + 0.13051221428571427, + 0.4965922857142857, + 0.8698272142857143, + 1, + 0.22907942857142857, + 0.37690178571428573, + 0.4413019285714286, + 0.6582974285714286, + 0.032673071428571426, + 0.1065075, + 0.16638992857142856, + 0.3918027142857143, + 0.028215357142857143, + 0.0735635, + 0.29936014285714285, + 0.47678335714285713, + 0.117955, + 0.2862172142857143, + 0.32887214285714284, + 0.3646621428571429, + 0.09857257142857143, + 0.38564807142857144, + 0.38564807142857144, + 0.38564807142857144, + 0.38564807142857144, + 0.38564807142857144, + 0.38564807142857144, + 0.4116626428571429, + 1, + 1, + 0.26384728571428573, + 0.4110776428571429, + 0.9005649285714286, + 0.9798720714285715, + 0.026612714285714285, + 0.14603971428571427, + 0.42362078571428574, + 0.4825149285714286, + 0.021411857142857142, + 0.23466314285714285, + 0.5413487857142857, + 0.9167147857142857, + 0.279417, + 0.4686792142857143, + 0.5562023571428572, + 0.9172706428571429, + 0.164196, + 0.2342435, + 0.24895942857142858, + 0.2821416428571429, + 0.0441565, + 0.2932582857142857, + 0.5042786428571429, + 0.7366441428571429, + 0.09556, + 0.13830278571428573, + 0.20088035714285715, + 0.2351952142857143, + 0.030672, + 0.09603214285714286, + 0.17356028571428572, + 0.6888591428571429, + 0.04627471428571429, + 0.1186095, + 0.210593, + 0.25480835714285716, + 0.024415714285714287, + 0.13563578571428572, + 0.38097107142857145, + 1, + 0.0715185, + 0.37372585714285717, + 0.6397621428571428, + 0.9907331428571429, + 0.04298807142857143, + 0.064802, + 0.11505221428571429, + 0.3708175714285714, + 0.06835621428571428, + 0.25326364285714287, + 0.28791407142857145, + 0.32860757142857144, + 0.04121021428571429, + 0.10831492857142858, + 0.368557, + 0.39956685714285717, + 0.04747021428571428, + 0.15749164285714284, + 0.23754971428571428, + 0.5336366428571429, + 0.05643842857142857, + 0.12417314285714286, + 0.3876779285714286, + 0.4223105, + 0.07350464285714285, + 0.09594021428571428, + 0.12110678571428571, + 0.38857707142857145, + 0.0496415, + 0.10962664285714285, + 0.2070627857142857, + 0.24194585714285713, + 0.084074, + 0.12676764285714287, + 0.14479057142857144, + 0.1628135, + 0.04803592857142857, + 0.22724907142857143, + 0.6515617857142857, + 0.8032286428571429, + 0.18534257142857144, + 0.21107507142857143, + 0.23505835714285714, + 0.28952735714285716, + 0.05138392857142857, + 0.19982642857142857, + 0.21863714285714286, + 0.23412, + 0.13746457142857144, + 0.19531842857142856, + 0.404271, + 0.6646805714285714, + 0.036439, + 0.11027371428571428, + 0.13418092857142858, + 0.10547107142857143, + 0.19782007142857144, + 0.21330207142857144, + 0.24203157142857143, + 0.04844121428571429, + 0.09376835714285714, + 0.16192264285714286, + 0.19331842857142856, + 0.20970185714285713, + 0.5176651428571428, + 0.6667128571428571, + 0.7854365, + 0.07088878571428571, + 0.09091492857142858, + 0.15521014285714285, + 0.38543735714285715, + 0.01764642857142857, + 0.0334755, + 0.10855914285714285, + 0.2714216428571429, + 0.1556087857142857, + 0.23664557142857143, + 0.32344507142857143, + 0.34893614285714286, + 0.2957325, + 0.33834657142857144, + 0.5305471428571429, + 0.6570004285714286, + 0.15738514285714286, + 0.5094852857142858, + 0.7776491428571428, + 1, + 0.2588358571428571, + 0.4026485, + 0.5174353571428572, + 0.8159232142857142, + 0.0782375, + 0.18034078571428572, + 0.36051335714285715, + 0.45407892857142856, + 0.10262485714285714, + 0.16955085714285714, + 0.26620828571428573, + 0.33412057142857143, + 0.18591557142857143, + 0.21970171428571428, + 0.2386585, + 0.399014, + 0.08052871428571429, + 0.17315564285714286, + 0.19531192857142857, + 0.483826, + 0.2029612857142857, + 0.2534241428571429, + 0.30363507142857143, + 0.4139192857142857, + 0.047711642857142855, + 0.1232495, + 0.2142352142857143, + 0.5369662142857143, + 0.012700357142857143, + 0.06483021428571428, + 0.09680535714285714, + 0.1155765, + 0.084059, + 0.11655178571428572, + 0.13396978571428572, + 0.22421464285714285, + 0.12859928571428572, + 0.15465328571428572, + 0.2160055, + 0.4293107857142857, + 0.19693664285714285, + 0.6638471428571429, + 1, + 1, + 0.16325378571428573, + 0.40640607142857144, + 0.7396119285714285, + 0.9733011428571429, + 0.22485914285714287, + 0.7909754285714286, + 1, + 1, + 0.22967764285714284, + 0.2618829285714286, + 0.36566364285714287, + 0.4024857142857143, + 0.11062742857142857, + 0.20109085714285715, + 0.21556435714285715, + 0.23080478571428573, + 0.14238464285714286, + 0.19813064285714285, + 0.22978685714285715, + 0.25329178571428573, + 0.020730142857142857, + 0.0429165, + 0.116306, + 0.16975292857142857, + 0.1447172142857143, + 0.2481655, + 0.3061167857142857, + 0.3560030714285714, + 0.059819642857142856, + 0.14300742857142856, + 0.21514385714285714, + 0.2721308571428571, + 0.016740428571428573, + 0.04004007142857143, + 0.05274042857142857, + 0.15052457142857142, + 0.3153407857142857, + 0.43931042857142855, + 0.5256173571428572, + 0.5600668571428571, + 0.020284357142857142, + 0.059359357142857144, + 0.15172742857142857, + 0.19893714285714287, + 0.023284142857142857, + 0.14572514285714286, + 0.20648478571428572, + 0.2459147857142857, + 0.10971464285714286, + 0.12495507142857143, + 0.1575115, + 0.17504057142857143, + 0.26340414285714286, + 0.3934544285714286, + 0.5199552857142857, + 0.5454350714285714, + 0.31024835714285715, + 0.3254887857142857, + 0.3592645, + 0.3798885714285714, + 0.3272382142857143, + 0.36194692857142857, + 0.4375127142857143, + 0.46195107142857145, + 0.0388785, + 0.23479085714285713, + 0.26053335714285714, + 0.3006736428571429, + 0.06247935714285714, + 0.13405178571428572, + 0.18859535714285713, + 0.22345964285714287, + 0.017011142857142857, + 0.038197, + 0.08795592857142857, + 0.1184265, + 0.047015714285714286, + 0.25969564285714286, + 0.3296827857142857, + 0.34388314285714283, + 0.058774214285714284, + 0.19329314285714286, + 0.22308007142857142, + 0.5902276428571429, + 0.016777, + 0.3180785, + 0.5854519285714286, + 0.674404, + 0.02270442857142857, + 0.28618135714285714, + 0.4477305714285714, + 0.5218826428571428, + 0.016750214285714285, + 0.096987, + 0.17428, + 0.2525102857142857, + 0.06359578571428572, + 0.5331563571428571, + 0.5623531428571429, + 0.6103977142857143, + 0.03253185714285714, + 0.13000007142857142, + 0.1818545, + 0.24709542857142858, + 0.08433921428571428, + 0.18655257142857143, + 0.2365795, + 0.2573431428571429, + 0.09344392857142857, + 0.23605985714285715, + 0.5205556428571428, + 0.6600866428571428, + 0.24175592857142858, + 0.503897, + 0.7330212142857143, + 1, + 0.16084157142857142, + 0.7820045714285714, + 0.9617279285714285, + 0.9957245714285714, + 0.27599414285714285, + 0.3215865, + 0.3670067857142857, + 0.39141385714285715, + 0.3048113571428571, + 0.3316974285714286, + 0.42096414285714284, + 0.482547, + 0.2853556428571429, + 0.3478357142857143, + 0.4512249285714286, + 0.5942677142857142, + 0.08562057142857143, + 0.13640964285714285, + 0.21180307142857144, + 0.24322057142857142, + 0.037936, + 0.06700785714285715, + 0.09917571428571428, + 0.12765657142857142, + 0.0701905, + 0.17031514285714286, + 0.1830155, + 0.21441485714285713, + 0.03702621428571429, + 0.05841514285714286, + 0.27788164285714284, + 0.3817382142857143, + 0.07298392857142857, + 0.10965892857142857, + 0.15850742857142858, + 0.22341342857142857, + 0.012700357142857143, + 0.36954642857142855, + 0.5351341428571429, + 0.5513663571428571, + 0.20908792857142858, + 0.2334945, + 0.292688, + 0.3216479285714286, + 0.18376192857142856, + 0.23577857142857142, + 0.25441885714285717, + 0.28129564285714287, + 0.024880642857142858, + 0.2266205, + 0.2578152857142857, + 0.29011042857142855, + 0.11200771428571428, + 0.14458035714285714, + 0.19158042857142857, + 0.5298834285714286, + 0.2733745, + 0.7134584285714286, + 0.9675391428571428, + 1, + 0.022219714285714287, + 0.039750214285714285, + 0.09347135714285715, + 0.15425535714285715, + 0.07948957142857142, + 0.11463735714285714, + 0.17233685714285715, + 0.19600057142857144, + 0.20195321428571428, + 0.24662614285714285, + 0.2668364285714286, + 0.3168522857142857, + 0.030696928571428573, + 0.10079378571428571, + 0.11349414285714286, + 0.44668528571428573, + 0.09049264285714285, + 0.20661228571428572, + 0.2951055, + 0.3785879285714286, + 0.09472585714285714, + 0.11450592857142858, + 0.49712135714285716, + 0.5873584285714286, + 0.079021, + 0.1644257857142857, + 0.20742492857142858, + 0.6986366428571429, + 0.03649207142857143, + 0.10005021428571428, + 0.15146371428571428, + 0.3622923571428571, + 0.29026657142857143, + 0.5322097142857143, + 0.7281132857142857, + 0.9036910714285714, + 0.1817817142857143, + 0.2468412857142857, + 0.3059470714285714, + 0.3758972857142857, + 0.012700357142857143, + 0.03325714285714286, + 0.14040342857142857, + 0.16531814285714286, + 0.015240428571428571, + 0.037127, + 0.1936187857142857, + 0.2596804285714286, + 0.06534457142857143, + 0.12320114285714286, + 0.150641, + 0.2490777857142857, + 0.06851742857142858, + 0.16784828571428573, + 0.8411532857142857, + 0.8786035714285715, + 0.3340127857142857, + 0.3584198571428571, + 0.38796507142857145, + 0.49618342857142855, + 0.10621771428571429, + 0.3656952857142857, + 0.44124764285714285, + 0.5192215714285714, + 0.029108357142857144, + 0.06809142857142857, + 0.10883657142857144, + 0.1427887142857143, + 0.07764035714285714, + 0.24793092857142857, + 0.2891792142857143, + 0.36519835714285714, + 0.055727928571428574, + 0.10488892857142858, + 0.12509307142857143, + 0.17642164285714285, + 0.2971485, + 0.35670471428571426, + 0.4035892857142857, + 0.49243657142857145, + 0.06477742857142857, + 0.36147164285714284, + 0.39595257142857143, + 0.4211135714285714, + 0.045651, + 0.16683628571428571, + 0.1926375, + 0.21690892857142857, + 0.07158185714285714, + 0.09657878571428571, + 0.12341478571428571, + 0.2603965714285714, + 0.323817, + 0.34802264285714285, + 0.3744666428571429, + 0.6323166428571428, + 0.020785714285714286, + 0.04569907142857143, + 0.06615042857142857, + 0.2266982142857143, + 0.0208565, + 0.31209235714285716, + 0.9378229285714286, + 1, + 0.12976692857142857, + 0.38110828571428573, + 0.427779, + 0.5420627857142857, + 0.2808002857142857, + 0.3732285, + 0.40393835714285714, + 0.41917878571428574, + 0.08300928571428572, + 0.10355628571428571, + 0.38668185714285713, + 0.6429312142857143, + 0.024254, + 0.2361932142857143, + 0.6194534285714286, + 0.7265254285714285, + 0.12617992857142857, + 0.3375539285714286, + 0.45248414285714283, + 0.47244307142857145, + 0.018690428571428573, + 0.0493485, + 0.14781764285714286, + 0.1637365, + 0.3131589285714286, + 0.5296109285714286, + 0.6016185, + 0.6772027857142857, + 0.025737, + 0.047295142857142855, + 0.06697635714285714, + 0.14876778571428573, + 0.023325571428571428, + 0.042574, + 0.14139235714285714, + 0.46856635714285716, + 0.04173857142857143, + 0.4171177857142857, + 1, + 1, + 0.7214432142857143, + 1, + 1, + 1, + 0.7711828571428572, + 1, + 1, + 1, + 0.09994021428571429, + 0.4327827857142857, + 0.5152638571428572, + 0.5465647857142857, + 0.03612585714285714, + 0.05458478571428572, + 0.09321628571428571, + 0.19546285714285713, + 0.4407695714285714, + 0.6444668571428571, + 0.9156017142857142, + 1, + 0.5020256428571429, + 1, + 1, + 1, + 0.04171221428571428, + 0.07139807142857142, + 0.18256692857142856, + 0.6463652857142858, + 0.08966507142857143, + 0.11390057142857143, + 0.27309614285714284, + 0.3058157857142857, + 0.09505592857142857, + 0.2100367142857143, + 0.2814002857142857, + 0.31148857142857145, + 0.021180357142857143, + 0.04413307142857143, + 0.08370221428571428, + 0.22202064285714285, + 0.308414, + 0.49569857142857143, + 0.7181355, + 0.7411784285714286, + 0.02677392857142857, + 0.04097428571428571, + 0.12800292857142856, + 0.24720778571428573, + 0.09091421428571429, + 0.10511457142857143, + 0.13817614285714286, + 0.22447935714285713, + 0.0852245, + 0.103005, + 0.35964164285714284, + 0.3837110714285714, + 0.018054142857142855, + 0.044731, + 0.06428221428571429, + 0.10672957142857142, + 0.026620214285714285, + 0.2988775714285714, + 0.33113535714285713, + 0.5937987142857143, + 0.05108257142857143, + 0.08347992857142857, + 0.10803607142857143, + 0.048398857142857146, + 0.14559, + 0.1774312857142857, + 0.20394842857142856, + 0.055273, + 0.07411907142857142, + 0.13762978571428572, + 0.2216175, + 0.16041785714285714, + 0.25806414285714285 + ] +}` + +const infuraFeesJSON = `{ + "low": { + "suggestedMaxPriorityFeePerGas": "0", + "suggestedMaxFeePerGas": "0.011647", + "minWaitTimeEstimate": 250, + "maxWaitTimeEstimate": 1000 + }, + "medium": { + "suggestedMaxPriorityFeePerGas": "0", + "suggestedMaxFeePerGas": "0.01572345", + "minWaitTimeEstimate": 250, + "maxWaitTimeEstimate": 750 + }, + "high": { + "suggestedMaxPriorityFeePerGas": "0", + "suggestedMaxFeePerGas": "0.0197999", + "minWaitTimeEstimate": 250, + "maxWaitTimeEstimate": 500 + }, + "estimatedBaseFee": "0.011647", + "networkCongestion": 0, + "latestPriorityFeeRange": [ + "0", + "0" + ], + "historicalPriorityFeeRange": [ + "0", + "0" + ], + "historicalBaseFeeRange": [ + "0.010731", + "0.012256" + ], + "priorityFeeTrend": "down", + "baseFeeTrend": "down", + "version": "0.0.1" +}` diff --git a/examples/gas-comparison/data/base/data.go b/examples/gas-comparison/data/base/data.go new file mode 100644 index 0000000..8154a26 --- /dev/null +++ b/examples/gas-comparison/data/base/data.go @@ -0,0 +1,29978 @@ +package base + +import ( + "encoding/json" + "gas-comparison/data" + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" + "math/big" +) + +// GetGasData returns the gas data fetched from Base Mainnet (Chain ID: 8453) +func GetGasData() (*data.GasData, error) { + // Parse the embedded JSON data + var block ethclient.BlockWithFullTxs + err := json.Unmarshal([]byte(latestBlockJSON), &block) + if err != nil { + return nil, err + } + + var gasPrice *big.Int + gasPrice, err = hexutil.DecodeBig(gasPriceJSON) + if err != nil { + return nil, err + } + + var maxPriorityFeePerGas *big.Int + maxPriorityFeePerGas, err = hexutil.DecodeBig(maxPriorityFeePerGasJSON) + if err != nil { + return nil, err + } + + var feeHistory ethereum.FeeHistory + err = json.Unmarshal([]byte(feeHistoryJSON), &feeHistory) + if err != nil { + return nil, err + } + + var infuraFees infura.GasResponse + err = json.Unmarshal([]byte(infuraFeesJSON), &infuraFees) + if err != nil { + return nil, err + } + + return &data.GasData{ + LatestBlock: &block, + GasPrice: gasPrice, + MaxPriorityFeePerGas: maxPriorityFeePerGas, + FeeHistory: &feeHistory, + InfuraSuggestedFees: &infuraFees, + }, nil +} + +// Embedded JSON data +const latestBlockJSON = `{ + "number": "0x2340d11", + "hash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "parentHash": "0x31dbf0f531d1e551ce21efecabdecd2a8bb9072598c53a334c3eecab4b1bd96e", + "nonce": "0x0000000000000000", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "logsBloom": "0xfe63e6f77b35ddb8d02253b393932decbbfbbf7dfcf977bcf70dc66ddbbf8e72757eb14a14e5b733bf379cf7226f34cb49d7ab2fd5ea37854e7f67c0773e7dd6dcfdcf7d93efcf9e4ff5b46cb82964b79efc4fddbbff58f5ff097bbf8dca8fdf259e59769bce92f5b285bf13e89fdef9ed7e7e460bb63f5f9facb1bf5b9e2bc9cab6cbfc79c859cc7bffd6eef0d5e568e9a7966b4865f7e8590e7c5d73a07edfefcf545efd9aeee3387dc9986e93dfc03e308fdb12d8958aa5e7db0112674df6a7fe98bafe7ba7fd6637de34fdea598f60bbd6f3c7fdafd20ee6d6caecdd679f5b96de934e6d4f4834fa32a06f839ff7eee71d4217daf7f3dee67ec5d5f81eac", + "transactionsRoot": "0x5e04c3143a6cf07e816395b89c38a0a4aad7cf083784aea81c3e0b1a3392d192", + "stateRoot": "0xb55d3cff11c19a891b3bd925247559b1407191d43c4a8ea9e204e6710016c866", + "receiptsRoot": "0x4041756d3f2f25356e3248b3e266befbf405b15ef1c08de999bc77a5a46bd2de", + "miner": "0x4200000000000000000000000000000000000011", + "difficulty": "0x0", + "totalDifficulty": null, + "extraData": "0x000000003200000003", + "size": "0x23102", + "gasLimit": "0x8f0d180", + "gasUsed": "0x2f661fd", + "timestamp": "0x68f27705", + "baseFeePerGas": "0x55832f", + "withdrawalsRoot": "0x604e4cfcbea6dc9cf4aaaeee3276907e33e54413bf07c0c8ed0c69f7769b28a9", + "blobGasUsed": "0x0", + "excessBlobGas": "0x0", + "transactions": [ + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001", + "gas": "0xf4240", + "gasPrice": "0x0", + "hash": "0x7ddd79073195fa83560f35412d3f4e1612780ca4230f4a68cc395068a29b850a", + "input": "0x098999be000008dd00101c1200000000000000000000000068f276570000000001681696000000000000000000000000000000000000000000000000000000003130ee0c000000000000000000000000000000000000000000000000000000000000000116fa32b74a5b6f9224848ffa41c40154b875c8262fcf7b653d2c0ee73ca3a14f0000000000000000000000005050f69a9786f081509234f1a7f4684b5e5b76c9000000000000000000000000", + "nonce": "0x2340d13", + "to": "0x4200000000000000000000000000000000000015", + "transactionIndex": "0x0", + "value": "0x0", + "v": "0x0", + "r": "0x0", + "s": "0x0", + "type": "0x7e" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0xd6bc77c325a476d22844bb9948d39724e2b3a32c7d437f947ca53ba50137f9a6", + "input": "0x", + "nonce": "0x197b4e", + "to": "0xb61694031355452236913c9d4ac38836a721d857", + "transactionIndex": "0x1", + "value": "0x1b48eb57e000", + "v": "0x422d", + "r": "0xbc7b868f7d0e882c6ce44827775846be6b0e6e8902ce4e7d615bdac46b6a5642", + "s": "0x5f6eb521cff6601c725fb7015e8dd04c9492cbd235fe10fa7a2c6bb9af67e6a4", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0x2996418cc98aa4c2935868c9e6fab45a7172a668d4759aedfe2488b66fa48dca", + "input": "0x", + "nonce": "0x197b4f", + "to": "0xe89f742c72a8c55945ed78cf42fca95e9dd81107", + "transactionIndex": "0x2", + "value": "0x1b48eb57e000", + "v": "0x422e", + "r": "0x95cbf9c2f6c7b72091a8ad0afb5d1fabdbfcc9899d0cd70f6343facdeaeeb680", + "s": "0x17a75611a5bc5a9c83c06dbae89bf7d58e8d1c5db74737dee6fdd7c25e27174a", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0x04f9718aee83e1ccf45e635309826ca25c8e0102825066a96e6d47f89191b711", + "input": "0x", + "nonce": "0x197b50", + "to": "0x9620a2b86c913b11851bf87b73fae82c899d8acf", + "transactionIndex": "0x3", + "value": "0x1b48eb57e000", + "v": "0x422d", + "r": "0xbf02ced6b8e39ef92d602d3ae0e3a828cbc9975042ecf701d8358caa8de99392", + "s": "0xc34da60363173539d0f1bf45871091a1cefae3aded6d6ef05ff5347071c6240", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0x646b527b9a284c55d9208407c80c06ce1965824d06054956fbc7393eb87e45be", + "input": "0x", + "nonce": "0x197b51", + "to": "0x623f3a8398d900e7812d9618de1a591ae81956e9", + "transactionIndex": "0x4", + "value": "0x1b48eb57e000", + "v": "0x422d", + "r": "0x490bb3b0c4a79a994a3aa08984e8dcafdc579d31e76e0b1afd3d1f805a6c552e", + "s": "0x4319b1bac10abc11adf11256c927d179822859cfe9cb9c2ac80598b5ad67508f", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0x1a24561626bb207d84ad3d8b9ee041e72e811cc66d6cfa285587a0104c61e143", + "input": "0x", + "nonce": "0x197b52", + "to": "0x9bc4e5c4151a1b9e9d468b97a7e2149434454ee9", + "transactionIndex": "0x5", + "value": "0x1b48eb57e000", + "v": "0x422e", + "r": "0xad5cf8ec8fa92e6bb713eab90715acc91a8e27a37be415635cca4e96d702ac36", + "s": "0x51a14925407c92c412f72c4ad451e6bb83246f17352d0229e91a601a4b5dbf10", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x0bc340bb168145291e66b333d2635c5aefcc7c30", + "gas": "0x4c1e2", + "gasPrice": "0x33674fe", + "hash": "0x04fd58fa87b7e72c61d3d89809a4b4708e493ba947f1770b9734d68f49d1d37a", + "input": "0xb42ebb6300010000000000a0b5d3d800000000000000000004090dfb9d73314000000000", + "nonce": "0x3d264", + "to": "0x83d55acdc72027ed339d267eebaf9a41e47490d5", + "transactionIndex": "0x6", + "value": "0x0", + "v": "0x1", + "r": "0x4046339370130b3c277ecf111ba17a29c8a5c5d28d170d19ab73ff70d4510d5d", + "s": "0x528aca4a8f9e4e5de0a962b4515dd52f27e083758d98fee89d7eaa6e2122facd", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x33674fe", + "maxPriorityFeePerGas": "0x33674fe", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd877f47bc21fc22f5b0ef28beec52d77cbd35539", + "gas": "0x927c2", + "gasPrice": "0x1e1d009", + "hash": "0x08e8f7d03f25f0e66182b65213abb78808a3f337830e092b6422e298f1b3c967", + "input": "0xa00597a000000000000000000000000000000000000000000000000000000000000227000000000000000000000000000000000000000000000006f23c6aaf47468e7c63000000000000000000000000cbb7c0000ab88b473b1f5afd9ef808440eed33bf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c900ea56b5227ae2d95c288a2597b278cbf741dd0000000000000000000000000000000000000000000000000000000068f277b706", + "nonce": "0xc1c2", + "to": "0x802b65b5d9016621e66003aed0b16615093f328b", + "transactionIndex": "0x7", + "value": "0x0", + "v": "0x0", + "r": "0x46c0ed6125fce9df3182ce2e1633cef9e55f3e034ba6f6a82acb0a195a643ae7", + "s": "0x2685e5cd36597b5dcc4d03d80d95e4fc719e7edb47fccd9c03d5fd0fee818377", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x2378c80", + "maxPriorityFeePerGas": "0x18c4cda", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x893672ea547368308de2b229dc8a5e57a652d808", + "gas": "0x927c2", + "gasPrice": "0x1d2fba1", + "hash": "0xe63c0c29313462b7b5c0e2888a5205fc48d7eac4cb84af02c8d8cd9a670d2768", + "input": "0xa00597a000000000000000000000000000000000000000000000000000000000555d9c3500000000000000000000000000000000000000000004090bb3c99132d8609ad0000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000072ab388e2e2f6facef59e3c3fa2c4e29011c2d380000000000000000000000000000000000000000000000000000000068f277b706", + "nonce": "0x37a16", + "to": "0x802b65b5d9016621e66003aed0b16615093f328b", + "transactionIndex": "0x8", + "value": "0x0", + "v": "0x0", + "r": "0x95d9b0f38b1054ef7cf04759111b2ccc841abeecc5dad2197c82c19c80da36c3", + "s": "0x6fd006ffd8672c4f0d373d5afcb237d1c2c16edf473eb29d7abe96462b362305", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x228b818", + "maxPriorityFeePerGas": "0x17d7872", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x4e3ae00e8323558fa5cac04b152238924aa31b60", + "gas": "0x14db1", + "gasPrice": "0xfdffed", + "hash": "0xa115cf1e196d9fe3e10f696b4b7d202d84628ad797d6b274ea3a4379314d26df", + "input": "0xa9059cbb000000000000000000000000e61f7712acaef54ad65829ec9c271a6ec8a9586800000000000000000000000000000000000000000000008a4d032329c0900000", + "nonce": "0x1b308e", + "to": "0x590830dfdf9a3f68afcdde2694773debdf267774", + "transactionIndex": "0x9", + "value": "0x0", + "v": "0x422e", + "r": "0xe271980cbc1242c74f560a3268e65f03b1890d07144c385f8c1d433e182220c4", + "s": "0x687945ceae7f9ea0eaac84c3097774f0eea936dd209ac7ac94e32587af4b8bc7", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x26f18313e89bf5a8a05ca4e50b2ba0b30eba880c", + "gas": "0x5208", + "gasPrice": "0xfd5bef", + "hash": "0xb33d3c2cdcb1f01ca9e0561764945488a00b1493446e0cfc11327cd7ba93bae2", + "input": "0x", + "nonce": "0x7a", + "to": "0xd365c4a21798391ab17e4e548839c81d3bd07ba0", + "transactionIndex": "0xa", + "value": "0xb5e620f48000", + "v": "0x0", + "r": "0x6912825ba38668189af3b08ac8769a87f443e320e76c44f1eac92c9eae470891", + "s": "0x5c8b4db3017e4be0fa893872354b638e09cc848a7888ad2497a89d2bf07ee210", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x167300c", + "maxPriorityFeePerGas": "0xa7d8c0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x12ebd71e943364fd9e07260bfa9ee93f3e7c9ffe", + "gas": "0x1e4d8", + "gasPrice": "0xef755d", + "hash": "0x66fd37e4b5a2145bd0a9963c11d0922ed3803a71f40f0e71a0e1a826e6259d84", + "input": "0x4a959c4300000000000000000000000019ffc4dfd34a86f67783a0613390d200d0f3bd2400000000000000000000000000000000000000000000000000008cc3d3cdef0000000000000000000000000000000000000000000000005150ae84a8cdf000000000000000000000000000000000000000000000000000000000000068f27757000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000418c101b5c580436145a34626d581858791b527059cdd8f56032d4165d6afe994f157a99ee1707ceb07507f57fedc8b8a8ce262dd78d43b64e9448d589d994c95a1b00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xa", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0xb", + "value": "0x8cc3d3cdef00", + "v": "0x422e", + "r": "0xf07b8e619316c60cae65fd87fd231bfaa93f3d5e3ef77bcf4bb6ce4d10a08484", + "s": "0x3e703c90aa234fb8cd4156194b457b89a82ad4ca7d9eba9d9cf4ad1c04993e46", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xae7e2fdb0ec01ea63b82e89bf4ec8958f0e95695", + "gas": "0x1e4d8", + "gasPrice": "0xef755d", + "hash": "0xfc4642be3f931cc8826d972f008f40ae83278ba8125aba2fcc50a84c59bf0444", + "input": "0x4a959c4300000000000000000000000092befd6cc2e48f8c799a5ed2fa939e878127599400000000000000000000000000000000000000000000000000008cc3aa14c8000000000000000000000000000000000000000000000000410d586a20a4c000000000000000000000000000000000000000000000000000000000000068f2774c000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041cf6bcda3639ee638c0e954df81bdc951f32d603c8f98a0860a107a6ae2031af400f710aab32a0cf4eb51299b8283478775a0ad3d5528846d11776fbdbe90ff081c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x5", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0xc", + "value": "0x8cc3aa14c800", + "v": "0x422e", + "r": "0x62b8d75924e8b65ab6f20583280bc7fe548bf667b86c99b0108962e2b9cd5f48", + "s": "0x34ed37167fea6f6ee07f617961ef2f13f71566dcacd7b481abaffba946da3363", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x8678f58ac6c4748b5289d0db70e627eef395dead", + "gas": "0xb71b0", + "gasPrice": "0xee19af", + "hash": "0x3b0b8049a2c8cc8a3c59921a73137838d3ed00fc6d0c6d67de7a27a69d010d6a", + "input": "0xc7c7f5b30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000023c6089f250300000000000000000000000000000000000000000000000000000000000000000000000000000000000000008678f58ac6c4748b5289d0db70e627eef395dead00000000000000000000000000000000000000000000000000000000000075960000000000000000000000008678f58ac6c4748b5289d0db70e627eef395dead0000000000000000000000000000000000000000000000026423b55f436f2e550000000000000000000000000000000000000000000000025e04a1a36e47ab4f00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001600030100110100000000000000000000000000030d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x18ad7", + "to": "0xda7ad9dea9397cffddae2f8a052b82f1484252b3", + "transactionIndex": "0xd", + "value": "0x23c6089f2503", + "v": "0x0", + "r": "0xa5df62d78d9e6db21c61cf9dad70a2a0b251269d72fb5f75af32a30a807204f2", + "s": "0x91b4b36e0690d7d624de7d1162805777c908dedbe4c285041f8aaf47df5121f", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x5d21dba00", + "maxPriorityFeePerGas": "0x989680", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xf2c43e7f7772144fa9f025b4572bafbc0a1c0bc2", + "gas": "0x1edb7", + "gasPrice": "0xcd2ee2", + "hash": "0xe7e5063ea2f13cc09a851b44fb2978ddc2f24ad61074aaea53015c4d0394d277", + "input": "0xaf7060fdb899de057fdba9b1568e83cb32adb391f2c6c4f8a286096503daf7a03e5e83dd00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000f2c43e7f7772144fa9f025b4572bafbc0a1c0bc2000000000000000000000000000000000000000000000000000110d9316ec0000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000470726a7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a307830303030303030303030303030303030303030303030303030303030303030303030303030303030000000000000000000000000000000000000000000000000000000000000000000005215e9fd223bc909083fbdb2860213873046e45d0000000000000000000000005215e9fd223bc909083fbdb2860213873046e45d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000006000000000000000000000000000000000000000000000000000110d9316ec00000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000004d0e30db000000000000000000000000000000000000000000000000000000000", + "nonce": "0x20b", + "to": "0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae", + "transactionIndex": "0xe", + "value": "0x110d9316ec000", + "v": "0x0", + "r": "0x1e4a41bb2e259fe637dc43ea1ae7a025550639bed52dbe429039a8c6177f3834", + "s": "0x1217bddc1c0c0826f22e0432cc214e2714a362d6da2e5b14f58a64e04239cb70", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x1d5501f", + "maxPriorityFeePerGas": "0x77abb3", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xc1d8fc18d664bfe4ca897253d4eb759298c4db40", + "gas": "0x389a3", + "gasPrice": "0xcd0d8b", + "hash": "0xd7f8311c49cf59cf6f16dda8f7f474c3f6eb629e71e8232a86aa70a67d1be343", + "input": "0x31547ea60000000000000000000000006d3a8fd5cf89f9a429bfadfd970968f646aff3250000000000000000000000000000000000000000000000000000000000080df10000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0x2e5", + "to": "0x89e6ff2ce8318433e011d848d8a35fbfee60c2ed", + "transactionIndex": "0xf", + "value": "0x0", + "v": "0x0", + "r": "0x6ac557f4a09a51ce3cd1ddc26ea9d79fad7004c7b992f4e6be6d6975ad1b99a", + "s": "0x35cef934dca220448a01364c7e2f9c151488de6b54e0fba825277c75e52fc06e", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x1d5501f", + "maxPriorityFeePerGas": "0x778a5c", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x53881155498cae8660195670591f1e23ae81431f", + "gas": "0x2dc6c0", + "gasPrice": "0x9d3035", + "hash": "0xad37c6b758006b47a86c9afa9ed1d55f2ffbf3b58475a052706fee107aa834a5", + "input": "0xbc61b9ce0200000126f22710c9c7d7465cf09ef4bdbdaa581dafb377b073f607420000000000000000000000000000000000000614010000642710dbacced9a71a2146285b8244833f220f33db8e757887c3fdbff89e989a243f00c20332c70fc43f8e06023705487c290661ed1ed8dffb000000000000", + "nonce": "0x8f2c0c", + "to": "0xf4cd829526070c2c0af9e6dce2c9255130f7ec68", + "transactionIndex": "0x10", + "value": "0x0", + "v": "0x422e", + "r": "0x5125b902470b16bc3f28cfeffaf7d6eb71627b857c971755f263e04bc4e7210e", + "s": "0x7779ce900530671722b5e59991db9c2d3bd0d59d834c506ce2c2fa2ef7cd089", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x53881155498cae8660195670591f1e23ae81431f", + "gas": "0x2dc6c0", + "gasPrice": "0x9d3035", + "hash": "0x0ebdd715bde1a14cc75ce9d1fcb16cff2965c07ac66c811d58ee129c71c6afd9", + "input": "0xbc61b9ce041400012710271040c1fc0790e1b09f30a44b4da3b89175d440ba60420000000000000000000000000000000000000600010026f12710ae6bcecb6de40788ba6bfb4eca8136c5b8d874d7ed6e000def95780fb89734c07ee2ce9f6dcaf11018010075302710498581ff718922c3f8e6a244956af099b2652b2ba48a8f68c8e2130fb6f19e92f74311989724c3b414000101f42710df5834359cc81063910a9c78b11e686b99105d661111111111166b7fe7bd91427724b487980afc69060da29fe2911d072538ee4dab9ad000dc00dc00dc00dc00dc019c019c019c9e77be65020887dd20e864c485169f34e8216a86f0095fce8ede94d6de214b740000000000000000000000001111111111166b7fe7bd91427724b487980afc69000000000000000000000000a48a8f68c8e2130fb6f19e92f74311989724c3b4000000000000000000000000000000000000000000000000000000000000753000000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000d61a675f8a0c67a73dc3b54fb7318b4d91409040000000000000", + "nonce": "0x8f2c0d", + "to": "0xf4cd829526070c2c0af9e6dce2c9255130f7ec68", + "transactionIndex": "0x11", + "value": "0x0", + "v": "0x422e", + "r": "0x138074c9a3f5ba56107c5c6e55e2c534908d937163887ec39e4218b72f3b39ec", + "s": "0x47b78d5177c82e19e9d4b8675a1315773025d42271735fc62b9d82460e55d3df", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x90e82cfb9eb4ca75ac4dcb898328a7164fb0bbee", + "gas": "0x3f00c", + "gasPrice": "0x9a192e", + "hash": "0xaa140218019c487adc09033d57d88bd94c581c0c110d8d3e363bd96d521a8ca7", + "input": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f27dfd00000000000000000000000000000000000000000000000000000000000000040a00060c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000089ff8f639d402839205a6bf03cc01bdffa4768b7000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000691a03e100000000000000000000000000000000000000000000000000000000000000000000000000000000000000006ff5693b99212da76ad316178a184ab56d299b430000000000000000000000000000000000000000000000000000000068f27de900000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000041b84aa7b101ef68574bbf59add86af08a8b0384089b9b60cf174d6fdf4295df1615ab8f4605d7390e1357d8877381e4a0ef1b0380dc5e459bc16e4553f14a56e61b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000001a72b3fab1b2cd08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b89ff8f639d402839205a6bf03cc01bdffa4768b7000bb84200000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000042000000000000000000000000000000000000060000000000000000000000005d64d14d2cf4fe5fe4e65b1c7e3d11e18d4930910000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000004000000000000000000000000090e82cfb9eb4ca75ac4dcb898328a7164fb0bbee0000000000000000000000000000000000000000000000000001b7e550a08f420c", + "nonce": "0x328", + "to": "0x6ff5693b99212da76ad316178a184ab56d299b43", + "transactionIndex": "0x12", + "value": "0x0", + "v": "0x1", + "r": "0x58cf00af791c8126476179efc3334762360940dceb95b77a9da566717cccb019", + "s": "0x4a1cefeb5395bfe592a0178435bb6e3cb56271e196f130e3c039eec1119037ea", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x9a192e", + "maxPriorityFeePerGas": "0x9a192e", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xb1bcca2ac714a6eed7742866a2ec772394e9ea1a", + "gas": "0x236741", + "gasPrice": "0x7ba8cf", + "hash": "0x32731e53f40512883b99956da03957040b4f28378c94f327700a53d672507a9f", + "input": "0x765e827f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b1bcca2ac714a6eed7742866a2ec772394e9ea1a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013800000000000000000000000000581538860e027d970fd2614f5f65c9587f3865d0002bd005986000000000000000000000000000000003458000000000000000000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000280c900000000000000000000000000133c4c00000000000000000000000000000000000000000000000000000000000150e5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012a000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001124e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000010c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001200000000000000000000000001111111111166b7fe7bd91427724b487980afc69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae00000000000000000000000000000000000000000000000089870b520064bd7e000000000000000000000000000000000000000000000000000000000000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000ec44666fc80fddccb1a3defb1bcdd6faa4fcc1ad0138a0b4ea6875fec905cc8937cb6079c5d00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000581538860e027d970fd2614f5f65c9587f3865d00000000000000000000000000000000000000000000000000000000000f31a900000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000009676c696465725f66690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a3078303030303030303030303030303030303030303030303030303030303030303030303030303030300000000000000000000000000000000000000000000000000000000000000000000081bbba46b9fcf04ab13314136b895b15291f046200000000000000000000000081bbba46b9fcf04ab13314136b895b15291f04620000000000000000000000001111111111166b7fe7bd91427724b487980afc69000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda0291300000000000000000000000000000000000000000000000089870b520064bd7e00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000c44e3665a4300000000000000000000000000000000000000000000000089870b520064bd7e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000001111111111166b7fe7bd91427724b487980afc69000000000000000000000000b2d438f6aeffc3524ba9d90151ec63ffa9d7e58200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000b442a941540000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000089870b520064bd7e00000000000000000000000000000000000000000000000000000000000f31a900000000000000000000000000000000000000000000000000000000000f810a000000000000000000000000000000000000000000000000000001d1a94a200000000000000000000000000000000000000000000000000000000000000001600000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae0000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000b2d438f6aeffc3524ba9d90151ec63ffa9d7e58200000000000000000000000000000000000000000000000000000000000000050000000000000000000000001111111111166b7fe7bd91427724b487980afc69000000000000000000000000420000000000000000000000000000000000000600000000000000000000000022af33fe49fd1fa80c7149773dde5890d3c76f3b000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000014000100003fff3fff7fff00000001000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001800000001000100020001000300010004000200040003000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000048000000000000000000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e4707ea9bd00000000000000000000000000000000000000000000000089870b520064bd7e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003f1111111111166b7fe7bd91427724b487980afc690bfbcf9fa4f9c56b0f40a671ad40e0805a0918650001f442000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e4707ea9bd00000000000000000000000000000000000000000000000000003cd655bd54e0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003f42000000000000000000000000000000000000065e7bb104d84c7cb9b682aac2f3d509f5f406809a0000c822af33fe49fd1fa80c7149773dde5890d3c76f3b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e4707ea9bd00000000000000000000000000000000000000000000000000003cd655bd54e0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003f420000000000000000000000000000000000000633128a8fc17869897dce68ed026d694621f6fdfd0001f4eb466342c4d449bc9f53a865d5cb90586f4052150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e4707ea9bd000000000000000000000000000000000000000000000000000079ad9ed7ce2d000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003f420000000000000000000000000000000000000638015d05f4fec8afe15d7cc0386a126574e8077b000050833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e4707ea9bd0000000000000000000000000000000000000000000000249623d37d0a364729000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003f22af33fe49fd1fa80c7149773dde5890d3c76f3b33128a8fc17869897dce68ed026d694621f6fdfd002710833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e4707ea9bd000000000000000000000000000000000000000000000000000000000003e23f000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003feb466342c4d449bc9f53a865d5cb90586f4052155e7bb104d84c7cb9b682aac2f3d509f5f406809a000001833589fcd6edb6e08f4c7c32d4f71b54bda0291300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042ff4fe90bb4d09cc0764b227241b47c2dd0c53088c97db9d65d8aad005a32a8e8b85b24103f605f5ad8eb89277ea1204adb22cc0082a9bd6de2e17791bd6255b7461b00000000000000000000000000000000000000000000000000000000000000000000000000000000000065e194858f3c36b4b54ed17275106a3ef9d04c1800022a66cbf9000000000000000000000000000000005d820000000000000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000002366600000000000000000000000000082be3000000000000000000000000000000000000000000000000000000000000ff4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007200000000000000000000000000000000000000000000000000000000000000740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a4e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae0000000000000000000000000000000000000000000000000000000000fd2816000000000000000000000000000000000000000000000000000000000000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003444666fc80337eff12a5b51165c84a9c864cc3d733adb24418159bda80be8845b88f46db6d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000065e194858f3c36b4b54ed17275106a3ef9d04c180000000000000000000000000000000000000000000000005dcad2d92dc3318500000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000009676c696465725f66690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a3078303030303030303030303030303030303030303030303030303030303030303030303030303030300000000000000000000000000000000000000000000000000000000000000000000019ceead7105607cd444f5ad10dd51356436095a100000000000000000000000019ceead7105607cd444f5ad10dd51356436095a1000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000b0505e5a99abd03d94a1169e638b78edfed26ea40000000000000000000000000000000000000000000000000000000000fd281600000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000df83bd37f900040001b0505e5a99abd03d94a1169e638b78edfed26ea403fd2816085fb4d726c0fb6c00051eb80001bf44de8fc9eeeed8615b0b3bc095cb0ddef35e09000000011231deb6f5749ef6ce6943a275a1d3e7486f4eae59725ade04010205004401000102000734e35714ab6d6402080001030401ff00000000000078585a997bac9950de16a56d15c6d7086cec5178833589fcd6edb6e08f4c7c32d4f71b54bda029135c45b0f48c326f79b56709d8f63ce2bee769710642000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042ff65999ecbc5104921194b71abc8c8654f70ead40d4dbbc23d91eeccb1b04450c748eb81071c15993463cb183db028eedd9dd725c52baac32881fda196933ebf571c000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x5000f", + "to": "0x0000000071727de22e5e9d8baf0edac6f37da032", + "transactionIndex": "0x13", + "value": "0x0", + "v": "0x1", + "r": "0x85944af43dc9742272b047b60b2b7933a55281ec8ecd354ef0549a095c754ae0", + "s": "0x31b742716bf940fcf4949b2a080abcc6995020fa9f38aa8428b77f6546600fbd", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x1289b27", + "maxPriorityFeePerGas": "0x2625a0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xee03a859ea4697b8fe351fc866a311128d527058", + "gas": "0x84d00", + "gasPrice": "0x7ab553", + "hash": "0x04c3d7a8350cbcb7884c81d522d6ee65516aaaf3d29b75a9e34d8845f99d7948", + "input": "0x191150350000000000000000000000005e3791f68ebceac82788f3becab154c15141a2f4000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000002ab595e22bcfb666ad0000000000000000000000000000000000000000000008ec9f10147b6282b3590000000000000000000000000000000000000000000008ecae42c568a7ac1ec3", + "nonce": "0x75b72", + "to": "0x3a32d2987b86a9c5552921289b8d4470075d360f", + "transactionIndex": "0x14", + "value": "0x0", + "v": "0x1", + "r": "0x89d2b18e5a62e384606eb0d9d9e8ce1f0ffa615bdc0c91f29c58624de734a09b", + "s": "0x4cc2be0f281d7881a5860e0f1a9befdf412afccdec34a0f10f6580b49426dc6f", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x7ab553", + "maxPriorityFeePerGas": "0x7ab553", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7d0f26517e412da96b6f544898a4782c87962f9a", + "gas": "0x41eb0", + "gasPrice": "0x7ab553", + "hash": "0xfc827207d2a4d477ced4ab95bca7d1ddeb1392439e19de77013448a1fe36d86d", + "input": "0x19115035000000000000000000000000a6dbc393e2b1c30cff2fbc3930c3e4ddfc9d1373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a25c200000000000000000000000000000000000000000000055f419d3d1947944c3500000000000000000000000000000000000000000000055f20e2f2b498dbbfef", + "nonce": "0x6b880", + "to": "0x3a32d2987b86a9c5552921289b8d4470075d360f", + "transactionIndex": "0x15", + "value": "0x0", + "v": "0x1", + "r": "0xb8d552c9cd157e73e0879629273ca209c17cd067419476f7428dc494803b7492", + "s": "0x437a7a3a9094e0582a783261a9ac1b16810e38280bf9115bc702b37183fd912b", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x7ab553", + "maxPriorityFeePerGas": "0x7ab553", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xe46a77d3eecf63634aafcff0653c0a7cccda8571", + "gas": "0x186a0", + "gasPrice": "0x79b1b6", + "hash": "0xbd6e875f5b922e57a2d87588562a601bcc880714e4a2e12894053c6d675a52d3", + "input": "0xa9059cbb00000000000000000000000047411be37407e26abd529dc3bf1763e1610f18d400000000000000000000000000000000000000000000000006f7e07642bd9cd8", + "nonce": "0x1", + "to": "0x6d96f18f00b815b2109a3766e79f6a7ad7785624", + "transactionIndex": "0x16", + "value": "0x0", + "v": "0x422e", + "r": "0xfc027f577da0fc56be4aef0e05ca2fcf4737e3eed5e22b57dff5381e8fca8694", + "s": "0x74ef5266cd25e9b112c1f010db4a67a10e450e3d94900828603043ec79abeac0", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x1af913aac9b730c3571dbe98cae14dd16df1bdcd", + "gas": "0x7a1200", + "gasPrice": "0x6e7349", + "hash": "0x725366f885318ef698f020d67acd389dda64c0dde1f677c5a500d0955e327365", + "input": "0x00000000000068f29e121c17a2c97b1f72882e2531ca13d1ac52ebfca4dd4cb5536f8a24c78e29367a0a087def22c2a57d262790726515b5d5f511f569fab88ad57f10ee3689e16960105a7fed25c3c5553a05cedc0f74f326950e1d5b39639eb1957f22d9be5960a2b9fe150272ab388e2e2f6facef59e3c3fa2c4e29011c2d3800640000000002d96abbad4b744cb7746adc908a3df39c5991aae00050000000000628ca4438a075dc0a85a47035990a40200b490e605e8e95913247d8362cc47bb30bb80000000003f81d3c731b3ac5a4dfc968f514860bedeebebaf200640000000002037ac9012eca27bf284ad0108b32257a0c56362f006400000000036b0f53cbd9272d8117e9535fe25371dedf39a1be006400000000029399da51c1a85e64cce4b30b554875d2b89b24450bb80000000000b08fefa8f0f01b9a224fdef416e919b1ceba0d840bb800000000035b8bf0cd0fa5bf970ebe558d7551a668dadf357001f40000000003976a4d13a41581c5eda72c493038ac10cadf5e4601f40000000002e5b5f522e98b5a2baae212d4da66b865b781db9701f40000000003dbc6998296caa1652a810dc8d3baf4a8294330f1005000000000060f4e921ef4f483570dfdb05df55aa053efec90ba9ff78db059ce0638bbb4478e27100000000003fd7abc461df4e496a25898cab0c6ea88cdd94cf9271000000000034e962bb3889bf030368f56810a9c96b83cb3e77801590000000002b94b22332abf5f89877a14cc88f2abc48c34b3df00640000000003017fff440a3ad5fa72ec1f1efa615b5892f9a72a09c400000000034bf74c2c0479c1017bbdd310cec65cc540ef13430bb80000000003aa067f08fef60420d050a92e7800e588748b7d6709c400000000029c087eb773291e50cf6c6a90ef0f4500e349b90301f40000000000e31c372a7af875b3b5e0f3713b17ef51556da6670bb8000000000a0200000101000201020103000201040105000200060107000301080109010a00020000010b0002000c010d0002010e010f000300100111001200020013001401", + "nonce": "0x670a", + "to": "0xd9c72e940345228b945fabe3b651fa6d39125966", + "transactionIndex": "0x17", + "value": "0x0", + "v": "0x0", + "r": "0xd17f0c9c70bdc13ec70cc5643053bef26cc4ce20f541b5b202318fda5447068b", + "s": "0x1434bda2527bfb3797a0969f18fbed192d130473989652ab59f7d157def1af54", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x1a04447", + "maxPriorityFeePerGas": "0x18f01a", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x8d5044d9ee7cec41eeebef12b749e62e2ab9f131", + "gas": "0x63579", + "gasPrice": "0x6c668f", + "hash": "0x8205dd111930b11b26f5150e1c2ceab63999219debd937a7deb822fb32a7d71e", + "input": "0xc73a2d60000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda0291300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000001d00000000000000000000000070d04384b5c3a466ec4d8cfb8213efc31c6a9d150000000000000000000000007ecdf3fd56d3b9f512fa70a68734ce871e36be9600000000000000000000000065299bd32d80be43404983747eb1c189918f74f400000000000000000000000076c26d84b7f49da661f2902ad26935007334986b000000000000000000000000ceed9585854f12f81a0103861b83b995a64ad9150000000000000000000000007ad252facf5f1115b22ea0a4d63e8770573d78a20000000000000000000000007532f04010419aee9513cb918bb3320dfb3d780900000000000000000000000055500894b526771c20b317c969392401bc37759200000000000000000000000097e302e2638eb8ac6572598c559e56c7a9b39cdf00000000000000000000000049fcf7fd8bced178a3c65d3341f61821eef76423000000000000000000000000869ec00fa1dc112917c781942cc01c68521c415e000000000000000000000000b4b5b945ee9ce2e0333d42aaa87e23b780ca9583000000000000000000000000ebe9e50473a1dc5018e59923afba121cbdee89d00000000000000000000000005b93ff82faaf241c15997ea3975419dddd8362c5000000000000000000000000331fa6a92fbfe5972224d73550fcbcce360b133f00000000000000000000000054d06a08ffdf44258a9f9bd2f4b4cdd6692a900f00000000000000000000000034db35639eafe2712ae1f69dfa298b06a5c25053000000000000000000000000524bf2086d4b5bbda06f4c16ec36f06aad4e1cad000000000000000000000000caaa26c5498de67466e6823ef69718feb04c2952000000000000000000000000d6507fc98605eab8775f851c25a5e09dc12ab7a7000000000000000000000000096a71c9b2a2656245d811da1f141312bd00d8e3000000000000000000000000140022b7554d5e5ad88c3148a48a65409c4bcf44000000000000000000000000e978bdbc3347feb6ed10c9845bbdc298604f80ca00000000000000000000000044b1b486ce8d9c82f605626347a7b1f74add11de000000000000000000000000b18ba7502b48d0d6076f9aae06f68a1266562faa000000000000000000000000a6bcb89f21e0bf71e08ded426c142757791e17cf00000000000000000000000091031dcfdea024b4d51e775486111d2b2a715871000000000000000000000000d9c0e850a086aa5febd40f2668c5d7e15d7d74a20000000000000000000000009807cf5fe830f72cba55c19bf79ebd044ee1be1d000000000000000000000000000000000000000000000000000000000000001d00000000000000000000000000000000000000000000000000000000002625a0000000000000000000000000000000000000000000000000000000000016e36000000000000000000000000000000000000000000000000000000000003567e000000000000000000000000000000000000000000000000000000000003567e0000000000000000000000000000000000000000000000000000000000016e36000000000000000000000000000000000000000000000000000000000003567e000000000000000000000000000000000000000000000000000000000003567e0000000000000000000000000000000000000000000000000000000000016e360000000000000000000000000000000000000000000000000000000000016e36000000000000000000000000000000000000000000000000000000000002625a000000000000000000000000000000000000000000000000000000000003567e0000000000000000000000000000000000000000000000000000000000053ec6000000000000000000000000000000000000000000000000000000000003567e00000000000000000000000000000000000000000000000000000000000a037a0000000000000000000000000000000000000000000000000000000000016e3600000000000000000000000000000000000000000000000000000000000a037a000000000000000000000000000000000000000000000000000000000002625a000000000000000000000000000000000000000000000000000000000002625a000000000000000000000000000000000000000000000000000000000003567e000000000000000000000000000000000000000000000000000000000003567e0000000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000002625a000000000000000000000000000000000000000000000000000000000003567e000000000000000000000000000000000000000000000000000000000003567e000000000000000000000000000000000000000000000000000000000002625a0000000000000000000000000000000000000000000000000000000000016e36000000000000000000000000000000000000000000000000000000000003567e000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000240c84", + "nonce": "0xb4f", + "to": "0x5e3c67ccb2615fe17033786a90bd2f99f3fc9f5e", + "transactionIndex": "0x18", + "value": "0x0", + "v": "0x1", + "r": "0x79b1f109a410ec37850eccafd8a58e277822a1488477f8f0e2733dbae450183e", + "s": "0x373def5144a8819a00e4ee435355bfce9ebee5b6be78b20e347cf74ca2a5f1a3", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x981e23", + "maxPriorityFeePerGas": "0x16e360", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x0908d3a723d978a1f561ad8cf0b3a3be53c69e51", + "gas": "0x5df3d5", + "gasPrice": "0x6895ff", + "hash": "0xe6a98781ecfc9bfeaa5e7351615325e126348e873602e59033f042ffc58e6a01", + "input": "0x1fad948c00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000908d3a723d978a1f561ad8cf0b3a3be53c69e51000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000003930caca5504e19f38f9a7e71b7b57531defe055069b85a0d13f4aa98b88ca506a5a85cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000055bb8a0000000000000000000000000000000000000000000000000000000000042ed80000000000000000000000000000000000000000000000000000000000025a3a0000000000000000000000000000000000000000000000000000000000a95dd700000000000000000000000000000000000000000000000000000000001312d00000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000de000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b2434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000040000000000000000000000000001986d8ba13e6c993280b3973df96615627ff73b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002424b830190000000000000000000000000000000000000000000000000000000068f2776f000000000000000000000000000000000000000000000000000000000000000000000000000000007d334106daa009ef62cbd34c1624bee2277ba735000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000144d833caee000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000111be20a3e4967b725b6ec81eba0b7d37ac5cb0f406286f7e6afca0506470e75572800b0000000000000000000000000000000000000000000000000000000068f2776f0000000000000000000000000000000000000000000000000000000000000041ae5f172f07ead87a726757305761515eda8141848ef4be637847f019d97e2fa610290f10465ed4cf20672280276d497361a52afa32e8236928ae441914c636dd1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000000000000000001ff3684f28c67538d4d072c22734000000000000000000000000000000000000000000000000000000000111be20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ff3684f28c67538d4d072c227340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006442213bc0b000000000000000000000000ea758cac6115309b325c582fd0782d79e3502177000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000111be20000000000000000000000000ea758cac6115309b325c582fd0782d79e350217700000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005641fff991f0000000000000000000000003930caca5504e19f38f9a7e71b7b57531defe055000000000000000000000000a1c60a731e02b018cdee80d86b07f731744e2c72000000000000000000000000000000000000000000000021cb4b06b9284c081800000000000000000000000000000000000000000000000000000000000000a09b5af3bbf8b423e32d2dbe8a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000018422ce6ede000000000000000000000000ea758cac6115309b325c582fd0782d79e35021770000000000000000000000000000000000000000000000000000000000000100000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000111be2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2782200000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c833589fcd6edb6e08f4c7c32d4f71b54bda02913000027101111111111166b7fe7bd91427724b487980afc6900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000184af72634f000000000000000000000000ea758cac6115309b325c582fd0782d79e35021770000000000000000000000001111111111166b7fe7bd91427724b487980afc69000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054271001a1c60a731e02b018cdee80d86b07f731744e2c720075300000c8d61a675f8a0c67a73dc3b54fb7318b4d9140904000002000000000000000000000000055c88bb05602da94fce8feadc1cbebf5b72c245300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000f5c4f3dc02c3fb9279495a8fef7b0741da956157000000000000000000000000a1c60a731e02b018cdee80d86b07f731744e2c72000000000000000000000000000000000000000000000022d6dc7a99c2a27ae800000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c22faeb0760d4230ef2ac21496bb4f0b47d634fd4c000068f277700000000000004a9f4be084ff4cf8be7be822db97b53d000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006978f71bf0e47bc2e17db1ffb0efb44df692dd6bd655fe0f3cc1b21ec854064e75ac41dad995e6e2f361422cd39619bfd43ca1d546a889eb47ede2730590a4091c561b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000041a95939188301038c8c39be392b4dcee3b44ce54bd20e390c58c2448f506d1a0c2e2e40e15078338b9cb215e8bd612642a5abb9a9891abb241ba606352a46ab6c1b00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x3fa", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": "0x19", + "value": "0x0", + "v": "0x0", + "r": "0x120e68128c28e2fbdd829e213f3515ba0add658c069e0c617d233d2f00aaf39c", + "s": "0x1b4833468f255dc8b7af4617df9593b64592f603f878efccb765f4eaced99ff5", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x113f249", + "maxPriorityFeePerGas": "0x1312d0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xe644c5d8c48a37dbf6cc38459861b58e7c9af9de", + "gas": "0x1e4d8", + "gasPrice": "0x66c0b3", + "hash": "0x4fe4a3c58c587c72e329edb38ab63ae9cbee0b88ca3c4ffc16cd31fc48ee2780", + "input": "0x4a959c43000000000000000000000000484c372a5f615b3c6cd22b429f9fb1712179e497000000000000000000000000000000000000000000000000000090de73cdb3000000000000000000000000000000000000000000000000410d586a20a4c000000000000000000000000000000000000000000000000000000000000068f27754000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041c012fa765e30ff48ebeda11a494e6b3a6cd95057263a595a65ad61bef900968f313d76fb8da18c987b7276c8c58f2c636bcd2c510fa8b5771a4dbfa6477631281b00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x4", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0x1a", + "value": "0x90de73cdb300", + "v": "0x422e", + "r": "0xd489af4e2edc808bda1d4098d38ad8aa8a3e5037f96796ff42f92ec1df055a30", + "s": "0x4a72464de2d53a5a5240b035edd54dd54487420729763fb35f040efdcfbbbddd", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x94878114f526fb189c41dfb008a83f513222b27a", + "gas": "0x1e4d8", + "gasPrice": "0x664f18", + "hash": "0xb8823e4906ac89312cd0d603db3f5a2eb92482d303f181eee6a26a599a6f4709", + "input": "0x4a959c43000000000000000000000000898b2c5aa7162faef150a4c6990676aa32102cda000000000000000000000000000000000000000000000000000095b2aaaa3a0000000000000000000000000000000000000000000000004be4e7267b6ae000000000000000000000000000000000000000000000000000000000000068f27756000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041874946d08d069f66abac4ef572e56835f17ea9eb9ba4ccd00adf6ac24044217e009dd6d1101874c72890e77ec83a55104b1f9c0931e168b2468ef60dcb78c8991c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x7", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0x1b", + "value": "0x95b2aaaa3a00", + "v": "0x422d", + "r": "0x1872dba1b21694c09f0b00fe4a9e0adabaf600832b962ca5b1e4a471932bc65b", + "s": "0x896c5245003681a20f511168aca43a156f2989d20fd096c24c264aa2444bd42", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x0311c51a89dea42ce7891ff130556ba720875cbf", + "gas": "0x1e4ea", + "gasPrice": "0x663441", + "hash": "0x4b3b23e32a03979ff94fe52e6245064e2156c5ef28d244efc46d916396c284f7", + "input": "0x4a959c43000000000000000000000000e4b55fc8916f6edffe73758da36ce0906bd96616000000000000000000000000000000000000000000000000000092ccf025e900000000000000000000000000000000000000000000000046791fc84e07d000000000000000000000000000000000000000000000000000000000000068f27757000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041ff59a7f36ed4c0f5178083bb42534e64f530e00ba1401e307c47737af8d0267037d5b1962692473f438d0c63711a909eb33878dc9c66ac1227cd472b0c6491301c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x6", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0x1c", + "value": "0x92ccf025e900", + "v": "0x422e", + "r": "0x51144290580ccc2163f04a1b74094773eaeff2d7ce16ca62bbee23283218218", + "s": "0x62d8e099d717c2d3836394e233b48ac71d4d1a7e3eb100f19e323c9354d807cc", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xb6486c63db3f1b29933077f0abd71dbae862646e", + "gas": "0x218ad", + "gasPrice": "0x65e8e8", + "hash": "0x56b38a8ff671b061765ff29bb239362a3f5815795829b4259b5777a5edb12c49", + "input": "0x0000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105adbde39380000000000000000000000000065985f156c1886264c188c1f317048af0dc48f8c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000002d45000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2701d000000000000000000000000000000000000000000000000000000006919fd1d00000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000c691799a4679e09e0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000002a4a9ffb68000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000083bf6e65f2823b61caccdec36cf1b3a3d17c6f5825599d9d5268c7fc638cb51034d6948c4ea93123e380cd84f7a33687943ab322ec66bc452abbfc6c34222b6f4b00000206bfdd4fee487c47799fd9aa57225e03268298d2983ff74cbab178665fab33ea63fb08b1e6312fb43be5dbde2f0b0aa561e00b6a1b028e9b5a5fc3b095ced96e00000000000000000000000000000000000000000000000000000000003d958fe2", + "nonce": "0x76", + "to": "0x0000000000000068f116a894984e2db1123eb395", + "transactionIndex": "0x1d", + "value": "0x1085267e34a000", + "v": "0x0", + "r": "0x19ed7b1187e63aa56207c1abcb17638e4f5fec321cdffc6481b038090881707a", + "s": "0x653caff7171a6b6bc85d7b6deac08a80619a6d92b1bd321fcfcf7f46439ade84", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbd2ab1", + "maxPriorityFeePerGas": "0x1065b9", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x4ef09efbe8ed989df07439b66f9c02c9bb5309b1", + "gas": "0x30d40", + "gasPrice": "0x65d770", + "hash": "0x84e945851c85ffff7cd4aaaa2b74a050de103852eb432a00f3bd80f1d5fd8fe8", + "input": "0x04e45aaf00000000000000000000000042000000000000000000000000000000000000060000000000000000000000000bbcaa0921da25ef216739e8dbbfd988875e81b400000000000000000000000000000000000000000000000000000000000027100000000000000000000000004ef09efbe8ed989df07439b66f9c02c9bb5309b100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000977fbcbb70000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0x1e", + "value": "0x3e8", + "v": "0x0", + "r": "0x8a426c94db9b598566ea5629072cbe47258491dd52d8431dce6361c3cd5396d4", + "s": "0x42d65c4b632a59579b4169a6582c411eeb927378f81ef266de298b7db198c114", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x65d770", + "maxPriorityFeePerGas": "0x65d770", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xdcc0e30088c970cc1c248786cee6eaab92958aff", + "gas": "0x30d40", + "gasPrice": "0x65d770", + "hash": "0xdda65435100d735698b2a91b49f4492f7fd584ded12e84c87612df0beb1b8ca3", + "input": "0x04e45aaf00000000000000000000000042000000000000000000000000000000000000060000000000000000000000000bbcaa0921da25ef216739e8dbbfd988875e81b40000000000000000000000000000000000000000000000000000000000002710000000000000000000000000dcc0e30088c970cc1c248786cee6eaab92958aff00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000977fbcbb70000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0x1f", + "value": "0x3e8", + "v": "0x0", + "r": "0xf6116cb7b7fad87a1f4215cbc8b26f216921188b5be1436724e741956fa5df2b", + "s": "0x3a83e7117677e1b8d903c380e935bab9554bde068c6ef1635e7006ef16858e25", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x65d770", + "maxPriorityFeePerGas": "0x65d770", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x26768c03125a56bdd8916a74c18144f95762ab1d", + "gas": "0x30d40", + "gasPrice": "0x65d770", + "hash": "0xe24208cc97055c5bc5d4b592f3f726815eed1a9db7a9730547a1e849037e72f7", + "input": "0x04e45aaf00000000000000000000000042000000000000000000000000000000000000060000000000000000000000000bbcaa0921da25ef216739e8dbbfd988875e81b4000000000000000000000000000000000000000000000000000000000000271000000000000000000000000026768c03125a56bdd8916a74c18144f95762ab1d00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000977fbcbb70000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0x20", + "value": "0x3e8", + "v": "0x1", + "r": "0x11d855abba7d67526f8700fafdb6938bd446348f4b19f506666c0c98553b4b98", + "s": "0x702e9e085404160a1b3508835b32d2b7ae423860b37e02121d9c90c955200ec7", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x65d770", + "maxPriorityFeePerGas": "0x65d770", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa64d489f35d692176d5e1cd683a208a3cdcc39d1", + "gas": "0x30d40", + "gasPrice": "0x65d770", + "hash": "0x5ab49e9d60d4c35d2014c7bad746d42a19853478182b1c1a44383386221ff7f4", + "input": "0x04e45aaf00000000000000000000000042000000000000000000000000000000000000060000000000000000000000000bbcaa0921da25ef216739e8dbbfd988875e81b40000000000000000000000000000000000000000000000000000000000002710000000000000000000000000a64d489f35d692176d5e1cd683a208a3cdcc39d100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000977fbcbb70000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0x21", + "value": "0x3e8", + "v": "0x1", + "r": "0x1f82bcedb48a979e1044a8839439905e5ae99aca3ceb1a4e751c421c93beebe1", + "s": "0x5918db6992ba85cad767550686c91bdc5241f9b6bd1e94906cf3384e8923e0b0", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x65d770", + "maxPriorityFeePerGas": "0x65d770", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xb2dd6cea04a7158fd5a0223907af72e80d298053", + "gas": "0x30d40", + "gasPrice": "0x65d770", + "hash": "0xd735bbc9a419ca104f4a32a32c57c9f9e54e684b40817b382af2e3286314ba45", + "input": "0x04e45aaf00000000000000000000000042000000000000000000000000000000000000060000000000000000000000000bbcaa0921da25ef216739e8dbbfd988875e81b40000000000000000000000000000000000000000000000000000000000002710000000000000000000000000b2dd6cea04a7158fd5a0223907af72e80d29805300000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000977fbcbb70000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0x22", + "value": "0x3e8", + "v": "0x0", + "r": "0xd6bf6b39060741e52044f53e3f299530fe09f541e0fbf3ee39be45521e4978bf", + "s": "0xe6a3e26e0b71a268a52822900a3c50d64c27b9b4cbce94a5bee26144bb4fb40", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x65d770", + "maxPriorityFeePerGas": "0x65d770", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7b85fcc5393346e12dd1f230957a08e9e2d411be", + "gas": "0x30d40", + "gasPrice": "0x65d770", + "hash": "0xa702038768ced0936579bf5b0bdc277e300c33ad43b4731689826695614113e0", + "input": "0x04e45aaf00000000000000000000000042000000000000000000000000000000000000060000000000000000000000000bbcaa0921da25ef216739e8dbbfd988875e81b400000000000000000000000000000000000000000000000000000000000027100000000000000000000000007b85fcc5393346e12dd1f230957a08e9e2d411be00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000977fbcbb70000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0x23", + "value": "0x3e8", + "v": "0x1", + "r": "0xbaece2dbebdabee7af70248a0ec805e694faeeb44581853ed9fe71923344e583", + "s": "0x25a3f8eec6348b0e37a0f3fc70f7024875c1759c683e143e0aba9e94759fa4ab", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x65d770", + "maxPriorityFeePerGas": "0x65d770", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xfdd62fd74a8fc0831fa901ef792ed967298be438", + "gas": "0x30d40", + "gasPrice": "0x65d770", + "hash": "0xcb2f449ee0d298b26dac8cabab5c8687ab41b1bae7cf3ac0f6a1a4c5095370ab", + "input": "0x04e45aaf00000000000000000000000042000000000000000000000000000000000000060000000000000000000000000bbcaa0921da25ef216739e8dbbfd988875e81b40000000000000000000000000000000000000000000000000000000000002710000000000000000000000000fdd62fd74a8fc0831fa901ef792ed967298be43800000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000977fbcbb70000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0x24", + "value": "0x3e8", + "v": "0x1", + "r": "0xb58fbb6b1db9c39e611f99f7ed68bd61565efaff4972dfc5b8659bc9304adcae", + "s": "0x675abdd7c9082e03bd69076b74b2d18341c70ed1b94768fd313cf3676282d31f", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x65d770", + "maxPriorityFeePerGas": "0x65d770", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xdbd7f92370e74646dc568fcbf9d589502739bcff", + "gas": "0x30d40", + "gasPrice": "0x65d770", + "hash": "0x985d2c4191c2025c24013be3753a03a1c2a2695c3758ddb5c6ac2201a8601644", + "input": "0x04e45aaf00000000000000000000000042000000000000000000000000000000000000060000000000000000000000000bbcaa0921da25ef216739e8dbbfd988875e81b40000000000000000000000000000000000000000000000000000000000002710000000000000000000000000dbd7f92370e74646dc568fcbf9d589502739bcff00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000977fbcbb70000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0x25", + "value": "0x3e8", + "v": "0x0", + "r": "0x1756c43c8e65e0effd763f2afdf0dec626ef1e7d371564e7d1297b20af70b4fb", + "s": "0x4597e9a5a21340c3a69d77c82e50c9fddb710f8ff61c805686bab0f3fbece024", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x65d770", + "maxPriorityFeePerGas": "0x65d770", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xc2bd906ac806591e06c45b7a42cfee0af83b502f", + "gas": "0x30d40", + "gasPrice": "0x65d770", + "hash": "0xbe545b986ee21196fe0bae1b50d02f70d203c0c649508535978dae6673059700", + "input": "0x04e45aaf00000000000000000000000042000000000000000000000000000000000000060000000000000000000000000bbcaa0921da25ef216739e8dbbfd988875e81b40000000000000000000000000000000000000000000000000000000000002710000000000000000000000000c2bd906ac806591e06c45b7a42cfee0af83b502f00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000977fbcbb70000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0x26", + "value": "0x3e8", + "v": "0x0", + "r": "0x5fe2fba1b246712935e6c7d1859e89c845248286a6c55d560f907aab3fbf5251", + "s": "0x4e1a275ef5a1c6b1f168e170184f746092bd2697b22609308876f2603f9bff5c", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x65d770", + "maxPriorityFeePerGas": "0x65d770", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd4e53bba6d171bc7f7ff6525531985d40d508bac", + "gas": "0x30d40", + "gasPrice": "0x65d770", + "hash": "0xe17e7ed8c78d1a32e3f641d885d70637e152fc3783487ce098ac6d6c7c354de3", + "input": "0x04e45aaf00000000000000000000000042000000000000000000000000000000000000060000000000000000000000000bbcaa0921da25ef216739e8dbbfd988875e81b40000000000000000000000000000000000000000000000000000000000002710000000000000000000000000d4e53bba6d171bc7f7ff6525531985d40d508bac00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000977fbcbb70000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0x27", + "value": "0x3e8", + "v": "0x0", + "r": "0x33184671fe448be094ad37899e4e39b1921447280e276f784c01897936deb39e", + "s": "0x34e5e338864ab80e7b1027bb66daa009359c2137edb182518c6e0f0197ed8097", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x65d770", + "maxPriorityFeePerGas": "0x65d770", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xcacba12be56b548106b567269a7c93cc82ee4cb4", + "gas": "0x1f263", + "gasPrice": "0x65696d", + "hash": "0x5555c9058b02a7624bf0cf44fa3f730abe8bf4f4d9464cc7962ac7d27e22bfc2", + "input": "0xb6f9de9500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000cacba12be56b548106b567269a7c93cc82ee4cb40000000000000000000000000000000000000000000000000000000068f27bb200000000000000000000000000000000000000000000000000000000000000020000000000000000000000004200000000000000000000000000000000000006000000000000000000000000468fe9e1178b9e1cc831f2d633c74399624967f7", + "nonce": "0x39d4", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0x28", + "value": "0x9e22f5b17c82f", + "v": "0x422e", + "r": "0xa6e2f0372d3b67e1f8fa7b378081f712a82843e5ed6af1e32b1f3e92d5087331", + "s": "0x51b2b5c9b7e31cdaf5357bb66ae670b6811484e8c9d2bebae72639fd7d38e26d", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x08fb04239c61889b463d887ab3c0d969ec319072", + "gas": "0x10f50c", + "gasPrice": "0x64c56f", + "hash": "0x498c114307a725562f7b0cf968182902f8f3336167253cd1288dc222d591b1c7", + "input": "0xb80c2f09000000000000000000000000000000000000000000000000003945d3c42c2e800000000000000000000000005d6cae0422a950dbd7918d1e74434a35156b3ba4000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000fcba8d61ba1505161f00000000000000000000000000000000000000000000000000105da143d1ee260000000000000000000000000000000000000000000000000000000068f285120000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000fcba8d61ba1505161f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000005d6cae0422a950dbd7918d1e74434a35156b3ba4000000000000000000000000000000000000000000000000000000000000000100000000000000000000000079f7c6c6dc16ed3154e85a8ef9c1ef31cefaeb1900000000000000000000000000000000000000000000000000000000000000010000000000000000000000004291d537a69ca3a6b7f274b5406bae8765e95ce200000000000000000000000000000000000000000000000000000000000000018000000000000000000027104291d537a69ca3a6b7f274b5406bae8765e95ce2000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee3ca20afc2bbb00000081b3206ea08ca8f313d860808ef7431fc72c6fbcf4a72d", + "nonce": "0x51", + "to": "0x5e2f47bd7d4b357fcfd0bb224eb665773b1b9801", + "transactionIndex": "0x29", + "value": "0x0", + "v": "0x1", + "r": "0xb9137cca829183f50fc989f92aa7f38d7750832872a66c8aa5330128fb927f48", + "s": "0x8a1d4bab096d99a8505a07e5d9559b54ab45fc43084ce22132fa083006f6e30", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x856028", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x54e2acab04c89a3fe02852bf8dd69ee8f526bc75", + "gas": "0x56a00", + "gasPrice": "0x64c56f", + "hash": "0xf5ef198a3111758c6eacecedc0b5b94e7946871e4b2ca30504464f982f790ad3", + "input": "0x1fad948c000000000000000000000000000000000000000000000000000000000000004000000000000000000000000054e2acab04c89a3fe02852bf8dd69ee8f526bc75000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000009d781427cafe21b7b8aae4beba35651b1c5bbba938c018f3f0057c6ae4947763d60e1adb58a187a320bccc91000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000abb80000000000000000000000000000000000000000000000000000000000013a08000000000000000000000000000000000000000000000000000000000000d17300000000000000000000000000000000000000000000000000000000016bd850000000000000000000000000000000000000000000000000000000000011839000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010434fcd5be0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000008258ed00f7eb076c6456127cc70c70236201f248000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000004fedda89c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c22faeb0760d4230ef2ac21496bb4f0b47d634fd4c000068f27778000000000000e1488bc7315b4089a536e45caf9b8ccf000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006978841d0e8733752a808b880fe4d12f3f22686236bf0028d7786a34ad08450c61463ace99f0f402eddb069557ea317165730db56397f90cce3da45841ab5b3ece7c1c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000415779d0d911c663396be6cc6557451bebbd65b519364b81e3a7e0102903e7394b345e886447c29ba53b92fab6f26fc2a972169b9cab6801a37efe2d7045b925071b00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x144db9", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": "0x2a", + "value": "0x0", + "v": "0x0", + "r": "0xd7b735c64c2a02473d59eb121fb1531a018e1787e03004e1a3b547772bddd20b", + "s": "0xf434fae8c8f04bf550810100818a0cf956cd1d69abb1e5eff9ae0d71954df06", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xb7f28046429212114cb8e0800cd64bff4358b961", + "gas": "0x1befa", + "gasPrice": "0x64c56f", + "hash": "0x44cdbf9f9f678e4823c9d53311281bb2e06c9b5654ab0839c79ca8de50f7a176", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000e31a32ef0f1b4d11394c94458a96d2fbca88dbbef05e2fb363e832445a24af250000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x14", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x2b", + "value": "0x0", + "v": "0x1", + "r": "0xbab960c746aa361b14b92af1c484e59b3e163d4ce1ffe99892535734d494eb56", + "s": "0x192d8838b83256850939584c37454c40a5b33f0848dfe787c3b15b9a4510212", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5a343e535590aa2733ac26cd7544e90b8bac9554", + "gas": "0x186f6", + "gasPrice": "0x64c56f", + "hash": "0x7966ad8e05acb78530d278e6c60748403247d47cdb255f12cb801ab118456069", + "input": "0x52b663e22ad8883004e3b8e3badbf81d7f682bcc8081040db3a009d7a375a7bb", + "nonce": "0xc", + "to": "0xa5f565650890fba1824ee0f21ebbbf660a179934", + "transactionIndex": "0x2c", + "value": "0x18f9840b92edeb", + "v": "0x0", + "r": "0x2739e6930b542f5127e7322142790b5725ccee881db1da95c2f6dc9fa072cd93", + "s": "0x3ebfd3db7a8bf43324d20b94ac969bd73ac6c82e5169120ed71eae09f35fbbbe", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x66c0b3", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x308e579c4f2cc1e3c7c7c774c88ae6675c9ae7af", + "gas": "0x1a1a2", + "gasPrice": "0x64c56f", + "hash": "0x040b5986af538464b6b5676777b19377b3937a12f7ec761effa9778cb55d67cd", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000051cb04ada37d8bd218e5452db1c12e63733d54bc5687b7fdcc322ffbb561e6eb0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x16", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x2d", + "value": "0x0", + "v": "0x0", + "r": "0xad8a3122af79627847308324ce7018ac117fdba21ba8f4e25a55fd4d34dbd753", + "s": "0x51056fcaf0d90e70f4b35bb9652de45c51f3bf9203d6cec15a888db9ceec6445", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xe082150b4ca91a2079b912f5283a09019a6f576c", + "gas": "0x1a1a2", + "gasPrice": "0x64c56f", + "hash": "0xf601df7b6858ac601f42194200ab4d51bba58ea07940b0061b6979cd6cbf40ed", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000051cb04ada37d8bd218e5452db1c12e63733d54bc5687b7fdcc322ffbb561e6eb0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x16", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x2e", + "value": "0x0", + "v": "0x1", + "r": "0xd8df6c6d545ef3c60ec86f6b5cbb2b2faf6a6249f4a7c87bfcc7df84111dc58c", + "s": "0x671ba9ff34c11af9dbd18fb41d70d09df9b6e79fc2be1211ebdc1af6a0771cbd", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xdd3d6141efc79983fb55fdf84144a4648bb60cb3", + "gas": "0x1675c", + "gasPrice": "0x64c56f", + "hash": "0x563ea5e81148e40a1272616ca15b21e48e71f9b9af25fda72ea04e904fab91f7", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda0291300000000000000000000000000000000000000000000000000000000000000004a71ce824a2650078469fdf02d761216ab6593eae1d502b3a5d066e0e27df7fa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x203", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x2f", + "value": "0x0", + "v": "0x1", + "r": "0x48b80b422d8182111c51253cc31ecfb28d8dc06808817409e5282eeaacac34a7", + "s": "0x79db21b92f6741205c9789bccdc5d2a33fab944175b9d7bc1aae97162257c335", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x40ef0f4beebf1eb94028ab7644b4575503b22c11", + "gas": "0x1673d", + "gasPrice": "0x64c56f", + "hash": "0xd16ff45ea46a67a388248eb26f6687d237753f854bee9bfe13312e2b9a1d11df", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000055427e1dbb6e4ce8e73ce9b3e651431b9c8c0aa033c6a5eee7cb21641c1021990000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x203", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x30", + "value": "0x0", + "v": "0x0", + "r": "0xc4c40fa8ab045dbf38d6143d86ac915cd886175147349de7c295882234579096", + "s": "0x6eaa1b7520ac7b0f94d7c723f59d23c3ea1fae3347999283ccca178b98d4b359", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x43004d88b28020c8e9a42c6807337e9e7bf4abba", + "gas": "0x1675c", + "gasPrice": "0x64c56f", + "hash": "0x5b5451d84910c6c261d32fb52dc59871fcbbff91301e1e1a89af32140f106d2b", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda0291300000000000000000000000000000000000000000000000000000000000000004a71ce824a2650078469fdf02d761216ab6593eae1d502b3a5d066e0e27df7fa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x1fe", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x31", + "value": "0x0", + "v": "0x0", + "r": "0xded07845ee0fb42cf19d81506dbd3c8101d23a40d533297a098d6039a50dcb16", + "s": "0x7ee997f99ab183d0ca6e97caa0504db0d4f9e2fc7433b8992e2aba09a33f3beb", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x96c8a3856ea2208d3447b2d98a91238028a0e5c3", + "gas": "0x1673d", + "gasPrice": "0x64c56f", + "hash": "0xf3c6781bee39c8e364d96e85c33529ab0dabb090c6ce615dc2e55711f641bfce", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000055427e1dbb6e4ce8e73ce9b3e651431b9c8c0aa033c6a5eee7cb21641c1021990000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x202", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x32", + "value": "0x0", + "v": "0x1", + "r": "0x92da81430aae2cdddd51198608449f126c8cd043555789d4fdceed1248df116d", + "s": "0x316717f7b506802097e480f8dbe6fd0ae3e4fc10449f0254e21227e95eda96ee", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa82754fbee0f047a13b9a866b07a8d8f3e79268d", + "gas": "0x802bc", + "gasPrice": "0x64c56f", + "hash": "0x403c39c3839cbec113f17f675a7bff002d8e1f970b0bac2f3891b59741c0aa75", + "input": "0xac9650d80000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000084fc6f786500000000000000000000000000000000000000000000000000000000019d2416000000000000000000000000a82754fbee0f047a13b9a866b07a8d8f3e79268d000000000000000000000000000000000001bc16d674ec7ff21f494c589c0000000000000000000000000000000000000001bc16d674ec7ff21f494c589c000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x13", + "to": "0x827922686190790b37229fd06084350e74485b72", + "transactionIndex": "0x33", + "value": "0x0", + "v": "0x0", + "r": "0x5f0512eff1c7e9872993b25abe4d1131d5749c0f65330b045c31a2ae49e300c7", + "s": "0x69c18328a9b5675e41fc3bd8357aa8d415347572ff47e13e96acb43dd260d6d1", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x856028", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x1d0fe8636dd11e5c8500357b6455febb28d98752", + "gas": "0x21a20", + "gasPrice": "0x64c56f", + "hash": "0xa9c891978413abcaeaa15f7b952fb74763cedeb1f88710fed4f0664cb08185a5", + "input": "0x520b2f7dcde4920af3e13782569fbc2add489634d016fc87315ed9cf92ddc8d67ea5e6d7", + "nonce": "0x1ed3", + "to": "0x2010776a2a051e136088c06f1ea3a05a19aa14f9", + "transactionIndex": "0x34", + "value": "0x0", + "v": "0x1", + "r": "0xda1b69bdd8965220c737c3bc880667a88429247414f5efda903620adacc756c1", + "s": "0xc2ef8d0c8d6b9ceb9d80f0ee5ad5282926deb45240a5f7557910e1a1855edff", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x76a476", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa61446f98b3331c67c491a345a8d2e5cf332473a", + "gas": "0x19baa", + "gasPrice": "0x64c56f", + "hash": "0xb8d70b7a6bf331a2d354c5a55c37dea17cee93ba341eb8b023881efd16e93730", + "input": "0x80c8feed00000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000034722400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000001e87d0000000000000000000000000000000000000000000000000000000000024941000000000000000000000000000000000000000000000000000000000002499c", + "nonce": "0x25c2a", + "to": "0xf2240556139c72d2da177f9f03fac506bd71bdd4", + "transactionIndex": "0x35", + "value": "0x0", + "v": "0x0", + "r": "0x86e7d2e35de36dac66cf19d83c39f3e6d1115101bb5f4bc90efb156d2e5986e2", + "s": "0x3c16d5ef5d3eeed3e0475b2c53b9f2205c6ed6752e14629fbb3ca06197c6368c", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x76a476", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x4f1d8aebc8be6079f4d4c1e708567e7f53803dfd", + "gas": "0x1befa", + "gasPrice": "0x64c56f", + "hash": "0x7ab0065e2b2b09a87a35877c82e03be458b201f4d18e2ca96a4535b80b8ea874", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000e31a32ef0f1b4d11394c94458a96d2fbca88dbbef05e2fb363e832445a24af250000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x14", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x36", + "value": "0x0", + "v": "0x1", + "r": "0xbf55d7963603ed81201f2fb4c6c0c6fbf0fa3e99b3738c8ed1f7525c7c97173e", + "s": "0x3845f0a2d4e75df15c1aa63db2795d8c00a5fc08943c8e10f04b24e6c0634f6f", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x63d61f266f2156df86b00e4ad8a7dccc6acc7703", + "gas": "0x573fc", + "gasPrice": "0x64c56f", + "hash": "0x9f7ba7c915ae6c9aae909176496e7349a5bd3990dcfaca2dd23e93cb56578ff7", + "input": "0xdb006a7500000000000000000000000000000000000000000000000000000000009efce4", + "nonce": "0x140", + "to": "0x628ff693426583d9a7fb391e54366292f509d457", + "transactionIndex": "0x37", + "value": "0x0", + "v": "0x0", + "r": "0x8e043f4370ec0d96e5928b9a37c6b859615ed9a784b3de6312f38ee846dfed6e", + "s": "0x6d3ac17785d481e9290a3c66f06a5accfc83b744136c9e9a369340cb2cc03fc9", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x7797da", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7b56960fe8352a3952e034e4318a1fbaeb3e5739", + "gas": "0x17341d", + "gasPrice": "0x64c56f", + "hash": "0x0b839a736045f0a63513aa06506bed01ad99e7310b25648c58627ebf501b5f63", + "input": "0x87201b4100000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000007ce00000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000089200000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000007b56960fe8352a3952e034e4318a1fbaeb3e5739000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000cc000000000000000000000000000000000000000000000000000000000000011e000000000000000000000000000000000000000000000000000000000000017000000000000000000000000000000000000000000000000000000000000001be000000000000000000000000000000000000000000000000000000000000020c000000000000000000000000000000000000000000000000000000000000025a00000000000000000000000000000000000000000000000000000000000002b000000000000000000000000000000000000000000000000000000000000002fe000000000000000000000000000000000000000000000000000000000000034c00000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003f40000000000000000000000000000000000000000000000000000000000000448000000000000000000000000000000000000000000000000000000000000049600000000000000000000000000000000000000000000000000000000000004ec0000000000000000000000000000000000000000000000000000000000000542000000000000000000000000000000000000000000000000000000000000059800000000000000000000000000000000000000000000000000000000000005e60000000000000000000000000000000000000000000000000000000000000638000000000000000000000000000000000000000000000000000000000000068600000000000000000000000000000000000000000000000000000000000006d400000000000000000000000000000000000000000000000000000000000007220000000000000000000000000000000000000000000000000000000000000770000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000f1d9236cf239c58384405cd79ba8775a242b420d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276f40000000000000000000000000000000000000000000000000000000068fbb17400000000000000000000000000000000000000000000000000000000000000003d958fe2000000000000000000000000000000000000000062945c3ca42339ab0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000008dd000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000103ef24bace40000000000000000000000000000000000000000000000000000103ef24bace400000000000000000000000000f1d9236cf239c58384405cd79ba8775a242b420d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a02728acc0000000000000000000000000000000000000000000000000000002a02728acc000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000400c9167bd3146c4df6bef37c59ae6122cb615346debf8caa92405c8cabff1d85b1ee712956036e7823a45d49b10dd34691f65cab0888071b6965a8dc816e9b08c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000030f7e98a22ecbb038edd5098c94f9138ca0b89000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276b800000000000000000000000000000000000000000000000000000000691a03b800000000000000000000000000000000000000000000000000000000000000003d958fe200000000000000000000000000000000000000000bfd91f0ad07c4290000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000011ec000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001048d9d241c800000000000000000000000000000000000000000000000000001048d9d241c800000000000000000000000000030f7e98a22ecbb038edd5098c94f9138ca0b89000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a1c0f0d980000000000000000000000000000000000000000000000000000002a1c0f0d98000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000401be9450a09ddd7ba7d8ab02254e55e53e0bdd1abdc5fc962a3dc5fe6dfafa87e9586443b5fe73cf999230886cac0d48b56fb0a28f020ae8b85d0c7bfb20d156c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000500000000000000000000000000327472291e963de16f74525bb8fe285d372f1da700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276f700000000000000000000000000000000000000000000000000000000691a03f700000000000000000000000000000000000000000000000000000000000000003d958fe2000000000000000000000000000000000000000020562b984b9115f20000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000000d67000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001051dad83d8000000000000000000000000000000000000000000000000000001051dad83d8000000000000000000000000000327472291e963de16f74525bb8fe285d372f1da700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a335784800000000000000000000000000000000000000000000000000000002a33578480000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000000000000000006334e1c3fd1d9369c88491a348ce5b18557645b2f5571b8e9b6bed840e55aa167b3d55420c041cb4b394aa887a39bbc5748536431fe37b0b0fd2057a6edf7589560000006b17fb5b1934d13a4ba77264fb5f1d4a1608bfb7d479d4f8528a74cfa654bb980000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000500000000000000000000000000327472291e963de16f74525bb8fe285d372f1da700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276f700000000000000000000000000000000000000000000000000000000691a03f700000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000b452a55b9b27ac8a0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000001cf9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001051dad83d8000000000000000000000000000000000000000000000000000001051dad83d8000000000000000000000000000327472291e963de16f74525bb8fe285d372f1da700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a335784800000000000000000000000000000000000000000000000000000002a33578480000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000000000000000006334e1c3fd1d9369c88491a348ce5b18557645b2f5571b8e9b6bed840e55aa167b3d55420c041cb4b394aa887a39bbc5748536431fe37b0b0fd2057a6edf758956000001a8a72f00ec4e19352c52c0f9f6ceecd3eb58efb6f9464ccde1b54c9d13d75ce10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000003ceada243b3b49a844777a59f9c6e196e8a44ab300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276ee00000000000000000000000000000000000000000000000000000000691a03ee00000000000000000000000000000000000000000000000000000000000000003d958fe2000000000000000000000000000000000000000001428b2853b72c5c0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000005d1a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001058285c6db400000000000000000000000000000000000000000000000000001058285c6db4000000000000000000000000003ceada243b3b49a844777a59f9c6e196e8a44ab300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a43a3d7bc0000000000000000000000000000000000000000000000000000002a43a3d7bc000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000409ca62cf0c31b9556263ed2200ec0cbdff5292c98499fcce8285f672c6101020b7cb874227bef888a9683765f340c3458f6f66b7cd268028c314666715f24a786000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000b301ac9c8d69c36c1d1b383e5bc297ecc899e35d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276f600000000000000000000000000000000000000000000000000000000694190f600000000000000000000000000000000000000000000000000000000000000003d958fe2000000000000000000000000000000000000000079620c6d2c6b0c520000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000062bc000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001058285c6db400000000000000000000000000000000000000000000000000001058285c6db400000000000000000000000000b301ac9c8d69c36c1d1b383e5bc297ecc899e35d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a43a3d7bc0000000000000000000000000000000000000000000000000000002a43a3d7bc000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000040718862e5732d994d5dc5e229a43df234686d703ad1665c5f22c586ffe38e0f82aec7258ef5d5445c37bfa25a1feb6ef5b48e242b2274cb5c90e4cc2e2893de16000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000416b6432513bb6baabb082379e5107d8a1f217c500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276f500000000000000000000000000000000000000000000000000000000691a03f500000000000000000000000000000000000000000000000000000000000000003d958fe200000000000000000000000000000000000000000c306a60dad2bb380000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000003c9c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001058285c6db400000000000000000000000000000000000000000000000000001058285c6db400000000000000000000000000416b6432513bb6baabb082379e5107d8a1f217c500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a43a3d7bc0000000000000000000000000000000000000000000000000000002a43a3d7bc000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000000000000000004039548898aec9f96e992eb11f1d0b0998429df2c1762e9ead01bd7fd2b3d081f52beb11ee4d8bee5cde02257fd85ab96beadaaec636c568f610af905bce981c96000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000010007b1ca3618eb5e6b61ed8bd7031c01c17fe25000000000000000000000000000056f7000000ece9003ca63978907a00ffd1000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000068f276fa0000000000000000000000000000000000000000000000000000000068f27a7e00000000000000000000000000000000000000000000000000000000000000009f84945b62993c625abd3985be23793ff069dbb947318e79f100cfcf1a37ed850000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000026ff0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010590edc6fd0200000000000000000000000000000000000000000000000000010590edc6fd02000000000000000000000000010007b1ca3618eb5e6b61ed8bd7031c01c17fe2500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a45f7e2196000000000000000000000000000000000000000000000000000002a45f7e219600000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000040a2ad71c1266386d6d5983d173ea00c67e4df1c4a936172f530a333bbbadf24b26c590b42b845ccf6ebc8c572570f542bc8f66b288783cadf436aab9e2327b5fe000000000000000000000000000000000000000000000000000000000000007e007b56960fe8352a3952e034e4318a1fbaeb3e57390000000068f2782a48c96bd44c6bdbd2bbfbc15b7555d275a9dd9069303e3869818b0a54fd7f61fa049510475e8763f713e4102efecf5ab4bf4a2face453dbcaa40d220ba74bfa38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000024cd78accf6584d2dcf713054c0db949419f783600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276e300000000000000000000000000000000000000000000000000000000691a03e300000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000d0b8db999df48b9d0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000074990000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010590edd06e0000000000000000000000000000000000000000000000000000010590edd06e00000000000000000000000000024cd78accf6584d2dcf713054c0db949419f783600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a45f7e3a00000000000000000000000000000000000000000000000000000002a45f7e3a0000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000401c7ea194951f9b3c27369044a8fbeb4f8790f5ad3d1b045efe0e3c10c2c27d953ed75702d3040c1bc6bbe59d036bdb83d0080c8c897a27efd1e17bd1ad39b8ad000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000043faecd6c2ada87e97c851ec8d0f5b1678fc331100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276e300000000000000000000000000000000000000000000000000000000691a03e300000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000fe7b38f22dd30e160000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000000ed90000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010590edd06e0000000000000000000000000000000000000000000000000000010590edd06e00000000000000000000000000043faecd6c2ada87e97c851ec8d0f5b1678fc331100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a45f7e3a00000000000000000000000000000000000000000000000000000002a45f7e3a0000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000040315006019471736dedca19ba75a6f15d69626f648dd0e8f9d893da6e189c91bbe45d4f15ac392ef70a9785457882f9e0c7960f537e3aa71b1997f4752e4d0d77000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000520000000000000000000000000ae5115f6935571230651e76aef1dc81dbc577eb900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276f200000000000000000000000000000000000000000000000000000000691a03f200000000000000000000000000000000000000000000000000000000000000003d958fe2000000000000000000000000000000000000000074962d2cb2c863690000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000008e540000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010590edd06e0000000000000000000000000000000000000000000000000000010590edd06e000000000000000000000000000ae5115f6935571230651e76aef1dc81dbc577eb900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a45f7e3a00000000000000000000000000000000000000000000000000000002a45f7e3a0000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000083cfc1b5c224519b7cf00778ef1bbf8c98f6247b9959ff111fc5e9f55e67e517721b381c318ca490dd2fa132c95e4417a3864a4b3582596724140df6f872859ed20000003fb0c96e48df96c9b6e1e7afd17917cda3e69caca0d34ea35c9a07fbfe0531b02309a00e6d55882fcaf496123554ebdc7d8dd7d4b24b92363f0688f4097924400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000520000000000000000000000000ae5115f6935571230651e76aef1dc81dbc577eb900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276f200000000000000000000000000000000000000000000000000000000691a03f200000000000000000000000000000000000000000000000000000000000000003d958fe2000000000000000000000000000000000000000021c8ddcc3e9f5b6b0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f000000000000000000000000000000000000000000000000000000000000282e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010590edd06e0000000000000000000000000000000000000000000000000000010590edd06e000000000000000000000000000ae5115f6935571230651e76aef1dc81dbc577eb900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a45f7e3a00000000000000000000000000000000000000000000000000000002a45f7e3a0000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000083cfc1b5c224519b7cf00778ef1bbf8c98f6247b9959ff111fc5e9f55e67e517721b381c318ca490dd2fa132c95e4417a3864a4b3582596724140df6f872859ed2000001d3a5172be5650603ddccfcd8bc5715be88ce029d679c74f5fe902ce2694ce2b52309a00e6d55882fcaf496123554ebdc7d8dd7d4b24b92363f0688f4097924400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000520000000000000000000000000ae5115f6935571230651e76aef1dc81dbc577eb900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276f200000000000000000000000000000000000000000000000000000000691a03f200000000000000000000000000000000000000000000000000000000000000003d958fe2000000000000000000000000000000000000000087aef4cc2cb51e360000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000017910000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010590edd06e0000000000000000000000000000000000000000000000000000010590edd06e000000000000000000000000000ae5115f6935571230651e76aef1dc81dbc577eb900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a45f7e3a00000000000000000000000000000000000000000000000000000002a45f7e3a0000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000083cfc1b5c224519b7cf00778ef1bbf8c98f6247b9959ff111fc5e9f55e67e517721b381c318ca490dd2fa132c95e4417a3864a4b3582596724140df6f872859ed200000206bfdd4fee487c47799fd9aa57225e03268298d2983ff74cbab178665fab33ea9201c5bf3c397d20e03a612ec2e8ef8948a90aff0d621305b37e45beac17b10a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000e3bb2e71113f562950f5c1fbba7d478177082b9100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f274d700000000000000000000000000000000000000000000000000000000691a01d700000000000000000000000000000000000000000000000000000000000000003d958fe200000000000000000000000000000000000000007c04b453a156fb8c0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000007662000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000e3bb2e71113f562950f5c1fbba7d478177082b9100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000409cd714f167c7c4fe5ab9300c66415413445b0763e75b938d01007996cb40988883e37eabbf564e242fcb48799c8fecaaaa745231e3c0c932470c7d04fdd1e53c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000005400000000000000000000000003161dcb17c7beaf05f23cdd6b8655ef6e9d4d26c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f275e20000000000000000000000000000000000000000000000000000000068f31ea200000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000c1a84e17cca4b18b0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000008dde000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c000000000000000000000000003161dcb17c7beaf05f23cdd6b8655ef6e9d4d26c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000a3fe6fe8a62888b39f416a98f50cd43ba6e5b4a6f02748c93979938ed384473638edff7617d997c66d4bab8b099e8d2d9c8b68f01960be4ed189bb1ca24de704250000024dcbaf0fb97f5f7ccfe91ce33b289a10c1a0ade6501e0c4ed6ad01ac2c299e001e89b8688a4f45883fd8b55257502ff4ed69c74593064f13372f1a6fcde3d11d193a1b30c4fefcd12dab322906c28807d3fd1e1a7d87010930759cf98c8a45c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000005400000000000000000000000003161dcb17c7beaf05f23cdd6b8655ef6e9d4d26c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f275e20000000000000000000000000000000000000000000000000000000068f31ea200000000000000000000000000000000000000000000000000000000000000003d958fe200000000000000000000000000000000000000009ddb0171a728fad60000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000062a9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c000000000000000000000000003161dcb17c7beaf05f23cdd6b8655ef6e9d4d26c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000a3fe6fe8a62888b39f416a98f50cd43ba6e5b4a6f02748c93979938ed384473638edff7617d997c66d4bab8b099e8d2d9c8b68f01960be4ed189bb1ca24de70425000003559a527776e03f9dec99f95cb7525fc27d5f8761980ff85cd66eeade6330218e1e89b8688a4f45883fd8b55257502ff4ed69c74593064f13372f1a6fcde3d11d193a1b30c4fefcd12dab322906c28807d3fd1e1a7d87010930759cf98c8a45c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000005400000000000000000000000003161dcb17c7beaf05f23cdd6b8655ef6e9d4d26c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f275e20000000000000000000000000000000000000000000000000000000068f31ea200000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000fe126b5e4b040d270000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000005bc9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c000000000000000000000000003161dcb17c7beaf05f23cdd6b8655ef6e9d4d26c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000a3fe6fe8a62888b39f416a98f50cd43ba6e5b4a6f02748c93979938ed384473638edff7617d997c66d4bab8b099e8d2d9c8b68f01960be4ed189bb1ca24de7042500000406bfdd4fee487c47799fd9aa57225e03268298d2983ff74cbab178665fab33ead34b12e74ee846c338466455cad0c77d7d37d1f8072d72ed279c9c9e7f80a2b5bce6bf9ca16f99f4706cb1c44e2808443862bea96b39ea97db1282973f8e10950000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000024163258a9c769ba749786158712b1b3417557c100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2764600000000000000000000000000000000000000000000000000000000691a034600000000000000000000000000000000000000000000000000000000000000003d958fe200000000000000000000000000000000000000008bc143bfda18fcfb0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000005a79000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c0000000000000000000000000024163258a9c769ba749786158712b1b3417557c100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000040d2bec4fc6c61525f3fdb645a14e5d77d2cf150ac6f116c242d60ba280c521186d73a66e8558c56ea95d3c86407720dae3c90bc9d7e5b4a0bf28103821c15860f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000050000000000000000000000000024163258a9c769ba749786158712b1b3417557c100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2765600000000000000000000000000000000000000000000000000000000691a035600000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000396bc8a1d5442c3a0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000058f1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c0000000000000000000000000024163258a9c769ba749786158712b1b3417557c100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000637b0712a53026f1b2f773219675e3cb536078c510dd6b8be666aa7e4bf87c6c7023debdd02fd0465fc02bde8a0a9787b8387e2e7411ea2331c2a1e0932ee00bf80000003c661c4318fece38d7431a7b6885caa07565b108a68f62dffbb677cbc5fe6b5b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000a3383867d236e10f28269da44c2061dcdcb253e200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2766e00000000000000000000000000000000000000000000000000000000691a036e00000000000000000000000000000000000000000000000000000000000000003d958fe200000000000000000000000000000000000000003b4dbffd7eb6e12e0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000085eb000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000a3383867d236e10f28269da44c2061dcdcb253e200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000040128fbbfb66cab323972735446f57076a8c5a18daaf7a9c3a5198c3410f26c2ce2a471ce3e3ef5d7d37149932edb3e13e891c285bef47ad2a8bbd32a89e7fa1f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000004d7639e279207d277cad634a2b53044388815d6300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2769d0000000000000000000000000000000000000000000000000000000068fbb11d00000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000af0a9f04bca6522d0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000000171000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c000000000000000000000000004d7639e279207d277cad634a2b53044388815d6300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000000000000000004094d9e02184ecb1218f0000495ee62c4b15e5371c6f8e8b09d6947f138034e58fb43e7e26cd811b035a5ebeae589dd93ca72948c620212f96b5acf5aafdf08459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000004d7639e279207d277cad634a2b53044388815d6300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276a30000000000000000000000000000000000000000000000000000000068fbb12300000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000f4a2bee958180ea50000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000002478000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c000000000000000000000000004d7639e279207d277cad634a2b53044388815d6300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000406f6da1c217377f6f89f6755420536226739807723995db240d0be0e562801f6b4907f5e92f7199f16b7753c52c1949bbb827ffe4cee5fbb6c36638f826e38946000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000004d7639e279207d277cad634a2b53044388815d6300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276b50000000000000000000000000000000000000000000000000000000068fbb13500000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000c8b171810c22093d0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000007904000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c000000000000000000000000004d7639e279207d277cad634a2b53044388815d6300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000401f2ed51ac92126b9c7069db068b0d614576fc5f6f8363ebc339fbb8d493dd67d76363d387759cbe53c40a75e4f572e009e0e1667a42f0629ed7cf9af7439c1a1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000004d7639e279207d277cad634a2b53044388815d6300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276d50000000000000000000000000000000000000000000000000000000068fbb15500000000000000000000000000000000000000000000000000000000000000003d958fe200000000000000000000000000000000000000000ab46cd1766cff800000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000001d8000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001059f55da00c00000000000000000000000000000000000000000000000000001059f55da00c000000000000000000000000004d7639e279207d277cad634a2b53044388815d6300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a484bef840000000000000000000000000000000000000000000000000000002a484bef84000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000040486907add8a9b11397d93723b52bf28a2290eaabbd89a955d16d76ea9302ce8f658d61a949c61abad0d50c6915a3ccf3a415e6af6f48383429b572ef9653420b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003c00000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000048000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000000000054000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000006c00000000000000000000000000000000000000000000000000000000000000720000000000000000000000000000000000000000000000000000000000000078000000000000000000000000000000000000000000000000000000000000007e0000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000008a00000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000096000000000000000000000000000000000000000000000000000000000000009c00000000000000000000000000000000000000000000000000000000000000a200000000000000000000000000000000000000000000000000000000000000a800000000000000000000000000000000000000000000000000000000000000ae00000000000000000000000000000000000000000000000000000000000000b400000000000000000000000000000000000000000000000000000000000000ba00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000088000000000000000000000000000000000000000000000000000000000000008e0000000000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000aa00000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000b600000000000000000000000000000000000000000000000000000000000000bc00000000000000000000000000000000000000000000000000000000000000ca00000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000de00000000000000000000000000000000000000000000000000000000000000e800000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000003d958fe2", + "nonce": "0x964", + "to": "0x0000000000000068f116a894984e2db1123eb395", + "transactionIndex": "0x38", + "value": "0xa52a689f9ba000", + "v": "0x1", + "r": "0xdab8a58fbc0776565d05987fa763bcc9b1df39a23a6879cd599f4c210af7b6fe", + "s": "0x53b3a063eb133f165b9b1e32ed050b9438eeff92c93ea571662eaa483d05a7f9", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbd5bf0", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x94293804a786c7fa3d4c10c6162b76e039ad6ebc", + "gas": "0x1a1a2", + "gasPrice": "0x64c56f", + "hash": "0x1f82e3919e0064325261cea2390571b3fa1f3434381eca7fd59516770f36d105", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000051cb04ada37d8bd218e5452db1c12e63733d54bc5687b7fdcc322ffbb561e6eb0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x20e", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x39", + "value": "0x0", + "v": "0x0", + "r": "0x34f64fe87e8156a8d8d2a0965c6b589db05cf1cb291aad678903051021f07016", + "s": "0x36cefecbeda0ead6fe3ea80a4832542e012e6162365559aeb753b8e2ff429cb7", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x1d88182ff972b826f7663591c6270271644171a2", + "gas": "0xf4240", + "gasPrice": "0x5709cf", + "hash": "0x003e5dab810d83e2bdaae4ef8862f75a7b832190c20ad2982f9846c47740fbf5", + "input": "0xae6333de0000000000000000000000000000000000000000000000000000000068f27721", + "nonce": "0x1c7d7", + "to": "0x3e7d1906e8a95142d2128bae6b1a0c729928b73e", + "transactionIndex": "0x3a", + "value": "0x0", + "v": "0x1", + "r": "0x21c268a5fd97351436d19f3eb7efb9bdaacad121ce234ad6af6528be732c271b", + "s": "0x39f0e73586cbdbb7ddb6efc8143d9702c58790bbaa938452943d69dc50504bff", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xacc646", + "maxPriorityFeePerGas": "0x186a0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7f80458495643700f397e6524c012d2f9c2f54e4", + "gas": "0xf4240", + "gasPrice": "0x5709cf", + "hash": "0x436aaeaf21456042aab29677e0617ee1d51fc72e070858ffb252ccb508ef1737", + "input": "0xae6333de0000000000000000000000000000000000000000000000000000000068f27721", + "nonce": "0x3b9b7", + "to": "0x83b74a11e02ac9e3e66f74ee64997a04901dbf7f", + "transactionIndex": "0x3b", + "value": "0x0", + "v": "0x0", + "r": "0xce0589887405fcee85b64f801fa8702c689b3184decb0817b45fdf2035fffde6", + "s": "0x197be6bc76cc432ff407b4a1693c41afe5e4861175f932b145e164a5b8ac445b", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xacc646", + "maxPriorityFeePerGas": "0x186a0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x681d0549bbcbc65e1953a6b9679ce74a75f61a1a", + "gas": "0xf4240", + "gasPrice": "0x5709cf", + "hash": "0x7fcaaf6c65f2c483bd1cad7ec8f8fba7a1f13daafae0806a400716dbbd4815ee", + "input": "0xae6333de0000000000000000000000000000000000000000000000000000000068f27721", + "nonce": "0x479ef", + "to": "0x86a52d8551db74623832bf729fb89ceedb8ddc06", + "transactionIndex": "0x3c", + "value": "0x0", + "v": "0x0", + "r": "0x545223f45f8f46cfccd39ce598b452e96f72fa936422240bbd89e7b3e7d9a7b4", + "s": "0x708866f78a465b96bcfc09d9bc9f82d37084b63baf0032a06ad324de334f4fd8", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xacc646", + "maxPriorityFeePerGas": "0x186a0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5736bd5812b0d2da921ad33eb2200beb093ca70c", + "gas": "0x1bcc0", + "gasPrice": "0x558361", + "hash": "0xc29d85aa0cf7b1aaf2d1f9dc52b2f2c85817957f93c41bff8cd167912cffda5f", + "input": "0xa9059cbb00000000000000000000000050243b0e8b9303582ae2af30fd3def10ec8bacee000000000000000000000000000000000000000000000001ae361fc1451c0000", + "nonce": "0x1ed", + "to": "0x532f27101965dd16442e59d40670faf5ebb142e4", + "transactionIndex": "0x3d", + "value": "0x0", + "v": "0x1", + "r": "0x7d8157b805ab00284a577b675e8c52039a66f464875e6ad413fcd394cc43c00d", + "s": "0x53083f6946eff10ec08c99f3c4b9c562beeb4377a99252771fa55dbcfb82624", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x67e66b", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x34a5d172e99fc53452ddf9f3bb316aa3629d98a5", + "gas": "0x61a80", + "gasPrice": "0x558330", + "hash": "0x12e1d86edac7a2b71423917c2a450d7967bc3eae4a500a3145b011dc38c75e56", + "input": "0xa5bf25160000000000000000000000000000000000000000000000000000000068f27707000000000000000000000000b4cb800910b228ed3d0834cf79d697127bbb00e5000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000004200000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000cb9b991bb600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000408fcd55db31100000000000000000000000000000fb8a1d19cf6f100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffff800000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x29a8", + "to": "0xb7f5bf799fb265657c628ef4a13f90f83a3a616a", + "transactionIndex": "0x3e", + "value": "0x0", + "v": "0x0", + "r": "0xa548901233e98d96a71f1443fd12c249a446002cb2dbf4842618e40649759e08", + "s": "0x496d16e7d7088d8b57d4c25f57e25617b0e21c0b7b6ba7135387f5e95e7a2b7e", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x989680", + "maxPriorityFeePerGas": "0x1", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd8956f0ae58d740b84580021ff275d08bbc1d9b8", + "gas": "0x61a80", + "gasPrice": "0x558330", + "hash": "0xc847c58adef2bc5de55230ff5a892d0ddbc87099eacafac642593dce042efccf", + "input": "0xa5bf25160000000000000000000000000000000000000000000000000000000068f27707000000000000000000000000dbc6998296caa1652a810dc8d3baf4a8294330f1000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000004200000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000cb9b991bb600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000408ff7a68bb31c0000000000000000000000000000fb8a1d19cf6f100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffff800000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x28d0", + "to": "0xb7f5bf799fb265657c628ef4a13f90f83a3a616a", + "transactionIndex": "0x3f", + "value": "0x0", + "v": "0x1", + "r": "0x9c8d0cb62945121159a8404071b76818daa2cccce91f731c609d1a70911b6d39", + "s": "0x433e0570b5ff5dc188556bfef04978dfc96893bd058a487deb8dace67ab655c", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x989680", + "maxPriorityFeePerGas": "0x1", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x72bf147651732de1963f6e0f23884a8a6e8596f6", + "gas": "0x5208", + "gasPrice": "0x79b1b6", + "hash": "0xbbc621ba7ef0fa274d4978da0fc764193eb0929eb296d5342686107a0495df9c", + "input": "0x", + "nonce": "0x4b", + "to": "0xabf680e04533231799e1a3939922a0f0d6b5f90f", + "transactionIndex": "0x40", + "value": "0xb4eb868a825f99", + "v": "0x422e", + "r": "0xc4224d68594d794bfca30b6635ea20aaaef69d5ca7cdd07658095800993aefc7", + "s": "0x7acd15b8aa99ef8d39fb412911f1655a2fc06a4a20800b0e4a77a6091030e09d", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbd9206599747812d823dd040e4a68924cf882747", + "gas": "0x2dc6c0", + "gasPrice": "0x55fefb", + "hash": "0x0f41a831a515adb4d58743b7e50214336ac8a94640f6d3e4f0a5cb7713564b3e", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c6121584796d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea3769100af5b427e7fa45760656256448353a0437f48a2b5a04c6067a271a7b0", + "nonce": "0x3ce3f3", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0x41", + "value": "0x0", + "v": "0x0", + "r": "0x8fdf34af7a9db9c7d808e34d32b9b7065ce653b43db8173495ac954736128240", + "s": "0x68d26adf91ff471d568e6f95ddbe86bdf1f335216f4bc529dc2c6013ddfdd22c", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0x7bcc", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa1979bdfb0ff3a127f5d9b5fb0378bd7be6a13f8", + "gas": "0x2dc6c0", + "gasPrice": "0x55f870", + "hash": "0x8d364307f39c28ebdb77015af39f3e0b7a863a20c4a4adbb19f80a45764c2a91", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c6121584796d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea3769100af5b427e7fa45760656256448353a0437f48a2b5a04c6067a271a7b0", + "nonce": "0x290948", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0x42", + "value": "0x0", + "v": "0x0", + "r": "0xe49f7c54ba5bc175935ca42fa719e5c65ea23ce9620858790ec4f5d1e1442df4", + "s": "0x5f377e8813331cee38e81abb2274e5fed18aca8c806e36b200426a66afa1f037", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0x7541", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd39d00cb8436d472b1adbdae66a9703b7df438d1", + "gas": "0x7270e0", + "gasPrice": "0x55b804", + "hash": "0x23f72ef44dab946ed519395d32ef4b87f8053b5437eaa1a51d17c6ae2d6cdbe6", + "input": "0x1151833589fcd6edb6e08f4c7c32d4f71b54bda02913271001251672ab388e2e2f6facef59e3c3fa2c4e29011c2d38270fb2cc224c1c9fee385f8ad6a55b4d94e92359dc59270b11511111111111166b7fe7bd91427724b487980afc6927100024fadf5834359cc81063910a9c78b11e686b99105d66270ba0ca5bebc42cdbf3623b1c09206ae4e3975b0fc726f21332fb42da273158b0f642f59f2ba7cc1d545748167726930124e3b08fefa8f0f01b9a224fdef416e919b1ceba0d8426f29399da51c1a85e64cce4b30b554875d2b89b244526f21151cbb7c0000ab88b473b1f5afd9ef808440eed33bf2710012516c211e1f853a898bd1302385ccde55f33a8c4b3f3270f70acdf2ad0bf2402c957154f944c19ef4e1cbae1270b193428442822b156c348992fbb055070ddeb17dd5905271000245e8d0fe27e94feb72af412e5e883ac37bc8ca5ae2326ac010027100000c80000000000000000000000000000000000000000153f37f0c2915cecc7e977183b8543fc0864d03e064c27100124fed6b1ff961077c740929ad23ba5438e63749c1c3126f20100003100000100000000000000000000000000000000000000001332d9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca27100124feb4885bc63399bf5518b994c1d0c153334ee579d026f23b8000cd10625abdc7370fb47ed4d4a9c6311fd5270f11511bc0c42215582d5a085795f4badbac3ff36d1bcb27100024a075fb62aa7d072a6a96692b207278a760e5df42cc26f2c1a6fbedae68e1472dbb91fe29b51f7a0bd44f9726ac1934288f4eb27400fa220d14b864259ad1b7f77c1594271000245e670e77c361375be9013869ccc516027ccc90383f26ac010027100000c800000000000000000000000000000000000000001151ac1bd2486aaf3b5c0fc3fd868558b082a531b2b427100124b82058808c3eb85be185a457487bdce4bc1cc23cb2270b4b0aaf3ebb163dd45f663b38b6d93f6093ebc2d326ac1934f43eb8de897fbc7f2502483b2bef7bb9ea17922927100124ae0392b12a1ceb0cd13af5ea448cf5586ea609852d2701010027100000c8000000000000000000000000000000000000000019348e16d46cb2da01cdd49601ec73d7b0344969ae332710011f2c5122e02898ece3bc62df8c1efdb29a9e914244d326ac010249f0000bb800000000000000000000000000000000000000001934e0969ec84456b7e4d3dd2181fb5265edbb63f7bd271001247a61b28915ae086f6adbb9b0e4c3af96b0341188e426ac01001b5800008c00000000000000000000000000000000000000001151940181a94a35a4569e4529a3cdfb74e38fd9863127100124f120cb8f872ae894f7c9e32e621c186e5afce82fd0270b82321f3beb69f503380d6b233857d5c43562e2d026e819347300b37dfdfab110d83290a29dfb31b1740219fe27100124a5aa067f08fef60420d050a92e7800e588748b7d6726f7010027100000c8000000000000000000000000000000000000000013320b3e328455c4059eeb9e3f84b5543f74e24e7e1b27100024b821594b992f68495dd28d605834b58889d0a727c726ac9c087eb773291e50cf6c6a90ef0f4500e349b903270b1332833589fcd6edb6e08f4c7c32d4f71b54bda0291327100124fa88a43bbdf9d098eec7bceda4e2494615dfd9bb9c26f2d0b53d9277642d899df5c87a3966a349a798f224270b1151833589fcd6edb6e08f4c7c32d4f71b54bda029132710012512b2cc224c1c9fee385f8ad6a55b4d94e92359dc59270bd0b53d9277642d899df5c87a3966a349a798f224270bffff", + "nonce": "0x81b441", + "to": "0x9d2ff0c90611a5b77aaaf44c60c6720c87129901", + "transactionIndex": "0x43", + "value": "0x0", + "v": "0x0", + "r": "0xef090171f70cf2a8df99972043d199c736931b96e7e97738f0c59fec7dfd98aa", + "s": "0x7284d5373cf9cfce0e1e922e8501ee5bb5a6b6cf7011602a4aaf648b7034f265", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xab3b33", + "maxPriorityFeePerGas": "0x34d5", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xca270e2e623862135fe72303501aa97d6adb6e69", + "gas": "0x7a1200", + "gasPrice": "0x558361", + "hash": "0xedec01dca8810bff5aae67709e5d2e9cf5b8f3e5b1582eecaa5de44b878e3e94", + "input": "0x00000000000068f29e121cd01bfde79c315e8f17f007c266c82f1119498f110cdcd7cf04d083a8a751b1b6175d8c91f3b87c53cc757dbb040ca01e9e5042334dde80c947f84496a34003c56dc5efcf3fd1459cb1fe168022120d298fe68655460638344e42c58b3f932bad0a023bd17e7a7d3c27b068978f8850ca7ca67ea862cb271000000000068da3f098fae427a9aa3647f3e81798c61897f3bf67d100a270c00198b1771a4cffdc0000000002df5834359cc81063910a9c78b11e686b99105d6601f40000000002037ac9012eca27bf284ad0108b32257a0c56362f006400000000036b0f53cbd9272d8117e9535fe25371dedf39a1be00640000000003678f431da2abb9b5726bbf5ccdbaeebb60da98130af00000000000b7f51d070d4e05dbbc3a3697aef5405e60e013f60bb80000000002529d2863a1521d0b57db028168fde2e97120017c0bb800000000029ea7711c82f6ede3f6da5fcf6d49b0fc2a2dc7b527100000000001ef6f90acda6e8102093f3f4e28d952b0276e4abb1f40000000000403000001010002010201030104000301050006000701020108000901", + "nonce": "0x2e193", + "to": "0xd9c72e940345228b945fabe3b651fa6d39125966", + "transactionIndex": "0x44", + "value": "0x0", + "v": "0x1", + "r": "0x4213703de984a537af18720932f59a1a9ecb54b6a6e497d94b8e89daf7ade61f", + "s": "0x400b0d965e9dd5e4ed3acdfb3f9b66725ef572e69a41da7b68d2a2d862638679", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x187545f", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd2052c7a469919d2808d1643369f12158a3b49ca", + "gas": "0x927c2", + "gasPrice": "0x558361", + "hash": "0xd25bdabec10c4a1941d62b99c3d22755e4640a4cba0a23e3c0d4e59e5ee4fe00", + "input": "0xa00597a00000000000000000000000000000000000000000000000000000000002bf0fc70000000000000000000000000000000000364245dd0500c821c33b412069c92d000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000001000000000000000000000000b165d553ccc0c4b3d8c52cd99aaf3db7050f33820000000000000000000000000000000000000000000000000000000068f277b606", + "nonce": "0x1caad", + "to": "0x802b65b5d9016621e66003aed0b16615093f328b", + "transactionIndex": "0x45", + "value": "0x0", + "v": "0x1", + "r": "0x1c7320168ecf921a0f52952eecf5b5bd4403144c8abc22ab808d7e1c03b9d427", + "s": "0x2c60818f649a376b4ea30872eddd6499689739400bab7b3cdd40ee4a86bd9d67", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xab3fd8", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa6b215ff38d2bac8508d72d6278d38268ad4dee3", + "gas": "0x927c0", + "gasPrice": "0x558361", + "hash": "0xbcfbc39530ce365bd925b2d84c94de54bf56cf49fc8c527b9cf71f7487b99937", + "input": "0xa00597a000000000000000000000000000000000000000000000000b96aaefe995a35f000000000000000000000000000000000000000000023700bf9eca403ffd58ec400000000000000000000000001f16e03c1a5908818f47f6ee7bb16690b40d067100000000000000000000000000000000000000000000000000000000000000010000000000000000000000006ee714d6d8df7662bca805f58cc1d5a8886d78eb0000000000000000000000000000000000000000000000000000000068f277b706", + "nonce": "0x2d9c", + "to": "0x802b65b5d9016621e66003aed0b16615093f328b", + "transactionIndex": "0x46", + "value": "0x0", + "v": "0x1", + "r": "0x746d490b1df789bb2a050d0ab6ce6fc08ba1992fae3aaf2b0ec4a135bd0761d4", + "s": "0x409f70d7963cddbc8bc784638d0e07f2cf057041d88b658cb0c01633b7e931e0", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x702c39", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x6289dc30971864c083a28aaee669b5d8576b4a14", + "gas": "0x989680", + "gasPrice": "0x558342", + "hash": "0xc5bff7b72404c042e321aba214309b9eb59f40858c948100a3d2982b5143c9c2", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x86250", + "to": "0xdc1cc8dd7803b3402dc6b9ea5ac101c9f792584f", + "transactionIndex": "0x47", + "value": "0x0", + "v": "0x1", + "r": "0xfeb83f6a8000cfb973ac8ac4d6062d97ff4ea20600acbdf69da6df6ab76e8f8", + "s": "0x332778278f6b67d921bc4042adcaba813f38bb811692aee422fac8a2a20eddf4", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcbaef3", + "maxPriorityFeePerGas": "0x13", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd3b455634849a14b1ca50056e0c0a6ac06713a3c", + "gas": "0x989680", + "gasPrice": "0x558342", + "hash": "0xcef6d4d9e9a6b2f2f10ac0ee2ab1113f0f9bc2eb4adbc1073bc7abd4459879c0", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x862e1", + "to": "0xdc1cc8dd7803b3402dc6b9ea5ac101c9f792584f", + "transactionIndex": "0x48", + "value": "0x0", + "v": "0x1", + "r": "0xc9cc51688b61441284a6c0e349b5f9f7fccd4b1f54729f3a859359e817c624c4", + "s": "0x61872576983c82f1b1107172180dde1adaef30a163aad464b19dccf9f154dfe4", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcbaef3", + "maxPriorityFeePerGas": "0x13", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xce403855de1aef2dea6a72f11295161b204c73cd", + "gas": "0x989680", + "gasPrice": "0x558342", + "hash": "0x0a6c9126f28ca9d7a1ee9a8fe4c7208dad0d189eef91515b42b25824bc7b3fb6", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x860a8", + "to": "0xdc1cc8dd7803b3402dc6b9ea5ac101c9f792584f", + "transactionIndex": "0x49", + "value": "0x0", + "v": "0x0", + "r": "0x151a4e04a5f02d8a883ea2b7191ef3b5c07f0d4ebb768ee473988fc1e1ed95d", + "s": "0x4c958df28335bbd43a7e5dbad45cb7c3363cabc0f8ac3bfc52bd6652f7c93320", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcbaef3", + "maxPriorityFeePerGas": "0x13", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x0a9debafcd65b3edba215cdb08b7d1ad79568ec8", + "gas": "0x7a120", + "gasPrice": "0x1ff4252", + "hash": "0x0b6dee7fc0fc4c6e19dbfe66de5417342df6f459408ed95a222a02d9234074d3", + "input": "0x49c36c070000000000000000000000009331f571f79d1e186a095c93756b5680a43932ac000000000000000000000000000000000000000000000000000000000ba7232800000000000000000000000000000000002049b397fef342000000000000000000000000000000000000000000000000002046e7908341e200000000000000000000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0xa8956", + "to": "0xc758d5718147c8c5bc440098d623cf8d96b95b83", + "transactionIndex": "0x4a", + "value": "0x0", + "v": "0x1", + "r": "0xbf6494750c4424580407d3246a0740dc4790b510aa26ba54484dfaa6bd7fa0dc", + "s": "0x26d5bd38c43214bc7742c2556d998cd3045cbcbb2f23b216ef0b1da479f1bfdf", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x2167d50", + "maxPriorityFeePerGas": "0x1a9bf23", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x751140b83d289353b3b6da2c7e8659b3a0642f11", + "gas": "0x7a120", + "gasPrice": "0xee19af", + "hash": "0x3547df00a115f45fd238718eadb0bdb5eecf64dd46cfc0a0452381b9813dbd77", + "input": "0x219f5d170000000000000000000000000000000000000000000000000000000000b4b6c80000000000000000000000000000000000000000000000000000001679e349590000000000000000000000000000000000000000000000000000000048a38f74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f27708", + "nonce": "0xf6496", + "to": "0x827922686190790b37229fd06084350e74485b72", + "transactionIndex": "0x4b", + "value": "0x0", + "v": "0x0", + "r": "0x8ea8c318d59250b08dee4905418599699c2c4efb719db7af148b7d739dd07d2", + "s": "0x203c7d72d6b10f07c62e13d42b09e05d377879210c14912a0caed1fff32a8c92", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x3c336080", + "maxPriorityFeePerGas": "0x989680", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x751140b83d289353b3b6da2c7e8659b3a0642f11", + "gas": "0x7a120", + "gasPrice": "0xee19af", + "hash": "0x8c284fa1cc7f82cb5049d6c6b743b663c07de11adaab3408c5a6cb35bb1e1c86", + "input": "0xb6b55f250000000000000000000000000000000000000000000000000000000000b4b6c8", + "nonce": "0xf6497", + "to": "0x6399ed6725cc163d019aa64ff55b22149d7179a8", + "transactionIndex": "0x4c", + "value": "0x0", + "v": "0x0", + "r": "0xe00592a6219a8b581dc2235470b32dca723e6b52eff4c41798856f722666c52d", + "s": "0x35f42928636606c01b4a99f76815fd0d987828b66a38d096fd2c2432f44ed63", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x3c336080", + "maxPriorityFeePerGas": "0x989680", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x391e7c679d29bd940d63be94ad22a25d25b5a604", + "gas": "0x16e360", + "gasPrice": "0x7e1a97", + "hash": "0x4cd5243424a26b6758fe0009cac295f763ce50780f7f3d81b7a1349abde1ef47", + "input": "0x51cff8d90000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xc097", + "to": "0x2a37d63eadfe4b4682a3c28c1c2cd4f109cc2762", + "transactionIndex": "0x4d", + "value": "0x0", + "v": "0x422d", + "r": "0x2610abae065848a230a48ef6dd96b984484b80e7c1538f0682e4318c75d876d2", + "s": "0x3fb812ade2f521b0fe3f71266dec15a705de70606a4c705d1e4075dc222e6849", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x29892616ee25aa8f76bb76b0296eabe880629d5e", + "gas": "0x1e8480", + "gasPrice": "0x695950", + "hash": "0x13821671d415c0ccfb4b8f7080dcf0c2af4515760c4986aeae5bbd5911b1621f", + "input": "0x6e8b83ed00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xf6e6", + "to": "0xf4e8bee341c94212e450a2471ad187990737b3d4", + "transactionIndex": "0x4e", + "value": "0x0", + "v": "0x0", + "r": "0x8121b8e4bca13cff9b81bc83c3cecbafb5ea598f86178727aff0eefd91bf5406", + "s": "0x1a07539743b348779a23f1acf78366f95626e6811fb92a68f5f3115b70f3dfb9", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x97abfc", + "maxPriorityFeePerGas": "0x13d621", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x29892616ee25aa8f76bb76b0296eabe880629d5e", + "gas": "0xc3500", + "gasPrice": "0x695950", + "hash": "0x91213d56c8f40bb4b0ebf192f219b775e38b9e981e72a4c22ca6d85de60dcf51", + "input": "0x6e8b83ed00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xf6e7", + "to": "0xf4e8bee341c94212e450a2471ad187990737b3d4", + "transactionIndex": "0x4f", + "value": "0x0", + "v": "0x1", + "r": "0xb877efa8a7074e766956946fd1cf175613f0c6d5d148a05043cca05b66f62282", + "s": "0x78762dd69873527415012952096125b4cd1df65307f914b2f7bcd3534631a810", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x97abfc", + "maxPriorityFeePerGas": "0x13d621", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x29c51d81de5bcee6e11ec5a36c21acf1bc9f478f", + "gas": "0x2e07c", + "gasPrice": "0x64c56f", + "hash": "0xb068c7d15f5855a657e7c2cb9722122224266bafbd66d406f031d540ba3832c9", + "input": "0x7ff36ab50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000029c51d81de5bcee6e11ec5a36c21acf1bc9f478f0000000000000000000000000000000000000000000000000000000068f2772000000000000000000000000000000000000000000000000000000000000000020000000000000000000000004200000000000000000000000000000000000006000000000000000000000000a06de9d92aa48f46d1eeb0f5dcc1618aece66a73", + "nonce": "0x6c", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0x50", + "value": "0x38d7ea4c68000", + "v": "0x1", + "r": "0x388f76deff5dba478ff5a34afd89b512cced0c85471bd218526f615b8ce7b5cf", + "s": "0x79b5da6689cea3300d38128ac742b60c93c8f2bb7542112fcd9f557a4eb2afa2", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x24848e2f6182b7495dbed384a1e7215d7e54d1d2", + "gas": "0x2cfa4", + "gasPrice": "0x64c56f", + "hash": "0xe3c12949439194fdd44ba26564a6439cf71571fa9a9f879b79c4882a20837249", + "input": "0x18cbafe500000000000000000000000000000000000000000008beda9a9dc501f1f54000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000cb34b0621c2dbcaddea696967c7a6567fea6918900000000000000000000000000000000000000000000000000000199f320e2d20000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a06de9d92aa48f46d1eeb0f5dcc1618aece66a730000000000000000000000004200000000000000000000000000000000000006", + "nonce": "0x9b", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0x51", + "value": "0x0", + "v": "0x0", + "r": "0x7de79b54f203c5fd435cd3f18c9eac04345faf09e77acedac3d73a039e3eab79", + "s": "0x7a437b997f18ebe9ca02977b025486ec14935690196375f70bf148c148a057cb", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd09708e7f0692c118f2a1f311fb6a9740b2f82d6", + "gas": "0x2cfa4", + "gasPrice": "0x64c56f", + "hash": "0xd0f82a74e8f0e41fa9cacec9782f649ba6bb133831d7bc1447e0ca00c0346e4e", + "input": "0x18cbafe5000000000000000000000000000000000000000000065a3292af257d7fabd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000cb34b0621c2dbcaddea696967c7a6567fea6918900000000000000000000000000000000000000000000000000000199f320e2d20000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a06de9d92aa48f46d1eeb0f5dcc1618aece66a730000000000000000000000004200000000000000000000000000000000000006", + "nonce": "0x6d", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0x52", + "value": "0x0", + "v": "0x1", + "r": "0xcb6a9f64328c84e10cbf1477a3183cfeb5c988ddc6a5627582243760aa348319", + "s": "0x1103bec0ed780507ff831a585d337c72dc3ba23e452d087f9bff53a658e1c30e", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x1f8f835536ff99e1bce931f99277d5567e234d53", + "gas": "0x2e07c", + "gasPrice": "0x64c56f", + "hash": "0x5f088cb0529008a6c6c270e566c3f8f130c49cbb9fbf77ea301569ee480c5db8", + "input": "0x7ff36ab5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000001f8f835536ff99e1bce931f99277d5567e234d530000000000000000000000000000000000000000000000000000000068f2772000000000000000000000000000000000000000000000000000000000000000020000000000000000000000004200000000000000000000000000000000000006000000000000000000000000a06de9d92aa48f46d1eeb0f5dcc1618aece66a73", + "nonce": "0x88", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0x53", + "value": "0x54607fc96a60000", + "v": "0x1", + "r": "0x68b4ed6dbf9b64003189ef76f8e843cf7710edcfc12ab4a7e0b65be15474c9c6", + "s": "0x49dda19b27c364acab558a8aba7026223c842d5a66714a098986718960b14940", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbb909a", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x6792d062a2a9b3a5332085cdd7a15f04b7111111", + "gas": "0x12b54f", + "gasPrice": "0x5a418d", + "hash": "0x7b73e1773af2cb54ae31df8fd5d39702a867d11b895f6b8813511c2f408c8a8a", + "input": "0x03a32333cc0bc449018f95a72fa9df40865367ea46159bc9175226f200000114d3f53bf6146a255a3c90ecc3b97eecdc665a64731b070e074a26fc00000014e79a0d240d45cfe1ce7e54e40416f92d850625ce4434703e6a00000000001e0000000a0100000000", + "nonce": "0xa07a7", + "to": "0x0d8ed6c9c957b15d62fd2c0b7a45f5622bbae155", + "transactionIndex": "0x54", + "value": "0x0", + "v": "0x422d", + "r": "0x596d535c13a2a41d28c8501d911d2eb6b6260e4cf94b68664fb34e76a0e1d1c5", + "s": "0x6cd18a3bce3f513243a9d3286c95a30d8c96e2f982a44cfed754116452cb7539", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbd9206599747812d823dd040e4a68924cf882747", + "gas": "0x2dc6c0", + "gasPrice": "0x570471", + "hash": "0x3741aac16a5b5c5cbcf3ee349b5783bf0a27025d93b53b30118ae1fc9a6ceff1", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c6121584796d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea3769100af5b427e7fa45760656256448353a0437f48a2b5a04c6067a271a7b0", + "nonce": "0x3ce3f4", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0x55", + "value": "0x0", + "v": "0x0", + "r": "0xe55deb6355dd27ef258d0979cf2c49e5c8d4838af192d1365e8f1e7b47e368a1", + "s": "0x609736ae22c29961fd15fe2b436fbaba3df47c6c43d395292060fdc664204a89", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0x18142", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbd9206599747812d823dd040e4a68924cf882747", + "gas": "0x2dc6c0", + "gasPrice": "0x56ea07", + "hash": "0xb1b0efde6d99758a5370c8c0a6618f5e449bd90d1988452743c6ea63b892c981", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c6121584796d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea3769100af5b427e7fa45760656256448353a0437f48a2b5a04c6067a271a7b0", + "nonce": "0x3ce3f5", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0x56", + "value": "0x0", + "v": "0x0", + "r": "0x672b0de7f8dfa1e966efef2d9ed972657c51e97a8650f969e168f4fb41eed9db", + "s": "0x1c15b857b1537d389116ef10c05d3a713244d95fc8f16c8c689c3bc1daeecf", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0x166d8", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x2ce95bacc2ee3612ba1e773f518b4ba110a992d7", + "gas": "0x989680", + "gasPrice": "0x558593", + "hash": "0x114c95ee7b4b54e25d408dc26dce74bc4679a32c55519ef6c8e64873d1138cec", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x860c3", + "to": "0x74fc3c5fbce63b8d35a461b8fcc495c34b1fdde2", + "transactionIndex": "0x57", + "value": "0x0", + "v": "0x1", + "r": "0xb70806e96e81da29e0804ebe32a3c408a847f870db24476c6256faa7efd78302", + "s": "0x39b9035a899b29fa36d0c97a394244197353b97b0fa4c5e98b9fc03e49c9ac75", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcad53e", + "maxPriorityFeePerGas": "0x264", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x74709aa9d557e7b26902332c68cdd863c45b3a59", + "gas": "0x989680", + "gasPrice": "0x558593", + "hash": "0x0712b36e863709ffa4ebc8f9cbeb2e52bb08066a9c5e262729c43096a9ff5d67", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x86123", + "to": "0xdc1cc8dd7803b3402dc6b9ea5ac101c9f792584f", + "transactionIndex": "0x58", + "value": "0x0", + "v": "0x1", + "r": "0x7f0c4f97818be2d3e3d64c4cee3121a0cc91993f55cbc4773f0a42e3672202b0", + "s": "0x78c18704e07ddcbea9ff0b8392a460c4033e33c62d40d671fb6b8f4fabc6d7de", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcad53e", + "maxPriorityFeePerGas": "0x264", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa00ca498fda8a03937b1d53bf4165201eb60b49e", + "gas": "0x7a1200", + "gasPrice": "0x558361", + "hash": "0x6ee6fff849b56b655a854159bf2750e8983445efbdff25a53d4627e26803f85c", + "input": "0x00000000000068f29e131b2229c7c6670464aff84c4cc7576115440dafb7324f7e5a047134ca75ddbd5cb645498a7449a2f928d47080c18a543d613ca1745d0f9a2e1db1aa50c6ce2144b3d6a05a6e220ba32afca1a7fb8724e65c1e157d8ba5ac7934bfcb14a94def3d260a023bd17e7a7d3c27b068978f8850ca7ca67ea862cb271000000000068da3f098fae427a9aa3647f3e81798c61897f3bf67d100a270c00198b1771a4cffdc0000000002df5834359cc81063910a9c78b11e686b99105d6601f40000000002037ac9012eca27bf284ad0108b32257a0c56362f006400000000036b0f53cbd9272d8117e9535fe25371dedf39a1be00640000000003678f431da2abb9b5726bbf5ccdbaeebb60da98130af00000000000b7f51d070d4e05dbbc3a3697aef5405e60e013f60bb80000000002529d2863a1521d0b57db028168fde2e97120017c0bb800000000029ea7711c82f6ede3f6da5fcf6d49b0fc2a2dc7b527100000000001ef6f90acda6e8102093f3f4e28d952b0276e4abb1f40000000000403000001010002010201030104000301050006000701020108000901", + "nonce": "0x2e16e", + "to": "0xd9c72e940345228b945fabe3b651fa6d39125966", + "transactionIndex": "0x59", + "value": "0x0", + "v": "0x0", + "r": "0x684d56a92331921244864ab805ab8a0115962d1a09673cc0665cb257d89f0e42", + "s": "0x53ee77678168c318117ee943bac87ed839a4a611cae2590c75e06390d09b9013", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x187545f", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x9f0ebebaddceaabf5e157e87e286ab124661b17d", + "gas": "0x61a80", + "gasPrice": "0x558330", + "hash": "0x4314b39baea2410e586062de6c18e19f6e29828b1d9e21525147864a1d4f37dc", + "input": "0x34df7d410000000000000000000000000000000000000000000000000000000068f277070000000000000000000000004200000000000000000000000000000000000006000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cd071ae92c69a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040918f7c818b40000000000000000000000000000000000000000001048afc779298e000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010485a694c3e5b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x29c4", + "to": "0xb7f5bf799fb265657c628ef4a13f90f83a3a616a", + "transactionIndex": "0x5a", + "value": "0x0", + "v": "0x1", + "r": "0x29fb09359c26af3357714b30dcaa3beb9df280b170590cf311faf398f8cb0b59", + "s": "0x6064f0e0f4ae2620228dabf867d950923e396ccc21ee68d76c11df23155586b0", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x989680", + "maxPriorityFeePerGas": "0x1", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xdd9cf8391f8bb3b36f822fe2ac52e29a2c27c435", + "gas": "0x5208", + "gasPrice": "0x55832f", + "hash": "0x82cdea2d5309d3e4a039e3ad34a078cee97fc53cb69f4afab607b16c4a8d4741", + "input": "0x", + "nonce": "0x48", + "to": "0xef877e29bd7a9374f1d31beae71e9905594b2fed", + "transactionIndex": "0x5b", + "value": "0xb1a2bc2ec50000", + "v": "0x0", + "r": "0xe40274dac7634a4dd064dc0b6f195e9bbd54dc9f13eb7d3ee9fa66ab437b353b", + "s": "0xa7d6177b6527ec19093f9a69c300518a58490c63b9dcceccc72e9f7c8226b83", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x7ec3c8", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xfb17da414d3391e8713b1a84930736f9c3822b81", + "gas": "0x1e4ea", + "gasPrice": "0x663441", + "hash": "0x85ddc6bc670e4c32b35654ab0c2c9f4f0b1cb72519d3a6cbaeed98881c187ebd", + "input": "0x4a959c43000000000000000000000000a602f5a61ac7d91ae1f4c81d0bac5e9101fb993d00000000000000000000000000000000000000000000000000009401f964a20000000000000000000000000000000000000000000000005150ae84a8cdf000000000000000000000000000000000000000000000000000000000000068f27758000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041c89b45d0a240204912feb42e7cc06d135fd5efd014b9daf4686ed20ff7e499cc2cdfaff9971fe22d0a5b96b2eb989faf576bdf776b8fb4b1648ceb3b350f1f091c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xa", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0x5c", + "value": "0x9401f964a200", + "v": "0x422e", + "r": "0x796598b25c1c1c9d1ca5ce3460e6a01dfae036430b92b1198c4e469cb05d9a14", + "s": "0x574b35a13251120bae340d36f9b4448a0f4bc3be5fcc7dbaa78cbf3f5f87cedc", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5b7a3c6d6b634ebdd1485847fd4945c88122dc8c", + "gas": "0x7a1200", + "gasPrice": "0x653a3c", + "hash": "0xd077d5d8c8ff2c68fc8df67e870244d0e5712c30137e803af479e8e6cdbd57ad", + "input": "0x00000000000068f29e131b287993a527198f1f6a032867da8a6d11091e242fe6f9b7c94e4de9d8860a483c7773f49b44cb6b028637cbdd23c7027aaded498546af33fb050f71a61437b361eeae26e86003abd4e266217eaa191976b6f1516b0978ada2ef32505ce76cdb05150272ab388e2e2f6facef59e3c3fa2c4e29011c2d3800640000000002d96abbad4b744cb7746adc908a3df39c5991aae00050000000000628ca4438a075dc0a85a47035990a40200b490e605e8e95913247d8362cc47bb30bb80000000003f81d3c731b3ac5a4dfc968f514860bedeebebaf200640000000002037ac9012eca27bf284ad0108b32257a0c56362f006400000000036b0f53cbd9272d8117e9535fe25371dedf39a1be006400000000029399da51c1a85e64cce4b30b554875d2b89b24450bb80000000000b08fefa8f0f01b9a224fdef416e919b1ceba0d840bb800000000035b8bf0cd0fa5bf970ebe558d7551a668dadf357001f40000000003976a4d13a41581c5eda72c493038ac10cadf5e4601f40000000002e5b5f522e98b5a2baae212d4da66b865b781db9701f40000000003dbc6998296caa1652a810dc8d3baf4a8294330f1005000000000060f4e921ef4f483570dfdb05df55aa053efec90ba9ff78db059ce0638bbb4478e27100000000003fd7abc461df4e496a25898cab0c6ea88cdd94cf9271000000000034e962bb3889bf030368f56810a9c96b83cb3e77801590000000002b94b22332abf5f89877a14cc88f2abc48c34b3df00640000000003017fff440a3ad5fa72ec1f1efa615b5892f9a72a09c400000000034bf74c2c0479c1017bbdd310cec65cc540ef13430bb80000000003aa067f08fef60420d050a92e7800e588748b7d6709c400000000029c087eb773291e50cf6c6a90ef0f4500e349b90301f40000000000e31c372a7af875b3b5e0f3713b17ef51556da6670bb8000000000a0200000101000201020103000201040105000200060107000301080109010a00020000010b0002000c010d0002010e010f000300100111001200020013001401", + "nonce": "0x6701", + "to": "0xd9c72e940345228b945fabe3b651fa6d39125966", + "transactionIndex": "0x5d", + "value": "0x0", + "v": "0x1", + "r": "0x297c30a45a316e2596a1072a9074f7e3c5c85024c3853755e4968b4187916101", + "s": "0x7f50abdab12b12c1a8e2755f8eae8ca69235f027950551f9f228b7631e73736d", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x1970b3a", + "maxPriorityFeePerGas": "0xfb70d", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x1b673809d71cb1b56237faff185f544a2407e93a", + "gas": "0x1befa", + "gasPrice": "0x64c56f", + "hash": "0x0d1e18c6acf0e048e65ba9d739e699552052d41359283deb1c788d8082698012", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000e31a32ef0f1b4d11394c94458a96d2fbca88dbbef05e2fb363e832445a24af250000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x19", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x5e", + "value": "0x0", + "v": "0x0", + "r": "0x69b4e6196b24104be19f8c8e5a2373c0a088f367c46b95018410d508d23971c0", + "s": "0x1c4f9d65c333e059b90fc594d60070b23c630d7c1f4db31b37d752138aa5b8c1", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xba81e6", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x8f9280b467378d89df6c762af49472718ac5d2c6", + "gas": "0x1befa", + "gasPrice": "0x64c56f", + "hash": "0x1ebabe21b2cf9177ed411709b9a9aeeba5f4931e37a3c743e58764cd551cddce", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000e31a32ef0f1b4d11394c94458a96d2fbca88dbbef05e2fb363e832445a24af250000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x200", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x5f", + "value": "0x0", + "v": "0x1", + "r": "0xfda4d2888fbff5ad1e2864f8c9250f9eb960f8744a116e038ccb77a473f87174", + "s": "0x2ae8f220c337c893a821d4aa045fbd4ebb366a0f944231deb003fd52793a59dd", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xba81e6", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x05c04367a0550ee2563d87afb95c6567d1c53c1f", + "gas": "0x19b62", + "gasPrice": "0x61bdb9", + "hash": "0xbc00787cbeb73f753727929a589d63439e84cd4885cc517f25306b81883167c6", + "input": "0xa9059cbb000000000000000000000000fbee946a9458323e637a8f66bc0526971d8de53e00000000000000000000000000000000000000000000000005859b64f4e77000", + "nonce": "0x31", + "to": "0x6df7e4c782a19cbfd3c6d9020b4ce5eb5272fa6b", + "transactionIndex": "0x60", + "value": "0x0", + "v": "0x0", + "r": "0x505f2b204d79884ef5c8d23180e4a3e840265bf5aec688be95ece814ca7def39", + "s": "0x414960ec61bb0fe6ef1731eb49224bd1c2b702afca266f86e4c19ea357b7db04", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x63b3be", + "maxPriorityFeePerGas": "0xc3a8a", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x9c5f9ea184cc9c7f7db4a83a525c2c6e8d7c0fe0", + "gas": "0x3d090", + "gasPrice": "0x5f201f", + "hash": "0x3a5a1e136c9579288ccbd1e5cd37ba22cf3a018b0e642fc4b39260ec3ae82746", + "input": "0xb6f9de95000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000009c5f9ea184cc9c7f7db4a83a525c2c6e8d7c0fe00000000000000000000000000000000000000000000000000000000068f27bb300000000000000000000000000000000000000000000000000000000000000020000000000000000000000004200000000000000000000000000000000000006000000000000000000000000cde172dc5ffc46d228838446c57c1227e0b82049", + "nonce": "0x9", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0x61", + "value": "0x1", + "v": "0x0", + "r": "0x38d1901648b5204f8b0d4c4730f0a6b4865083bfad4ba931120e05692580cb0b", + "s": "0x1826b6c6f4972d47bace5a12a9b6bb685224d5a52c503c2068563a09466bca28", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x602160", + "maxPriorityFeePerGas": "0x99cf0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbd9206599747812d823dd040e4a68924cf882747", + "gas": "0x2dc6c0", + "gasPrice": "0x568acc", + "hash": "0x0e045ca16cd10d9bd3ed75aabf72fa4da4db440097220d428c0376bbe8892c67", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c6121584796d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea3769100af5b427e7fa45760656256448353a0437f48a316a04c6067a271a7b0", + "nonce": "0x3ce3f6", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0x62", + "value": "0x0", + "v": "0x0", + "r": "0xedaa21c1d0848e66efaab88e21ace732896ede60ec54ca5bb7fcaae9b923b4c", + "s": "0x63f8ad0db296eec07f45e81bd83b227920912ee7a67cc5ec478e4f10bc3165a7", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0x1079d", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7e69385fce115cdebcf8b960e39132e48a10d655", + "gas": "0x7a1200", + "gasPrice": "0x558361", + "hash": "0x35595d9a32db95739d2d4fe0a4baa6303c611b91ed06d8d6aec2c5f9a294814b", + "input": "0x00000000000068f29e131c54bf84166c3dd1d53568e87b014ebe7dd4d923e49d65c17779dee50815be26667f76b210e436ea19270586c42e77718ac7ea922cfe67a26d672c6ad772e2395d9dc92d5f529f8b32719c44248994670a7bb47372222768f1a76324064177566e0a023bd17e7a7d3c27b068978f8850ca7ca67ea862cb271000000000068da3f098fae427a9aa3647f3e81798c61897f3bf67d100a270c00198b1771a4cffdc0000000002df5834359cc81063910a9c78b11e686b99105d6601f40000000002037ac9012eca27bf284ad0108b32257a0c56362f006400000000036b0f53cbd9272d8117e9535fe25371dedf39a1be00640000000003678f431da2abb9b5726bbf5ccdbaeebb60da98130af00000000000b7f51d070d4e05dbbc3a3697aef5405e60e013f60bb80000000002529d2863a1521d0b57db028168fde2e97120017c0bb800000000029ea7711c82f6ede3f6da5fcf6d49b0fc2a2dc7b527100000000001ef6f90acda6e8102093f3f4e28d952b0276e4abb1f40000000000403000001010002010201030104000301050006000701020108000901", + "nonce": "0x2e155", + "to": "0xd9c72e940345228b945fabe3b651fa6d39125966", + "transactionIndex": "0x63", + "value": "0x0", + "v": "0x1", + "r": "0x8b125f7352a743c6978d444ed518e20f784b68d90046703b5036e425d30323", + "s": "0xe0c32e79f953f7cc912d093faecdd1a4ffe15d7d098b6c693ecef5f4d9e6eef", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x187545f", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x381b7d64303a2a5251ac12ee147ffdb337da5969", + "gas": "0x7a120", + "gasPrice": "0x1c8d9c7", + "hash": "0x8674c357a97cca4271e7abf6d5901c13524aa40e035921e54da0a46ec387bade", + "input": "0x49c36c070000000000000000000000005e3791f68ebceac82788f3becab154c15141a2f4000000000000000000000000000000000000000000000038203bc283a5a760ad0000000000000000000000000000000000000000000008ed1ceb596a968000000000000000000000000000000000000000000000000008ec3e98ec72e18000000000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0xaac6b", + "to": "0xc758d5718147c8c5bc440098d623cf8d96b95b83", + "transactionIndex": "0x64", + "value": "0x0", + "v": "0x1", + "r": "0x7d994b99a4e3889d34d210ff520098c179d45d246f61e737780963a909dc45b0", + "s": "0x1bca3cb55ccc346dae173a12a02b1f11ff9a0d3278cc6165bd68adc12141cdc5", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x1e014c5", + "maxPriorityFeePerGas": "0x1735698", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7118fc48f5fba15615e3eb5a59114ebf6cae7b69", + "gas": "0x7a120", + "gasPrice": "0x1193e03", + "hash": "0x4052a7539377b462b0792e396ce4c8bf1068d0bc5c5340503a0da7184141f4b3", + "input": "0x49c36c070000000000000000000000006ee714d6d8df7662bca805f58cc1d5a8886d78eb000000000000000000000000000000000000000000000021c47959bbfed1a72e0000000000000000000000000000000000000000023715182c2943c00000000000000000000000000000000000000000000000000236b495f0216d40000000000000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0xaa42e", + "to": "0xc758d5718147c8c5bc440098d623cf8d96b95b83", + "transactionIndex": "0x65", + "value": "0x0", + "v": "0x1", + "r": "0x8290e2c2203a5fa02eff61e917ae608ce0ced0c2ba70063a3d2ea362ec936dff", + "s": "0x632fc03e4d625a2a42054247c4628237cffa353162a657e1c2a71aaae0e4746f", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x1307901", + "maxPriorityFeePerGas": "0xc3bad4", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x4867a5838681dd99344bd25ebc9b049074b6d4ef", + "gas": "0x193c9", + "gasPrice": "0xf5bacf", + "hash": "0xc4f682d7c3055fddb321c5d8011ec5efa5b6cca1f7cd77cf2b48b965140891e1", + "input": "0x76b707b7", + "nonce": "0x14", + "to": "0xadb56cfd70b6dfc3149f2e75cf4a8f4bc6ca5756", + "transactionIndex": "0x66", + "value": "0x0", + "v": "0x0", + "r": "0xaee0305b8f702defc984cbb3898ca3841a15c152e339a9ae1b86a14d1c64ae30", + "s": "0x5f8c146ec2033b9b368ec5f813ea80bc0edea3620aba82886e5f436ef8a893c1", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x12b52b5", + "maxPriorityFeePerGas": "0xa037a0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7dd0bb037b45f9c4677faa19e70d372fe6538858", + "gas": "0x512b3", + "gasPrice": "0xcd8286", + "hash": "0x48662532e28e5d20df34472649a63f6d214044b8b32ec8b6654e42a57eb950f2", + "input": "0x87201b4100000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000001160000000000000000000000000000000000000000000000000000000000000118000000000000000000000000000000000000000000000000000000000000013200000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000007dd0bb037b45f9c4677faa19e70d372fe653885800000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000b8000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000560000000000000000000000000c010e4a4725201651b1e168d9fcfe9eb38405ae500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f275a70000000000000000000000000000000000000000000000000000000068f2ca0700000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000303bb4d656625cce0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000b867782be7fbcf24b37e33682009946468b5fc30000000000000000000000000000000000000000000000000000000000000015e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004bb09a4c02c000000000000000000000000000000000000000000000000000004bb09a4c02c00000000000000000000000000c010e4a4725201651b1e168d9fcfe9eb38405ae500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c3b9278e40000000000000000000000000000000000000000000000000000000c3b9278e4000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000c327ea7989b7ffc475f1451ec882c15fc348ec5f1d9756f93054929c3992afdaa29f9f44504c6032211a9c6c6d1655169d062007081499c6f7d1c48d8e1daab6550000056ab20b2c90f9eece8ee2a5493e4b431ab015f89881257409d5250a055d81b8cd45341f6ccc83e697ebd62805fd5e3b9ef3a77f75d8a0cf91e3fcc167c0e121b5f2026e841f6ba9499019738e6d590ab714692a64348ef4de025d7f48d7fb0d485ea3ea08cf177a7c43a5eb17edb4c0a0f9b77f46eeb450c7962b184b1b737c6f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000580000000000000000000000000ea0000417c01f868b4bbf84bc51acd99913a332f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f26d7900000000000000000000000000000000000000000000000000000000692634f000000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000b72ec6920bff5e590000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000b867782be7fbcf24b37e33682009946468b5fc3000000000000000000000000000000000000000000000000000000000000016120000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004bb09a4c02c000000000000000000000000000000000000000000000000000004bb09a4c02c00000000000000000000000000ea0000417c01f868b4bbf84bc51acd99913a332f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c3b9278e40000000000000000000000000000000000000000000000000000000c3b9278e4000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000e3837d0385fea58f80706a1288c34405b5b985b78ba59d864a3cf14f39710f10d9fd8ea45fab11097249037da48c26d6b22ca94c27aca2a3642cfbb564f7301e690000004d2a12ab745d07749b9a595d93bee77e64e06d7c74bc56bcf77177088c49daff315aaab2e1ae579ff42b4a38eac1e867753bb1c1417ff923690f31664f85889554204511dba5f4888d5d1a6e493427143851ef36800d86afffe08f7c1f0395487252ee79b3ea88b0b1ce3b30af68d3353d213b51c3650d23c081f70d32b84ed5d61780715fe638c2952e052598a197975682ec7f1f56a433f2309cca5ecdd9460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000008965eae610d57637421a32319d01de9a36fea47100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2762e00000000000000000000000000000000000000000000000000000000691a032e00000000000000000000000000000000000000000000000000000000000000003d958fe2000000000000000000000000000000000000000011fe363d40ff00010000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000b867782be7fbcf24b37e33682009946468b5fc3000000000000000000000000000000000000000000000000000000000000007de0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b68921c250000000000000000000000000000000000000000000000000000004b68921c250000000000000000000000000008965eae610d57637421a32319d01de9a36fea47100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c2fee3d700000000000000000000000000000000000000000000000000000000c2fee3d70000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000000000000000004040337a088d65c159fd69140648eb3c097ac3a76c2b6d5d27f43cfe8c55cff0a359f8257743e822071189371ded47930f179638c2167260361dac572aec30b66f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000003d958fe2", + "nonce": "0x168", + "to": "0x0000000000000068f116a894984e2db1123eb395", + "transactionIndex": "0x67", + "value": "0xe51437e71e000", + "v": "0x0", + "r": "0xde224897155cdebe912368431cffe004ec17d44965a6d05a13f4e0a0644c6743", + "s": "0x475b4573ce6edf576167553781ff8ef30d5bf06638d96e1621befcdf6de8a23c", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x1d5501f", + "maxPriorityFeePerGas": "0x77ff57", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xfb438f6e125b98b7828a6af6525907e8d857de7e", + "gas": "0xba860", + "gasPrice": "0x7a118c", + "hash": "0x8ae26c50b30bf8a3d8613b15504ff245bb68c4299d750d49f164857da7f2d26d", + "input": "0x191150350000000000000000000000005e3791f68ebceac82788f3becab154c15141a2f4000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000007c1f9a165d268ad4710000000000000000000000000000000000000000000008eab3de2a42ae9d8e450000000000000000000000000000000000000000000008eadff70365fa2972d5", + "nonce": "0x7622f", + "to": "0x3a32d2987b86a9c5552921289b8d4470075d360f", + "transactionIndex": "0x68", + "value": "0x0", + "v": "0x0", + "r": "0xf99836f177f9aac8b8bd05da46dec8a3bcc16677142c2f8e22cb0f07119b48d3", + "s": "0x764d68219ad3463f5cbabc7523c78a5b547e42a72c43003f0398a8ba1e035971", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x7a118c", + "maxPriorityFeePerGas": "0x7a118c", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5fc40ec107e015df4c1c3fc3ef1f4e0b6f75e680", + "gas": "0x61a80", + "gasPrice": "0x7a118c", + "hash": "0x4c005eed07c115f0f9abe3e8a2eb1c87b27ea33aedce464a679b84e61144b77c", + "input": "0x191150350000000000000000000000006ee714d6d8df7662bca805f58cc1d5a8886d78eb00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000257abbb8fd915685550000000000000000000000000000000000000000023695ad51bded65fbe49da7000000000000000000000000000000000000000002369e744c44835e70451bd6", + "nonce": "0x6b73d", + "to": "0x3a32d2987b86a9c5552921289b8d4470075d360f", + "transactionIndex": "0x69", + "value": "0x0", + "v": "0x1", + "r": "0x2f39119437cad1912b4b7bac62fb3f7517b0820d7b3f7aa216ff828f6de27aec", + "s": "0x4611246e7c8c6d23da9ce427020a2bad4c1c7938996bb6b75f23de2e174a58fc", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x7a118c", + "maxPriorityFeePerGas": "0x7a118c", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x64544c72056cbec14a45604a6ecc25580174c731", + "gas": "0x5208", + "gasPrice": "0x66f064", + "hash": "0xf7c58b44c0a9348cdb9c9956f8afc1f6accc7302722546840242d42285c0c061", + "input": "0x", + "nonce": "0x1", + "to": "0xe7143632e91c4dcab4785dfb86c719f4b9989a53", + "transactionIndex": "0x6a", + "value": "0x265a51f10ab", + "v": "0x0", + "r": "0xbbf49ca20e9df6b23b3e6f68201c2aa28d4fa4150ea42bd25aa357a6139acae4", + "s": "0x646a086471ab703091167f067e69b644e05fce81e44977c2c808a65b55861e2e", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x685f36", + "maxPriorityFeePerGas": "0x116d35", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x643bf086966b35902037490d7d600ed8ac93b453", + "gas": "0x20ccd", + "gasPrice": "0x663308", + "hash": "0x583e8c45fdb1905fe2adc79faa7dd454f6ff6e348f0d2eda2e736f587ac8597d", + "input": "0x00000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001051dad83d8000000000000000000000000000327472291e963de16f74525bb8fe285d372f1da7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000001cf9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276f700000000000000000000000000000000000000000000000000000000691a03f700000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000b452a55b9b27ac8a0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000002a33578480000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000000000000000006334e1c3fd1d9369c88491a348ce5b18557645b2f5571b8e9b6bed840e55aa167b3d55420c041cb4b394aa887a39bbc5748536431fe37b0b0fd2057a6edf758956000001a8a72f00ec4e19352c52c0f9f6ceecd3eb58efb6f9464ccde1b54c9d13d75ce100000000000000000000000000000000000000000000000000000000003d958fe2", + "nonce": "0x2967", + "to": "0x0000000000000068f116a894984e2db1123eb395", + "transactionIndex": "0x6b", + "value": "0x107c0e2fc20000", + "v": "0x0", + "r": "0xe181c6a8f339c5ba4ce6aa57acc8ee21f485908812621546d0da174eab3915f", + "s": "0x6d399830a065b0dcabbe188af34e14eba0f002d07cea6692706247bff5dd75c1", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x8b2132", + "maxPriorityFeePerGas": "0x10afd9", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x093c4111b8053d47bb73fc35f0dc96a0c7c9e554", + "gas": "0x1e4ea", + "gasPrice": "0x65d770", + "hash": "0x2df877c5a2f28673759add5bed4d2477b30a35007ae368372f2e7c58b9806acd", + "input": "0x4a959c43000000000000000000000000a5b4e821444791f212860bfdff65bd73bf07720300000000000000000000000000000000000000000000000000009574d9a1bb00000000000000000000000000000000000000000000000046791fc84e07d000000000000000000000000000000000000000000000000000000000000068f2775a000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004147c381e354c1493fcba79aa16ae9e029e009acdc1ebcf810579c1c31e53d43c27951d5027d08cbea507f47a32a19983d3f9486d6c2bf87c8c8c941767994345c1c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x6", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0x6c", + "value": "0x9574d9a1bb00", + "v": "0x422e", + "r": "0x7dfadeceda7d3f71cc41d19bc994e0141fb406766aeb75c3f1b06868a9bafbad", + "s": "0x9f40a70f4f3fffb305ee14011b59ae23cc75491d86aab752c4730fc4f3e8ac1", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x6e1816e9450dccc71bc73b51948bc654849ed88a", + "gas": "0x5208", + "gasPrice": "0x65696d", + "hash": "0x749eea55b332c3444e24dc6591c84f86ebb6663c387201bdfad6198eb97484d7", + "input": "0x", + "nonce": "0x4", + "to": "0xb217ec769783232e177301b2a2fc957002c58a5f", + "transactionIndex": "0x6d", + "value": "0x741a222dd658", + "v": "0x422d", + "r": "0xd4bdaf4136e79d0c09d66caa0e9fd48738368072c0704380f4efab101cd42bb5", + "s": "0x239c9c5d8c4309ab55bb37eb13774b6c70de9eb6f7c6faf4f6ba5c56b87dfe6e", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x0d88ab85de9ad6416c13d2f6ae564b4944c510fb", + "gas": "0x3777d", + "gasPrice": "0x64c56f", + "hash": "0xa661803c7b444f5243b2ed8424cdab354b6066f28ce7a8c6afe6c2b3b828405f", + "input": "0xe7acab24000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000007400000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000d88ab85de9ad6416c13d2f6ae564b4944c510fb00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000d430de36f41a1773a320494521a2f20cc102781d000000000000000000000000000056f7000000ece9003ca63978907a00ffd1000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000068f26bcf0000000000000000000000000000000000000000000000000000000068f279df00000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000583ceec1d36b6f300000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000390479de910127b0632ae0c307fb13000000000000000000000000000000000000000000000000000000000000152c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091a201bea200000000000000000000000000000000000000000000000000000091a201bea2000000000000000000000000000d430de36f41a1773a320494521a2f20cc102781d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001977420dc00000000000000000000000000000000000000000000000000000001977420dc0000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000befe6f6720000000000000000000000000000000000000000000000000000000befe6f67200000000000000000000000000069ec82a7682168322316408d772164ba5f8e1fda000000000000000000000000000000000000000000000000000000000000008343e9a77011ea953455392ddd87f8bc19f8c155c3af28491c8c80aec5a93c09dfac17d7ea8aef46612eed8d120f826beaa74efdf1c001a63e65aa76d012ea9818000001320996c2f89679d97ee9411e5a8137d7f1f3e9c288c35ce55a1dc33f92029173abad8ed307bef9b54ed533b64fb17081f4dd2692ea225b8bbe12abd72b694640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a6000d88ab85de9ad6416c13d2f6ae564b4944c510fb0000000068f2782a970b8e9ed40d2c09a446d42257fa675d2c6d6abad5c029a60fe6c1b3afc84c05a4b22b998c73438979f86d4e376cdb961a8a3ebf12741934defbaa5691b33036070000000000000000000000000000000000000000000000000000000000000000721c0078c2328597ca70f5451fff5a7b38d4e9471e0049783f008a0085193e00003d00cd54003c71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003d958fe2", + "nonce": "0x28a", + "to": "0x0000000000000068f116a894984e2db1123eb395", + "transactionIndex": "0x6e", + "value": "0x9f295cd5f0000", + "v": "0x1", + "r": "0x169ed8601c44ed7d5e45a831851a0facc019be7a08c8bf2c66138bce724757a2", + "s": "0x1c3469d3c19faa385f2bb171900262f753ecc2d3e86531928a22ba80425eaed3", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbd5bf0", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x07ddca504e1d5d47ee7259db4f226a604a12895f", + "gas": "0x1befa", + "gasPrice": "0x64c56f", + "hash": "0x1180189f617efcd5257736e7595d2f84441e596780b55afecdf60e66b607452b", + "input": "0x01b7037c000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000e31a32ef0f1b4d11394c94458a96d2fbca88dbbef05e2fb363e832445a24af250000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "nonce": "0x1fc", + "to": "0xc9c98965297bc527861c898329ee280632b76e18", + "transactionIndex": "0x6f", + "value": "0x0", + "v": "0x0", + "r": "0xf270bb28df832c87f64a9cbfb81641a7ced3ca8a5e4a6e22b920b7f3187ac971", + "s": "0x608510d9aaa9064abb5c21a09c63214ec0eb36ca4b166d67bf95ac225ab52ca4", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xba81e6", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbd9206599747812d823dd040e4a68924cf882747", + "gas": "0x2dc6c0", + "gasPrice": "0x56df93", + "hash": "0x9d67322ecec9f75d53d31693057687a734ec73039d453f88d4f91ea7eff1f3e7", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c6121584796d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea3769100af5b427e7fa45760656256448353a0437f48a316a04c6067a271a7b0", + "nonce": "0x3ce3f7", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0x70", + "value": "0x0", + "v": "0x0", + "r": "0xb88f45ba4f7a97e6baac7db35787cb20785431bb2e0b47c9ffa29f4f419aa4e4", + "s": "0x7e0834e64887269f2dba1725abd24ef669453b0ac14020c611768c269df6a6ed", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0x15c64", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7fbea6a9168bef51fdd51a5cc229ed0b0376f20f", + "gas": "0x989680", + "gasPrice": "0x558593", + "hash": "0x492954048951c61bbd19d537ef124e8831d2b77fb5e78f3c76c7942392e96bcb", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x861be", + "to": "0xdc1cc8dd7803b3402dc6b9ea5ac101c9f792584f", + "transactionIndex": "0x71", + "value": "0x0", + "v": "0x0", + "r": "0x59d08a8fef8dd570fbd21c98890552ab257984d324b3b1f7fe72d84a9221ccaa", + "s": "0x2ad14d15073fefdeb642c3019220b75048ee265514c64e10c33e8723ac73f53e", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcad53e", + "maxPriorityFeePerGas": "0x264", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x8251e7b4de49673471bc7af7f8230b09c95e0913", + "gas": "0x2bad3", + "gasPrice": "0x5583f7", + "hash": "0x5f714cd7e0adb7e54525991c25f3b8f899551b57a3f2c46531dab2d78e8ca068", + "input": "0x00000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001058285c6db400000000000000000000000000b301ac9c8d69c36c1d1b383e5bc297ecc899e35d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000062bc000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276f600000000000000000000000000000000000000000000000000000000694190f600000000000000000000000000000000000000000000000000000000000000003d958fe2000000000000000000000000000000000000000079620c6d2c6b0c520000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000002a43a3d7bc000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000040718862e5732d994d5dc5e229a43df234686d703ad1665c5f22c586ffe38e0f82aec7258ef5d5445c37bfa25a1feb6ef5b48e242b2274cb5c90e4cc2e2893de163d958fe2", + "nonce": "0x134", + "to": "0x0000000000000068f116a894984e2db1123eb395", + "transactionIndex": "0x72", + "value": "0x10826c00457000", + "v": "0x1", + "r": "0x17bec3eb4a8e5741e3308adc7cbf52ce65dd3cb4085830c1fae1a46fc3fd4b4e", + "s": "0xf292902655517204c8bff572872aee30bbecabca77147b187601249cc553869", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6ccf78", + "maxPriorityFeePerGas": "0xc8", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x1e16ca6ae1abe82e1693c2328d6b0ebe5c5d1b12", + "gas": "0x927c0", + "gasPrice": "0x558361", + "hash": "0xd3c08a25370a1305aeca3789819a8f8a9db3f70ccb345fc6bf3529a1897cf71e", + "input": "0xa00597a00000000000000000000000000000000000000000000000097897d2ae46b475400000000000000000000000000000000000000000000008ec798dc39189884dd30000000000000000000000001f16e03c1a5908818f47f6ee7bb16690b40d067100000000000000000000000000000000000000000000000000000000000000010000000000000000000000005e3791f68ebceac82788f3becab154c15141a2f40000000000000000000000000000000000000000000000000000000068f277b706", + "nonce": "0xfcb6", + "to": "0x802b65b5d9016621e66003aed0b16615093f328b", + "transactionIndex": "0x73", + "value": "0x0", + "v": "0x0", + "r": "0xf7b95977abdbf55fbf561e2c266c923a580cc955d21cad6597db8e81c4262b6f", + "s": "0x40c0dbd7e09b953ab943b5e89f04f201fd1d30e6281b7227c26d95f39cce92b2", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6fb30e", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x80327732f6a96847e99c133fac4f4b3a6881c96e", + "gas": "0x7a1200", + "gasPrice": "0x558361", + "hash": "0x41559ef8d29f2292884a0eebcf2c6db79588f465f1be19501862dcb74e99d754", + "input": "0x00000000000068f29e131bcbc3d2fa170cdfaf29a21a5e2a8d491ae1500e40cbe9d7484ba2d3dba0d35311640c0bf4117cd4bdadfa532aab1e003b2613ef38f057a686150950a8de510b636ec1730633f5b3ad1625bdc6717a80987241b6bbdcb5842765a1b2837669045f0a023bd17e7a7d3c27b068978f8850ca7ca67ea862cb271000000000068da3f098fae427a9aa3647f3e81798c61897f3bf67d100a270c00198b1771a4cffdc0000000002df5834359cc81063910a9c78b11e686b99105d6601f40000000002037ac9012eca27bf284ad0108b32257a0c56362f006400000000036b0f53cbd9272d8117e9535fe25371dedf39a1be00640000000003678f431da2abb9b5726bbf5ccdbaeebb60da98130af00000000000b7f51d070d4e05dbbc3a3697aef5405e60e013f60bb80000000002529d2863a1521d0b57db028168fde2e97120017c0bb800000000029ea7711c82f6ede3f6da5fcf6d49b0fc2a2dc7b527100000000001ef6f90acda6e8102093f3f4e28d952b0276e4abb1f40000000000403000001010002010201030104000301050006000701020108000901", + "nonce": "0x2e146", + "to": "0xd9c72e940345228b945fabe3b651fa6d39125966", + "transactionIndex": "0x74", + "value": "0x0", + "v": "0x1", + "r": "0x69e3622cd20b0c2dd92c50f9bcef32aa67002ed6081f376e764124fbe4a01ae7", + "s": "0x13e2abcee9b709a1a920033ce1deb0450644cb26004182ed52f9d178a4b2be03", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x186cd05", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x87d8b11a04b22a740477efb93b9471c0c5e8b1c9", + "gas": "0x3217e6", + "gasPrice": "0x558339", + "hash": "0xe8cc014111ff1e3ca49377129d890dba0aa6f0910f0731299263d62858b2b1eb", + "input": "0xf49930180000000000000000000000000000000000000000000000000e92596fd735b510", + "nonce": "0x4f6c7", + "to": "0x8c552d715c7c064ac2ac2a97c86a5671ebe2fae1", + "transactionIndex": "0x75", + "value": "0x0", + "v": "0x0", + "r": "0xcd777386784fef4992b27ec8786e9e07956c35f00e31275df38533aae3aecbdc", + "s": "0x688e8da1fa6bed435cac238e8cd8b91e8c62fe75133b383bd83199839a96ea38", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x7004ea", + "maxPriorityFeePerGas": "0xa", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x49321256e60aa605fdd5abb85e96308ad0b19c5f", + "gas": "0x111b4", + "gasPrice": "0x70e2ff", + "hash": "0x6b7d687f82b017d9b66660f366c4b93fcd6ae8963954e0afe4f9102ebfd511ab", + "input": "0x095ea7b3000000000000000000000000111111125421ca6dc452d289314280a0f8842a650000000000000000000000000000000000000000000000002153b1d296eb54fb", + "nonce": "0xf0", + "to": "0x940181a94a35a4569e4529a3cdfb74e38fd98631", + "transactionIndex": "0x76", + "value": "0x0", + "v": "0x1", + "r": "0xcd6144ccb10e8087054becd2e86c359b8355f4121db9905940a34dbe88dde9d", + "s": "0x10ba7de9bec85c81e2b02091d3643eaca8d9d7a821acac113ee548bafde8ae36", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x94fca0", + "maxPriorityFeePerGas": "0x1b5fd0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x0646c01cd91a9e9c3ff8de957e8988fa94041088", + "gas": "0x2e95d", + "gasPrice": "0x6dd0e1", + "hash": "0x7b387d5460ee2dbe013094b2614a061d96d0b77d7135b4d614a229008aab405a", + "input": "0x0d03498581ff718922c3f8e6a244956af099b2652b2b008e16d46cb2da01cdd49601ec73d7b0344969ae330027100000c80000000000000000000000000000000000000000010000000000004ea23b555c435122e02898ece3bc62df8c1efdb29a9e914244d3000000000000005191ea9fe2260000", + "nonce": "0x462c", + "to": "0xa746257ea3428323907fd5e75628482b4bb80562", + "transactionIndex": "0x77", + "value": "0x0", + "v": "0x1", + "r": "0xb6bcbf80c5f9f64c46c2a08698e6b9c9c4127766f7e679b33e8160a79e3d6815", + "s": "0xda57295f779de2de8a4d6491f9129ac6eb86fa68223079ca60e5ffa23d02716", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x98bd6f", + "maxPriorityFeePerGas": "0x184db2", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x43370368dccceb147c89d1d78f14589225220290", + "gas": "0x43c40", + "gasPrice": "0x6c668f", + "hash": "0x7e230a908e055748645dbca8d5229ee33a0455880111d99c6997cade96bfad2d", + "input": "0x765e827f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000043370368dccceb147c89d1d78f145892252202900000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000027b6a8febc8b98dfcbbf5da571956133c617bf490000845adb2c711129d4f3966735ed98a9f09fc4ce57fb2e0000000000000001000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000001fef000000000000000000000000000008514000000000000000000000000000000000000000000000000000000000000cea1000000000000000000000000001bb1d800000000000000000000000000d90fc4000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4e9ae5c53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000038a4e6db830921caf68923c899407b232b1b46212700000000000000000000000000000000000000000000000000000000000000007fa8dbb30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000082777777777777aec03fd955926dbf81597e66834c00000000000000000000000000008a8e0000000000000000000000000000000101000068f2795a0000000000006ee3bb10e7f93f577e37cfbd4d93cb652571f8fc5e01af56bfdcd9d108673f150556282fb2ba9925d5d641fdde7bc968dc20ccffda52434f140888aa83106a0f1c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000415eb4a2c335428e65a58221038d5dd39ce52a8111f0c20567884a61cce9b0131e68d74eeb8c87124578600a869cdc1b077d0681af36056871d5618ee3b40100ac1c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x19695", + "to": "0x0000000071727de22e5e9d8baf0edac6f37da032", + "transactionIndex": "0x78", + "value": "0x0", + "v": "0x1", + "r": "0x715a7ac6ace47e6480f4e32e8750a04f9aa8815ce8d1d5f8eee336f5f8ab9902", + "s": "0x75c5889302f1a67253019fff9e9903ec9d43f7698c202e31eb57ec1d5d6fcbf2", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xb1030f", + "maxPriorityFeePerGas": "0x16e360", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xc5b646466f813d5956400dd7d75bbaee00de140d", + "gas": "0x5208", + "gasPrice": "0x66f064", + "hash": "0xf918c77fd2bd78af873aceeb26c943fbaa85df56a3056d6978d79b5dc170b12a", + "input": "0x", + "nonce": "0x1", + "to": "0xe7143632e91c4dcab4785dfb86c719f4b9989a53", + "transactionIndex": "0x79", + "value": "0x2749d0495fe", + "v": "0x0", + "r": "0xbaf655f1db637cf252a6746be96752495786eee55cfbb09f02770a1581ec0f0", + "s": "0x59a3bc2dc905076c675251ceea234481884f7730a5789d6158a13f9ff865437f", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x685f36", + "maxPriorityFeePerGas": "0x116d35", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x876955d500ee8dbc80f1ed8c8e4102501d2ca7a6", + "gas": "0x2b438", + "gasPrice": "0x664f18", + "hash": "0x696edbcf65452694048209697f6f10837dbe7b53e25f441bff268bce2a921a83", + "input": "0x4a959c43000000000000000000000000cf3095a1f60b74c20e3d7a4980917ee6cc5ba35d00000000000000000000000000000000000000000000000000008eeff7757d0000000000000000000000000000000000000000000000003635c9adc5dea000000000000000000000000000000000000000000000000000000000000068f27755000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041e12b9b613248f52bae79e8bb1c98a77c0401b5327e1e5e3aef97849973bf63a35c6011f854c24955a1cb36ac4a9ec9ad5a4ef1634ad0b9ddf7bbab0236d7c3e71c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0x7a", + "value": "0x8eeff7757d00", + "v": "0x422d", + "r": "0x9eb2bd731883441d492c878b3400689814ec2cec6ed2524ba24afd6157ee5fe3", + "s": "0x32271a77cff54842652abc0e175cd0722266d995e813d9a3d6772cd2040711c9", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x143ad85e85f3637a51ddc67ea374d30deb2c69f2", + "gas": "0x1e4ea", + "gasPrice": "0x65d770", + "hash": "0x6651a22916117649d10b1e9c87bfd7a674e0f5ddbac541618edb7cf93ce2903a", + "input": "0x4a959c430000000000000000000000001f4f16a0d30d757f97131876ebf0fa4e03c7c2ba00000000000000000000000000000000000000000000000000008dbae840e300000000000000000000000000000000000000000000000046791fc84e07d000000000000000000000000000000000000000000000000000000000000068f2775a000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041abfa200b5d22bcc813fe5b056ca2b359656d4f5dea62e488202950665ffda5c61014565a7147f910428f58810669036e70c47f322f0d5237a226b29f6a4eee751c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x5", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0x7b", + "value": "0x8dbae840e300", + "v": "0x422d", + "r": "0x54866a9e3f64bb1e56bcc160eeff1c250b9af4c62481f6e697df8c82cd1a6ed7", + "s": "0x21e80af235333f802a9411c90a487d46155b38f5a6adabb3e94f366758e00928", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xfa52164a68d941a646b789bdacda70ed53111937", + "gas": "0x1e4ea", + "gasPrice": "0x65696d", + "hash": "0x439a7a78019c4f3f573881af463254108a384bf4818d12990e9290096df13ac3", + "input": "0x4a959c43000000000000000000000000fcad062883092df14a8e03079d69ed1fb7c85d1b000000000000000000000000000000000000000000000000000091d5b1f9ce0000000000000000000000000000000000000000000000005150ae84a8cdf000000000000000000000000000000000000000000000000000000000000068f2775b000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000413dab557c6340afaade6edc32015f0d7b9263b57bf2ef58f1b9d7a604d4dc8146549c24e3c06ba138680d0904741f4d0a6cd147ea1921ea98053cfab8094f98911c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x8", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0x7c", + "value": "0x91d5b1f9ce00", + "v": "0x422d", + "r": "0x8111f402f94c1af67024a37ab44c2fdfe68fae32c4cc416a8d7116ab76a9a324", + "s": "0x55550300cb45ea81c85942ce9ecdbcf30f42e86d0ab142f02f57c77883985853", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x870b24c02748bf512b16f2abe75a53921c0263d0", + "gas": "0x186a0", + "gasPrice": "0x64e213", + "hash": "0xec64c55774103c289c7d7bdef95df2ada6f5033fc1c7f12de5640cdff554e1fa", + "input": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000ae5b7b2268616e645f63617264223a205b223873222c20223464225d7d2c207b2268616e645f63617264223a205b223863222c20223264225d7d2c207b2268616e645f63617264223a205b223673222c20223864225d7d2c207b2268616e645f63617264223a205b225173222c20223563225d7d2c207b2268616e645f63617264223a205b223273222c20224b68225d7d2c207b2268616e645f63617264223a205b224a63222c20224b64225d7d5d000000000000000000000000000000000000", + "nonce": "0x17966", + "to": "0x46bc7efe824f205ed1c01de7e9fe46693d8fa952", + "transactionIndex": "0x7d", + "value": "0x0", + "v": "0x422e", + "r": "0x74eacaa8b1a7743284027a2084e40013dee0baaf7cc9db24f04d7f24d2b94581", + "s": "0x1f6fb63a2057c1d8a4db44772ab8f433afec5064ba7f5a5dbb449b654901b538", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x30188cb65de879667cdfdcc2a26eb5a4ae0c0230", + "gas": "0x3d86e", + "gasPrice": "0x64c56f", + "hash": "0xf01a0d67dc3a178804147c0fe903882877498a5dbdd2add5b24c121294293c9b", + "input": "0x765e827f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000030188cb65de879667cdfdcc2a26eb5a4ae0c023000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d614edf2ecf27c4d00d052fc4fa0a313205109830000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000022e000000000000000000000000000000294b000000000000000000000000000000000000000000000000000000000000c45600000000000000000000000000119fb800000000000000000000000000d9d4ea00000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000005800000000000017c61b5bee81050ec8efc9c6fecd8b4e464e000000000000000000000000a0ed77009dd49eed6667b5051284b0536532208a00000000000000000000000000000000000000000000000016f8cb70e096200100000000000000000000000000000000000000000000000000000000000000000000000000000084b61d27f6000000000000000000000000a0ed77009dd49eed6667b5051284b0536532208a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000812cc0c7981d846b9f2a16276556f6e8cb52bfb63300000000000000000000000000006f9900000000000000000000000000000000000000000000000068f2795bff7aa67b7086ba0ceba1898e3b7826776c45b99d325b5a87e1b84cfe2aa30bf830065d7fcaaaedbe6259bc75a6ec534a6142c79755072fb25167b982538ad50f1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043ff009f84b9bdaba9007450f6fe9b9ce35588502776bab4ab09c9c0baa11b3faeb78e53886f70341d93d6420fbe28a8b534ae5797ccb7ad814fc5738bae363052ad9b1b0000000000000000000000000000000000000000000000000000000000", + "nonce": "0x3160", + "to": "0x0000000071727de22e5e9d8baf0edac6f37da032", + "transactionIndex": "0x7e", + "value": "0x0", + "v": "0x1", + "r": "0x642d7955e8d9a6acf3bbfac1c7a8e6b664c49e660fdc316cd6b849bde27de870", + "s": "0x6aeef7b3b98758c3e0843091c9fcbb67b9b806596f160e54ea1ef598181c34b", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x7bdc0d", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5b7a832e8af5aa4b9f6e2e45802b09a02b5f9d0c", + "gas": "0x63342", + "gasPrice": "0x64c56f", + "hash": "0xb5254225fb5520d0b923cd2938b691392b77f515ce18219c3c2f78f57ae00ade", + "input": "0x00000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001048d9d241c800000000000000000000000000030f7e98a22ecbb038edd5098c94f9138ca0b890000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000011ec000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276b800000000000000000000000000000000000000000000000000000000691a03b800000000000000000000000000000000000000000000000000000000000000003d958fe200000000000000000000000000000000000000000bfd91f0ad07c4290000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000002a1c0f0d98000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000401be9450a09ddd7ba7d8ab02254e55e53e0bdd1abdc5fc962a3dc5fe6dfafa87e9586443b5fe73cf999230886cac0d48b56fb0a28f020ae8b85d0c7bfb20d156c3d958fe2", + "nonce": "0x3e", + "to": "0x0000000000000068f116a894984e2db1123eb395", + "transactionIndex": "0x7f", + "value": "0x1072f5e14f6000", + "v": "0x1", + "r": "0xb7d270f075a080263bfcb4e40ddaa021cfced63cdef999984db257cc510fa920", + "s": "0x72556af5cb4ef6d6fb6670454082b6de2ce5af879dd6e54e84d9f6da46d856a5", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x856028", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x476f05ab3eeb2c3abf2ff1af09afa7b81615cd6f", + "gas": "0x456f3", + "gasPrice": "0x55ec28", + "hash": "0xa74523ed2ed414e5eabee640b14496acde3b1d1d2be1c0ddfcc287ccaab39a24", + "input": "0xb42ebb63000400000000002ad30ecb000000000000000007d8b1420ff89761c000000001", + "nonce": "0x1de3c", + "to": "0x83d55acdc72027ed339d267eebaf9a41e47490d5", + "transactionIndex": "0x80", + "value": "0x0", + "v": "0x1", + "r": "0xfa8d46169256c46ef505f376b05039609de0a598075aa75388d0ced18cc98ec0", + "s": "0x33af7a55f2467116cc1898fac561da2ce9cc74cbd50caf0f9456fe4ad41881df", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x55ec28", + "maxPriorityFeePerGas": "0x55ec28", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x6fc0ce28d7b077bd7ef13f63b4a8712b0aa759a9", + "gas": "0x3fd44", + "gasPrice": "0x55ec27", + "hash": "0x10879f1cd4846623a8de0ced30eeea923a5ab764661cb5595333c1353873998b", + "input": "0xb42ebb6300010000000000269c87240000000000000000000409032fee0a88efedcd9800", + "nonce": "0x4120f", + "to": "0x83d55acdc72027ed339d267eebaf9a41e47490d5", + "transactionIndex": "0x81", + "value": "0x0", + "v": "0x0", + "r": "0xa2f5145af85a9810e129f80ace70d4a9e51ad8d85bc1c2735ca1fdf0937dc50b", + "s": "0x67b5d8d98728e1539f0873ace2c37561f6c83f0ece55497807b6bc337f012dad", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x55ec27", + "maxPriorityFeePerGas": "0x55ec27", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbd9206599747812d823dd040e4a68924cf882747", + "gas": "0x2dc6c0", + "gasPrice": "0x55d266", + "hash": "0xa2e3baf437367003749216ba3166e9bbd0a2c4497685d422a74df7239bb55762", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c6121584796d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea3769100af5b427e7fa45760656256448353a0437f48a316a04c6067a271a7b0", + "nonce": "0x3ce3f8", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0x82", + "value": "0x0", + "v": "0x0", + "r": "0x2ca08de3351db44da01fc2a76370e09e9bf921ad8415fbb72bf2ee99b73b3ee5", + "s": "0xffd26d275a89c4dcbf4248cdf27a8fdb4f57a57f184ee02c8ac7292377a9643", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0x4f37", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa588fb7ecf4f259129a4d10a142b2144d98bcf91", + "gas": "0x989680", + "gasPrice": "0x558593", + "hash": "0x76a94b4aeff8845990e4f7c0ed248534b10e02013fa46614cbcf3315073e6896", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x86148", + "to": "0x74fc3c5fbce63b8d35a461b8fcc495c34b1fdde2", + "transactionIndex": "0x83", + "value": "0x0", + "v": "0x0", + "r": "0xde5baccc765e59e1bc95e572d1e2a9b1362f3f11e20832beb9265f72c7f1d663", + "s": "0x257e3cfb26bd2e362747fda4e5b67d535b21436732f955d5793327ee63877682", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcad53e", + "maxPriorityFeePerGas": "0x264", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xafec1815a5faa2724afab31aed7c61ebad3938c1", + "gas": "0x7a120", + "gasPrice": "0x558361", + "hash": "0xe4c92f6a8582c1d06c525d184a3a15d10ce059b29ad5ee44d013e0df113a8ccd", + "input": "0x04d719da000000000000000000000000000000000000000000000000000000008be79382000000000000000000000000000000000000000007d8ac1789805700000000000000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0x2e865", + "to": "0x8bdec610fb66cd72531239b154376d06bc1594a0", + "transactionIndex": "0x84", + "value": "0x0", + "v": "0x1", + "r": "0xce65cb1cda1b4d56e1f452acdda501f39955d2ef550b02d5ac36d2e26b952068", + "s": "0x77ab0c7214054a92d49d5cbe4e588304b0429ea5cb97a92ef4287857a53cc745", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x60a13b", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0xca8d7bcd3fe6d4239084257d51a1fe5a16254b0575f8fd107f27e75d3ff3b082", + "input": "0x", + "nonce": "0x197b53", + "to": "0x766d2a53f9bc0697bcbe4144ff214346d57b583b", + "transactionIndex": "0x85", + "value": "0x1b48eb57e000", + "v": "0x422d", + "r": "0x2b661d24e2c4e3bb4a2b5032c7eda8a5514f29e576fa97440dc925b170a33c91", + "s": "0x6bdb0f06564688f0603839c064f3994760ad16abb93e5f61df5a3421a9a709e5", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0x7991a023a86d73097886e1497a3fb6d0fd3ae8049a8f7e889f3f09cd00683d90", + "input": "0x", + "nonce": "0x197b54", + "to": "0x3364057cd1c1daa2a3e9237441af99aaff02f9cd", + "transactionIndex": "0x86", + "value": "0x1b48eb57e000", + "v": "0x422d", + "r": "0x584c1f23f95a7dedf7a80cec73711c333a50c969009dd92c34615bebdd9ee348", + "s": "0x5d07a4b3479548cd58325df6116c6b74806aeaa10a6cb52d39061ad7a627b8bd", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0xf4b6e64ec8c902a370eda92a3df639bab765f58a49f3bd3d1cfaafbdc89407e7", + "input": "0x", + "nonce": "0x197b55", + "to": "0x2ffe36f109fb4cdcb5b06f130d44b3945475fe7c", + "transactionIndex": "0x87", + "value": "0x1b48eb57e000", + "v": "0x422e", + "r": "0x3746c737e7cfe6ba91aad5f47f81e1f6f62f5ec7df6843de117c5198f4e60306", + "s": "0x182f591b8a1197d1b3bba5bc787605b8ea6838b3b5fc72a24cebd52e49e07671", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0xf411a26eaf831fb3c1e2cd947039a894a1e2bf5955ad9fb35608e1d4b1d29079", + "input": "0x", + "nonce": "0x197b56", + "to": "0xfb15bb818e5f5784b9600b04b7a0409739d9883d", + "transactionIndex": "0x88", + "value": "0x1b48eb57e000", + "v": "0x422e", + "r": "0x6917d0897bef39d955d9830ba3403bf2c9d9eb0dac6a1f928a6c6a13f363429b", + "s": "0x221e4b2778e5898f472efa03e00a19202e00bade617f9bd49bcbb8a9baa39d1d", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7926f49f56e1096ad8aa42fd82f3823c7c35e5c2", + "gas": "0x34b23", + "gasPrice": "0x790f4a", + "hash": "0xace2da6a6a64b61d38d082d34242fa5b0f0f94c41363a9d08c2c23df3346a6de", + "input": "0xfd4312be0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000064dcae45bf3986aa76185d4607e4b205ae4d7c85ed2434b6b7ec3dcbe11f8970f1d2cdd145109af9030b7df817d58e11ea3135490fd47a548b1812a98d287b0f6e95e4fd6be421f89fb728a35e8c1b8afa9a946d14585fa1af653fc9e1a28904a544a7db1c7b31e7c6f36c055bbc891a0eae5e0161805d1c8e9984dd6ed55539c8736df216148efadde3d4e13d0423794ad081673aac899a7bd38b30470c3032ba34f36a2aa448c24bec0cf4fc405bd56418bbc5083347e6067407c37b4b7d8750000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000001ed00000000000000000000000006cbb5f2000000000000000000000000080e119a000000000000000000000000001fdc840000000000000000000000000056d21b000000000000000000007be723a7cbe9", + "nonce": "0x10f869", + "to": "0xe73d8117fdbd05ad7d632a3798c6925bfcdcf8aa", + "transactionIndex": "0x89", + "value": "0x0", + "v": "0x0", + "r": "0x294f2b605e8ea13b58697507e8bff2c611ccc8428687a81c986875372650d49f", + "s": "0x3d60d850800e3d5f47905cd2cd1ae265fac959f66f7dbc736d4a2a64c169688b", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x790f4a", + "maxPriorityFeePerGas": "0x790f4a", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x46e671a5b2eccb46a8d2dc94fb1ed13ccd4f77fd", + "gas": "0xdbba0", + "gasPrice": "0x6ef8ae", + "hash": "0xf639e1700364e515633b75aa111bdf36eb2c88ac38adecd3ad9ffe23f10a4e01", + "input": "0xb930763d0000000000000000000000000000000000000000000000000f06ac2e4b41efa2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x35", + "to": "0x0bc9a56c22700e325033648be2790eb3ffc5d712", + "transactionIndex": "0x8a", + "value": "0x0", + "v": "0x422d", + "r": "0xc0660b04c95fca35f321bd1693726f730def761c46ed3dd8962ec13d73a087c7", + "s": "0x35105e127eb7d16886b48df6dc14f6bc1c1bf017c9687d81da47089b3b0c90a5", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7c1e40224bd828326019b8d3972c3a7133a12372", + "gas": "0x13cf2", + "gasPrice": "0x65d770", + "hash": "0x5543913c49f87ecc065e77a77f3721ce9f9dc52bdf452dd51a67ac2a9a8e996b", + "input": "0xd9f01d9f000000000000000000000000aaacdc2b131c5816fd3cee787b87c0b686cd2159", + "nonce": "0x0", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0x8b", + "value": "0x0", + "v": "0x422e", + "r": "0x34e795ea148bea2c6c5e40956c14f32c19ae489ff94dbf7a02a793f3f8a43d67", + "s": "0x3a4530263e509392c1691153e291e3bb9730e6c81b3c897e25b428a22f3626e5", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xb87176c2d43bb4bef1849acf1ee65d8973423e3a", + "gas": "0x2bb02", + "gasPrice": "0x64c56f", + "hash": "0xe7b83983dd457805ee73d42e97434c8677e05c0887fa6fce0fed2c0dda723369", + "input": "0x83bd37f9000000011111111111166b7fe7bd91427724b487980afc6905170f95f498070d06ac0c402e1a028f5c0001bf44de8fc9eeeed8615b0b3bc095cb0ddef35e0900000001b87176c2d43bb4bef1849acf1ee65d8973423e3a0000000003010203000901010102010027100000c800ff000000000000000000000000000000000000000000000000000000000000000000001111111111166b7fe7bd91427724b487980afc69000000000000000000000000000000000000000000000000", + "nonce": "0x6", + "to": "0x19ceead7105607cd444f5ad10dd51356436095a1", + "transactionIndex": "0x8c", + "value": "0x170f95f498", + "v": "0x1", + "r": "0x6374762b8b4f724373a5745a74c6fc93a9f0d29bcc183ca0a95c4d240adb99ed", + "s": "0x8f2c285bbbaab9a86da0c5d61f6181d8ee236700f7767d45ad673642077f92", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd4088467abaf3a7492a203f8b33f4fc2381fb763", + "gas": "0xc43a", + "gasPrice": "0x64c56f", + "hash": "0x1ff46be4f1689630bee7a8cccf5b3569e92e41aacb45aca688086d5a44c088fb", + "input": "0xa9059cbb000000000000000000000000c56035116e9cee5004558193b36d2775b6aa34220000000000000000000000000000000000000000000000000000000039ef8c61", + "nonce": "0x13", + "to": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "transactionIndex": "0x8d", + "value": "0x0", + "v": "0x0", + "r": "0x2fcc8f92c059f0b58f1fc1bfbd2d1dabb2273bbe3e76d1fdb3b46e317263e50e", + "s": "0xffe4f260749964331ae897998ac3cae0c1f01ef4f4facd4f2762b006c203cae", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xbd5bf0", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa00999bdb6aa02fac4d1c1c121d54d447038e631", + "gas": "0x21116", + "gasPrice": "0x64c56f", + "hash": "0xcaf8601811d6e28094c000cfdc626429d9f4ba9ca134f1384223bf17491d5536", + "input": "0x0000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000103fd8cc461000000000000000000000000000ff57ae8e574352cef27e9edcfff1ab9223672311000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f0000000000000000000000000000000000000000000000000000000000002b16000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f276fb00000000000000000000000000000000000000000000000000000000691a03fb00000000000000000000000000000000000000000000000000000000000000003d958fe20000000000000000000000000000000000000000386eeca65b4be38d0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000002a04c696b0000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000400c033f4a5370fea97d8089c42052f3b0a5df64bd32ead342144030f4e137cee6f7cebd37991a7930fb45ec90dc6eeb1dd1e58b4c9390b2a337a2ef4bdc20e51c3d958fe2", + "nonce": "0x10c", + "to": "0x0000000000000068f116a894984e2db1123eb395", + "transactionIndex": "0x8e", + "value": "0x1069dd92dcc000", + "v": "0x1", + "r": "0xcd4245c403b9cf529fd8ad1acb964c197a3450037bae6479c6741c7e418e8189", + "s": "0x38379a863f4d6a2fd6cdedbb04ba3cc6d135d0fcb5497309aabc844f5194437c", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x752695", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbd9206599747812d823dd040e4a68924cf882747", + "gas": "0x2dc6c0", + "gasPrice": "0x566016", + "hash": "0x226f57d93028ccc630846914c035d00397b6e78a46db0f3a76e59fd0a0af47c1", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c6121584796d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea376910aaf5b427e7fa45760656256448353a0437f48a316a04c6067a271a7b0", + "nonce": "0x3ce3f9", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0x8f", + "value": "0x0", + "v": "0x1", + "r": "0x4a496e8e65f7fcfc02bb72fbde521720d3870e14a2a3f49996d156b4e98276dd", + "s": "0x1970f1e0eee4b9ebfe0e9dc204c321ad36de4dfcd9293c212cf6c61c6382d083", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0xdce7", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7c461a62cb5f0e411efc97f10e13b594b130e547", + "gas": "0x5208", + "gasPrice": "0x55aa3f", + "hash": "0x7b4c82dea3c67ad5210d64787234bd0e77d44d77f9bdb43a6dc7816c9232d643", + "input": "0x", + "nonce": "0x2", + "to": "0x964ef40e83635c623a5fa2547cd996eafb5d6d47", + "transactionIndex": "0x90", + "value": "0xdafef2bf50ba8", + "v": "0x1", + "r": "0x1e1af5ae028022307cf8bbdb998c6488dbea3efcb87f604820443c14229d7981", + "s": "0x55295721b5cb5abfbd485ef83b2df8c259fe1d14f10458feca8fbbb9180dbdad", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x2710", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x48d350b30f68b9ac9d7a4e13e18bb9fae3fdb829", + "gas": "0x989680", + "gasPrice": "0x558593", + "hash": "0x69ca3c75c2c2c78b16f9ea42f62908009915e4c0d811e4c2590d9a839f516428", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x861b1", + "to": "0x74fc3c5fbce63b8d35a461b8fcc495c34b1fdde2", + "transactionIndex": "0x91", + "value": "0x0", + "v": "0x1", + "r": "0x1c44ce36a62cf11545b84844151f0e0b746f07b9a7947881b335d1e4c78df176", + "s": "0x49a440e952ab221ff17d24dce30901be075bce11091184e1ff16be00337971a9", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcad53e", + "maxPriorityFeePerGas": "0x264", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xb08a58ffe4c7a39477f65f37590b6686d0bfeb9e", + "gas": "0x7a1200", + "gasPrice": "0x558361", + "hash": "0x9620e143e9576182228506fbad6791f1da47669e16d15e9a654979779c9204b9", + "input": "0x00000000000068f29e131b6b4ec134260cba6df0165fd0fbb7a6feb917291027f1be8392ac66d9072ca59e5d451fb6e352453f6ea649d8ee9035a887309d40a39965db55344352c4ad3f20a8ea3593c1b174680299f9dea5b9bf3dafeebfadcaa87d06daee4c79739c82b30a023bd17e7a7d3c27b068978f8850ca7ca67ea862cb271000000000068da3f098fae427a9aa3647f3e81798c61897f3bf67d100a270c00198b1771a4cffdc0000000002df5834359cc81063910a9c78b11e686b99105d6601f40000000002037ac9012eca27bf284ad0108b32257a0c56362f006400000000036b0f53cbd9272d8117e9535fe25371dedf39a1be00640000000003678f431da2abb9b5726bbf5ccdbaeebb60da98130af00000000000b7f51d070d4e05dbbc3a3697aef5405e60e013f60bb80000000002529d2863a1521d0b57db028168fde2e97120017c0bb800000000029ea7711c82f6ede3f6da5fcf6d49b0fc2a2dc7b527100000000001ef6f90acda6e8102093f3f4e28d952b0276e4abb1f40000000000403000001010002010201030104000301050006000701020108000901", + "nonce": "0x2e0dc", + "to": "0xd9c72e940345228b945fabe3b651fa6d39125966", + "transactionIndex": "0x92", + "value": "0x0", + "v": "0x1", + "r": "0xc5d1b45a18ecf1cce6461abbe16b2a89fd2dc5913c25e262e8f9fad6c6ed14a0", + "s": "0xe5c94b903997b31c615fef2dbbd0e17a65a566195c2a4dd63e18df9c99430e6", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x186cd05", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7b3ad3009bfa586308ed69d73df62e22038aa1ca", + "gas": "0x5208", + "gasPrice": "0x55832f", + "hash": "0x63ae50ecf707fb1c14532959e5515af1cdd72a9ec379c8d628d9e16694323ec6", + "input": "0x", + "nonce": "0x45", + "to": "0xbd333a2435c0031000526f50319fdf5fa38276d7", + "transactionIndex": "0x93", + "value": "0xb1a2bc2ec50000", + "v": "0x0", + "r": "0xd57f80b56bf0f6fc5cdf6dbc9920d775089d397f9ca95705697163a5cc531565", + "s": "0x129a0d5d55d606fee38600d38e9515113101050498b396e645509625f9a7d6e3", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x7e1a97", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0x5576d3ea1b01b349e4d88f4e852a407d293548e4cb8ec1a58bac224c8c6072cf", + "input": "0x", + "nonce": "0x197b57", + "to": "0xe1ded95ccaff4a390552e143c32b5b64f7b8d9b2", + "transactionIndex": "0x94", + "value": "0x1b48eb57e000", + "v": "0x422e", + "r": "0x58400834d9e5fb621462fd37407ad62db8c90e7112a311ca46d6b9b745012890", + "s": "0x7df1734514caf287db135ea1510c6eeca53540f9ee173cd89c8848e26faf0d67", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x8acfdf87747a2f657686599d756eddc3aa111a3d", + "gas": "0x3b8c7", + "gasPrice": "0x6e3f37", + "hash": "0xdec6c5b66b6d801edbee90e4e984154ef6313c9cc2e9cc0edd1e13dd51d27db1", + "input": "0xe7acab24000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000005e00000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000008acfdf87747a2f657686599d756eddc3aa111a3d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000010007b1ca3618eb5e6b61ed8bd7031c01c17fe25000000000000000000000000000056f7000000ece9003ca63978907a00ffd1000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000068f276fa0000000000000000000000000000000000000000000000000000000068f27a7e00000000000000000000000000000000000000000000000000000000000000009f84945b62993c625abd3985be23793ff069dbb947318e79f100cfcf1a37ed850000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000041dc69132cce31fcbf6755c84538ca268520246f00000000000000000000000000000000000000000000000000000000000026ff0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010590edc6fd0200000000000000000000000000000000000000000000000000010590edc6fd02000000000000000000000000010007b1ca3618eb5e6b61ed8bd7031c01c17fe2500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a45f7e2196000000000000000000000000000000000000000000000000000002a45f7e219600000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000040a2ad71c1266386d6d5983d173ea00c67e4df1c4a936172f530a333bbbadf24b26c590b42b845ccf6ebc8c572570f542bc8f66b288783cadf436aab9e2327b5fe000000000000000000000000000000000000000000000000000000000000007e008acfdf87747a2f657686599d756eddc3aa111a3d0000000068f2782ad4b9e97c6f212513afb6e5d68f4c0b9ad0b903f1e5c8afa8458f0250c12138cb441f44574b80191fbd5bde11a805c9d88a44c7e46604aefad3f0cd8e97153ead000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003d958fe2", + "nonce": "0x7d", + "to": "0x0000000000000068f116a894984e2db1123eb395", + "transactionIndex": "0x95", + "value": "0x108354d451e980", + "v": "0x0", + "r": "0xfbbfae832b1a071a991ff684663df908b5b15296ea85597744714a631f3864c7", + "s": "0xdc83706f240d3c071d89283c2d41505476a07131bee54f5204dae7fd1ba7467", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x929b40", + "maxPriorityFeePerGas": "0x18bc08", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x62fd5c490fe0b9eef5297391198ec3ada483c8a4", + "gas": "0x493e0", + "gasPrice": "0x66f064", + "hash": "0xd1b3868ae5b233e388386f3f902008a22d48995ace0d76fed2609713046ecb4e", + "input": "0x7ff36ab500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000e7143632e91c4dcab4785dfb86c719f4b9989a530000000000000000000000000000000000000000000000000000000068f27bb400000000000000000000000000000000000000000000000000000000000000020000000000000000000000004200000000000000000000000000000000000006000000000000000000000000d413485aa9ca4f88419904255a2384f667dddcab", + "nonce": "0x0", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0x96", + "value": "0x17b", + "v": "0x1", + "r": "0x683cc716d41c4f47fa2be763ac64fe0cba5973b948aa812ae4ecc384f6caaf87", + "s": "0x2abe568f12f8e7221bcc4af763d1dc4368e1600b9c3622e4ccf186d3e9599392", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x9c8ed1", + "maxPriorityFeePerGas": "0x116d35", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x1222561447509b500c29c3dac4ad8b843d646644", + "gas": "0x994e6", + "gasPrice": "0x65e455", + "hash": "0xafb32d46b58c9eaca8f861a9d0704491b427162f9f4c9721c609f234654ca17c", + "input": "0x2ae2e24500000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000007000000000000000000000000ec881d4d09bf3fd9c7efcc8018fb57b6dc9f50700000000000000000000000002385f04b7eba9b7aa1cdd352c60c2845ec9f8c82000000000000000000000000cbba216067df8d7f8cc39667a15b9f8d685e86a10000000000000000000000004323933f3839836994c69edaab8c30fe8a6804ff000000000000000000000000533f8f5e9bb4bfcdce37ef77f737a6e991f65b0900000000000000000000000081db8570cd4f0a7767f7d4aadf9e81b67049657e000000000000000000000000bcd20bd0d01692bd8dd9dfbab0061ddafc1979e800000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000004fc71a9d9a0000000000000000000000000000000000000000000000000000006e166ec4020000000000000000000000000000000000000000000000000000004fc71a9d9a0000000000000000000000000000000000000000000000000000004fc71a9d9a0000000000000000000000000000000000000000000000000000004fc71a9d9a0000000000000000000000000000000000000000000000000000004fc71a9d9a0000000000000000000000000000000000000000000000000000006e166ec4020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a", + "nonce": "0xf80b", + "to": "0x06d0ab69cf7bf0644057d5583b920c2bc0acfe8e", + "transactionIndex": "0x97", + "value": "0x0", + "v": "0x422e", + "r": "0x8f7f9859b48740651b9319727469a8ddb30521a3197805067a3a91f33f6f65b3", + "s": "0x5459146f20170beaf53f0221a1d4ac7ec94626a31a0c0a9ca1680893a0ad038", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x16672d6baec2f4542c99606fd73307fbee22121b", + "gas": "0x7a1200", + "gasPrice": "0x65928b", + "hash": "0x086c44371ddfa0b3d36e6a2674029babde5af008d5d1ce9b76e7b52375902778", + "input": "0x00000000000068f29e141c55a700075c934910feb2c4000d87fa942a6fc861a786a69bbdf96f0ee63ce4da5e39482f1dde05921580414524c23037afd504adadd5224524bae30745b98660424ddb7348a186b9eb31f316db4f7b3c34dc950aa84ab3ea48adb3c699623d77150272ab388e2e2f6facef59e3c3fa2c4e29011c2d3800640000000002d96abbad4b744cb7746adc908a3df39c5991aae00050000000000628ca4438a075dc0a85a47035990a40200b490e605e8e95913247d8362cc47bb30bb80000000003f81d3c731b3ac5a4dfc968f514860bedeebebaf200640000000002037ac9012eca27bf284ad0108b32257a0c56362f006400000000036b0f53cbd9272d8117e9535fe25371dedf39a1be006400000000029399da51c1a85e64cce4b30b554875d2b89b24450bb80000000000b08fefa8f0f01b9a224fdef416e919b1ceba0d840bb800000000035b8bf0cd0fa5bf970ebe558d7551a668dadf357001f40000000003976a4d13a41581c5eda72c493038ac10cadf5e4601f40000000002e5b5f522e98b5a2baae212d4da66b865b781db9701f40000000003dbc6998296caa1652a810dc8d3baf4a8294330f1005000000000060f4e921ef4f483570dfdb05df55aa053efec90ba9ff78db059ce0638bbb4478e27100000000003fd7abc461df4e496a25898cab0c6ea88cdd94cf9271000000000034e962bb3889bf030368f56810a9c96b83cb3e77801590000000002b94b22332abf5f89877a14cc88f2abc48c34b3df00640000000003017fff440a3ad5fa72ec1f1efa615b5892f9a72a09c400000000034bf74c2c0479c1017bbdd310cec65cc540ef13430bb80000000003aa067f08fef60420d050a92e7800e588748b7d6709c400000000029c087eb773291e50cf6c6a90ef0f4500e349b90301f40000000000e31c372a7af875b3b5e0f3713b17ef51556da6670bb8000000000a0200000101000201020103000201040105000200060107000301080109010a00020000010b0002000c010d0002010e010f000300100111001200020013001401", + "nonce": "0x66fd", + "to": "0xd9c72e940345228b945fabe3b651fa6d39125966", + "transactionIndex": "0x98", + "value": "0x0", + "v": "0x1", + "r": "0x74ab7add0d918b6fba22c2bf4c17bad356c14d188acb0fd94688714317f15857", + "s": "0x35dcd3fab0c6739059e04d8f248a375ba45fc73a945bfc35a5a5a1befc7999b1", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x196dc2f", + "maxPriorityFeePerGas": "0x100f5c", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xb929d36173b200c1d1944ac8e7553949cb6838f2", + "gas": "0x552c8", + "gasPrice": "0x64c56f", + "hash": "0x23efcbdcbca7ec09fd271490cec413dc5f3b57216c3f3ee8dab07236dcce5c71", + "input": "0xef5cfb8c00000000000000000000000023fd129052a2c810ea1aa85aaac584043434f538", + "nonce": "0xcc", + "to": "0x45a2e9cd80ac33b3dcfa6d466db88504edeab3a8", + "transactionIndex": "0x99", + "value": "0x0", + "v": "0x0", + "r": "0x96fe09330f34b0e9e8f4c8be96f08ade4d75b458bb067def476a41b54920973", + "s": "0x177493d1a7a79be6eb3b0e475680e8ceb278c9c6230512395ad81915f20ff78e", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x69dc75", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa3de2cad3945d88b77b083b725f7166332e1238d", + "gas": "0x3b761", + "gasPrice": "0x64c56f", + "hash": "0x7050bcac1bed21d51d5a36c865fe1f9df7f525d4665f9075cce7256216c9aed8", + "input": "0xb1e7b72e6955177333654ca8dfb891defddb2c9379abf96699ca2de9da901d2db5d44d50000000000000000000000000dd9129dd371e0d2326e13e5f86750cea1bd81a9a00000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000068f3c884000000000000000000000000000000000000000000000000000000000002a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f28514000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x4a44", + "to": "0x8b414be656ed6202fcb528edfccedfb152e62a54", + "transactionIndex": "0x9a", + "value": "0x0", + "v": "0x1", + "r": "0x5fa11ef1b795e71ca8fb66b86048aa35e26691c0997c24eba9823ad655981acc", + "s": "0x7f3734dca4dd62fc8b65506a396068304b81257c92d415cb83b1f84e628b660d", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xba81e6", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbd9206599747812d823dd040e4a68924cf882747", + "gas": "0x2dc6c0", + "gasPrice": "0x572a31", + "hash": "0x151a608ff23f735766754667462a7016b611cb6f52a30d3988eed7412c5f271d", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c6121584796d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea376910aaf5b427e7fa45760656256448353a0437f48a316a04c6067a271a7b0", + "nonce": "0x3ce3fa", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0x9b", + "value": "0x0", + "v": "0x1", + "r": "0x55dd4f31fd13314bd62a32ee9b4ce65a0b4c90a05d9b74ded9575c491abd9098", + "s": "0x1aee17707aa614dba600d16812676581e9cab8622fc50c3187ef224a2f374a47", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0x1a702", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd46e2716e00dba1a48dc62de83543c62d191d799", + "gas": "0x989680", + "gasPrice": "0x558593", + "hash": "0x7c761a6361b8d29a8a42d4567aee331e9de95c01ebb4024b65e571a66a0fdfc9", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x8625c", + "to": "0xdc1cc8dd7803b3402dc6b9ea5ac101c9f792584f", + "transactionIndex": "0x9c", + "value": "0x0", + "v": "0x0", + "r": "0xb3422675a55331a37387d3f2d1b3ed4b9cbce7cfca85d96401198da83c1bbdf4", + "s": "0x38b4b71e6148f36238123d5d679ea8c6695d50d87b660b4e7cffb4a34e1f009d", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcad53e", + "maxPriorityFeePerGas": "0x264", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xb41f8bcfc2368a42fda38e6954ad0387224173b9", + "gas": "0x7a1200", + "gasPrice": "0x558361", + "hash": "0x1d34603571ab7cc264072cc930bfa4332937083fd5508cc60480ae422831ea9a", + "input": "0x00000000000068f29e141c6904ff59b2ae8528e6a80c5481df06deeeb9056daea0d9b111a8a396aabbc0b776ec3c79af4f64005906882fc3c5599808c1a0620ba5740fd80c645673c29535eb835970de68f8cba1cafc83f803ab46b9cb07744c169d1a690b42889e1751a40a023bd17e7a7d3c27b068978f8850ca7ca67ea862cb271000000000068da3f098fae427a9aa3647f3e81798c61897f3bf67d100a270c00198b1771a4cffdc0000000002df5834359cc81063910a9c78b11e686b99105d6601f40000000002037ac9012eca27bf284ad0108b32257a0c56362f006400000000036b0f53cbd9272d8117e9535fe25371dedf39a1be00640000000003678f431da2abb9b5726bbf5ccdbaeebb60da98130af00000000000b7f51d070d4e05dbbc3a3697aef5405e60e013f60bb80000000002529d2863a1521d0b57db028168fde2e97120017c0bb800000000029ea7711c82f6ede3f6da5fcf6d49b0fc2a2dc7b527100000000001ef6f90acda6e8102093f3f4e28d952b0276e4abb1f40000000000403000001010002010201030104000301050006000701020108000901", + "nonce": "0x2e103", + "to": "0xd9c72e940345228b945fabe3b651fa6d39125966", + "transactionIndex": "0x9d", + "value": "0x0", + "v": "0x0", + "r": "0x885cb127840be35375fc441ad30ab1005e37eef1a42d019659a05e5fff7cbb57", + "s": "0x5cd868c153320bf93480472d2a1e66119fc6a0e2ceaee0e79c96f0af47052ade", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x186cd05", + "maxPriorityFeePerGas": "0x32", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x7dfa50c169e4a88d9e732e49e61d95bf187d5058", + "gas": "0x755ffd", + "gasPrice": "0x558339", + "hash": "0x65463817b668d9ae5a945ed1f54ea72935cb7201a98e038578b9e4e770e4de9a", + "input": "0xa7eebdb2000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000021530270d8c0b8d544735f8bb21044bae86caba20000000000000000000000003683a176b50574e89f1c2d25bd2d9af0ec4111d300000000000000000000000092aafa6be2b1aa1c6c8e98e37f65ceabd6349b8e00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000e92596fd923f0800000000000000000000000000000000000000000000000000e92597042fd42900000000000000000000000000000000000000000000000000e92596fd90f7e20", + "nonce": "0x13f48", + "to": "0x10e0069160efc35798c3a46a2044c7dcd8b02980", + "transactionIndex": "0x9e", + "value": "0x0", + "v": "0x0", + "r": "0xda99cf90feaf1bcbe1d2076b8de5b376a92f798bbd559c779a24e94a1a66d537", + "s": "0x65c901482cf4074890eef600f4c355d8863d7d2b6d0c62a4f402619f7672dee", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x665990", + "maxPriorityFeePerGas": "0xa", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x9ab6cd460919f0e27195d34dee09eedab28cc001", + "gas": "0x61a80", + "gasPrice": "0x558330", + "hash": "0x6a4477b9681646c3ebfe9cf33e46976a5f0861cc7ca7e92d0b7c8112797f563d", + "input": "0x34df7d410000000000000000000000000000000000000000000000000000000068f277070000000000000000000000004200000000000000000000000000000000000006000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cd07b6aa18a2f800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000409174da3b6f6c000000000000000000000000000000000000000001048a258673eed000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010484cfa80c0eb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x294f", + "to": "0xb7f5bf799fb265657c628ef4a13f90f83a3a616a", + "transactionIndex": "0x9f", + "value": "0x0", + "v": "0x0", + "r": "0xe8eb28ad06a25e3cf0b57f2cddc1d1cdbc844bdd21e982ba54ae6e016001dce3", + "s": "0x7b469287b92a9fc7c95037bb9b8e4a354164cb8c8e9db5bb376b2ffdf2a8187c", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x989680", + "maxPriorityFeePerGas": "0x1", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x430035299d4375f3c633742142911e11f14ab8bd", + "gas": "0x61a80", + "gasPrice": "0x558330", + "hash": "0xd1acdfe756bc9703a32c55765baef20cb628f9061594340e11d3f22882fc4487", + "input": "0xa5bf25160000000000000000000000000000000000000000000000000000000068f27707000000000000000000000000482fe995c4a52bc79271ab29a53591363ee30a890000000000000000000000004200000000000000000000000000000000000006000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda0291300000000000000000000000000000000000000000000000cd08b344cbfb280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040914d13f0f42c0000000000000000000000000000000000000000010488e4898bcd3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104838eb1b6b1400000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x2c12", + "to": "0xb7f5bf799fb265657c628ef4a13f90f83a3a616a", + "transactionIndex": "0xa0", + "value": "0x0", + "v": "0x1", + "r": "0x18f5078ec8bb040d88b0e998b74a77b8ab431fe454132011531b0b9eaeb8ad7d", + "s": "0x21ade753818b9cbfd333182d8688bde860803ade93521621ec6d4e007a9fffe5", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x989680", + "maxPriorityFeePerGas": "0x1", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x4e3ae00e8323558fa5cac04b152238924aa31b60", + "gas": "0xcfea", + "gasPrice": "0xfdffed", + "hash": "0xc8fb2c097dffa87cfb9c3efa2b98dad2e381229b3608b1bc6682786cc02c6056", + "input": "0xa9059cbb000000000000000000000000fab7c4ddb51e42055bc3d066a56165667588757800000000000000000000000000000000000000000004cb6785cb48b134350000", + "nonce": "0x1b308f", + "to": "0xf2e244d4020c182e8e2c936d4055e3f0e578064f", + "transactionIndex": "0xa1", + "value": "0x0", + "v": "0x422d", + "r": "0x991caa2336b2e74e8bdbbf76e0861987989cbd60c92cd4783fb0a1b2ee530f1b", + "s": "0x5878d6e7a463e8228c4852cfd4a5a9e6604becce4ec8b4aabef33a15f5043efe", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x36bf3d1671b247e2d653fb9ca8cd6bb4e154735d", + "gas": "0x124f80", + "gasPrice": "0x790f4a", + "hash": "0x487e148421f724c79ae1252153a01c28c3597cd74ad07d6015c4eea97ed51602", + "input": "0xac97f9700000000000000000000000005ab3d4c385b400f3abb49e80de2faf6a88a7b691000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000064fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8840fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb88a400000000000000000000000000000000000000000000003146e8bbe95e140000000000000000000000000000000000000000000000000000000000003bca2cfa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e272829a1ae56e7eb76fd44181ea95cf779d8d0000000000000000000000000000000000000000000000000000000068f278300000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1999", + "to": "0x41e272829a1ae56e7eb76fd44181ea95cf779d8d", + "transactionIndex": "0xa2", + "value": "0x0", + "v": "0x422e", + "r": "0xef350b8e052fe6c8a329126e9d36b460d9d4e8747c36779619adc103d7e17c79", + "s": "0x7268318020c3b1c0ce1a7496c5768535d5c7d9f97e5f4cc4e8022584e545fff9", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x59252aa620c2dadf236dd8aacc78562030bcdca0", + "gas": "0x493e0", + "gasPrice": "0x66f064", + "hash": "0x40d12a81ffe04368dd76eae15683ba1ab052c1132952ef4b8b667291f9c93ae6", + "input": "0x7ff36ab500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000e7143632e91c4dcab4785dfb86c719f4b9989a530000000000000000000000000000000000000000000000000000000068f27bb400000000000000000000000000000000000000000000000000000000000000020000000000000000000000004200000000000000000000000000000000000006000000000000000000000000d413485aa9ca4f88419904255a2384f667dddcab", + "nonce": "0x0", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0xa3", + "value": "0x134", + "v": "0x0", + "r": "0xc69fb16fe1ffa5e4c207652f7ad68d2a957e4fd34a58913c67695243c24a6fb4", + "s": "0x39e8508fc5da05246e24eed43027453b8305ff7dd95d8fa6681906d7219f9c56", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x9c8ed1", + "maxPriorityFeePerGas": "0x116d35", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x859868d479d028d403a121f7abc8fc03075251ea", + "gas": "0x493e0", + "gasPrice": "0x66f064", + "hash": "0xb0a930060072513069740c28928e26bae890fbe3213fe231d08605efa063b588", + "input": "0x7ff36ab500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000e7143632e91c4dcab4785dfb86c719f4b9989a530000000000000000000000000000000000000000000000000000000068f27bb400000000000000000000000000000000000000000000000000000000000000020000000000000000000000004200000000000000000000000000000000000006000000000000000000000000d413485aa9ca4f88419904255a2384f667dddcab", + "nonce": "0x0", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0xa4", + "value": "0x17b", + "v": "0x1", + "r": "0xf65cd47027c19a6aadeb7c34117a8b3eee98295e93ca6ef772d1efd57fec8994", + "s": "0x72db826988e3128ce710b2f372ece958572468f45a8c73562800ad17c514dcb7", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x9c8ed1", + "maxPriorityFeePerGas": "0x116d35", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xc6d2b3749ed24e35d5f051c1299988b13b9c9bc1", + "gas": "0x1c918", + "gasPrice": "0x64e213", + "hash": "0x3b2cc9198f4d446e74108e323d228657b978e91c5b5bfd1faaf7e156cfc71596", + "input": "0xb6f9de9500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c6d2b3749ed24e35d5f051c1299988b13b9c9bc10000000000000000000000000000000000000000000000000000000068f27bb400000000000000000000000000000000000000000000000000000000000000020000000000000000000000004200000000000000000000000000000000000006000000000000000000000000468fe9e1178b9e1cc831f2d633c74399624967f7", + "nonce": "0x1cc3", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0xa5", + "value": "0x43ec48b2f0014", + "v": "0x422d", + "r": "0xa5f75e91d4dbead28a4329e47db3a517622fca56378edb81082b92297bd65e84", + "s": "0x526207e3fe21cc7ce6aa362f325b552202d7d4d35b9ca758f749fbdc6f9140aa", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0xf206fd9c50039e977a6b0315cea06329b9ffcda697115225e326f3d2cfdfc0cb", + "input": "0x", + "nonce": "0x70ac5", + "to": "0x5dfdbf2bf7d13398bf9436f3b226ec4c6ac0a999", + "transactionIndex": "0xa6", + "value": "0xd49f8e87e80", + "v": "0x0", + "r": "0x803e4b07c38d455ac66571e28f47bcbc9302d5f515b8416597ee6ae56c81ab6d", + "s": "0x7daa0fc45e1d308fde23e1ef0d6ba667eaae75939355dd97bb145a3491f683ff", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0x178a19db4823b047b55d60b1afccaf03d5ae03c07e5e32d86e85742909519185", + "input": "0x", + "nonce": "0x70ac6", + "to": "0x736436dd381ef2c13980764e44d7cd0fd04bc900", + "transactionIndex": "0xa7", + "value": "0x154327da640", + "v": "0x1", + "r": "0x9583cc75ab72f21a784fac5d03a4347ea7f2faad5678d4ba564dd9ff99d3ce0e", + "s": "0x79c6582d2bb7c77dc61d15fc4e7b4de569d84b94a89cd5c74588be2da747f265", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0x894f734cd46c5fcd794469c44fe24b8537e1fa63f9c0e4afe6c9eacc67175206", + "input": "0x", + "nonce": "0x70ac7", + "to": "0x10ab403e69c9ef5bfc694c211e06c1400a6e2b5d", + "transactionIndex": "0xa8", + "value": "0x154327da640", + "v": "0x0", + "r": "0xe23bd1d0a1f575e44a07e126bdfff364294fd38e4bc66f4f20cacf193776879", + "s": "0x5b31963bb89b18cae8d102c259a85952d606c5bcf2b0763ccd4ef063a20cf382", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0x752b7d647dad344c8e561430645d1c0755bb4326a6bd1497e52f2c92f7c98ecd", + "input": "0x", + "nonce": "0x70ac8", + "to": "0xcd145090f2f7432281e6335b9a0945539b05a0a9", + "transactionIndex": "0xa9", + "value": "0x154327da640", + "v": "0x1", + "r": "0x1f12e7485833f7bec3c18650bbb3f3beea77315f443f11b9b302bc91684dba71", + "s": "0x7292dabfd9f96d9ffdac5ee836fd8be76a44e623c09292eb2317beb6ee3e80c2", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0x6b6f022a50e11e7ae0c30b95f85f9ff08a6270dc4cb3478651260cb831d27dec", + "input": "0x", + "nonce": "0x70ac9", + "to": "0xe20c39ce862375239a96e65932a051788abcb31f", + "transactionIndex": "0xaa", + "value": "0x154327da640", + "v": "0x1", + "r": "0x95b785e563334fdbf963b3a9006c1e4b65f8a61ede3e8df0e05c159f371716a2", + "s": "0x63962364e64e543bf3d0a8ad77e62db165e12fdfd209c817e22bbdae6e54cdb", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0xdcc6d3fcabbf66134ed7549e07f6fdaad75551d20b486ffdd0915447a094a681", + "input": "0x", + "nonce": "0x70aca", + "to": "0xf007ac42f09ba766791c9e86ee49402e7b124850", + "transactionIndex": "0xab", + "value": "0x154327da640", + "v": "0x1", + "r": "0xbca3777fbd3d2c57a1c24f477e683dc6f592af01d69bb5594e4277a2763d5318", + "s": "0x24c54cddbe92ed287d1500f9c201a34e4878a1c4b8d7ec15d3730d0d4e7d31f", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0xc0e5347a89f6448c73471ebb6d167ed16e8b1ecc4118e7948fc67ad64b089a13", + "input": "0x", + "nonce": "0x70acb", + "to": "0x2961b4ee9f35fe662ab7daa3cbc96977f3118785", + "transactionIndex": "0xac", + "value": "0x154327da640", + "v": "0x0", + "r": "0x56113417ef3ed229d65385b25eae30c8c5ee726253d11cc19d0055442754741c", + "s": "0x5bd5aab4adbbd0f77dc26c566538b94a928ac9df405ff9d3e76877fe89e08c2e", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0xa060e4b2388a2a5f45dc662e23e19541928833ab5fd31e81da7128f04c1140bc", + "input": "0x", + "nonce": "0x70acc", + "to": "0x87c98caf790799d32d1d78ba7d50238e5ef0ec9b", + "transactionIndex": "0xad", + "value": "0x154327da640", + "v": "0x0", + "r": "0xaa89ab86aa4b16ce58b6b93fdfe8385899b61bc6c785a70fcc2332da59363872", + "s": "0x7e70948d6d650aa1852576ff199b76a294f3f20deff6ff3ecd2ad9b5570272d8", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0x20d2a389dfec923b787ebb92caf4e3d793f27fbdf0955977441646eafbc4cb9a", + "input": "0x", + "nonce": "0x70acd", + "to": "0x0e1d625fafbef96ececfc92a8a8ac7d2d4a2b532", + "transactionIndex": "0xae", + "value": "0x154327da640", + "v": "0x1", + "r": "0x45f51d5ffd7c6b7e0ca605a881b5855b00a55c2d05b65646bba3f246a575a497", + "s": "0x3a2804a80ef2365968bb6f05b60ac32a410a514c71900dffeccde8a69125a1b5", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0xc9bf34d1a67ceccf5989204d4dfcdcd1abf62ae841d079a3ca23c56c00e256bb", + "input": "0x", + "nonce": "0x70ace", + "to": "0xdfe0b01de91d951120f4bee24b096d52fe4ea675", + "transactionIndex": "0xaf", + "value": "0x154327da640", + "v": "0x1", + "r": "0x7ecae207e45ae2731995bc5b0adea39cdb4c89f229750358f2ace6850eec76c5", + "s": "0x57405e061f44c4ba063789aac6986688b68198c20d66f4c7e627931f0119d8e", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x5e2458c1d55ed9e546e3a096af170075f166804c", + "gas": "0x5208", + "gasPrice": "0x64e213", + "hash": "0x52d5cf6e0fcfac269c451e5c46321858f6c46386dc06e99885a98d767ac4b1c2", + "input": "0x", + "nonce": "0x70acf", + "to": "0x1dbed26710b2f418cf4c8809f613f7d0c155f5cd", + "transactionIndex": "0xb0", + "value": "0x154327da640", + "v": "0x0", + "r": "0x71d4d4b808fa2d90b128bcef12ae44bc2eca2470981f007ffed51f2636d9cff6", + "s": "0x2132918bc52f6b4b72dfefaeb09690cbe488b260aafeb1128f801ee0fb11bf6a", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64e213", + "maxPriorityFeePerGas": "0x64e213", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x48c3d4b5b87b087b624eece1e356e6c64bb86c53", + "gas": "0x2cf85", + "gasPrice": "0x64c56f", + "hash": "0xce2b07062d8039de6d98754d684a7c1e75ffa93094388a9f4a096334f1b32d62", + "input": "0x18cbafe500000000000000000000000000000000000000000003a546d3b2a60cb4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000cb34b0621c2dbcaddea696967c7a6567fea6918900000000000000000000000000000000000000000000000000000199f320e7660000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a06de9d92aa48f46d1eeb0f5dcc1618aece66a730000000000000000000000004200000000000000000000000000000000000006", + "nonce": "0x78", + "to": "0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24", + "transactionIndex": "0xb1", + "value": "0x0", + "v": "0x0", + "r": "0xe5f328850feb6873280093d2e1bf9f15d05cd90fe9ba401eae2368d077aee3fc", + "s": "0x1a2c38a0bcac5febb31a64a3a458d25a9d0347c6f608010ab6cfb6e09546b73b", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xba81e6", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x18be61ca6483ab1f66d9bfb2f8e2ca7cd1b12717", + "gas": "0xba08", + "gasPrice": "0x64c56f", + "hash": "0x680b3f3b690403b4b701353349c3c4761d5fcb5d1bcc2500e2a087f323449c02", + "input": "0x095ea7b3000000000000000000000000a2980e12f4bee78ac4e1083ee6ef9834e16361beffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x2a", + "to": "0xc4d328c39533ff991c89c1fcaebb915f32e3194b", + "transactionIndex": "0xb2", + "value": "0x0", + "v": "0x0", + "r": "0xcb320c6f9a46681dcb8e304b80443f87c9c238e9687008717822dfc138d6a814", + "s": "0x1535ce6c4afe00197d4f1393ead1e632a9d012d403416e3b657050c1361868f", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xba81e6", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa703ed1d8469512b1bca50ea5e98bdfb805e790b", + "gas": "0x825e", + "gasPrice": "0x64c56f", + "hash": "0x23e1617928a9ccfc08b763500049c33b580e7047456739914b6588f055513fae", + "input": "0x34273351000000000000000000000000000000000000000000000000001550f7dca70000", + "nonce": "0x70", + "to": "0xcb34b0621c2dbcaddea696967c7a6567fea69189", + "transactionIndex": "0xb3", + "value": "0x0", + "v": "0x0", + "r": "0x53237850afd078d90698c2c0efd171b192f461c62ed17b567da03118b324c000", + "s": "0x68cf1b72b8761f908aafac43a2b83f97e35b07622c2a08dfe07b012ec8b963f3", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xba81e6", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x72ab6e6e07bed3f643d1916f8906bcad0c3383e0", + "gas": "0xba0a", + "gasPrice": "0x64c56f", + "hash": "0x798fe6312060f12d7702eaf287e7588b9c92537e48396388832c1efc78447155", + "input": "0x095ea7b30000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x8e", + "to": "0xa06de9d92aa48f46d1eeb0f5dcc1618aece66a73", + "transactionIndex": "0xb4", + "value": "0x0", + "v": "0x0", + "r": "0x9d0b8302a17849619a41e8b569102c297bafed7bc8bc388a8cc6312b33087a5c", + "s": "0x1724bbf1d9eaa6185917b28e628230b5677821455133d34ee11519e6c4c671ee", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xba81e6", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x1278c1e48e3c9548a5d9f2b16dc27ed311b0697c", + "gas": "0xee79ee", + "gasPrice": "0x64c56f", + "hash": "0x277fec7653405cfbaac733a646261cd021ce162f9ee8f0e4547857ce5fb3ba7b", + "input": "0x1fad948c00000000000000000000000000000000000000000000000000000000000000400000000000000000000000001278c1e48e3c9548a5d9f2b16dc27ed311b0697c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000a80000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000019a0000000000000000000000000951f96cc1afaa7133961014a420991109d1666c78f4d056957588916d316af8bc885282b473e844268c65749000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000048119400000000000000000000000000000000000000000000000000000000000149a8000000000000000000000000000000000000000000000000000000000000ffc700000000000000000000000000000000000000000000000000000000016bd8500000000000000000000000000000000000000000000000000000000000118390000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064434fcd5be000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000777777751622c0d3258f214f9df38e35bf45baf3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000544a27a6dce000000000000000000000000951f96cc1afaa7133961014a420991109d1666c70000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000067421e82e0157a3ca9508ee92f6417a93bbf59cb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000951f96cc1afaa7133961014a420991109d1666c70000000000000000000000005658979345105588960f4d0f50ab5ebd8db560540000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261667962656968766d6733687332363570726361626a76696479636c73676c73707773757678746a6a6c796c797736736532323568373278747100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066e6767697461000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066e6767697461000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000040000000000000000000000001111111111166b7fe7bd91427724b487980afc6900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000003fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffea138fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffed018fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffee7880000000000000000000000000000000000000000000000000000000000000003fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffed7e8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef340fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef3400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000000000000000000000000000002c68af0bb140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c22faeb0760d4230ef2ac21496bb4f0b47d634fd4c000068f27779000000000000e1488bc7315b4089a536e45caf9b8ccf000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006978cd6a93a6f276f90748775e391e52225e1d175a6c28c28c5d4fb091b9c42341fe1d465df64f93bbfb7b510d07f0160520b73a58d92d9d99a065fba8a14e6eee6e1c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004122c52fc3f61e64db2a364515a96ba87ee706bdb630086dc9a779e58f51dc824e4f691a0497ae2894dd67f78b337d7b775dbb75f3072b8b7ef5e0e1c4de4dbad31c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000fc2c206dfb17845948d92cfdb61b6281c24054ca8335d181bb110463328ce86adb595ef961a7f67c851b2caf00000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000008861940000000000000000000000000000000000000000000000000000000000014b2d0000000000000000000000000000000000000000000000000000000000010174000000000000000000000000000000000000000000000000000000000168c49f00000000000000000000000000000000000000000000000000000000001027eb00000000000000000000000000000000000000000000000000000000000008800000000000000000000000000000000000000000000000000000000000000980000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006c434fcd5be000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000777777751622c0d3258f214f9df38e35bf45baf30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000005c4c7ce4e16000000000000000000000000fc2c206dfb17845948d92cfdb61b6281c24054ca0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000b6a115c421c9db284102b8f94df36242a966c64d000000000000000000000000fc2c206dfb17845948d92cfdb61b6281c24054ca0000000000000000000000000000000000000000000000000000000000000042697066733a2f2f62616679626569666570757a7732756773706365766476736a71773373376b636c63753568777a656a34743576666d6b66367336686c72336174710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010447265616d7320696e20506978656c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d437265617469766520417274730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000000004000000000000000000000000b15826b030c2ebabc9a58baaa60a17e5d72c2fdd00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000004ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff2d10ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8ad0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff67a8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeb3f80000000000000000000000000000000000000000000000000000000000000004ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80000000000000000000000000000000000000000000000000000000000001b580000000000000000000000000000000000000000000000000000000000001b580000000000000000000000000000000000000000000000000000000000001b580000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000214e8348c4f000000000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000002c68af0bb140000000000000000000000000000000000000000000000000000010a741a46278000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c22faeb0760d4230ef2ac21496bb4f0b47d634fd4c000068f27779000000000000e1488bc7315b4089a536e45caf9b8ccf0001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069784cab1614cef41c64cabc24dddd31969d49a080396c7ac7f5bdc9ba125ab4489662f31a9ef47e20447d051d3c7c9a4f3775f2e2a1eddb601476af06de5407fb481c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000041d38cec2e01d20b3b7cede307352aeb1ed56ad8067cb32edc201724ca47dc1d6367827349c19e4b3aa855e91cbbb70d6d5a3ea59f358173fa5969ba6f268f26a01b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000045f058a7aeea9e0ee141654c45e7fadade714f31be9b83b1d3ffe99b800fcd67b6c631ca8bbfed1d89ce06b00000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000004bb800000000000000000000000000000000000000000000000000000000000139ac000000000000000000000000000000000000000000000000000000000000d13d000000000000000000000000000000000000000000000000000000000168c49f00000000000000000000000000000000000000000000000000000000001027eb00000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000008b6998a2e283849a6b836b16102dae528cac9d400000000000000000000000000000000000000000000000000707511e8cd35d1000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c22faeb0760d4230ef2ac21496bb4f0b47d634fd4c000068f27779000000000000e1488bc7315b4089a536e45caf9b8ccf000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006978056f826e1ab27c570b9b7e5e7825e9cce094091b4b7544e01fe2458adcc8b01e47a97988254b4ecfd2f1fd7bd8a3aebfe39f70db9c1a4a037e2e95cc286fa5341c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004106766540db239b8e44f9c3cac01d328435e18452ee0aea885a8aa9f66b7a81693d5adbaed85bda55b12518835710af4a64c0a8eb4119591e054219c815ace9f01b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000c24b41bfeb6a0ff0e83c8055f88698902745bf6bc30bc1c3692c01a6014254f6b587e9d3e75a3e1d7199cf0b000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000abb80000000000000000000000000000000000000000000000000000000000013ac4000000000000000000000000000000000000000000000000000000000000d46600000000000000000000000000000000000000000000000000000000016b0a4400000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014434fcd5be0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001111111111166b7fe7bd91427724b487980afc69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb0000000000000000000000001f7ab35b2bccf379115722eb4ff9974da608d19e000000000000000000000000000000000000000000000000016a6075a7170000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c22faeb0760d4230ef2ac21496bb4f0b47d634fd4c000068f27777000000000000e1488bc7315b4089a536e45caf9b8ccf0001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069785b654f5407be5953f4876dd750421dc4166860a161e4692a8d2475b30957fa0137bcde0d30cdd0e786fa0f78176968f063ec90d6ad406ece68aa6b51c9a296061b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000418ff4ddd4b18be79a9150ed9cb94fbe26ea6e45824e5189c0ce646973ccbcaf785142dfaafe729f439ee7ab4777aaed8e3257d740ab7d9db567460441a91b368e1c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x17784a", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": "0xb5", + "value": "0x0", + "v": "0x0", + "r": "0xd3cc48d0c8323b9b273b946801d7d0a24d4092aa3ca13aff03d5290c6c4d0e6b", + "s": "0x71df11ec8b276260e821b8caeac82e2ebf99c8c5123de87a59b2070869ac1b6f", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x64c56f", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x555ce236c0220695b68341bc48c68d52210cc35b", + "gas": "0x25253", + "gasPrice": "0x5709cf", + "hash": "0xa78baa245b0784f80ad72c517a5b340d32645c6788d5929bdf975f00990efd2d", + "input": "0xc358547e00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000e3311aa62a0007bf779261749f28627c4b63c93a556122a76a734423413d423f42df77d4f448e0000000000000000000000000000000000000000000000000000000000000460000000000000000000000000555ce236c0220695b68341bc48c68d52210cc35b00000000000000000000000000000000000000000000000000000199f320b3dd00000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000a4b10000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000ea4408729806a00000000000000000000000000000000000000000000000000000000000021050000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000e3311aa62a000000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000000146f83cde8e9991afe4fef2653f45f9a85859a8050000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000146f83cde8e9991afe4fef2653f45f9a85859a805000000000000000000000000000000000000000000000000000000000000000000000000000000000000000146f83cde8e9991afe4fef2653f45f9a85859a805000000000000000000000000000000000000000000000000000000000000000000000000000000000000000146f83cde8e9991afe4fef2653f45f9a85859a80500000000000000000000000000000000000000000000000000000000000000000000000000000000000000014555ce236c0220695b68341bc48c68d52210cc35b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xc08ce", + "to": "0xe7351fd770a37282b91d153ee690b63579d6dd7f", + "transactionIndex": "0xb6", + "value": "0xe3311aa62a000", + "v": "0x0", + "r": "0xa89771b15eb1b3f344b756c66706a82fdc81cfa4b7555bf364977e07f095920b", + "s": "0x23b2115d0d015306a205c42876b9b8a68bd803e0451cb34f96ffd7dd454dee92", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x61da6d", + "maxPriorityFeePerGas": "0x186a0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xfe0c3ff3b2b4331887e7d9fa4c044d90f3198d0c", + "gas": "0x44097", + "gasPrice": "0x5709cf", + "hash": "0x54ab32e12298fe20e1dbeee71912b2e6b2f9ddb3cd6c8b1161b4ef85638c8680", + "input": "0x5ae401dc0000000000000000000000000000000000000000000000000000000068f2777a0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000124b858183f00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000080000000000000000000000000fe0c3ff3b2b4331887e7d9fa4c044d90f3198d0c0000000000000000000000000000000000000000000000000000027c06b8682d000000000000000000000000000000000000000000000000000004d010bf23a60000000000000000000000000000000000000000000000000000000000000042adf653294ae7ce3fc31bab98f0ee32b0cd605c21000bb8b20a4bd059f5914a2f8b9c18881c637f79efb7df000bb8adfa405992581565cc47c038173371835864637300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xe3", + "to": "0x2626664c2603336e57b271c5c0b26f421741e481", + "transactionIndex": "0xb7", + "value": "0x0", + "v": "0x1", + "r": "0x25c43003552da204346dc3ab553e0587d83df29cbe81aa0aad4094f8eef3e39e", + "s": "0x3829d8ae8b6b504870b801b45f8547ccc4a58d1ea41d7bb792558a15ca2076f1", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x11958e7", + "maxPriorityFeePerGas": "0x186a0", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbd9206599747812d823dd040e4a68924cf882747", + "gas": "0x2dc6c0", + "gasPrice": "0x55d90b", + "hash": "0xbf576e26eb5af1b77f2cb4ae0da37a62f0a5d6ca6e3fd6f65eae6440356f1181", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c6121584796d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea376910aaf5b427e7fa45760656256448353a0437f48a316a04c6067a271a7b0", + "nonce": "0x3ce3fb", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0xb8", + "value": "0x0", + "v": "0x0", + "r": "0xb35cd97502fc379d8f1fa2976fc2d6f2d1857c79f05509c90edf2520d777d3b2", + "s": "0x95b7df87f9a7f0187515dd2b02a41f1634581609ddd6571ce7969efef79154b", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0x55dc", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xa342b383164aa40830f0a61ca3246d54bf1ccf53", + "gas": "0x989680", + "gasPrice": "0x558593", + "hash": "0xf58da07d140a6ebce661706eeebdb27457827a17504f30d90866c455995ddeee", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x8620f", + "to": "0x74fc3c5fbce63b8d35a461b8fcc495c34b1fdde2", + "transactionIndex": "0xb9", + "value": "0x0", + "v": "0x1", + "r": "0x919499da2c0f5304d9e3fffb15b46c53cbf2034b5666527f4e073d9d8a41c094", + "s": "0x7062495c1c08736489e0aea16defdc5503a2440d9f3569397a34c3c22f2aea31", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcad53e", + "maxPriorityFeePerGas": "0x264", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x429f100114f3947544b3c439818dd7ccd3250bb2", + "gas": "0x61a80", + "gasPrice": "0x558330", + "hash": "0x0cff0f58c4833a311ecef3f65d20bf0930f21f18490b16654084af22265e09b5", + "input": "0x34df7d410000000000000000000000000000000000000000000000000000000068f277070000000000000000000000004200000000000000000000000000000000000006000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cd07c89feb368000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000409171efab5e28000000000000000000000000000000000000000001048a0dfd8821c000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010484b81f9ba30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x2c22", + "to": "0xb7f5bf799fb265657c628ef4a13f90f83a3a616a", + "transactionIndex": "0xba", + "value": "0x0", + "v": "0x1", + "r": "0xb671781ddf0133bdd28e4ef9b025212fcf58da31b07bf69fc8d6835b1d61601d", + "s": "0x4f8bc9d6398ae75aceb3a9c90540a563176a09f5666380de8604f1adbd32fc9e", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x989680", + "maxPriorityFeePerGas": "0x1", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x42d369c1a15ab64595510cbc9a4aa6856e40b8cb", + "gas": "0x61a80", + "gasPrice": "0x558330", + "hash": "0xcb5c41f699c2f52f9f2ee54e81ce94ecce29ef8eb0aef5a4293b23c2efedbe44", + "input": "0xa5bf25160000000000000000000000000000000000000000000000000000000068f27707000000000000000000000000482fe995c4a52bc79271ab29a53591363ee30a890000000000000000000000004200000000000000000000000000000000000006000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda0291300000000000000000000000000000000000000000000000cd0898193ea18800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000409151448bc01c000000000000000000000000000000000000000001048906599efb700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010483b081189c600000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x2e04", + "to": "0xb7f5bf799fb265657c628ef4a13f90f83a3a616a", + "transactionIndex": "0xbb", + "value": "0x0", + "v": "0x1", + "r": "0xf5fc4b56306343156a286321828f31a8408b4175437dad23f215b898dba80d20", + "s": "0x3b9468baa1865836045f857f788b6b1eddd7cc29382f13141ac4bf10ee847548", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x989680", + "maxPriorityFeePerGas": "0x1", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0x035600f188c2f2b2e9d0a9684585d892cd1a856e24d74205616d6ea9441f2ff4", + "input": "0x", + "nonce": "0x197b58", + "to": "0x4c12c3802d08bbc2afd4b223c918c7d986b0157c", + "transactionIndex": "0xbc", + "value": "0x1b48eb57e000", + "v": "0x422e", + "r": "0x28988e1e5a256489128bbaa502f3830faaa0015912d6bbffa7d2df8b2511f254", + "s": "0x4c1302ee363acf4da4bd20c97c1e654b6888a5dfe0ae7eb4c4c06d28feb5992f", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0xd5bd68c3ca7aade6fc5a56125ef72a832e05f2300fe42766cf3a35e00edae7e7", + "input": "0x", + "nonce": "0x197b59", + "to": "0x8d20396863f404c9dd6dc6d4c9dd395c99a74f86", + "transactionIndex": "0xbd", + "value": "0x1b48eb57e000", + "v": "0x422d", + "r": "0xe8ac4893e71587833d165b322d0445724fd59ab816365e019a30ab1f8de27b6", + "s": "0x6fb9a6e41ff516012f479929d5f8e48f866cd02fd1b084d901a4d427d2148134", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "gas": "0x13880", + "gasPrice": "0x5f5e100", + "hash": "0x5a47222b144d4310879095f176e71489b5c775bf38d7e10fbef9df9ae5404640", + "input": "0x", + "nonce": "0x197b5a", + "to": "0x930549f256eaf8ee0e7ece6e15f6ec12e00974fe", + "transactionIndex": "0xbe", + "value": "0x351d6ae9540", + "v": "0x422d", + "r": "0x768dd78e0f302efcbbb01cf18e54b05d7457a2ee337faf4975823ce2083f6fea", + "s": "0x79705a74ba26913e7eff3b3880bf0e48d31599d33ff340438e7a1a05ce678489", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x8302988a5cab90fab93eb84da346f08ea94ad785", + "gas": "0x4c4b40", + "gasPrice": "0x15bfe84", + "hash": "0x56397c9e6ce0d2eb93fa2fe73f7dd7b4feae401cae39e43460e59e712609a9ce", + "input": "0x9ef40bb2", + "nonce": "0x6016a", + "to": "0xdf67cfb24f1723f9998e76d8d7e31e133774c7af", + "transactionIndex": "0xbf", + "value": "0x0", + "v": "0x0", + "r": "0x53cf49e0abbbf33bb01e77f67890d3d8a434319472bf1bee7676c8927a8b6fa1", + "s": "0x6d62bceedc714bfb7f9f88a3c7f6111e52fd508ffaa1f03b5a63b6e3a838025c", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x5f5e101", + "maxPriorityFeePerGas": "0x1067b55", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd276411ee97c8dd717abe1823bc43a8b9b5f31b3", + "gas": "0x4c4b40", + "gasPrice": "0x15a5930", + "hash": "0x96807c32482a6057aaf429a89fa1e6463f7bfb63ac8ea051b8b7b088f40628e6", + "input": "0x7ba808f8", + "nonce": "0xffa95", + "to": "0x9411423bf0705a1edcbaa78845f2c22950225cf9", + "transactionIndex": "0xc0", + "value": "0x0", + "v": "0x1", + "r": "0xb112b693dcc03b952fe3d7cdf40e56c872723dc99f14b50c19f5c420bddfc1a9", + "s": "0x88f1b6f28a60aa66c8705381f834aafea46ac4c6eb9fd95e7982097fbca8185", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x5f5e101", + "maxPriorityFeePerGas": "0x104d601", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x6d5f5cac5078dbc78e125d995462214b8c346c75", + "gas": "0x4c4b40", + "gasPrice": "0x15a5930", + "hash": "0xbf1fa83321862e933dde32e09953269fc88fb7c201007c611296cbc42c54461a", + "input": "0x9ef40bb2", + "nonce": "0x94ce7", + "to": "0x875777351ded8f3d0cd2c9c04ddd70fa9f1ac154", + "transactionIndex": "0xc1", + "value": "0x0", + "v": "0x0", + "r": "0x55e53c0def1f7981489856e5fb747d94ea196e475629455b6fc882101c94f952", + "s": "0x594b2f78dfd33c96cbc2f5994d19f05c5b6e7a707316bee561653bc18faf47b5", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x5f5e101", + "maxPriorityFeePerGas": "0x104d601", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xdeb7cc327cad9496986beb459d9ebb3a79c49939", + "gas": "0x4c4b40", + "gasPrice": "0x15942bb", + "hash": "0x62948bd3ec437f176123ad246f304095e520604a16c52ed13ca27f8c997a92f1", + "input": "0x9ef40bb2", + "nonce": "0x61e7f", + "to": "0x590d167e310357c40daf9bf2426e50e10a401bb4", + "transactionIndex": "0xc2", + "value": "0x0", + "v": "0x0", + "r": "0xe1cd20d868506f83abaeebe7ad55d85ae5e988642f3658101c52277aa70ccf39", + "s": "0x3533a83ffeacec24c550ef07c7c1e3880745dad169fdffc7e6760f3808d8b580", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x5f5e101", + "maxPriorityFeePerGas": "0x103bf8c", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xb346a233f9540bba0e0f85cc1b07f45666a08f91", + "gas": "0x4c4b40", + "gasPrice": "0x15942bb", + "hash": "0x872309bcbb89ef21ca632c4bae6876deed1f3a20f33df704c3ed19da867eaec3", + "input": "0x7ba808f8", + "nonce": "0x32683", + "to": "0xb7639f5b2f9ac7fc47a34f8f3bbcbe94f5c55458", + "transactionIndex": "0xc3", + "value": "0x0", + "v": "0x0", + "r": "0xa5a849ae0147fd1603dd2c7cf2944e71f357d51fdbace864d09bbf254064f76a", + "s": "0x5f50311dcbb7d44b7f5317a64277882308f85b8b8b6b90e0a074b8c3627eef9a", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x5f5e101", + "maxPriorityFeePerGas": "0x103bf8c", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xe7351d791f869896393b615f050c786685843ffe", + "gas": "0x1e4d8", + "gasPrice": "0xeebdad", + "hash": "0x4d54607bbefec138f7f6228574c3a5ac68a38a60816d94c55f3f6bb681dd93bc", + "input": "0x4a959c43000000000000000000000000967c1a1e338f784dfea7c50c4905bf0ac03d8bce000000000000000000000000000000000000000000000000000093c42e52040000000000000000000000000000000000000000000000005150ae84a8cdf000000000000000000000000000000000000000000000000000000000000068f27757000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000413361171527809c82048c5693b67b999f3a619f1177fa9362691ce1dcbc72e6d91e4e3fc4730008b710cf3a642377c901090d24d4f0c8d6ce5335ccabfe667a0b1b00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xa", + "to": "0x45cb1ef73d47bc6fb68afe7c580d0126205c393b", + "transactionIndex": "0xc4", + "value": "0x93c42e520400", + "v": "0x422d", + "r": "0xa72fbe20ed1ddf2fb932249345543e66a72ded5a5086a2d8406ff25223243b97", + "s": "0x209e1cea7bb9a95f50226d07e51c8dfe3454a11d1dd6c11a53b0f5e19c69c0fe", + "type": "0x0", + "chainId": "0x2105" + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbcf0c95436efbd27fd7343931b7662069ff45cfa", + "gas": "0x61a80", + "gasPrice": "0x7a118c", + "hash": "0x86f57ed75d96b6f9fe4f08cac1362e51acf506095ddf0a5b0862f74d29cc8304", + "input": "0x1911503500000000000000000000000080cc08712aa61ce9dc7604f9ce7560a25094b862000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005fe936ea7bb85a2cf800000000000000000000000000000000002c3393433e1b172eaad1618f69b51000000000000000000000000000000000002c32c06b0909c9d20d8e1b1a6565de", + "nonce": "0x6b3c6", + "to": "0x3a32d2987b86a9c5552921289b8d4470075d360f", + "transactionIndex": "0xc5", + "value": "0x0", + "v": "0x1", + "r": "0xea44210ff0e238c3336b475fb31921e502ae8b44000c0010fa25244a63b74a4b", + "s": "0x6f48167b576c7079c819f67a4a9e3ddd19017ea43b31fce10f4ca5e2d885c6f6", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x7a118c", + "maxPriorityFeePerGas": "0x7a118c", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xfa634f22a9ac2c09ba1c6173ab83671c2b3d6841", + "gas": "0x3110a", + "gasPrice": "0x7407af", + "hash": "0x6068e82000df5c1949db0d83fbddeeb4aab3b656304285a1ae9a708a3917f78f", + "input": "0x9a85cea400000000000000000000000038bd574d791a438921de91b88793254e83c972900000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000271000000000000000000000000079cebe2ecfb503853f4de1bb751dd865a9f1923d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0", + "to": "0xcfd1ddb10a74e4a22633f1c64dcdc71bbea46bbc", + "transactionIndex": "0xc6", + "value": "0x8baeef2b776a0", + "v": "0x1", + "r": "0x36bdb492d9a1a452929de742f6f3a113986a87ca61b05ed3c76d5c87235b2ca9", + "s": "0x754a907b5b0f67834eef4bfb6b8b8cf17cec2c8026ff2e9f3ac1d37492f9d765", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x9793ca", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x6d97b808a86650193e1fee8b183fc4f56e757cb8", + "gas": "0x18ace", + "gasPrice": "0x668410", + "hash": "0x15598e7df91b512ec04fa423d83b4c3cf9a76501dadc8ec2ae8683e844c4b6b8", + "input": "0x41ffa814fd85596bd33f91df52d9e8809153a612c6c880d68d2156c471ae57cb865d8597", + "nonce": "0x62", + "to": "0xa5f565650890fba1824ee0f21ebbbf660a179934", + "transactionIndex": "0xc7", + "value": "0x354a6ba7a18000", + "v": "0x0", + "r": "0x3d035e4c42aac0b22413e35eea208ef784826bd58551bad685c2c2a16d4b172d", + "s": "0x1c15b868dd6871f2f7d5e1bb1b9f3437548e83ac3be422c0f8018139c6c71f2f", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x85e3e1", + "maxPriorityFeePerGas": "0x1100e1", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xd76ca98cb465a9747677ca94c68c852793672f3a", + "gas": "0x41bce", + "gasPrice": "0x64c56f", + "hash": "0x67c627668e540db231fa3e35df21d67c1101fa3c8d55545edf3fdf7ae62742d0", + "input": "0xa026383e000000000000000000000000624e2e7fdc8903165f64891672267ab0fcb9883100000000000000000000000042000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d76ca98cb465a9747677ca94c68c852793672f3a0000000000000000000000000000000000000000000000000000000068f2772100000000000000000000000000000000000000000000000e4cf4524302b5800000000000000000000000000000000000000000000000000000af8f7ca7afdd800000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x74f", + "to": "0xbe6d8f0d05cc4be24d5167a3ef062215be6d18a5", + "transactionIndex": "0xc8", + "value": "0x0", + "v": "0x0", + "r": "0xc954d8fcb584c2b6a3a352223eb014c2d386971f2a81f24c996163ad7533ab34", + "s": "0x55bf1300fa32f8a34048914d6f9edd5a83772b999aa5cfe8159894da4f6daca4", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xba81e6", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x05b944189552e05774871bd1f023c5b36a2a0bff", + "gas": "0xb646", + "gasPrice": "0x64c56f", + "hash": "0x5d7291d48523cf977b68893a8e59fc168a2f9c4200b2ec5cf01cbcb534fef7f7", + "input": "0x095ea7b3000000000000000000000000bbbfd134e9b44bfb5123898ba36b01de7ab93d980000000000000000000000000000000000000000000000017483325a90a5a8b6", + "nonce": "0x2b3", + "to": "0x50c5725949a6f0c72e6c4a641f24049a917db0cb", + "transactionIndex": "0xc9", + "value": "0x0", + "v": "0x1", + "r": "0xa79a28b60e4ca9c14551a594ced8b86f0eaca88b60e5cb17e4eb9b2e884435a", + "s": "0x769b4277d5c13f4e5ae44823c911a30fb7225fb2cc41f507302340385df43f4a", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xba81e6", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x9c6595067070efc2d3bd29624e7a0048ed0ca38d", + "gas": "0x8cf3b", + "gasPrice": "0x641076", + "hash": "0x784be1a76f76ebe410c5814e9e7907f6d452d7cb24770d40556867a6fb49d1ba", + "input": "0xad2fa6c80000000000000000000000001ab08498cff17b9723ed67143a050c8e8c2e31049a155f4fe1963ebc9d478d4b4e6a95e77ec959b0ab3ebfd88bb9de16e311c80d00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000005e000000000000000000000000000000000000000000000000000000000000006a00000000000000000000000000000000000000000000000000000000000000960000000000000000000000000000000000000000000000000000000000000010473c457ba2ee4ea2cc33a667702267cc99eaedc2282861a3c9d9034795617397b2201244a003085cbda1250a4c517858c6cea2421236ee23d3d7cdddc8c8ab6287bf017b6015398f3a711df185aa94f1dec76a153692921f89f1919e4ea615842c5ce59010a28bd5afa6d2e8e8e591996d2ad19cc6e06ab624e0b62bec90ad3ae08080a712d76a0d97941a15affe131cf21a80d72b552be9fe82d97217c46411110d94e90221a7d43e6efaa769d15722f9b93cb527a14c18c8ee1c5587c9b466968227c6b024ae9a7de35b2197f80f89968635673dec5267f3a4b98ac1da56612fd55bd532596b83259f478c5c2c180b2ab19965c22e076fb0929190fb4ff0dc65b8b675700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000e198c6944cae382902a375b0b8673084270a7f8ec5c28e240000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012b2926a59e80000000000000000000000000000000000000000000000000000000068f25f2500000000000000000000000000000000000000000000000000000000000007ea00000000000000000000000000000000000000000000000000000000000017990000000000000000000000000000000000000000000000000000000000002e0600000000000000000000000000000000000000000000000068155a43676e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004034a5c9394fb2fd3298ece07c16ec2ed009f6029a360f90f4e93933b55e2184d49f96e91a9c67a0d1aa92e5ce018c783d269ae25c834994be368b2c236c8d1e7a000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f647765622e6c696e6b2f697066732f6261666b726569636d776b33786c78626f7a627035683633787979776f636337646c7474333736686e346d6e6d686b376f6a71646362726b717a69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001e0181a5737464696edc001000003023000000003a1f091c50cca1ccfacc9d0000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000041036a94a31a761bdc824fcdf2b886154683cd4eb1a764d7b022629dcca4a5b8113f1e06fb5c51c15e064dafc90020c19f8480c5447230aabcc5257a039d3a8eb91b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000e198c6944cae382902a375b0b8673084270a7f8ec5c28e245e157586d17c0c55affec1224bda60ae4022df767094321163b24cb72d08508f801bd217562d1485264b5acaaccf6e9d4b4976e7c84d80898af8bb46d72c981f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002034a5c9394fb2fd3298ece07c16ec2ed009f6029a360f90f4e93933b55e2184d40000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000003023000000003a1f091c50a1fa9d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4242f9d5b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001d36d9dac82bd5c8e2a22e0e3b331ed725f379c46d1f7580d78d7537ceab935c80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000009c6595067070efc2d3bd29624e7a0048ed0ca38d00000000000000000000000000000000000000000000000000000000000000c4242f9d5b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001aeffa315d7fab9bd7376bed0d8ecf010c5100c9bcbfaf0de94701cd48282ae2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1ee1", + "to": "0xfd152dadc5183870710fe54f939eae3ab9f0fe82", + "transactionIndex": "0xca", + "value": "0x0", + "v": "0x0", + "r": "0x475ae7071b3975e1cef8c6183c5a2008093de5189009d57d01ca526cc8e38de5", + "s": "0x545ea7bfdb589107898eeaec600a2110544af1fef9a18e563159a712931446d3", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xb9cced", + "maxPriorityFeePerGas": "0xe8d47", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x20fe51a9229eef2cf8ad9e89d91cab9312cf3b7a", + "gas": "0xb18b", + "gasPrice": "0x55f85f", + "hash": "0xecd3ed5a98e9ece8f3cbc18985f74afafa17c7616261227322cdb3e2abd3a778", + "input": "0xa9059cbb00000000000000000000000045a1fd4e4a90d8b94bbf134496ab73be67df595c000000000000000000000000000000000000000000000000000000000c23d8a6", + "nonce": "0xef095", + "to": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "transactionIndex": "0xcb", + "value": "0x0", + "v": "0x1", + "r": "0xae692a76c757ac8facb6eb2a149abf3ece72a3a2743bceeda74c9caeed2f4cff", + "s": "0xd083087d4f6a99409a37ef4ed914a55840f53b612bf49c81fb678de7dce7785", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x808d088", + "maxPriorityFeePerGas": "0x7530", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0xbd9206599747812d823dd040e4a68924cf882747", + "gas": "0x2dc6c0", + "gasPrice": "0x567a32", + "hash": "0xd6eb2d5a27a621b2ffde50b2c0fa76ef9c9796b8a55709eb14a33443830cdc89", + "input": "0x1f31531e3021336309300e4547890ba82b352d4110594793329ce11444b011025b90144c15b3240e63b331f659a755ca436e34bb58c61215847d6d647e4b800d52b41cb7367758d23d820493385553eb581b66e274b279e75da5656011db52a47c8197a77e287d0b5ac761b67d4679f0a199a2427b2b96b7712c88d28c40542f5724a19c591d7f2ea3769100af5b427e7fa45760656256448353a0437f48a2b5a04c6067a271a7b0", + "nonce": "0x3ce3fc", + "to": "0xc8f26cadd69913665eb872f5dfc07b166ca3bc39", + "transactionIndex": "0xcc", + "value": "0x0", + "v": "0x1", + "r": "0xd9931885f7a91e48fe00ec2e29a3fe997eadfd21cec5cd8b108063f4d74a97dd", + "s": "0x6f93a96df88f9fd6af3c9398157fc1e85328d5a6a2ae6bfae7e728ffa8cd2dad", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x6a59e2", + "maxPriorityFeePerGas": "0xf703", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x36861d7fab130088150d6d798a90cc06b19e4619", + "gas": "0x989680", + "gasPrice": "0x558593", + "hash": "0x35005fb23756a8c26ed778dd6c448b92257d4cca1d01f19119e62cea3eb52603", + "input": "0x02000c0101000bb8003ce9d514f85b57b70de033e8418cad1299737fd36b8dfc7b30d268198b6cb23a9201010009c40064e9d55bd42770e29cb76904378db1d4ad3b9f2f2dec55a7c687ca70f3af6e601f02000c0000000bb80000e9d55bd42770e29cb7690437026dcaf89018176a3d97ea9715f1e9fbd8985c8a0001000bb8003ce9d55bd42770e29cb7690437217bff01a1405294d33c876856508598aeb9754b", + "nonce": "0x8620b", + "to": "0x74fc3c5fbce63b8d35a461b8fcc495c34b1fdde2", + "transactionIndex": "0xcd", + "value": "0x0", + "v": "0x0", + "r": "0xe4344abd2c0a4df336ed25cdc40dbb5205f3c3057954d38c9c892322bf614931", + "s": "0x183adf4c56bc6f1dcb44be89ad19cb85a59fc4dbcd8ade2451d233f9d713c048", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0xcad53e", + "maxPriorityFeePerGas": "0x264", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x6d19a10de9f739cefb7569ea909a1e9cd5b59298", + "gas": "0x61a80", + "gasPrice": "0x558330", + "hash": "0x8e7f8a8aa0ed0dbedc2b0a31adaca9f630848dc305bac834bc782237da19d9f5", + "input": "0xa5bf25160000000000000000000000000000000000000000000000000000000068f27707000000000000000000000000482fe995c4a52bc79271ab29a53591363ee30a890000000000000000000000004200000000000000000000000000000000000006000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda0291300000000000000000000000000000000000000000000000cd0a6e08a4adb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000409107468469a80000000000000000000000000000000000000000010486b139f83dd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104815b6dac44700000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x2f64", + "to": "0xb7f5bf799fb265657c628ef4a13f90f83a3a616a", + "transactionIndex": "0xce", + "value": "0x0", + "v": "0x1", + "r": "0x64b57fc46c2cf5d971c51b83befa4966e12cfa3bce7e614eded6fff919fa471f", + "s": "0x5f0edcc0f668941d4997c3513dd20d55e972bcea1876a377527a148544c819ec", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x989680", + "maxPriorityFeePerGas": "0x1", + "accessList": [] + }, + { + "blockHash": "0xf962166bc13ad9f1845160af28d4dd40a7cdafc50ba13a9eefe4c325f2610664", + "blockNumber": "0x2340d11", + "from": "0x64343e4c0095fbae8c9ac4d36628829bb2a81f2e", + "gas": "0x61a80", + "gasPrice": "0x558330", + "hash": "0x2b916e71f012a1545864b013cc6b76e10d742161038bfeac910410f54b64cdcf", + "input": "0x34df7d410000000000000000000000000000000000000000000000000000000068f277070000000000000000000000004200000000000000000000000000000000000006000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cd0a6e08a4adb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000409107468469a80000000000000000000000000000000000000000010486b139f83dd000000000000000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104815b6dac447000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x2b28", + "to": "0xb7f5bf799fb265657c628ef4a13f90f83a3a616a", + "transactionIndex": "0xcf", + "value": "0x0", + "v": "0x1", + "r": "0xa134310a969aea4f0c4f4baa44d6f07642cdfd5797ad2a11efc5b65af5c64a20", + "s": "0x7bc380ea6cde7fd4762b25d53e81270301b1674472dac3c7e96c4b9361ffef1a", + "type": "0x2", + "chainId": "0x2105", + "maxFeePerGas": "0x989680", + "maxPriorityFeePerGas": "0x1", + "accessList": [] + } + ], + "uncles": [] +}` + +const gasPriceJSON = `0x64c56f` + +const maxPriorityFeePerGasJSON = `0xf4240` + +const feeHistoryJSON = `{ + "OldestBlock": 36964626, + "Reward": [ + [ + 0, + 621, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1495084, + 2087032, + 4768590, + 6216478, + 10000000, + 11000000, + 25114020, + 400000000 + ], + [ + 0, + 10, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1149576, + 1535322, + 2991780, + 4900864, + 6270633, + 10500000, + 25000000, + 66143573, + 10000000000 + ], + [ + 0, + 50, + 358585, + 984604, + 984604, + 984604, + 984604, + 1000000, + 1000000, + 1000000, + 1100000, + 1346412, + 2000000, + 2795868, + 5390950, + 10065974, + 15701580, + 25127480, + 33665123, + 62636000, + 1000000000 + ], + [ + 0, + 100000, + 418706, + 924091, + 939487, + 958763, + 1000000, + 1000000, + 1000000, + 1012061, + 1100000, + 1126010, + 1535322, + 3264559, + 8090964, + 9539197, + 10500000, + 24667989, + 41672694, + 100000000, + 615036387 + ], + [ + 0, + 1, + 1, + 10, + 150, + 221087, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 2000000, + 2925733, + 4991680, + 9225667, + 17064070, + 44938274, + 2072352211 + ], + [ + 0, + 1, + 15123, + 877285, + 1000000, + 1000000, + 1083926, + 1100000, + 1119515, + 1386979, + 2222222, + 3055441, + 5769482, + 7000000, + 10321329, + 14300010, + 25000050, + 27611854, + 41428144, + 184320209, + 4499133945 + ], + [ + 0, + 11072, + 426500, + 925202, + 925202, + 925202, + 925202, + 925202, + 925202, + 925202, + 982770, + 1000000, + 1000000, + 1029301, + 1100000, + 1203320, + 1776752, + 5734072, + 10347185, + 28736714, + 6791861607 + ], + [ + 0, + 103, + 10659, + 845496, + 920294, + 1000000, + 1000000, + 1100000, + 1100000, + 1179776, + 1250000, + 1500000, + 1514332, + 2290876, + 5763653, + 7285676, + 20000000, + 24958695, + 25082405, + 48009753, + 210745751 + ], + [ + 0, + 100000, + 789372, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1200115, + 1766689, + 2997697, + 3378806, + 5747911, + 10000000, + 21098221, + 38483417, + 63492600, + 1258970188 + ], + [ + 0, + 1, + 100000, + 950756, + 950756, + 950756, + 1000000, + 1000000, + 1000000, + 1000000, + 1117489, + 1619714, + 2222222, + 2222222, + 5167912, + 5734072, + 9705456, + 10092553, + 20000000, + 26006684, + 111036113 + ], + [ + 0, + 57399, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1500000, + 1996346, + 5797239, + 5934620, + 13200010, + 25357155, + 26307385, + 1500000000 + ], + [ + 0, + 1, + 1, + 19635, + 1000000, + 1000000, + 1000000, + 1000000, + 1014175, + 1189784, + 1674620, + 2979389, + 5883989, + 10118749, + 13200010, + 22285157, + 27818587, + 50714310, + 67694638, + 189766068, + 8848780383 + ], + [ + 0, + 14396, + 266476, + 740376, + 978022, + 978022, + 978022, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1056325, + 1203320, + 2535582, + 5793656, + 10000000, + 18287772, + 51246210, + 3958517357 + ], + [ + 0, + 1, + 296, + 312, + 100000, + 959250, + 973665, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 1900848, + 5000000, + 9078562, + 12304885, + 18287772, + 20867168, + 25623105, + 25695785, + 1500000000 + ], + [ + 0, + 10, + 11413, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1576544, + 2988057, + 8113046, + 14300000, + 25000050, + 26533309, + 54483678, + 1500000000 + ], + [ + 0, + 1, + 12142, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1383913, + 1984674, + 3067121, + 10000000, + 12410920, + 19108671, + 21096479, + 48593418, + 87535960, + 797776438 + ], + [ + 0, + 1, + 6350, + 34722, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 2500000, + 3934717, + 6310907, + 9329651, + 14511526, + 22783037, + 24667989, + 41411526, + 127258615 + ], + [ + 0, + 1, + 328, + 426013, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1092263, + 1203000, + 1500000, + 1619139, + 2985927, + 6342833, + 10045022, + 20000000, + 23642148, + 25761720, + 51534480, + 3566479533 + ], + [ + 0, + 1, + 1, + 1, + 488, + 426843, + 983365, + 1000000, + 1051598, + 1210000, + 1676852, + 2538708, + 3000000, + 8032374, + 10500000, + 10789966, + 19989799, + 25868903, + 32014594, + 51799340, + 3555271674 + ], + [ + 0, + 1, + 903, + 937024, + 953659, + 953659, + 953659, + 953659, + 953659, + 1000000, + 1000000, + 1100000, + 1339000, + 2177150, + 6227919, + 6624459, + 10000000, + 17575920, + 25560720, + 44932758, + 1500000000 + ], + [ + 0, + 1, + 312, + 11579, + 815604, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1187510, + 1250000, + 1289965, + 2924167, + 2924167, + 12193835, + 25000050, + 28169084, + 38928328, + 155154967 + ], + [ + 0, + 1, + 1, + 6055, + 989011, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1058697, + 1129268, + 1500000, + 3013354, + 5836418, + 10500000, + 11340606, + 20000000, + 25996861, + 91154864, + 3063914707 + ], + [ + 0, + 1, + 281, + 200000, + 885979, + 1000000, + 1000000, + 1000000, + 1100000, + 1126000, + 1470402, + 1500000, + 1500000, + 2000000, + 2222222, + 9655130, + 10500000, + 13200010, + 25765420, + 25765420, + 100000000 + ], + [ + 0, + 1, + 13475, + 961806, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1220638, + 1470402, + 1662307, + 5000000, + 14520011, + 25380688, + 25610625, + 1500000000 + ], + [ + 0, + 1, + 12129, + 919372, + 989801, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1126000, + 1571460, + 7172320, + 10500000, + 25560720, + 28653096, + 956700755 + ], + [ + 0, + 1, + 1, + 50, + 13305, + 906632, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1066310, + 1136708, + 1500000, + 1717800, + 4820297, + 13217312, + 18587826, + 26729696, + 358432432 + ], + [ + 0, + 1, + 1, + 1, + 906, + 802009, + 927612, + 927612, + 927612, + 1000000, + 1000000, + 1000000, + 1165571, + 1250000, + 2207800, + 3604129, + 13289266, + 19652972, + 25681729, + 26508578, + 957603292 + ], + [ + 0, + 312, + 724651, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1573762, + 3480594, + 7620196, + 17296656, + 25846355, + 1500000000 + ], + [ + 0, + 1, + 100000, + 587405, + 844959, + 1000000, + 1000000, + 1100001, + 1250000, + 1250000, + 1280000, + 1500000, + 1500000, + 1500000, + 2000000, + 2885170, + 3374721, + 9730059, + 25960935, + 26343620, + 181908382 + ], + [ + 0, + 12490, + 829101, + 969661, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046591, + 1120597, + 1120597, + 1120597, + 1294312, + 1843344, + 7977055, + 17115224, + 100000000 + ], + [ + 0, + 1, + 121532, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1500000, + 2500000, + 10500000, + 14178366, + 22788918, + 1500000000 + ], + [ + 0, + 10, + 1048, + 486682, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1033651, + 1100000, + 1187510, + 1250000, + 1388807, + 2500000, + 5981609, + 13949871, + 20000000, + 25000050, + 535935281 + ], + [ + 0, + 1, + 1, + 100000, + 793425, + 829101, + 1000000, + 1000000, + 1000000, + 1089545, + 1100000, + 1296300, + 1616875, + 3084617, + 4001378, + 7186869, + 10000000, + 10642361, + 23791161, + 26556835, + 100000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1091922, + 1323991, + 2593770, + 5880459, + 6076968, + 6076968, + 10730379, + 14539043, + 25575016, + 91317229 + ], + [ + 0, + 1, + 10, + 30000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063305, + 1205757, + 1616875, + 2196262, + 10000010, + 12733583, + 26119725, + 1500000000 + ], + [ + 0, + 1, + 1, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1586098, + 4335511, + 14300000, + 26234360, + 52096620, + 957653278 + ], + [ + 0, + 1, + 100, + 100000, + 927676, + 966324, + 1000000, + 1000000, + 1000000, + 1003515, + 1100000, + 1377975, + 3000463, + 3696937, + 10052726, + 11307939, + 13221567, + 14407939, + 26396220, + 52834120, + 300000000 + ], + [ + 0, + 50, + 100000, + 266831, + 273955, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100001, + 1250000, + 2372004, + 6404332, + 10558586, + 20000000, + 26119725, + 118960641 + ], + [ + 0, + 88936, + 121287, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1500000, + 4000000, + 11063348, + 14539043, + 23372077, + 34850112, + 1500000000 + ], + [ + 0, + 88100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1077123, + 1100000, + 1126000, + 2200000, + 10443807, + 14397151, + 23028285, + 132268193 + ], + [ + 0, + 77531, + 169095, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1054778, + 1100000, + 1159849, + 1250000, + 1909077, + 2491034, + 7884334, + 10500000, + 10682664, + 14390000, + 25990819, + 40000000, + 318454343 + ], + [ + 0, + 72191, + 422971, + 992081, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1077123, + 1100000, + 2000000, + 10000000, + 10500000, + 10642361, + 13219087, + 20000000, + 397573701 + ], + [ + 0, + 1, + 1, + 1, + 87346, + 241447, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1091000, + 2000000, + 3673643, + 7241883, + 10642361, + 14300000, + 1500000000 + ], + [ + 0, + 1, + 87948, + 257563, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1040571, + 1091000, + 1132713, + 1500000, + 2923817, + 10500000, + 10696029, + 25784370, + 25855085, + 937572239 + ], + [ + 0, + 1, + 50, + 941123, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063000, + 1100000, + 1538193, + 4823076, + 10000000, + 10882311, + 40379192 + ], + [ + 0, + 50, + 165426, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1024546, + 1024546, + 1100000, + 1250000, + 1528414, + 1879584, + 5672470, + 10470019, + 10500000, + 10698568, + 20000000, + 26291404, + 1646566787 + ], + [ + 0, + 1, + 1, + 88462, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1062294, + 1100000, + 1215068, + 2000000, + 3472992, + 10358143, + 20450867, + 25111980, + 30000000, + 50467390, + 1500000000 + ], + [ + 0, + 1, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1034810, + 1250000, + 1250000, + 2315315, + 3404443, + 4092342, + 8370661, + 10151707, + 16543202, + 29672613, + 52469186, + 194110538, + 1817014064 + ], + [ + 0, + 1, + 50, + 100, + 1000000, + 1000000, + 1046590, + 1100000, + 1145000, + 1250000, + 1752799, + 2949458, + 3008591, + 3306427, + 3306427, + 7287237, + 9052424, + 14390000, + 30088862, + 83682840, + 1500000000 + ], + [ + 0, + 50, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063000, + 1100000, + 1100000, + 1100000, + 1146299, + 1184047, + 1208593, + 1500000, + 2220471, + 3916365, + 11912744, + 20000000, + 100000000 + ], + [ + 0, + 100, + 23091, + 367079, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1065767, + 1163196, + 1212066, + 2000000, + 2119830, + 10212066, + 28430974, + 230213400 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1200000, + 1354626, + 3146966, + 10000000, + 10696029, + 20000000, + 58021945, + 272178800 + ], + [ + 0, + 1, + 50, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1010579, + 1016033, + 1179229, + 1552993, + 2910545, + 10228099, + 14398734, + 24414545, + 29285713, + 1500000000 + ], + [ + 0, + 1, + 50, + 379530, + 979257, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1132000, + 1250000, + 1663995, + 2883203, + 5863899, + 5863899, + 9619242, + 15073801, + 25000050, + 991973801 + ], + [ + 0, + 1, + 50, + 57610, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1080300, + 1094996, + 1100000, + 1552993, + 4592037, + 10036435, + 15519965, + 1500000000 + ], + [ + 0, + 100, + 57610, + 701671, + 992775, + 1000000, + 1000000, + 1100000, + 1250000, + 1262425, + 1262425, + 1452337, + 1552993, + 2500000, + 2896175, + 10200131, + 10500000, + 10696029, + 12966576, + 25000000, + 100000000 + ], + [ + 0, + 1, + 1, + 57610, + 903342, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1089895, + 1126000, + 1500000, + 2363696, + 3968152, + 6623465, + 15000000, + 59463696 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 50, + 396531, + 1000000, + 1000000, + 1000000, + 1102795, + 1262831, + 1500000, + 1843630, + 3973827, + 7269252, + 10136219, + 10696730, + 20000000, + 1500000000 + ], + [ + 0, + 1, + 1, + 2, + 100, + 637143, + 975074, + 1000000, + 1000000, + 1009822, + 1108501, + 1250000, + 1250000, + 1500000, + 2499692, + 5713371, + 10665749, + 13956044, + 26561567, + 52131335, + 885194235 + ], + [ + 0, + 21607, + 251565, + 256425, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1001700, + 1100000, + 1200000, + 1300000, + 2071808, + 5736562, + 10698179, + 20838593, + 50192334 + ], + [ + 0, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1035904, + 1126000, + 1977965, + 2864832, + 8853308, + 13220000, + 33294463, + 400000000 + ], + [ + 0, + 1, + 1, + 1, + 2, + 3204, + 200000, + 1000000, + 1000000, + 1000000, + 1035904, + 1126000, + 2000000, + 2844023, + 6336198, + 11373073, + 15559353, + 23605995, + 47592180, + 133936837, + 10000000000 + ], + [ + 0, + 1, + 106, + 111525, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1107309, + 1432076, + 3196305, + 6074680, + 9625664, + 10000000, + 26869051, + 1500000000 + ], + [ + 0, + 11115, + 380196, + 877756, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1089695, + 2000000, + 8853308, + 13160000, + 13370800, + 23791885, + 92236954 + ], + [ + 0, + 1, + 1, + 1, + 12474, + 998334, + 1000000, + 1000000, + 1000000, + 1000000, + 1064698, + 1500000, + 1822510, + 3882356, + 5067332, + 9790420, + 10499526, + 19306434, + 25967557, + 46881440, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 10, + 10, + 30000, + 974734, + 996387, + 1000000, + 1000000, + 1000000, + 1102000, + 1250000, + 1854151, + 2813307, + 4674419, + 10000000, + 20889121, + 33016051, + 344895323 + ], + [ + 0, + 1, + 1, + 1, + 688, + 975710, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1037800, + 1250000, + 1500000, + 2103457, + 8047685, + 11000000, + 18919169, + 28585805, + 868682198 + ], + [ + 0, + 102723, + 982206, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1070096, + 1108501, + 2105782, + 2827896, + 5817669, + 10018996, + 16413560, + 22994962, + 28844506, + 103420794, + 1500000000 + ], + [ + 0, + 12295, + 393964, + 910691, + 927509, + 927509, + 1000000, + 1000000, + 1000000, + 1066549, + 1384902, + 1500000, + 2171705, + 3638328, + 8872359, + 10968848, + 17080575, + 23294135, + 28625067, + 80909928, + 836826933 + ], + [ + 0, + 100000, + 396542, + 397958, + 948428, + 948428, + 948428, + 948428, + 948428, + 948428, + 963754, + 1000000, + 1000000, + 1100000, + 1248628, + 1733378, + 4399141, + 8853404, + 9789872, + 14484128, + 145717310 + ], + [ + 0, + 80951, + 875058, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1057165, + 1119573, + 1799870, + 2905745, + 5262303, + 9475198, + 13160000, + 25000050, + 41750828, + 2001055560 + ], + [ + 0, + 13196, + 200000, + 388136, + 534101, + 964595, + 964595, + 1000000, + 1000000, + 1000000, + 1000000, + 1395475, + 1887945, + 2500000, + 3581616, + 7132632, + 13071051, + 14767584, + 25000050, + 29571157, + 2001055560 + ], + [ + 0, + 100, + 102723, + 102723, + 102723, + 102723, + 396628, + 937968, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1068922, + 1500000, + 13192367, + 16523756, + 1500000000 + ], + [ + 0, + 1, + 822, + 100000, + 575327, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1078000, + 1100000, + 1100000, + 1346166, + 1346166, + 7494766, + 8922462, + 11596342, + 14510370, + 25000050, + 400000000 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1075179, + 1500000, + 2824899, + 3842720, + 7320362, + 10695169, + 14510370, + 23637860, + 25834405, + 46043970, + 116380588, + 1500000000 + ], + [ + 0, + 200000, + 951349, + 951349, + 984832, + 1000000, + 1000000, + 1045912, + 1333948, + 1863862, + 1959677, + 3649677, + 5202825, + 5600396, + 5600396, + 10000000, + 14255107, + 15533459, + 26226201, + 49539677, + 1000000000 + ], + [ + 0, + 13352, + 946568, + 995219, + 995219, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1021003, + 1078000, + 1078000, + 1178000, + 1500000, + 6293571, + 13346450, + 23701780, + 1500000000 + ], + [ + 0, + 1, + 10962, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1178000, + 2249721, + 2868230, + 5575875, + 9941101, + 13193738, + 15618307, + 22945356, + 25000050, + 26324771, + 45000000, + 285768341 + ], + [ + 0, + 100000, + 993989, + 1000000, + 1000000, + 1000000, + 1008430, + 1250000, + 1788615, + 2157378, + 2876660, + 4539472, + 9041716, + 10903253, + 14476000, + 22308459, + 25816022, + 32826958, + 56242420, + 118234088, + 8186204172 + ], + [ + 0, + 10, + 317, + 739062, + 787713, + 792494, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1250000, + 2000000, + 2602844, + 4086305, + 10000000, + 12827390, + 14815202, + 26033345, + 36992101, + 430198405 + ], + [ + 0, + 1, + 150, + 848682, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1075179, + 1300001, + 1737363, + 2724186, + 9552386, + 10083013, + 23880965, + 25000050, + 36992101, + 1500000000 + ], + [ + 0, + 1, + 1, + 12591, + 732440, + 746881, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1961681, + 4036207, + 9565338, + 10112556, + 13658003, + 24517830, + 25012151, + 34679622, + 1491767336 + ], + [ + 0, + 1, + 12641, + 760022, + 911340, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1116000, + 1474774, + 2980477, + 9739567, + 13193166, + 23688000, + 1800000000 + ], + [ + 0, + 1, + 1, + 50, + 100000, + 891312, + 993113, + 1000000, + 1000000, + 1100000, + 2500000, + 2931972, + 3527719, + 5643402, + 5643402, + 9315581, + 10500000, + 14476000, + 25000000, + 45000000, + 100000000 + ], + [ + 0, + 150, + 98130, + 984322, + 984322, + 984322, + 984322, + 984322, + 984322, + 984322, + 1000000, + 1000000, + 1000000, + 1000000, + 1350848, + 1886246, + 2500000, + 6035031, + 13768048, + 23913345, + 913697071 + ], + [ + 0, + 1, + 1, + 1, + 740803, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1108501, + 1451507, + 1500000, + 2500000, + 2920659, + 5053186, + 6817853, + 6817853, + 10000000, + 20000000, + 1500000000 + ], + [ + 0, + 1, + 976, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1102697, + 1821142, + 1821142, + 2592728, + 2896792, + 3220858, + 10000000, + 18709100, + 24517830, + 48785170, + 1800000000 + ], + [ + 0, + 1, + 1, + 50, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 2222222, + 2857317, + 3346152, + 7281297, + 14846280, + 23533484, + 26239528, + 84310210, + 528659825 + ], + [ + 0, + 1, + 11391, + 745620, + 976288, + 976288, + 976288, + 976288, + 1000000, + 1000000, + 1000000, + 1000000, + 1200000, + 1797880, + 3293059, + 7255516, + 10392866, + 11997134, + 24587318, + 40693892, + 731592906 + ], + [ + 0, + 697, + 13420, + 904210, + 927922, + 945112, + 1000000, + 1000000, + 1100000, + 1500000, + 2295341, + 2418018, + 2793012, + 2876182, + 7320199, + 10157930, + 14750490, + 24718650, + 24761160, + 55280164, + 1800000000 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1056996, + 1500000, + 2500000, + 2783229, + 2783229, + 4381328, + 10000000, + 10500000, + 20475725, + 100000000 + ], + [ + 0, + 10, + 697, + 927109, + 999187, + 1000000, + 1000000, + 1000000, + 1150000, + 1500000, + 1500000, + 2144890, + 2500000, + 2700112, + 2876269, + 4890849, + 5839464, + 5839464, + 5839464, + 18033786, + 235463457 + ], + [ + 0, + 697, + 697, + 750823, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1183001, + 1940924, + 3100000, + 4630874, + 10529937, + 19529554, + 1800000000 + ], + [ + 0, + 91491, + 1000000, + 1000000, + 1000000, + 1116225, + 1312833, + 2222222, + 2738684, + 2927395, + 4890849, + 7887484, + 10000010, + 10487873, + 13200010, + 19529554, + 20000000, + 25048530, + 49522320, + 87938412, + 972945944 + ], + [ + 0, + 100000, + 961080, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1045801, + 2165299, + 2739706, + 5442789, + 11998497, + 12005087, + 24541866, + 24832295, + 279112533 + ], + [ + 0, + 10, + 10, + 100, + 831574, + 1000000, + 1000000, + 1000000, + 1000000, + 1078000, + 1250000, + 1250000, + 1500000, + 2000000, + 2623102, + 3000000, + 6092320, + 11000000, + 11071447, + 11998429, + 1500000000 + ], + [ + 0, + 1, + 10, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1078000, + 1102328, + 1509826, + 10000000, + 11999459, + 1800000000 + ], + [ + 0, + 227, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1050289, + 1250000, + 1509826, + 1889551, + 3063121, + 10071629, + 13200000, + 17155901, + 26526196, + 400000000 + ], + [ + 0, + 419731, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1008165, + 1222821, + 1509826, + 3000000, + 5773810, + 11082902, + 14708374, + 37773380, + 1595401706 + ], + [ + 0, + 1, + 1, + 31400, + 181038, + 893006, + 893006, + 1000000, + 1000000, + 1000000, + 1028300, + 2000000, + 2382876, + 2805088, + 5714372, + 7025363, + 9379555, + 11604685, + 25370240, + 27357553, + 1800000000 + ], + [ + 0, + 1, + 10, + 100, + 75179, + 417915, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1076580, + 1100000, + 1833653, + 2918444, + 7898199, + 11000000, + 18565540, + 25000000, + 26632523, + 1500000000 + ], + [ + 0, + 1, + 100, + 227, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1107820, + 2500000, + 2620663, + 3908018, + 7573208, + 10350764, + 33834252, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 297364, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1011824, + 1100000, + 1250000, + 1419658, + 2500000, + 5594938, + 10024049, + 11998238, + 25000000, + 1800000000 + ], + [ + 0, + 10, + 130763, + 564070, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 2500000, + 2500000, + 2916005, + 13000000, + 100000000 + ], + [ + 0, + 1, + 227, + 512978, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1923601, + 3000000, + 10500000, + 13200010, + 25185945, + 451450495 + ], + [ + 0, + 1, + 1, + 1, + 15550, + 950000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1047971, + 1427832, + 2500000, + 3530131, + 9969012, + 10042999, + 14138309, + 36249150, + 189128331 + ], + [ + 0, + 1, + 1, + 459, + 93610, + 414877, + 987512, + 987512, + 1000000, + 1000000, + 1000000, + 1851986, + 2902059, + 6941766, + 10500000, + 11681335, + 16771081, + 24598008, + 44306257, + 104413112, + 1800000000 + ], + [ + 0, + 50, + 30000, + 936715, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 2500000, + 7593864, + 10589253, + 11604685, + 23209370, + 77085359 + ], + [ + 0, + 10, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1457253, + 1849887, + 3000000, + 10000000, + 11000000, + 20000000, + 24844215, + 49207955, + 400000000 + ], + [ + 0, + 1, + 10, + 10, + 4120, + 40000, + 975315, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029346, + 1040404, + 1100000, + 1250000, + 2000000, + 10000000, + 25000050, + 1500000000 + ], + [ + 0, + 50, + 100, + 30000, + 621832, + 1000000, + 1000000, + 1000000, + 1000000, + 1011000, + 1029346, + 1250000, + 1250000, + 1300001, + 1509826, + 2500000, + 4882306, + 10000000, + 14300010, + 24767585, + 131000000 + ], + [ + 0, + 1, + 10, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1002000, + 1036490, + 1106964, + 1202797, + 2000000, + 2962712, + 10125755, + 17407027, + 3000000000 + ], + [ + 0, + 100000, + 648596, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1002000, + 1066578, + 1100001, + 2000000, + 7270705, + 11215535, + 11676471, + 14148260, + 14148260, + 1500000000 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1099774, + 1250000, + 2500000, + 2500000, + 2500000, + 2500000, + 9517809, + 10500000, + 10691844, + 14141285, + 20815751, + 1000000000 + ], + [ + 0, + 1, + 10, + 100, + 420302, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1122745, + 2346371, + 6246277, + 11071447, + 24757625, + 903939499 + ], + [ + 0, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1020411, + 1933237, + 2500000, + 9711802, + 10589253, + 10691844, + 12766728, + 20000000, + 1500000000 + ], + [ + 0, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1002000, + 1043050, + 1100000, + 1857314, + 2469907, + 2500000, + 2948410, + 8028163, + 15286857, + 40246215, + 134470092 + ], + [ + 0, + 100000, + 910900, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1058490, + 1105832, + 1900732, + 2500000, + 2500000, + 2911759, + 7304150, + 10500000, + 10691844, + 11648178, + 1500000000 + ], + [ + 0, + 1, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1128714, + 1164572, + 1897221, + 2500000, + 2500000, + 2931419, + 4085664, + 11648178, + 24219425, + 313106024 + ], + [ + 0, + 1, + 1, + 901465, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1053513, + 1108509, + 1300001, + 2500000, + 2901175, + 7690511, + 10000000, + 14150088, + 23434769, + 38900965, + 55438085, + 599101226 + ], + [ + 0, + 1, + 1, + 1, + 150, + 959248, + 959248, + 982093, + 1000000, + 1000000, + 1000000, + 1052317, + 1237113, + 2500000, + 2832780, + 4246742, + 9463101, + 10695779, + 25000050, + 45753522, + 1500000000 + ], + [ + 0, + 1, + 100, + 960162, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1111721, + 1371863, + 2000447, + 2883004, + 8957628, + 10000010, + 19245319, + 30000000, + 546769925 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1098023, + 1250000, + 1905556, + 2500000, + 2824638, + 5568966, + 10500000, + 20000000, + 23833285, + 24090275, + 24327000, + 1500000000 + ], + [ + 0, + 1, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1122802, + 1500000, + 2222222, + 2500000, + 5918926, + 10000000, + 10691844, + 16037766, + 23833285, + 25850478, + 390212878 + ], + [ + 0, + 10, + 15550, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1062834, + 1500000, + 1843692, + 4643821, + 10500000, + 10698691, + 12772060, + 25842818, + 131000000 + ], + [ + 0, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1083352, + 1135567, + 1135567, + 1250000, + 1250000, + 1530198, + 2500000, + 2870736, + 3100000, + 10500000, + 23670535, + 400000000 + ], + [ + 0, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029000, + 1029000, + 1100000, + 1250000, + 1250000, + 2088574, + 3418021, + 7072252, + 10605000, + 15015000, + 23764750, + 131000000 + ], + [ + 0, + 1, + 30000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1006808, + 1135567, + 1151559, + 2500000, + 4649279, + 10500000, + 18369663, + 25000000, + 100000000 + ], + [ + 0, + 1, + 100000, + 423130, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029802, + 1100000, + 1592544, + 2500000, + 3000000, + 10638316, + 12940588, + 25000050, + 1500000000 + ], + [ + 0, + 10, + 100, + 385256, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100001, + 2000000, + 2841155, + 9786334, + 10590035, + 23350945, + 110386471 + ], + [ + 0, + 100, + 386711, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1047091, + 1070241, + 1070241, + 1300001, + 2500000, + 3986844, + 6624459, + 6624459, + 10000000, + 10571517, + 14298375, + 107418673 + ], + [ + 0, + 1, + 30000, + 394598, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1007887, + 1500000, + 1823421, + 2173669, + 2500000, + 3000000, + 7407617, + 10155800, + 23115310, + 23670535, + 400000000 + ], + [ + 0, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1250000, + 1250000, + 1250000, + 1500000, + 2500000, + 2500000, + 3626338, + 3626338, + 10015341, + 10671603, + 23202650, + 2000000000 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000756, + 1119076, + 1250000, + 1642656, + 2908446, + 10519222, + 23202650, + 100000000 + ], + [ + 0, + 45520, + 381077, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1030000, + 1072115, + 1250000, + 8540603, + 16791983, + 72491391, + 588545309 + ], + [ + 0, + 50, + 98998, + 973567, + 973567, + 973567, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1067000, + 2500000, + 3060920, + 8234867, + 10555764, + 23202650, + 33766381, + 344624175 + ], + [ + 0, + 1, + 77, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1047128, + 1067000, + 1250000, + 2827959, + 5282099, + 10500000, + 20000000, + 30000000, + 143581830 + ], + [ + 0, + 1, + 100000, + 667613, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1047128, + 1100000, + 1250000, + 3106302, + 8832791, + 9665334, + 11665500, + 42420000, + 3000000000 + ], + [ + 0, + 377502, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041033, + 1052000, + 1162546, + 1500000, + 2500000, + 5830300, + 15756885, + 16791983, + 1000000000 + ], + [ + 0, + 100, + 981698, + 1000000, + 1000000, + 1000000, + 1028095, + 1100000, + 1500000, + 2500000, + 3785751, + 6624459, + 6624459, + 7423685, + 10500000, + 15528497, + 16794930, + 16794930, + 16794930, + 45869880, + 140333518 + ], + [ + 0, + 1, + 1, + 36878, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100001, + 1853057, + 2737185, + 5424161, + 10000000, + 10865258, + 25000050, + 67056211, + 296676428, + 5126665382 + ], + [ + 0, + 1, + 75594, + 213921, + 992499, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1040130, + 1418964, + 2500000, + 3146432, + 7360860, + 10500000, + 12657358, + 22855640, + 34925320, + 75705910, + 3287128949 + ], + [ + 0, + 1, + 1, + 1, + 1, + 81912, + 846384, + 850000, + 855830, + 868954, + 1000000, + 1000000, + 1100001, + 1390551, + 2500000, + 2500000, + 5471835, + 10339054, + 22897395, + 45794790, + 847493062 + ], + [ + 0, + 1, + 1, + 1, + 100000, + 918685, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1200000, + 1250000, + 2230760, + 2850488, + 9951553, + 12840000, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 1, + 100, + 411458, + 866740, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 2341089, + 2500000, + 3846364, + 7633301, + 10000010, + 22655900, + 32058884, + 400000000 + ], + [ + 0, + 1, + 1, + 100, + 100000, + 884361, + 1000000, + 1000000, + 1005806, + 1200000, + 1500000, + 2000000, + 2623710, + 3609893, + 7162068, + 10150685, + 10530000, + 23042735, + 32651760, + 162811967, + 1333811560 + ], + [ + 0, + 77, + 100000, + 339090, + 861438, + 955302, + 955302, + 1000000, + 1000000, + 1006000, + 1100000, + 1354375, + 2192301, + 2583542, + 3859902, + 9257646, + 10530000, + 17700759, + 25999535, + 46085470, + 1302726953 + ], + [ + 0, + 100, + 788697, + 919116, + 958480, + 958480, + 958480, + 1000000, + 1000216, + 1218563, + 1500000, + 2130600, + 2500000, + 3539675, + 4887123, + 7887174, + 10064467, + 16278216, + 24704811, + 68364768, + 1566861104 + ], + [ + 0, + 1, + 50, + 100, + 830503, + 910915, + 925870, + 1000000, + 1264202, + 1652310, + 2343292, + 3000000, + 3506844, + 4798038, + 7425366, + 9975382, + 16798019, + 22655900, + 27000410, + 67741828, + 2210797002 + ], + [ + 0, + 1, + 1, + 10, + 40000, + 395917, + 932068, + 932068, + 932068, + 1000000, + 1000000, + 1000000, + 1345821, + 1400000, + 2000000, + 3091706, + 5661711, + 8465658, + 13081658, + 30069400, + 571440738 + ], + [ + 0, + 77, + 100000, + 200000, + 768830, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1330986, + 1653871, + 1653871, + 2500000, + 3795933, + 10000000, + 23283975, + 33476269, + 33476269, + 400000000 + ], + [ + 0, + 1, + 50590, + 725797, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1117950, + 1500000, + 2314472, + 2614092, + 5787902, + 10500000, + 23159415, + 25000000, + 100000000 + ], + [ + 0, + 1, + 2, + 550084, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1012001, + 1357945, + 1538473, + 2909461, + 4690685, + 5479870, + 9697896, + 11193640, + 20801469, + 29387619, + 58693394, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 50, + 434415, + 961612, + 961612, + 961612, + 961612, + 1000000, + 1000000, + 1113125, + 1731154, + 4250537, + 10500000, + 10530000, + 16799436, + 26001369, + 72985615, + 649477769 + ], + [ + 0, + 1, + 10, + 100, + 200000, + 638557, + 939147, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1500000, + 2227372, + 3000000, + 8242083, + 10500000, + 36950211, + 269303146 + ], + [ + 0, + 1, + 8471, + 743520, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1250000, + 2106789, + 5935918, + 10175598, + 12310000, + 17701072, + 23283975, + 31861366, + 67051438, + 1021776861 + ], + [ + 0, + 10, + 100, + 320879, + 999177, + 999177, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 1500000, + 1500000, + 2500000, + 3000000, + 10500000, + 20040194, + 37439377, + 1500000000 + ], + [ + 0, + 1, + 10, + 50, + 95782, + 499522, + 974943, + 974943, + 1000000, + 1000000, + 1250000, + 1699273, + 2887230, + 5399360, + 10000000, + 13200000, + 19714757, + 26709592, + 32103875, + 48141160, + 3000000000 + ], + [ + 0, + 1, + 271, + 100000, + 991130, + 991130, + 991130, + 991130, + 1000000, + 1000000, + 1000000, + 1108844, + 2209888, + 2788200, + 2967971, + 7313763, + 16545639, + 22134884, + 24368300, + 41758763, + 500000002 + ], + [ + 0, + 1, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1500000, + 1500000, + 1500000, + 2500000, + 7810251, + 17700759, + 25000000, + 26001369, + 35511099, + 48815580, + 2532251927 + ], + [ + 0, + 1, + 50, + 75, + 11634, + 100000, + 351226, + 942797, + 1000000, + 1000000, + 1000000, + 1025374, + 1100000, + 1236524, + 1250000, + 1588636, + 5404695, + 6772861, + 10892375, + 22948651, + 191782325 + ], + [ + 0, + 1, + 660, + 802742, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1047477, + 1437500, + 2891012, + 10500000, + 20012976, + 24332615, + 24407790, + 24481415, + 1500000000 + ], + [ + 0, + 1, + 50, + 11484, + 116499, + 254019, + 950000, + 950000, + 1000000, + 1000000, + 1000000, + 1000000, + 1068125, + 1160301, + 1861930, + 2911660, + 7284293, + 10285800, + 16799546, + 20369692, + 1500000000 + ], + [ + 0, + 10, + 50, + 13304, + 928577, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1224000, + 1500000, + 2423213, + 2856945, + 2948440, + 2973423, + 16800470, + 79172847 + ], + [ + 0, + 1, + 10, + 451, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1081554, + 1157383, + 1250000, + 2000000, + 3002959, + 16799801, + 100000000 + ], + [ + 0, + 1, + 1, + 50, + 14185, + 924327, + 1000000, + 1000000, + 1000000, + 1000000, + 1082000, + 1224237, + 1500000, + 1732147, + 2177576, + 2500000, + 10500000, + 11094525, + 13406137, + 27983802, + 1500000000 + ], + [ + 0, + 1, + 50, + 13934, + 611342, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1079313, + 1155401, + 2500000, + 5427191, + 10500000, + 16799436, + 20363615, + 25000000, + 26460366, + 48735090, + 898784803 + ], + [ + 0, + 1, + 1, + 1, + 50, + 100000, + 966326, + 966326, + 1000000, + 1000000, + 1019525, + 1037202, + 1135567, + 1250000, + 2222222, + 4024235, + 10102875, + 14300010, + 24448650, + 31908861, + 275625743 + ], + [ + 0, + 50, + 50, + 40000, + 40000, + 973225, + 973225, + 973225, + 992750, + 1000000, + 1000000, + 1029698, + 1100000, + 1250000, + 2500000, + 7728411, + 10500000, + 15563844, + 17847371, + 25000050, + 131000000 + ], + [ + 0, + 1, + 50, + 2720, + 123697, + 1000000, + 1000000, + 1000000, + 1000000, + 1014360, + 1100000, + 1252476, + 1929134, + 2895013, + 6948729, + 10820732, + 16744496, + 24227015, + 26833763, + 69102699, + 1451277974 + ], + [ + 0, + 50, + 12534, + 852547, + 852547, + 874584, + 1000000, + 1022163, + 1278833, + 2124524, + 2401943, + 3267711, + 6613440, + 10000000, + 10965166, + 13967953, + 22154711, + 26109642, + 42498911, + 150201516, + 7715258234 + ], + [ + 0, + 1, + 344, + 219295, + 809207, + 809207, + 809207, + 987104, + 1000000, + 1049000, + 1100000, + 1210000, + 2741434, + 5641253, + 5748343, + 7215810, + 10000000, + 13967953, + 22282403, + 26452587, + 558478633 + ], + [ + 0, + 1, + 50, + 100000, + 421668, + 958519, + 958519, + 958519, + 958519, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1096713, + 1100000, + 3867302, + 9664362, + 22872134, + 24225735, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 10, + 50, + 10526, + 423371, + 1000000, + 1000000, + 1000000, + 1058667, + 1335361, + 2655628, + 5794270, + 10316347, + 14448300, + 24603265, + 26568390, + 46647977, + 400000000 + ], + [ + 0, + 1, + 77, + 425045, + 700195, + 966523, + 966523, + 966523, + 966523, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 2000000, + 4000000, + 6919784, + 12859870, + 25848491, + 48321810, + 597369469 + ], + [ + 0, + 1, + 10, + 50, + 29658, + 425408, + 425432, + 959271, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1360854, + 3959271, + 5722073, + 8034018, + 10493642, + 11370714, + 16017864, + 400000000 + ], + [ + 0, + 50, + 191743, + 580821, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1137130, + 1590740, + 3000000, + 9502851, + 11966232, + 14300010, + 24442148, + 25402250, + 1506015000 + ], + [ + 0, + 10, + 50, + 11937, + 424387, + 1000000, + 1000000, + 1000000, + 1043667, + 1085229, + 1100000, + 1100000, + 1100000, + 1250000, + 1500000, + 2500000, + 3115793, + 10500000, + 25175645, + 30000000, + 991513743 + ], + [ + 0, + 10, + 50, + 13016, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1300001, + 2106789, + 10000000, + 10209774, + 15475673, + 3000000000 + ], + [ + 0, + 50, + 10595, + 958713, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1010422, + 1100000, + 1500000, + 1500000, + 1500000, + 3898831, + 10000000, + 14366561, + 16190331, + 25524435 + ], + [ + 0, + 50, + 10896, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1036130, + 1100000, + 3062945, + 10012947, + 10445922, + 10445922, + 10500000, + 15730011, + 400000000 + ], + [ + 0, + 1, + 50, + 12248, + 826125, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1096000, + 1100000, + 1111358, + 1500000, + 2000000, + 9415161, + 12212938, + 12747156, + 23147766, + 55796992 + ], + [ + 0, + 897, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1410451, + 1500000, + 2149958, + 3403718, + 3403718, + 3425478, + 9415161, + 9415161, + 10490790, + 25000050, + 1500000000 + ], + [ + 0, + 1, + 50, + 14413, + 1000000, + 1000000, + 1000000, + 1000000, + 1096000, + 1410451, + 2222222, + 4995412, + 10156953, + 10500000, + 10528443, + 20683098, + 25299505, + 50408690, + 109613906, + 615848739, + 31048757141 + ], + [ + 0, + 1, + 50, + 100000, + 939392, + 996475, + 1000000, + 1000000, + 1000000, + 1000000, + 1026636, + 1254899, + 2275835, + 2902036, + 4203266, + 9389165, + 10467835, + 14693467, + 25314630, + 63007128, + 1714278996 + ], + [ + 0, + 50, + 11886, + 908734, + 969342, + 969342, + 969342, + 969342, + 969342, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1436012, + 2000000, + 2907400, + 10119802, + 25299505, + 1500000000 + ], + [ + 0, + 1, + 1, + 50, + 13121, + 909501, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1024900, + 1500000, + 2000000, + 6996197, + 10063589, + 12349910, + 18000000, + 26125538, + 50599010, + 430422646 + ], + [ + 0, + 1, + 1, + 897, + 200000, + 469935, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1930870, + 2912333, + 3343775, + 10000000, + 10500000, + 25000050, + 43107635, + 3223774696 + ], + [ + 0, + 1, + 1, + 1, + 709, + 421584, + 984645, + 984645, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1008870, + 1458163, + 2896978, + 3732463, + 10008870, + 22505254, + 50623140, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 1936, + 860697, + 931088, + 946443, + 946443, + 946443, + 955313, + 1000000, + 1000000, + 1100000, + 1100000, + 2403741, + 3416549, + 9917780, + 25000050, + 27828436, + 102441272 + ], + [ + 0, + 1, + 12357, + 951226, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1114308, + 1134736, + 1500000, + 3780555, + 8607980, + 10083372, + 17797124, + 25037775, + 106692016 + ], + [ + 0, + 1, + 11485, + 426124, + 957982, + 957982, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 2000000, + 5705379, + 9918078, + 21305087, + 25311570, + 25311570, + 32127858, + 1500000000 + ], + [ + 0, + 1, + 11839, + 194345, + 274856, + 889390, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1042000, + 1100000, + 2971029, + 3460212, + 7249090, + 10059301, + 10409739, + 24714661, + 25000050, + 42625934 + ], + [ + 0, + 1, + 10, + 13969, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 2019013, + 5845739, + 10000000, + 10500000, + 15040443, + 25455680, + 1500000000 + ], + [ + 0, + 1, + 1, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 2000000, + 3006386, + 5954447, + 5954447, + 9562809, + 10500000, + 15133839, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 1, + 100000, + 427559, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1485578, + 1978115, + 8461569, + 10037609, + 10500000, + 50885920, + 1500000000 + ], + [ + 0, + 1, + 1, + 10, + 50, + 100000, + 757736, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1259477, + 2876855, + 4947275, + 10500000, + 25000050, + 400000000 + ], + [ + 0, + 1, + 398, + 424176, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1107641, + 2000000, + 3064750, + 3418845, + 10035556, + 10560259, + 20324123, + 33663340, + 943704989 + ], + [ + 0, + 50, + 911402, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1005511, + 1610510, + 7247259, + 10024861, + 10037609, + 10500000, + 17686921, + 91502781 + ], + [ + 0, + 1, + 11855, + 286770, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1043571, + 1071000, + 1250000, + 1250000, + 1500000, + 2500000, + 3448690, + 8912705, + 11009757, + 25442960, + 1500000000 + ], + [ + 0, + 1, + 1, + 13299, + 423162, + 990428, + 990428, + 990428, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1877662, + 5759591, + 10019820, + 12106663, + 26274891, + 96713110 + ], + [ + 0, + 1, + 1, + 1, + 469, + 200000, + 911402, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1011598, + 1250000, + 3006566, + 11541200, + 25565655, + 56009250, + 1500000000 + ], + [ + 0, + 1, + 1, + 908, + 418922, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1108671, + 1300001, + 2222222, + 3072066, + 10077465, + 13140665, + 25450530, + 43350353, + 1050000000 + ], + [ + 0, + 31, + 100000, + 420825, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1011598, + 1100001, + 3010657, + 10081797, + 10500000, + 25360940, + 25565655, + 25565655, + 172873514 + ], + [ + 0, + 13265, + 419363, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1056672, + 1100000, + 1500000, + 2000000, + 3000000, + 9918000, + 10061926, + 10445738, + 25331790, + 933262542 + ], + [ + 0, + 1, + 50, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1076885, + 1250000, + 4000000, + 10075447, + 13553284, + 22854488, + 33552537, + 1500000000 + ], + [ + 0, + 1215, + 24809, + 300278, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1088980, + 1500000, + 1585885, + 2036533, + 5969098, + 5969098, + 5969098, + 10037609, + 25135290, + 200000000 + ], + [ + 0, + 862, + 175470, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029625, + 1101282, + 1144013, + 2000000, + 3036033, + 4000000, + 10037609, + 10048632, + 10054235, + 25135290, + 1500000000 + ], + [ + 0, + 1, + 1, + 10920, + 409024, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1035794, + 1108971, + 2966861, + 6138934, + 10082929, + 25939667, + 383350146 + ], + [ + 0, + 1, + 1, + 1, + 10, + 497, + 63732, + 1000000, + 1000000, + 1000000, + 1109493, + 1217087, + 1399861, + 2957159, + 3283586, + 10070932, + 11743138, + 26249872, + 41800182, + 50498980, + 570580763 + ], + [ + 0, + 1, + 50, + 772, + 831125, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1012299, + 1103587, + 1250000, + 2222222, + 5187269, + 15018304, + 26453951, + 64383927, + 1763694742 + ], + [ + 0, + 1, + 13700, + 407575, + 915562, + 1000000, + 1000000, + 1000000, + 1000000, + 1086820, + 1159903, + 1250000, + 1500000, + 2000000, + 3988874, + 6624459, + 6624459, + 7276224, + 10500000, + 24868350, + 571336493 + ], + [ + 0, + 1, + 2, + 406954, + 989751, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041392, + 1208774, + 1580565, + 2146926, + 3256586, + 7339963, + 10500000, + 24714990, + 25000050, + 42532022, + 3000000000 + ], + [ + 0, + 1, + 2, + 10, + 14245, + 989921, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1009696, + 1009696, + 1100000, + 1772994, + 3497356, + 10113159, + 20000000, + 42816726, + 618931619 + ], + [ + 0, + 1, + 13036, + 46053, + 100000, + 947178, + 984382, + 984382, + 1000000, + 1000000, + 1000000, + 1000000, + 1065240, + 1211814, + 1500000, + 2774995, + 9221726, + 10086265, + 17224169, + 24417260, + 1500000000 + ], + [ + 0, + 13097, + 31732, + 941672, + 999926, + 999926, + 1000000, + 1000000, + 1000000, + 1000000, + 1028492, + 1100000, + 1250000, + 1255999, + 1620451, + 2912370, + 4912659, + 10079611, + 18103105, + 25000000, + 118908407 + ], + [ + 0, + 1, + 12460, + 570136, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1011310, + 1344561, + 2049632, + 7247468, + 9739846, + 25834730, + 76675165 + ], + [ + 0, + 1, + 1, + 14862, + 40000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1013110, + 1294765, + 2000000, + 4000000, + 14705449, + 25000050, + 1000000000 + ], + [ + 0, + 1, + 378, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1101559, + 1477906, + 2962456, + 10000000, + 13930472, + 24575725, + 28543795, + 60263828, + 1760479551 + ], + [ + 0, + 1, + 1, + 77, + 402771, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1500000, + 6559874, + 10065606, + 11053495, + 20000000, + 242212911 + ], + [ + 0, + 1, + 1, + 80310, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1012260, + 1100000, + 1500000, + 10000000, + 24419920, + 71653777 + ], + [ + 0, + 173, + 47603, + 937818, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1500000, + 2000000, + 7328945, + 15094655, + 24166220, + 895102855 + ], + [ + 0, + 1, + 77, + 12450, + 200000, + 298722, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1556401, + 3019187, + 10086265, + 12272860, + 16580479, + 24403650, + 892543843 + ], + [ + 0, + 1, + 11872, + 562062, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1445493, + 1500000, + 1500000, + 2922295, + 3126883, + 8093848, + 10086754, + 11048946, + 24403650, + 47736358, + 1462500000 + ], + [ + 0, + 1, + 1, + 11614, + 397153, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1065240, + 1077941, + 1194561, + 2000000, + 5542931, + 10095032, + 10500000, + 24403650, + 72261281 + ], + [ + 0, + 1, + 1, + 1, + 10, + 65894, + 371392, + 688554, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1088673, + 1917712, + 2945125, + 7307914, + 14300010, + 24166220, + 37206031, + 1500000000 + ], + [ + 0, + 1, + 505, + 398129, + 929523, + 929523, + 980460, + 993805, + 1000000, + 1000000, + 1000000, + 1068815, + 2137497, + 2707946, + 4000000, + 5726900, + 5726900, + 7559480, + 10500000, + 24610457, + 881249106 + ], + [ + 0, + 1, + 1, + 10, + 77, + 331636, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1005000, + 1145131, + 1836346, + 3170164, + 6624459, + 6624459, + 9994360, + 11083237, + 33344704, + 211047761 + ], + [ + 0, + 1, + 1, + 1, + 77, + 30109, + 256371, + 1000000, + 1000000, + 1000000, + 1000000, + 1103381, + 1556401, + 2453934, + 2887411, + 4853276, + 12100010, + 19221140, + 40842673, + 136831874, + 1992042673 + ], + [ + 0, + 1, + 1, + 13126, + 341074, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1028599, + 1031599, + 1360547, + 2170720, + 5493890, + 7315604, + 14475116, + 34393576, + 1500000000 + ], + [ + 0, + 1, + 1, + 50, + 32892, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1044407, + 1250000, + 1362120, + 2421154, + 3696040, + 10000000, + 12085556, + 25000050, + 37077421, + 1500000000 + ], + [ + 0, + 12698, + 529815, + 916303, + 916303, + 916303, + 916303, + 916303, + 916303, + 916303, + 1000000, + 1000000, + 1000000, + 1014683, + 1163643, + 1362120, + 2372291, + 10081549, + 10500000, + 26006278, + 400000000 + ], + [ + 0, + 11999, + 331636, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029700, + 1100000, + 1250000, + 2000000, + 6723350, + 17469667, + 23887780, + 61988644, + 884184739 + ], + [ + 0, + 13914, + 1000000, + 1000000, + 1000000, + 1000000, + 1030129, + 1100000, + 1362120, + 1493911, + 1961189, + 2914828, + 5641729, + 5641729, + 5641729, + 8542474, + 11000000, + 23770745, + 24015875, + 45367477, + 1500000000 + ], + [ + 0, + 1, + 1, + 102012, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1112693, + 1112693, + 1250000, + 2914545, + 7721107, + 12193022, + 23924280, + 67636044, + 93324853, + 1003000000 + ], + [ + 0, + 1, + 446, + 300588, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1030000, + 1100000, + 1120215, + 1250000, + 1573592, + 10069439, + 12100000, + 24015875, + 510000000 + ], + [ + 0, + 1, + 1213, + 392749, + 658053, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1119785, + 1160612, + 1283675, + 1926882, + 2895967, + 10000000, + 10993796, + 18322152, + 25000050, + 1500000000 + ], + [ + 0, + 12543, + 251585, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100445, + 1175134, + 1253808, + 2000000, + 4274658, + 7335377, + 10635694, + 192177199 + ], + [ + 0, + 686, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1054051, + 1054051, + 1107112, + 1107112, + 1204367, + 1292805, + 1806972, + 9995056, + 10204367, + 23677795, + 100000000 + ], + [ + 0, + 1, + 10968, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1235522, + 2922393, + 9875124, + 14772488, + 20000000, + 31035191 + ], + [ + 0, + 11207, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000011, + 1091941, + 1500000, + 2000000, + 2085360, + 3368269, + 3368269, + 3368269, + 10500000, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 848, + 931610, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1139377, + 2280399, + 9996980, + 10500000, + 20000000, + 192390676 + ], + [ + 0, + 12841, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1017128, + 1200000, + 3000000, + 5615722, + 5615722, + 9666909, + 13200000, + 1500000000 + ], + [ + 0, + 674, + 52249, + 987241, + 1000000, + 1000000, + 1000000, + 1000000, + 1027000, + 1095735, + 1111527, + 1810932, + 2165871, + 7226317, + 10500000, + 19052512, + 23468400, + 45961390, + 46805550, + 104224440, + 2225409336 + ], + [ + 0, + 1, + 10, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1133675, + 1930166, + 4880520, + 19216633, + 23180175, + 55367913 + ], + [ + 0, + 1, + 48400, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1030710, + 1100000, + 1145693, + 1960876, + 2816929, + 4911374, + 10000000, + 20668704, + 100000000 + ], + [ + 0, + 50, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1057585, + 1369939, + 2000000, + 2699223, + 7423021, + 15019481, + 22655215, + 56714810, + 16674431569 + ], + [ + 0, + 1, + 50, + 604873, + 846007, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1028764, + 1100000, + 1461237, + 2333091, + 6021117, + 10000000, + 18159515, + 25000000, + 27114480, + 46693174, + 836612953 + ], + [ + 0, + 1, + 1, + 123306, + 965296, + 1000000, + 1000000, + 1000000, + 1000000, + 1089000, + 1155908, + 1260715, + 1573592, + 2423712, + 5641729, + 5641729, + 8360220, + 10000000, + 18661779, + 27284212, + 882984900 + ], + [ + 0, + 976, + 945461, + 980165, + 980165, + 980165, + 1000000, + 1000000, + 1000000, + 1078834, + 1100000, + 1250000, + 1514154, + 2000000, + 5362778, + 9462541, + 10500000, + 17472744, + 18761946, + 22293920, + 72714154 + ], + [ + 0, + 14044, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1118106, + 1606578, + 1900714, + 2529390, + 2529390, + 7391325, + 10500000, + 17480010, + 23899762, + 510000000 + ], + [ + 0, + 1, + 50, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1039839, + 1500000, + 2000000, + 10000000, + 16939275, + 18761946, + 22358585, + 27853589, + 44796060, + 120943541, + 1839514302 + ], + [ + 0, + 1, + 1, + 77, + 13361, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1172592, + 1503767, + 2731298, + 4791063, + 8983014, + 11000000, + 22293920, + 44500494, + 457437244 + ], + [ + 0, + 1, + 359, + 100000, + 1000000, + 1000000, + 1000000, + 1047919, + 1100000, + 1250000, + 1250000, + 1520489, + 2000000, + 2000000, + 2745697, + 5207865, + 13884828, + 13884828, + 22398030, + 44587840, + 660075207 + ], + [ + 0, + 29, + 12775, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1049653, + 1100000, + 1146566, + 2000000, + 5301908, + 5301908, + 5301908, + 7419418, + 15732453, + 296881349 + ], + [ + 0, + 1, + 13421, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1090772, + 1097286, + 1160888, + 1472421, + 1779159, + 3949807, + 15019481, + 22023725, + 22457535, + 74742084, + 1500000000 + ], + [ + 0, + 1, + 1, + 11602, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1097286, + 1131670, + 1588238, + 2000000, + 4000000, + 11000000, + 19113519, + 192782076 + ], + [ + 0, + 650, + 40000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1121000, + 1121000, + 1250000, + 1925868, + 3143687, + 3231673, + 3231673, + 3488119, + 5209195, + 16824310, + 22023725, + 192805119 + ], + [ + 0, + 1, + 13742, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1058454, + 1107112, + 1340539, + 1570849, + 3044122, + 3098603, + 3098603, + 9262046, + 11000000, + 21874770, + 22181630, + 95436401 + ], + [ + 0, + 12495, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1133564, + 1897093, + 2832103, + 5289144, + 5289144, + 5289144, + 10000000, + 20000000, + 25000050, + 1500000000 + ], + [ + 0, + 1, + 77, + 12485, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1250000, + 1292805, + 1566037, + 2307005, + 8285036, + 21043924, + 25000050, + 547280405 + ], + [ + 0, + 1, + 77, + 10769, + 1000000, + 1000000, + 1000000, + 1000000, + 1027774, + 1100001, + 1217566, + 1250000, + 1594713, + 2732366, + 5460405, + 6516552, + 9018404, + 12575940, + 21265202, + 31712391, + 272249166 + ], + [ + 0, + 14579, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1118106, + 1470208, + 1835175, + 3067575, + 9184683, + 10000000, + 10000000, + 19800000, + 21521405, + 151145348 + ], + [ + 0, + 77, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1087397, + 1236309, + 1566037, + 2464258, + 3448941, + 7506155, + 10500000, + 11069066, + 43169280, + 192984941 + ], + [ + 0, + 10, + 12744, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1118106, + 1232129, + 2000000, + 7089334, + 12513668, + 19800000, + 1500000000 + ], + [ + 0, + 13832, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063701, + 1118106, + 1250000, + 1250000, + 1250000, + 1416552, + 2461969, + 10500000, + 18783078, + 193076357 + ], + [ + 0, + 1, + 2, + 12999, + 1000000, + 1000000, + 1000000, + 1000000, + 1068419, + 1100000, + 1147438, + 1198138, + 1570849, + 2000000, + 2472618, + 5206678, + 9065271, + 10500000, + 12100000, + 15051176, + 100000000 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063701, + 1147651, + 1184000, + 1500000, + 2622350, + 7281200, + 10500000, + 15051176, + 57499003 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1055885, + 1152754, + 1250000, + 1500000, + 3547190, + 10000000, + 10040403, + 10040403, + 10275642, + 20899335, + 1500000000 + ], + [ + 0, + 50, + 77, + 77, + 879749, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1081311, + 1154689, + 1412889, + 2000000, + 3984555, + 2001057212 + ], + [ + 0, + 100, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063701, + 1100000, + 1154845, + 1542443, + 2500000, + 2568405, + 3496175, + 4937278, + 8784991, + 9690724, + 9976402, + 20000000, + 400000000 + ], + [ + 0, + 1, + 2, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1133474, + 1400000, + 2222222, + 4183190, + 10000000, + 12100010, + 25000050, + 42238495, + 2970714906 + ], + [ + 0, + 1, + 359, + 277887, + 1000000, + 1000000, + 1068419, + 1147000, + 1201845, + 1273587, + 2491225, + 2951368, + 2951368, + 3026646, + 4123428, + 7429112, + 10000000, + 10500000, + 10500000, + 20456385, + 300262853 + ], + [ + 0, + 1, + 100, + 359, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1096659, + 1250000, + 1725581, + 3738069, + 11000000, + 13649821, + 21634675, + 1500000000 + ], + [ + 0, + 100, + 894214, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1109063, + 1200000, + 1503767, + 2000000, + 4000000, + 9419890, + 20527175, + 42614597012 + ], + [ + 0, + 150, + 975949, + 984183, + 984183, + 984183, + 984183, + 984183, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 2000000, + 10000000, + 1500000000 + ], + [ + 0, + 1, + 77, + 997477, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1163908, + 1546462, + 2000000, + 2651733, + 5000000, + 8874890, + 10500000, + 20527175, + 29962964 + ], + [ + 0, + 1, + 1, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1123293, + 1687444, + 4198461, + 9693979, + 10659796, + 10659796, + 20392260, + 68004390 + ], + [ + 0, + 1, + 37019, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1696462, + 4669999, + 10000000, + 10000000, + 20000000, + 560000000 + ], + [ + 0, + 1, + 100, + 944781, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1016136, + 1250000, + 1250000, + 1346040, + 1901234, + 2558460, + 2716645, + 9434473, + 9696670, + 9696670, + 10500000, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 50, + 100000, + 999999, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1036960, + 1331834, + 1823063, + 3147183, + 6829917, + 10000000, + 13200010, + 27516210, + 640913127 + ], + [ + 0, + 1, + 1, + 1, + 77, + 100, + 200000, + 630109, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1200000, + 1500000, + 1920038, + 3718881, + 9001948, + 16617588, + 32102986, + 574270168 + ], + [ + 0, + 1, + 1, + 1, + 100, + 338908, + 998645, + 1000000, + 1000000, + 1000000, + 1000000, + 1072829, + 1500000, + 1905969, + 3232332, + 7558586, + 10000000, + 10000000, + 13200010, + 25000050, + 1500000000 + ], + [ + 0, + 1, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 2000000, + 7329711, + 12823963, + 20330460, + 24079443, + 400000000 + ], + [ + 0, + 77, + 335528, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1054901, + 1250000, + 5695742, + 8885370, + 8885370, + 8885370, + 9692227, + 13236201, + 20330460, + 20454230, + 266879356 + ], + [ + 0, + 100, + 200000, + 985773, + 985773, + 985773, + 985773, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1368143, + 1552640, + 2000000, + 4918275, + 4918275, + 6626168, + 13901127, + 20441340, + 660000000 + ], + [ + 0, + 1, + 541, + 771054, + 985773, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1184000, + 2076494, + 4934753, + 8899139, + 20131620, + 254552363 + ], + [ + 0, + 1, + 1, + 4808, + 360317, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1552640, + 4121406, + 8497243, + 10000000, + 13200010, + 18326185, + 23608487, + 765803106 + ], + [ + 0, + 1, + 1, + 100, + 200000, + 1000000, + 1000000, + 1000000, + 1100000, + 1440799, + 2107337, + 3395076, + 5250959, + 6304558, + 8754813, + 11510000, + 16300189, + 20221740, + 30442316, + 89013255, + 1500000000 + ], + [ + 0, + 1, + 50, + 208556, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1130582, + 2000000, + 3000000, + 3062535, + 3626650, + 8069720, + 10000000, + 11639198, + 18060461, + 40443480, + 118602881, + 7093841527 + ], + [ + 0, + 1, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063407, + 1124000, + 1124000, + 1435425, + 1787528, + 2420296, + 8607144, + 20000000, + 68620296 + ], + [ + 0, + 1, + 1, + 1, + 77, + 100000, + 970000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1044245, + 1250000, + 1366039, + 1985511, + 4969404, + 8881304, + 25000050, + 71830319, + 1500000000 + ], + [ + 0, + 1, + 1, + 2, + 216953, + 988005, + 988005, + 988005, + 988005, + 1000000, + 1000000, + 1100000, + 1160816, + 1250000, + 2000000, + 2534470, + 8621330, + 17889241, + 20096885, + 38839610, + 748356726 + ], + [ + 0, + 1, + 100, + 991853, + 991853, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 1542443, + 2000000, + 5259441, + 5259441, + 5259441, + 8879516, + 10093290, + 20096885, + 1500000000 + ], + [ + 0, + 47642, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1045980, + 1100000, + 1100000, + 1250000, + 1500000, + 2000000, + 2625154, + 7405939, + 14101019, + 19834112, + 400000000 + ], + [ + 0, + 1, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1073025, + 1101521, + 1250000, + 1512248, + 2093135, + 10000000, + 16439597, + 400000000 + ], + [ + 0, + 1, + 50, + 42803, + 641776, + 988813, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1500000, + 2000000, + 7056201, + 8593686, + 10060606, + 19800015, + 25000050, + 91034036, + 1157941479 + ], + [ + 0, + 1, + 24691, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1043473, + 1100000, + 1250000, + 1450136, + 1949057, + 5535933, + 25000000, + 400000000 + ], + [ + 0, + 659, + 27434, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1169500, + 1393470, + 1552967, + 2550905, + 2911517, + 10500000, + 13200010, + 13200010, + 19647535, + 1500000000 + ], + [ + 0, + 1, + 1, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1242455, + 1250000, + 1250000, + 1500000, + 1650638, + 3323345, + 11062042, + 400000000 + ], + [ + 0, + 1, + 94909, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1119363, + 1250000, + 1255044, + 1500000, + 1548621, + 7614488, + 400000000 + ], + [ + 0, + 1, + 30000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1040540, + 1144376, + 1500000, + 2664083, + 7155259, + 13200010, + 13292934, + 90125029 + ], + [ + 0, + 10, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1045980, + 1100000, + 1509996, + 2000000, + 7467735, + 10500000, + 13200010, + 1500000000 + ], + [ + 0, + 100, + 65039, + 253726, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1097953, + 1173430, + 1732994, + 8331906, + 13230000, + 18959070, + 400000000 + ], + [ + 0, + 1, + 10, + 53461, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1173430, + 1250000, + 1322183, + 1509996, + 5003414, + 8145217, + 16009175, + 400000000 + ], + [ + 0, + 1, + 50, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1009366, + 1009366, + 1100000, + 1128200, + 1593675, + 2000000, + 4663519, + 18830690, + 37918140, + 108464064, + 1500000000 + ], + [ + 0, + 10, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1120164, + 1593675, + 4642711, + 4642711, + 13200010, + 19080690, + 334957594 + ], + [ + 0, + 1, + 1, + 1, + 54403, + 100000, + 1000000, + 1000000, + 1023765, + 1047714, + 1100000, + 1250000, + 1593675, + 2000000, + 7407416, + 8146532, + 12950887, + 18827330, + 25000050, + 38161380, + 1000000000 + ], + [ + 0, + 54108, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1030356, + 1100000, + 1181000, + 1718533, + 1718533, + 2222222, + 18827330, + 1500000000 + ], + [ + 0, + 1, + 54317, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1059137, + 1100000, + 1568801, + 2486418, + 7169626, + 7666085, + 10021433, + 18827330, + 288840147 + ], + [ + 0, + 53543, + 718146, + 962796, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1004783, + 1029169, + 1076883, + 1167318, + 1502755, + 1668146, + 1668146, + 7407524, + 10500000, + 18827330, + 2500000000 + ], + [ + 0, + 1, + 2, + 71006, + 393179, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1027946, + 1100000, + 1422573, + 1593675, + 2815561, + 7905982, + 10000000, + 14547841, + 37123540, + 169499950 + ], + [ + 0, + 1, + 1, + 2, + 249357, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000210, + 1100000, + 1500000, + 2000000, + 4507462, + 4507462, + 9256691, + 11189293, + 14300473, + 651047005 + ], + [ + 0, + 75, + 100000, + 994676, + 994676, + 994676, + 994676, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 4587105, + 7656626, + 18596680, + 18626070, + 1500000000 + ], + [ + 0, + 1, + 75, + 54924, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1013757, + 1100000, + 1100000, + 1100000, + 1250000, + 1500000, + 1593675, + 6168404, + 7171184, + 10500000, + 18553315, + 48327638 + ], + [ + 0, + 1, + 16310, + 53730, + 69350, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1568801, + 2000000, + 2509390, + 7195528, + 7195528, + 7195528, + 8250805, + 18561770, + 100000000 + ], + [ + 0, + 1, + 1, + 1, + 50, + 16310, + 61043, + 724625, + 1000000, + 1000000, + 1024919, + 1073000, + 1167318, + 1500000, + 1761562, + 4564352, + 9565965, + 10500000, + 18512045, + 26591050, + 135484951 + ], + [ + 0, + 50, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1064000, + 1100000, + 1540527, + 2439817, + 4727229, + 7197796, + 8085558, + 14809636, + 18553315, + 1003000000 + ], + [ + 0, + 53453, + 923665, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1160134, + 1250000, + 1500000, + 1560860, + 2000000, + 4518299, + 8089460, + 11134864, + 18512045, + 25000050, + 1500000000 + ], + [ + 0, + 1, + 1, + 75, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1030929, + 1376183, + 2445822, + 4553290, + 8928301, + 18568655, + 31112100, + 64395106, + 1500000000 + ], + [ + 0, + 10030, + 25730, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046708, + 1100000, + 1561297, + 3000000, + 7670528, + 8274756, + 17121816, + 25000050, + 50363322, + 500000000 + ], + [ + 0, + 75, + 75, + 55120, + 62965, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1024839, + 1113076, + 1372061, + 2000000, + 2500370, + 8085107, + 10500000, + 10939943, + 17135323, + 218567009 + ], + [ + 0, + 1, + 1, + 54798, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1064000, + 1250000, + 1500000, + 2000000, + 3013507, + 7666085, + 8128654, + 18086380, + 25599332, + 60193894, + 1985233450 + ], + [ + 0, + 50, + 1000, + 696467, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1019493, + 1182147, + 1778863, + 2804209, + 4412048, + 4412048, + 4553247, + 6661271, + 10500000, + 17934550, + 70666853, + 3476437989 + ], + [ + 0, + 50, + 53738, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1048000, + 1161706, + 1254992, + 1910804, + 4661871, + 7493099, + 7698396, + 12042683, + 17763390, + 20000000, + 28804886, + 380943047 + ], + [ + 0, + 50, + 256410, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1059000, + 1100000, + 1250000, + 1323427, + 2000000, + 3148779, + 8085954, + 11425127, + 694390119 + ], + [ + 0, + 200, + 100000, + 320598, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1064075, + 1067241, + 1102218, + 1407758, + 1500000, + 4000000, + 13200000, + 1500000000 + ], + [ + 0, + 1, + 1, + 50, + 31562, + 252857, + 1000000, + 1000000, + 1100000, + 1100000, + 1107278, + 1186191, + 1500000, + 2000000, + 2635906, + 4825033, + 8092121, + 10500000, + 24755266, + 35252800, + 172062913 + ], + [ + 0, + 1, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1064000, + 1200000, + 1250000, + 1619138, + 4450468, + 10190000, + 17553660, + 25000000, + 100000000 + ], + [ + 0, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1500000, + 7726450, + 9784348, + 10500000, + 79962444 + ], + [ + 0, + 1, + 48658, + 676187, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1053346, + 1100000, + 1250000, + 2072285, + 7809756, + 15407661, + 17626400, + 20022372, + 33756000, + 1500000000 + ], + [ + 0, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1030478, + 1170083, + 1250000, + 2000000, + 3746018, + 10500000, + 30000000, + 2001051513 + ], + [ + 0, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1500000, + 1500000, + 2000000, + 2741574, + 4250311, + 4250311, + 4250311, + 7385384, + 14770769, + 17383075, + 500000000 + ], + [ + 0, + 1, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1054544, + 1089000, + 1100000, + 1126996, + 1250000, + 1723485, + 2057956, + 7743963, + 9785803, + 11433382, + 17155241, + 17155241, + 17181202, + 2001051513 + ], + [ + 0, + 10, + 557, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1039675, + 1100000, + 1100000, + 1181000, + 1250000, + 1732284, + 4025053, + 8094009, + 20000000, + 2001051513 + ], + [ + 0, + 1, + 1, + 50, + 431790, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1058732, + 1100000, + 1250000, + 1500000, + 2222222, + 8588334, + 11533846, + 17177810, + 26530821, + 88207824, + 1165742806 + ], + [ + 0, + 1, + 75, + 100000, + 950737, + 950737, + 950737, + 993436, + 1000000, + 1047980, + 1100000, + 1200000, + 1250000, + 1250000, + 1613281, + 2968446, + 5628311, + 10204875, + 10500000, + 20000000, + 931098540 + ], + [ + 0, + 1, + 479, + 97751, + 956782, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1081692, + 1160494, + 1250000, + 1250000, + 1506529, + 2334332, + 10000000, + 16785600, + 17590652, + 84421343, + 700052085 + ], + [ + 0, + 1, + 1, + 50, + 13080, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063840, + 1250000, + 1500000, + 2652932, + 4159732, + 4806037, + 10190000, + 16785600, + 25631022, + 48412932, + 764205235 + ], + [ + 0, + 50, + 100000, + 563539, + 967112, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1250000, + 1616440, + 1987825, + 4880044, + 7791712, + 14483574, + 36562497, + 1500000000 + ], + [ + 0, + 1, + 50, + 100000, + 992440, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1040766, + 1100000, + 1250000, + 1514324, + 2500000, + 12279348, + 20000000, + 1000000000 + ], + [ + 0, + 1, + 14420, + 30000, + 913134, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1099917, + 1100000, + 1145000, + 1250000, + 1695713, + 10742003, + 33848630, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 210, + 100000, + 1000000, + 1000000, + 1250000, + 1850844, + 1850844, + 3000000, + 7024238, + 7681238, + 10500000, + 16787971, + 20380000, + 33567760, + 69541244, + 168896754, + 3378846178 + ], + [ + 0, + 1, + 1, + 100000, + 982879, + 982879, + 982879, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100001, + 2009127, + 2393552, + 6253508, + 10059599, + 16788513, + 25000000, + 126974456 + ], + [ + 0, + 711, + 100000, + 975827, + 975827, + 1000000, + 1000000, + 1086076, + 1089000, + 1100000, + 1100000, + 1250000, + 1250000, + 1250000, + 1500000, + 2926308, + 10000000, + 16797979, + 20000000, + 45509153, + 651979532 + ], + [ + 0, + 12031, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1250000, + 1500000, + 4079970, + 4079970, + 4934106, + 10500000, + 16794793, + 1500000000 + ], + [ + 0, + 1, + 525, + 686867, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063840, + 1063840, + 1100000, + 1100000, + 1250000, + 1500000, + 2097618, + 10000000, + 20000000, + 484461175 + ], + [ + 0, + 1, + 13759, + 381256, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1082580, + 1200000, + 1250000, + 1300001, + 2000000, + 2340000, + 2658395, + 4628163, + 16792667, + 1500000000 + ], + [ + 0, + 1, + 1, + 13347, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 2072722, + 5052558, + 10000000, + 11137399, + 25000000, + 33454770, + 785887318 + ], + [ + 0, + 819, + 100000, + 343434, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1011560, + 1100000, + 1250000, + 2000000, + 2761878, + 7706299, + 10059599, + 12855908, + 15216976, + 16697680, + 25000000, + 1500000000 + ], + [ + 0, + 404, + 175631, + 991741, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1021460, + 1063840, + 1063840, + 1093000, + 1100000, + 1500000, + 2041892, + 10000000, + 16786140, + 16786140, + 22670060, + 400000000 + ], + [ + 0, + 1, + 1, + 1, + 1, + 12357, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1093000, + 1250000, + 1500000, + 1575390, + 2363508, + 5548972, + 10086212, + 12740093, + 16797251, + 400000000 + ], + [ + 0, + 446, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1079000, + 1100000, + 1500000, + 1500000, + 2251432, + 7532194, + 10061557, + 12159868, + 43527875, + 600000000 + ], + [ + 0, + 1, + 1, + 1, + 14011, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1079000, + 1096471, + 1100001, + 1155228, + 2000000, + 4063143, + 10000000, + 16571265, + 28432206, + 40882962, + 1091842546 + ], + [ + 0, + 1, + 55065, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1675370, + 1675370, + 1675370, + 2277154, + 4235534, + 6624459, + 6624459, + 8684705, + 9064003, + 12218840, + 17550413, + 25762702, + 1500000000 + ], + [ + 0, + 715, + 100000, + 850000, + 1000000, + 1000000, + 1000000, + 1065225, + 1100000, + 1100000, + 1164938, + 1250000, + 1537141, + 2279276, + 4512400, + 9070264, + 9070264, + 10076159, + 14310230, + 16468275, + 75318528 + ], + [ + 0, + 13727, + 602802, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1250000, + 1586507, + 2000000, + 3950355, + 11143204, + 16468275, + 1000000000 + ], + [ + 0, + 1, + 13644, + 602802, + 1000000, + 1000000, + 1000000, + 1020153, + 1032768, + 1100000, + 1250000, + 1366791, + 1500000, + 2184716, + 2649998, + 9046162, + 10500000, + 13452353, + 25000050, + 32211160, + 1003000000 + ], + [ + 0, + 1, + 877, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063840, + 1063840, + 1086000, + 1086000, + 1250000, + 1632065, + 4509382, + 10000000, + 10500000, + 16095235, + 44713152 + ], + [ + 0, + 7590, + 190666, + 629999, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1135599, + 3733263, + 4032648, + 4032648, + 11627019, + 16105580, + 100000000 + ], + [ + 0, + 66, + 30000, + 100000, + 802802, + 996045, + 996045, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1500000, + 1581300, + 2273525, + 4473922, + 10500000, + 13831065, + 31721080, + 1500000000 + ], + [ + 0, + 1, + 85, + 525, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1121964, + 1250000, + 3000000, + 11185520, + 16076450, + 25000050, + 60000000, + 397782133 + ], + [ + 0, + 1, + 12674, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063840, + 1100000, + 1654799, + 2595403, + 7298422, + 10500000, + 15704215, + 46477038, + 46477038, + 47178170, + 47178170, + 1003000000 + ], + [ + 0, + 1, + 1, + 50, + 220553, + 1000000, + 1000000, + 1000000, + 1000000, + 1026616, + 1100000, + 1100001, + 1521964, + 4607052, + 7297308, + 10085300, + 11178651, + 16755924, + 20000000, + 31624150, + 538460658 + ], + [ + 0, + 1, + 10, + 10, + 10, + 10, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1031627, + 1100000, + 1660472, + 2732295, + 7014864, + 13200010, + 23586794, + 1500000000 + ], + [ + 0, + 1, + 12712, + 609000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1025823, + 1086000, + 1100000, + 1347363, + 2200000, + 5783592, + 10500000, + 15812075, + 23586794, + 236976227 + ], + [ + 0, + 1, + 10972, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1031611, + 1099799, + 1505896, + 2595403, + 7838086, + 10031611, + 10500000, + 15728885, + 31464450, + 615688472 + ], + [ + 0, + 10000, + 100000, + 976977, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1035953, + 1100000, + 1500000, + 2000000, + 4990227, + 10008588, + 11083774, + 15812075, + 1500000000 + ], + [ + 0, + 148, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1505896, + 2252338, + 4382851, + 8668576, + 10077885, + 17154003, + 31253490, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 1, + 50, + 26633, + 190924, + 1000000, + 1000000, + 1000000, + 1000000, + 1089016, + 1500000, + 2500000, + 9816454, + 13624197, + 16076450, + 25677869, + 45000000, + 812021415 + ], + [ + 0, + 11163, + 200000, + 996549, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1058972, + 1100000, + 1250000, + 1250000, + 2000000, + 4000000, + 7197726, + 14771670, + 16087525, + 1500000000 + ], + [ + 0, + 13999, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1067000, + 1250000, + 1714831, + 2860191, + 2860191, + 4405753, + 10500000, + 15678450, + 2187567130 + ], + [ + 0, + 1, + 50, + 10502, + 895553, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1074897, + 2226869, + 3000000, + 6597006, + 18758275, + 28533056, + 100000000, + 545643455 + ], + [ + 0, + 14229, + 728622, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1076036, + 1093000, + 1250000, + 2000000, + 2847199, + 10452407, + 11964071, + 15544955, + 25855762, + 1500000000 + ], + [ + 0, + 10, + 100000, + 618410, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 2257596, + 4472721, + 7255567, + 10500000, + 16099718, + 28937610, + 126068663 + ], + [ + 0, + 11369, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1250000, + 1387465, + 1581300, + 2282768, + 3237480, + 7859806, + 10500000, + 20003171, + 1500000000 + ], + [ + 0, + 1, + 1, + 12677, + 287804, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1067000, + 1100001, + 1500000, + 4000000, + 10000000, + 14300010, + 15555310, + 20000000, + 30426179, + 254616649 + ], + [ + 0, + 10, + 50, + 107678, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1013333, + 1058836, + 1505896, + 3153568, + 10095998, + 15555310, + 25000000, + 146882755 + ], + [ + 0, + 1, + 55979, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1557684, + 2000000, + 2378411, + 5926843, + 10500000, + 10500000, + 20000000, + 33250950, + 1500000000 + ], + [ + 0, + 10, + 10, + 43, + 14812, + 967096, + 979802, + 979802, + 979802, + 979802, + 1000000, + 1000000, + 1000000, + 1055156, + 1500000, + 2253768, + 8443370, + 11899473, + 19796532, + 28937610, + 400000000 + ], + [ + 0, + 1, + 69879, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1037735, + 1500000, + 2246488, + 2246488, + 7058110, + 10001942, + 14470969, + 20000000, + 48673808, + 1500000000 + ], + [ + 0, + 50, + 34613, + 660523, + 998426, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029996, + 1100000, + 1250000, + 1250000, + 1500000, + 1714284, + 2227569, + 3805905, + 11085673, + 15230525, + 400000000 + ], + [ + 0, + 1, + 10, + 56629, + 901978, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1118346, + 1250000, + 1684156, + 5355186, + 9353363, + 15161395, + 15429330, + 30322790, + 53381404, + 103773957, + 1500000000 + ], + [ + 0, + 1, + 100, + 252713, + 607647, + 984958, + 984958, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1122418, + 1604937, + 3000000, + 7095559, + 15161395, + 25000000, + 400000000 + ], + [ + 0, + 1, + 10, + 100, + 125986, + 983970, + 1000000, + 1000000, + 1000000, + 1000000, + 1071588, + 1100000, + 1261536, + 3436729, + 3717894, + 3717894, + 6047038, + 13788905, + 20000000, + 30322790, + 400000000 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1051000, + 1100000, + 1314875, + 1871086, + 2225415, + 5941090, + 15210810, + 1500000000 + ], + [ + 0, + 1, + 10, + 50, + 100000, + 726807, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1030174, + 1034803, + 1100000, + 1250000, + 2000000, + 10562852, + 19796532, + 131000000 + ], + [ + 0, + 100, + 100000, + 605891, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100230, + 1513837, + 2272838, + 2272838, + 7129380, + 10500000, + 26153404, + 55572310 + ], + [ + 0, + 1, + 17801, + 248793, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041754, + 1250000, + 1500000, + 3716600, + 3716600, + 3716600, + 4000000, + 5000000, + 9139922, + 13288213, + 20000000, + 1500000000 + ], + [ + 0, + 100, + 30000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1021329, + 1086822, + 1250000, + 1513837, + 2000000, + 7805114, + 10594867, + 12719591, + 100000000 + ], + [ + 0, + 1, + 100, + 103112, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1040000, + 1138861, + 1500000, + 2000000, + 7031105, + 10600307, + 12772006, + 20000000, + 30240580, + 389617895 + ], + [ + 0, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1004797, + 1100000, + 1100000, + 1250000, + 1250000, + 1264287, + 2000000, + 7503248, + 10500000, + 1500000000 + ], + [ + 0, + 1, + 78032, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1118346, + 1612508, + 2497612, + 7097156, + 10000000, + 10866759, + 14780332, + 143998919 + ], + [ + 0, + 100, + 592004, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1031329, + 1118346, + 1640969, + 3705940, + 3705940, + 7095559, + 10093597, + 13109984, + 14926730, + 1235767476 + ], + [ + 0, + 1, + 100, + 100000, + 972002, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1004797, + 1035000, + 1100000, + 1300001, + 2000000, + 7097424, + 13200010, + 25000000, + 400000000 + ], + [ + 0, + 10, + 30000, + 112419, + 977117, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1072013, + 1181924, + 1513837, + 1938887, + 4000000, + 13200000, + 15543227, + 2001032159 + ], + [ + 0, + 100, + 100000, + 945259, + 978324, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1040000, + 1100000, + 1544804, + 2224781, + 4356233, + 7096744, + 9965499, + 10500000, + 17177269, + 40396463, + 2001032159 + ], + [ + 0, + 1, + 10, + 100000, + 594804, + 977959, + 1000000, + 1000000, + 1000000, + 1030000, + 1100000, + 1124238, + 1905582, + 2187944, + 3225996, + 6961422, + 7098896, + 10500000, + 10500000, + 25000050, + 1500000000 + ], + [ + 0, + 50, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1020331, + 1100000, + 1200000, + 1500000, + 3951941, + 10000000, + 14871570, + 176083507 + ], + [ + 0, + 1, + 10, + 50, + 174, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1040000, + 1100000, + 1302171, + 2278145, + 4019262, + 10049777, + 14804015, + 14845530, + 508619828 + ], + [ + 0, + 1, + 50, + 50, + 100, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1022239, + 1189197, + 1250000, + 1612519, + 3100000, + 7096249, + 11328121, + 20000000, + 206362317 + ], + [ + 0, + 10, + 50, + 17082, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1418828, + 1625130, + 2274438, + 6893180, + 6971241, + 9182895, + 13200000, + 100000000 + ], + [ + 0, + 50, + 30000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1026000, + 1131073, + 1250000, + 1331530, + 2000000, + 3994832, + 7962692, + 18424993, + 25000050, + 1500000000 + ], + [ + 0, + 1, + 50, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1073534, + 1195187, + 2247125, + 10500000, + 12937251, + 112019678 + ], + [ + 0, + 1, + 1, + 20188, + 152641, + 514680, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1047000, + 1236216, + 1429174, + 3970091, + 7871562, + 14478060, + 26498710, + 1000000000 + ], + [ + 0, + 30000, + 247893, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046846, + 1250000, + 2251406, + 9177180, + 10058596, + 14478060, + 122970387 + ], + [ + 0, + 100, + 179947, + 247891, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1035000, + 1053251, + 1209019, + 1300897, + 3329575, + 4253059, + 7782889, + 11000000, + 14708420, + 1500000000 + ], + [ + 0, + 1, + 100, + 58997, + 179990, + 253940, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1035000, + 1063000, + 1345261, + 2482218, + 5294390, + 7711988, + 8620000, + 9769145, + 14383270, + 100000000 + ], + [ + 0, + 100, + 910773, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063000, + 1093000, + 1189197, + 1348793, + 1500000, + 2911505, + 8658718, + 14478060, + 28481640, + 997455314 + ], + [ + 0, + 13060, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1521758, + 2997632, + 10500000, + 14152765, + 1500000000 + ], + [ + 0, + 1, + 1, + 100, + 235764, + 571758, + 1000000, + 1000000, + 1007099, + 1031996, + 1211461, + 1500000, + 2166633, + 3578638, + 3578638, + 3861120, + 9673473, + 10500000, + 14152765, + 41035640, + 485338639 + ], + [ + 0, + 100, + 235395, + 982617, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1020331, + 1250000, + 1500000, + 3826376, + 7926173, + 10000000, + 10500000, + 12895803, + 20000000, + 1500000000 + ], + [ + 0, + 30000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1015708, + 1100000, + 1435390, + 1500000, + 3842084, + 6685843, + 7895999, + 8658718, + 13200010, + 25000050, + 1500000000 + ], + [ + 0, + 1, + 10, + 10000, + 277895, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1040000, + 1046564, + 1046564, + 1226482, + 1345261, + 2247943, + 5612907, + 10089029, + 18442088, + 25000000, + 101270698 + ], + [ + 0, + 100, + 114261, + 568919, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1500000, + 4177418, + 6624459, + 6624459, + 6624459, + 7875953, + 11000000, + 1500000000 + ], + [ + 0, + 100, + 46109, + 287743, + 800000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1017811, + 1040000, + 1236216, + 1250000, + 1377587, + 1500000, + 1515791, + 2000000, + 2258731, + 12100000, + 45753502 + ], + [ + 0, + 10, + 10, + 28270, + 236627, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1032510, + 1313058, + 2000000, + 4118542, + 7883673, + 9139000, + 10500000, + 1500000000 + ], + [ + 0, + 1, + 50, + 100000, + 638008, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1130567, + 3595347, + 6763581, + 8682521, + 13200010, + 28135150, + 100000000, + 4652445991 + ], + [ + 0, + 50, + 200000, + 702731, + 990707, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1019834, + 1418828, + 3000000, + 3506564, + 3550680, + 3550680, + 5589494, + 8188689, + 14114700, + 27470750, + 500000000 + ], + [ + 0, + 100, + 94458, + 978656, + 978656, + 978656, + 978656, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1123872, + 1500000, + 2146578, + 4023096, + 8673188, + 13656725, + 1500000000 + ], + [ + 0, + 1, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046000, + 1046000, + 1100000, + 1100000, + 1414721, + 2500000, + 7872465, + 14798376, + 100000000 + ], + [ + 0, + 10, + 30000, + 30000, + 728799, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046564, + 1150990, + 1250000, + 1250000, + 1500000, + 2180698, + 2253518, + 7873082, + 7873082, + 13656725, + 25000050 + ], + [ + 0, + 41723, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046000, + 1100000, + 1320624, + 2000000, + 2414968, + 6572629, + 8690076, + 10000000, + 1500000000 + ], + [ + 0, + 1, + 2, + 100, + 100000, + 827169, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000666, + 1100000, + 1300001, + 2187398, + 9570619, + 10500000, + 17317436, + 25475150, + 55902134, + 1234223621 + ], + [ + 0, + 1, + 3390, + 41848, + 535500, + 1000000, + 1000000, + 1000000, + 1003823, + 1100000, + 1100000, + 1100000, + 1138599, + 1358375, + 1714284, + 4005092, + 6722534, + 8668104, + 10500000, + 27086790, + 1500000000 + ], + [ + 0, + 28270, + 535500, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1104539, + 1250000, + 1250000, + 2000000, + 2630761, + 7706775, + 8697587, + 13455310, + 45894991 + ], + [ + 0, + 10, + 100, + 100000, + 996623, + 996623, + 996623, + 996623, + 996623, + 998989, + 1000000, + 1000000, + 1000000, + 1000000, + 1030092, + 1100000, + 1200000, + 1500000, + 2000000, + 13543395, + 85576989 + ], + [ + 0, + 1, + 1, + 10, + 100, + 100000, + 535500, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1143320, + 1500000, + 1714284, + 2693899, + 9214000, + 13200000, + 23134827, + 27086790, + 2009501818 + ], + [ + 0, + 1, + 1, + 100, + 106407, + 397010, + 984681, + 986337, + 991731, + 991731, + 991731, + 1000000, + 1000000, + 1019339, + 1250000, + 1592182, + 4183146, + 7884877, + 10000000, + 22918791, + 176495205 + ], + [ + 0, + 1, + 77, + 86841, + 994045, + 999439, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1077827, + 1100000, + 1158505, + 2686478, + 7893056, + 8477452, + 11000000, + 357645065 + ], + [ + 0, + 10, + 100000, + 223870, + 874884, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1002361, + 1100000, + 1150683, + 1667568, + 3100000, + 5552550, + 12000433, + 13872195, + 60522613, + 1500000000 + ], + [ + 0, + 100, + 5929, + 980022, + 980022, + 980022, + 980022, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1085365, + 1148071, + 1500000, + 2075499, + 6467287, + 9992669, + 13200010, + 18602635, + 1500000000 + ], + [ + 0, + 37291, + 801841, + 927453, + 984427, + 999466, + 999466, + 999466, + 1000000, + 1000000, + 1000000, + 1049571, + 1223220, + 1312926, + 2000000, + 4000000, + 8926000, + 11000000, + 11560162, + 23877238, + 391940937 + ], + [ + 0, + 10, + 10, + 100, + 94655, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1010542, + 1021660, + 1100681, + 1250000, + 1549420, + 3746942, + 7742255, + 10500000, + 37845982 + ], + [ + 0, + 1, + 100, + 100000, + 549736, + 1000000, + 1000000, + 1000000, + 1000000, + 1053000, + 1100000, + 1100204, + 1423615, + 1500000, + 2179737, + 4041476, + 7566909, + 9023280, + 10971422, + 25483541, + 1500000000 + ], + [ + 0, + 76296, + 321000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1071873, + 1100681, + 1339043, + 4833855, + 8477452, + 8663000, + 9930175, + 10000000, + 2500000000 + ], + [ + 0, + 11, + 100000, + 220863, + 266572, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1076000, + 1100204, + 1250000, + 1250000, + 1279526, + 1518273, + 6056832, + 13200010, + 42635191 + ], + [ + 0, + 1, + 100, + 712310, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1567498, + 2382716, + 4010363, + 13200000, + 100000000 + ], + [ + 0, + 76296, + 76296, + 76296, + 76296, + 219049, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1090423, + 1250000, + 2000000, + 7731142, + 1500000000 + ], + [ + 0, + 10, + 100, + 219542, + 582192, + 582192, + 582192, + 582192, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1088516, + 1112566, + 1250000, + 2000000, + 2682578, + 6183221, + 18712145, + 400000000 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1021582, + 1100000, + 1411924, + 3000000, + 5901751, + 10500000, + 1500000000 + ], + [ + 0, + 100, + 217816, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1004582, + 1058176, + 1100001, + 1250000, + 1250000, + 1250000, + 1675810, + 3996349, + 6981730, + 10000000, + 20288133, + 201848835 + ], + [ + 0, + 1, + 50, + 702, + 100000, + 535940, + 992734, + 1000000, + 1000000, + 1000000, + 1100000, + 1164330, + 1500000, + 2103334, + 5616197, + 8659729, + 10000000, + 20247981, + 26285940, + 78993107, + 4973592875 + ], + [ + 0, + 1, + 10, + 97641, + 909810, + 986875, + 1000000, + 1000000, + 1015200, + 1100000, + 1500000, + 1500000, + 2104122, + 3331932, + 3331932, + 4355020, + 7177673, + 10000000, + 11445671, + 30000000, + 446805535 + ], + [ + 0, + 1, + 100000, + 984345, + 984345, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1064701, + 1100000, + 1548191, + 2113140, + 4000000, + 11000000, + 13142970, + 21078636, + 1500000000 + ], + [ + 0, + 100, + 100, + 100, + 78434, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1060852, + 1100000, + 1500000, + 2500000, + 9992950, + 20000000, + 500000000 + ], + [ + 0, + 10, + 34150, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1075000, + 1108027, + 1433518, + 3731469, + 13125650, + 400000000 + ], + [ + 0, + 100, + 371243, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1011693, + 1250000, + 2000000, + 7126079, + 9993664, + 10000000, + 32432175, + 1934094239 + ], + [ + 0, + 34150, + 100000, + 200000, + 978084, + 1000000, + 1000000, + 1000000, + 1002743, + 1100000, + 1100000, + 1250000, + 1383764, + 1554843, + 2110369, + 2389995, + 2389995, + 2393526, + 11000000, + 13172615, + 532948092 + ], + [ + 0, + 100, + 436725, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1075000, + 1198312, + 2015833, + 2383806, + 10017687, + 30000000, + 1500000000 + ], + [ + 0, + 100, + 195845, + 1000000, + 1000000, + 1000000, + 1000000, + 1058176, + 1100000, + 1100000, + 1200000, + 1500000, + 1593272, + 2382716, + 2388766, + 2620987, + 4303029, + 6154258, + 13172615, + 26571494, + 617747987 + ], + [ + 0, + 100, + 65289, + 247256, + 256228, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1056751, + 1100000, + 1100000, + 1476354, + 2100727, + 6081481, + 13152020, + 1000000000 + ], + [ + 0, + 100, + 811303, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000011, + 1100000, + 1100000, + 1250000, + 2000000, + 2351758, + 3955481, + 7965178, + 10000000, + 10500000, + 17536186, + 400000000 + ], + [ + 0, + 70670, + 978693, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1090600, + 1100000, + 1100000, + 1500000, + 1641072, + 2446395, + 6356014, + 11010272, + 20000000, + 41793342, + 1679343572 + ], + [ + 0, + 2, + 53167, + 100000, + 533041, + 846862, + 1000000, + 1000000, + 1000000, + 1000000, + 1060956, + 1100000, + 1500000, + 2000000, + 2149620, + 2620987, + 2620987, + 6392836, + 11726921, + 25000000, + 529240702 + ], + [ + 0, + 1, + 1, + 100, + 533547, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1033198, + 1033198, + 1100000, + 1250000, + 1574638, + 2139655, + 10000000, + 10000010, + 21815797, + 30000000, + 1500000000 + ], + [ + 0, + 1, + 71090, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1198376, + 1539651, + 1781841, + 3256005, + 3256005, + 6507989, + 13200010, + 281081348 + ], + [ + 0, + 1, + 1, + 77, + 75831, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1300001, + 1678680, + 2097171, + 4467125, + 10000000, + 10064512, + 15573076, + 25000050, + 26529256, + 65256694, + 828414185 + ], + [ + 0, + 1, + 39689, + 77994, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1002781, + 1100000, + 1265000, + 1500000, + 2097802, + 6063632, + 10500000, + 13006410, + 25000050, + 304106676 + ], + [ + 0, + 1, + 1, + 50, + 13267, + 242511, + 990509, + 1000000, + 1000000, + 1100000, + 1250000, + 1477818, + 1574098, + 2043364, + 4000631, + 6394147, + 10500000, + 11207552, + 13006410, + 25837780, + 1500000000 + ], + [ + 0, + 1, + 11090, + 100000, + 256400, + 995329, + 995329, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1078984, + 1100000, + 1500000, + 1748586, + 6399930, + 10000000, + 20396041, + 150000000 + ], + [ + 0, + 1, + 50, + 38890, + 981384, + 995460, + 995460, + 995460, + 995460, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1317745, + 2000000, + 8001832, + 12584265, + 12871365, + 13987528, + 1500000000 + ], + [ + 0, + 1, + 1, + 645, + 100000, + 214679, + 989912, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1608024, + 2511049, + 5804013, + 9922139, + 12051574, + 25000000, + 25742730, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 10000, + 215212, + 973938, + 989328, + 989328, + 989328, + 1000000, + 1000000, + 1100821, + 1321755, + 2000000, + 3179606, + 3179606, + 9965164, + 13200000, + 25669100, + 61406748 + ], + [ + 0, + 1, + 1, + 10, + 12773, + 215854, + 961717, + 1000000, + 1000000, + 1000000, + 1000000, + 1008434, + 1107638, + 1756503, + 3269490, + 6392836, + 6568802, + 13200010, + 25970046, + 48343797, + 296970337 + ], + [ + 0, + 1, + 77, + 25700, + 185304, + 218391, + 844880, + 949279, + 949279, + 949279, + 965455, + 1000000, + 1020395, + 1100000, + 1268277, + 1748586, + 2936464, + 6249013, + 10500000, + 27132181, + 1500000000 + ], + [ + 0, + 1, + 691, + 186010, + 967619, + 967619, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1236010, + 1389724, + 2094860, + 3841301, + 10000000, + 400000000 + ], + [ + 0, + 1, + 1, + 77, + 100000, + 956193, + 1000000, + 1000000, + 1053347, + 1162457, + 1488928, + 1819174, + 2298147, + 3640102, + 3908493, + 5000000, + 10000000, + 12912735, + 20685113, + 41844359, + 300000000 + ], + [ + 0, + 77, + 849, + 100000, + 142652, + 653230, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1058613, + 1205213, + 1442615, + 1638066, + 3000000, + 10000000, + 10000000, + 19447980, + 400000000 + ], + [ + 0, + 43957, + 145439, + 898724, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1074910, + 1100000, + 1100000, + 1250000, + 1286471, + 2000000, + 3992284, + 10500000, + 12951290, + 1500000000 + ], + [ + 0, + 1, + 10, + 10711, + 90457, + 252376, + 919614, + 998252, + 998252, + 998252, + 1000000, + 1023248, + 1085890, + 1164180, + 1665812, + 2465448, + 3209442, + 3209442, + 10500000, + 25502062, + 171547955 + ], + [ + 0, + 1, + 10, + 10, + 304, + 100000, + 987720, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1250000, + 1250000, + 1651623, + 3955374, + 3955374, + 13187205, + 131000000 + ], + [ + 0, + 77, + 74435, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500001, + 2209179, + 3080539, + 6961594, + 11280279, + 13187205, + 107976177 + ], + [ + 0, + 12878, + 980638, + 1000000, + 1000000, + 1000000, + 1000000, + 1078000, + 1115085, + 1328800, + 1567498, + 2033593, + 3000000, + 6399186, + 10000000, + 10621901, + 13200600, + 13200600, + 13206295, + 30620534, + 1500000000 + ], + [ + 0, + 510, + 100000, + 540778, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1003635, + 1288375, + 2000000, + 3977918, + 6411424, + 7979683, + 13187205, + 559666945 + ], + [ + 0, + 77, + 13082, + 618152, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1044000, + 1100000, + 1371089, + 1745594, + 6372109, + 6379379, + 11000000, + 20000000, + 2402777521 + ], + [ + 0, + 9, + 63672, + 100000, + 399856, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1250000, + 1457178, + 1652882, + 3000000, + 6384235, + 10189824, + 25738845, + 344076307 + ], + [ + 0, + 101, + 59923, + 220875, + 220950, + 999763, + 999763, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1003931, + 1100000, + 1478318, + 2500000, + 6417043, + 6417043, + 6417043, + 10500000, + 1506015000 + ], + [ + 0, + 10905, + 100000, + 220758, + 911456, + 1000000, + 1000000, + 1000000, + 1002000, + 1002105, + 1101320, + 1442805, + 1677457, + 2374879, + 3861982, + 5765763, + 8681745, + 10958360, + 12862163, + 33054766, + 10714394543 + ], + [ + 0, + 100000, + 221530, + 989366, + 989366, + 993667, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1071888, + 1250000, + 1450667, + 2129385, + 7975135, + 25528989 + ], + [ + 0, + 85, + 160, + 97612, + 278650, + 995673, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1585789, + 2145726, + 3974019, + 6412608, + 6432116, + 9081000, + 10500000, + 194165840 + ], + [ + 0, + 50, + 741, + 100000, + 358110, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1003000, + 1027686, + 1300001, + 1500000, + 2017412, + 4011880, + 5440881, + 6440881, + 10001254, + 1500000000 + ], + [ + 0, + 50, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 2000000, + 2677278, + 6419524, + 13277425, + 25544578, + 535435578 + ], + [ + 0, + 10, + 10, + 10, + 12594, + 319149, + 560055, + 979935, + 979935, + 1000000, + 1000000, + 1000000, + 1000000, + 1029022, + 1352627, + 2000000, + 6319236, + 6477755, + 10000000, + 26554850, + 131000000 + ], + [ + 0, + 50, + 12427, + 100000, + 983572, + 1000000, + 1000000, + 1000000, + 1000000, + 1003000, + 1100000, + 1257638, + 1814691, + 5936465, + 6445405, + 8905312, + 10024130, + 20000000, + 26517010, + 33783192, + 1500000000 + ], + [ + 0, + 1, + 1, + 50, + 85, + 33538, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1007554, + 1500000, + 2136478, + 6319236, + 7052566, + 12300000, + 25000000, + 44139449, + 1000000000 + ], + [ + 0, + 1, + 780, + 200000, + 967475, + 1000000, + 1000000, + 1000000, + 1000000, + 1071392, + 1250000, + 1673090, + 3276783, + 3276783, + 6364542, + 6483335, + 10000000, + 13277425, + 20000000, + 26089727, + 400000000 + ], + [ + 0, + 1, + 14296, + 514500, + 953865, + 953865, + 953865, + 953865, + 953865, + 1000000, + 1000000, + 1100000, + 1500000, + 2500000, + 3269436, + 3269436, + 3615956, + 6448243, + 8718119, + 13167695, + 193039121 + ], + [ + 0, + 1, + 50, + 100000, + 933689, + 997428, + 997428, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1200000, + 2000000, + 6373051, + 8011505, + 10000000, + 15213719, + 26260330, + 45000000, + 1500000000 + ], + [ + 0, + 1, + 85, + 54404, + 226378, + 898264, + 944399, + 944399, + 1000000, + 1000000, + 1000000, + 1042569, + 1385216, + 1500000, + 1528904, + 2000000, + 4279987, + 6497223, + 15951818, + 25000000, + 243799081 + ], + [ + 0, + 10, + 77, + 74435, + 821118, + 970462, + 970462, + 1000000, + 1000000, + 1003000, + 1100000, + 1100000, + 1296732, + 1757158, + 3103396, + 6447301, + 9644353, + 10000000, + 14402089, + 29817167, + 500000000 + ], + [ + 0, + 100, + 645899, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1039093, + 1100000, + 1250000, + 1647844, + 3264524, + 3264524, + 6498893, + 14402089, + 28425507, + 1469376898 + ], + [ + 0, + 1, + 4283, + 100000, + 962453, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1325149, + 1547980, + 2000000, + 2639981, + 7986345, + 8075348, + 10000000, + 11792858, + 20000000, + 25858181, + 279563518 + ], + [ + 0, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1007000, + 1052440, + 1100001, + 1809982, + 7331621, + 11000000, + 13666810, + 25006241, + 1500000000 + ], + [ + 0, + 10, + 100, + 780, + 64888, + 992051, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1007000, + 1100000, + 1185265, + 1516853, + 2667032, + 2667032, + 10000000, + 13288089, + 20000000, + 158598863 + ], + [ + 0, + 75, + 75, + 50402, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029034, + 1283534, + 1500000, + 4587444, + 13280263, + 554435866 + ], + [ + 0, + 80428, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1245279, + 1295005, + 2000000, + 4106758, + 10000222, + 29995334 + ], + [ + 0, + 1, + 100000, + 594242, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1032000, + 1185265, + 1500000, + 1575503, + 6471908, + 10000000, + 11789057, + 13666810, + 1500000000 + ], + [ + 0, + 1, + 100, + 28450, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1010026, + 1051677, + 1325149, + 1898655, + 2184765, + 6594905, + 10000000, + 13279428, + 25000000, + 95479521 + ], + [ + 0, + 100, + 223907, + 705308, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1032000, + 1331841, + 1679324, + 2965778, + 10000000, + 13280870, + 22426874, + 49304644, + 1591662710 + ], + [ + 0, + 50, + 30000, + 100000, + 997211, + 997211, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1039570, + 1113065, + 1511462, + 1736091, + 5572988, + 10000000, + 11000000, + 13284449, + 20000000, + 1500000000 + ], + [ + 0, + 50, + 48672, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029000, + 1072805, + 1250000, + 1250000, + 1511462, + 2020052, + 2122851, + 3355358, + 7957503, + 9776202, + 10022081, + 18649107, + 180002862 + ], + [ + 0, + 10, + 4283, + 100000, + 962879, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1007000, + 1082629, + 1285588, + 1500000, + 2135894, + 4011034, + 10096408, + 13279741, + 15643487, + 1500000000 + ], + [ + 0, + 100, + 100000, + 545089, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1067770, + 1100001, + 1296604, + 2182441, + 10000000, + 10016504, + 13434360, + 18000000, + 1500000000 + ], + [ + 0, + 1, + 2, + 4283, + 100000, + 543785, + 1000000, + 1000000, + 1000000, + 1000000, + 1080853, + 1500000, + 3570981, + 6358109, + 9267242, + 10157636, + 14480724, + 24983339, + 26077144, + 32170523, + 749352135 + ], + [ + 0, + 50, + 30000, + 227190, + 984719, + 984719, + 984719, + 1000000, + 1000000, + 1048000, + 1225626, + 1300001, + 3121303, + 4950063, + 9671516, + 10004660, + 10096635, + 10500000, + 22650358, + 29181667, + 224142337 + ], + [ + 0, + 50, + 100, + 80428, + 985705, + 985705, + 1000000, + 1000000, + 1000000, + 1000000, + 1004653, + 1063363, + 1185885, + 1558876, + 7985263, + 10000000, + 10021261, + 12405171, + 13352675, + 25000050, + 1455981509 + ], + [ + 0, + 54620, + 117978, + 251051, + 525000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041929, + 1062000, + 1500000, + 1669181, + 6376645, + 12315933, + 13352675, + 16695628, + 1500000000 + ], + [ + 0, + 100, + 100000, + 452080, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1051354, + 1200001, + 1250000, + 1500000, + 2078605, + 3266704, + 3266704, + 4976400, + 12786448, + 18000000, + 55629178, + 1127535158 + ], + [ + 0, + 1, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1030786, + 1100000, + 1535093, + 10000000, + 13246010, + 20000000, + 300000000 + ], + [ + 0, + 1, + 1, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046050, + 1100000, + 1291180, + 2000000, + 5529629, + 7973599, + 11106048, + 13200010, + 25000000, + 26967074, + 100000000, + 374624138 + ], + [ + 0, + 100, + 184837, + 985212, + 998080, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1051089, + 1181603, + 1531361, + 1531361, + 2157521, + 3000000, + 7990305, + 13246010, + 1500000000 + ], + [ + 0, + 1, + 1, + 100000, + 112876, + 1000000, + 1000000, + 1000000, + 1000000, + 1010487, + 1100000, + 1500000, + 2143990, + 2864055, + 7982516, + 10000000, + 13220340, + 13288895, + 22635687, + 26944617, + 293844716 + ], + [ + 0, + 1, + 42541, + 539821, + 998887, + 998887, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1057409, + 1100000, + 1250000, + 1500000, + 1675674, + 2801429, + 10000000, + 13200010, + 536470674 + ], + [ + 0, + 100, + 48800, + 219136, + 1000000, + 1000000, + 1000000, + 1000000, + 1042000, + 1090726, + 1250000, + 1250000, + 1300001, + 1500000, + 1574006, + 1840265, + 4128799, + 10000000, + 13226100, + 22168679, + 45620261 + ], + [ + 0, + 1, + 10, + 10, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1283336, + 4157422, + 10098334, + 12146567, + 20000000, + 26452200, + 762318969 + ], + [ + 0, + 1, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1018339, + 1022520, + 1100000, + 1580065, + 4890550, + 8718645, + 12386023, + 25000000, + 1500000000 + ], + [ + 0, + 1, + 30000, + 973493, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029187, + 1185885, + 1558876, + 2500000, + 6126337, + 10096602, + 12350676, + 20000000, + 510000000 + ], + [ + 0, + 1, + 10, + 100, + 997786, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1025716, + 1500000, + 1500000, + 3662392, + 10763740, + 13364569, + 70541658 + ], + [ + 0, + 1, + 1, + 10, + 10, + 38140, + 303142, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 2144853, + 2378260, + 10000000, + 13120985, + 20000000, + 1500000000 + ], + [ + 0, + 1, + 1, + 10, + 16575, + 145602, + 998697, + 1000000, + 1000000, + 1000000, + 1000000, + 1060767, + 1100000, + 1250000, + 3496401, + 8789772, + 11934383, + 13041465, + 25000050, + 35102448, + 185082011 + ], + [ + 0, + 10, + 100, + 100000, + 938981, + 947397, + 1000000, + 1000000, + 1028956, + 1051000, + 1051000, + 1061305, + 1100000, + 1250000, + 2000000, + 4882548, + 10500000, + 12349796, + 20000000, + 45200241, + 1500000000 + ], + [ + 0, + 10, + 4283, + 898807, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1493144, + 1493144, + 2027149, + 4697170, + 10000000, + 13130415, + 122590975 + ], + [ + 0, + 100, + 100000, + 968383, + 989036, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1032713, + 1061889, + 1100000, + 1250000, + 1500000, + 1714284, + 3100000, + 10000000, + 20000000, + 56008133 + ], + [ + 0, + 1, + 10, + 100, + 720, + 113164, + 590670, + 976112, + 1000000, + 1000000, + 1000000, + 1000000, + 1000136, + 1100000, + 1250000, + 2000000, + 10000000, + 12318278, + 22540584, + 26398550, + 1500000000 + ], + [ + 0, + 1, + 10, + 10979, + 219001, + 967147, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1048000, + 1250000, + 1671991, + 5549925, + 10030000, + 25444921, + 1500000000 + ], + [ + 0, + 1, + 1, + 10, + 10, + 100000, + 992703, + 992703, + 992703, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1707542, + 9952264, + 10500000, + 13175600, + 25000050, + 1128730261 + ], + [ + 0, + 50, + 100000, + 979977, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1068747, + 1608215, + 2307682, + 7968434, + 10500000, + 11726337, + 13142705, + 13175600, + 16140026, + 400000000 + ], + [ + 0, + 10, + 14021, + 927526, + 997933, + 997933, + 997933, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1026733, + 1245457, + 1538470, + 9968795, + 11142622, + 13199275, + 1500000000 + ], + [ + 0, + 1, + 543, + 113101, + 268972, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1018000, + 1250000, + 2149992, + 10000000, + 13142705, + 23842975, + 26503970, + 2079496490 + ], + [ + 0, + 100, + 30000, + 578991, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1042071, + 1177805, + 1250000, + 1300001, + 2072562, + 10000000, + 13251985, + 26043228, + 400000000 + ], + [ + 0, + 1, + 50, + 57163, + 539757, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1018000, + 1100000, + 1250000, + 1567167, + 5264766, + 10021513, + 13233640, + 20000000, + 995604184 + ], + [ + 0, + 1, + 57284, + 291060, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1051000, + 1210000, + 2496413, + 4396957, + 6494109, + 8739481, + 12037188, + 25000000, + 26503970, + 62918152, + 252052936, + 38802602214 + ], + [ + 0, + 91880, + 222653, + 931825, + 931825, + 931825, + 931825, + 931825, + 1000000, + 1016000, + 1051000, + 1154270, + 1468958, + 2021958, + 3249108, + 3249108, + 4000000, + 9576733, + 10091298, + 25000000, + 1500000000 + ], + [ + 0, + 1, + 1, + 86540, + 850000, + 924142, + 1000000, + 1000000, + 1100000, + 1241102, + 1570628, + 2148926, + 5274978, + 7209532, + 10035557, + 10569411, + 13233640, + 18900000, + 26309200, + 56616111, + 540854946 + ], + [ + 0, + 1, + 34414, + 976184, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1007000, + 1008332, + 1051000, + 1280984, + 1553636, + 3286370, + 3286370, + 3734853, + 13154600, + 25000050, + 580000000 + ], + [ + 0, + 10, + 100, + 100000, + 650779, + 962182, + 962182, + 985489, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1035000, + 1063016, + 1250000, + 2074431, + 5291989, + 10500000, + 25000050, + 255730307 + ], + [ + 0, + 19526, + 100000, + 824557, + 997060, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1051000, + 1105954, + 1500000, + 2000000, + 2103415, + 6441770, + 13154600, + 13347760, + 20000000, + 25000050, + 1500000000 + ], + [ + 0, + 1, + 100, + 100000, + 800000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041271, + 1051321, + 1500000, + 2000000, + 2785509, + 6477350, + 10553013, + 13347760, + 13347760, + 36965205 + ], + [ + 0, + 10, + 91581, + 968515, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1051000, + 1213548, + 1250000, + 1595753, + 2311150, + 5000000, + 10582305, + 20000000, + 57857502 + ], + [ + 0, + 50, + 91880, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1010722, + 1034908, + 1100000, + 1200000, + 1516189, + 3100000, + 10045695, + 11550000, + 400000000 + ], + [ + 0, + 10, + 10, + 26149, + 964442, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1010000, + 1051000, + 1192218, + 1399790, + 2103815, + 5907113, + 10000000, + 13077096, + 26695520, + 1500000000 + ], + [ + 0, + 44482, + 100000, + 805305, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1093679, + 1250000, + 1557875, + 2378442, + 8470836, + 10500000, + 10568480, + 484023531 + ], + [ + 0, + 10, + 77, + 35607, + 100000, + 805305, + 1000000, + 1000000, + 1000000, + 1028796, + 1065700, + 1194889, + 1250000, + 2000000, + 3831570, + 4571582, + 10000000, + 13377660, + 20000000, + 26593269, + 584500867 + ], + [ + 0, + 91880, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1051865, + 1100000, + 1200000, + 1250000, + 1272538, + 2067989, + 6360823, + 9451098, + 11200000, + 100000000 + ], + [ + 0, + 1, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041878, + 1100000, + 1200000, + 1539087, + 2749231, + 9451098, + 9589841, + 13019715, + 13342950, + 31000000, + 396338362 + ], + [ + 0, + 1, + 1, + 50, + 100000, + 215820, + 993023, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1023506, + 1051865, + 1100000, + 2023409, + 3100000, + 10000000, + 13019715, + 25000000, + 1500000000 + ], + [ + 0, + 1, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1021235, + 1051000, + 1154000, + 1192218, + 2000000, + 3000000, + 6366230, + 10561902, + 13168662, + 20000000, + 26039380, + 1500000000 + ], + [ + 0, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041878, + 1041878, + 1051000, + 1100000, + 1154000, + 1250000, + 1513318, + 6061992, + 7997839, + 12940690, + 13184709, + 1500000000 + ], + [ + 0, + 10, + 10, + 1011, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1049945, + 1100000, + 1500000, + 4696675, + 9579268, + 10500000, + 12976787, + 20000000, + 37661003, + 1641902614 + ], + [ + 0, + 100, + 655004, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1011446, + 1100000, + 1103328, + 1516829, + 2098723, + 4027344, + 4826196, + 10500000, + 17697882, + 1000000000 + ], + [ + 0, + 1011, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1051000, + 1100000, + 2000000, + 3345225, + 6324195, + 9581160, + 12869855, + 20000000, + 1500000000 + ], + [ + 0, + 10, + 10, + 10, + 10, + 100, + 104360, + 1000000, + 1000000, + 1033779, + 1047886, + 1100000, + 1250000, + 1480211, + 1817766, + 2149884, + 8003853, + 10050713, + 12898370, + 25000050, + 135942097 + ], + [ + 0, + 100, + 38776, + 526567, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1038036, + 1051808, + 1075420, + 1100001, + 1300001, + 1859291, + 5176276, + 10078247, + 12869855, + 1500000000 + ], + [ + 0, + 1, + 100, + 210967, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1001059, + 1080124, + 1100000, + 1250000, + 1513318, + 1879114, + 4888599, + 10000000, + 12840120, + 25000050, + 1000000000 + ], + [ + 0, + 1, + 1, + 100, + 209962, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1200000, + 1820713, + 6631961, + 11435896, + 25000050, + 25812700, + 3000000000 + ], + [ + 0, + 1, + 1, + 1, + 77, + 50790, + 359546, + 1000000, + 1000000, + 1000000, + 1100000, + 1104400, + 1250000, + 2066412, + 3660428, + 10000000, + 12840120, + 23211411, + 30000000, + 100000000, + 1500000000 + ], + [ + 0, + 1, + 50, + 57900, + 210664, + 983525, + 1000000, + 1023293, + 1100000, + 1488369, + 2274801, + 3585580, + 6206961, + 8009401, + 9900364, + 10099677, + 20000000, + 27372326, + 49957679, + 95786737, + 4299925059 + ], + [ + 0, + 1, + 1, + 77, + 100000, + 455932, + 921493, + 1000000, + 1065177, + 1186002, + 1489101, + 1583836, + 2000000, + 3769158, + 6128454, + 9988271, + 11035651, + 18040855, + 32002910, + 125708230, + 1000000000 + ], + [ + 0, + 1, + 1, + 100, + 200000, + 216995, + 951875, + 1000000, + 1034776, + 1047886, + 1100000, + 1265000, + 1582105, + 2000000, + 3356473, + 6053681, + 12597685, + 19637415, + 27027858, + 58526374, + 2392250960 + ], + [ + 0, + 1, + 1, + 10, + 100, + 146422, + 220324, + 933429, + 933429, + 969343, + 1000000, + 1000000, + 1104263, + 1389991, + 1785241, + 2851343, + 4882381, + 10000000, + 12597685, + 26030897, + 1500000000 + ], + [ + 0, + 100, + 100000, + 953213, + 993466, + 993466, + 993466, + 993466, + 993466, + 1000000, + 1001059, + 1250000, + 1500000, + 1755099, + 2466301, + 3476290, + 4000000, + 10000000, + 15801350, + 36991668, + 213372542 + ], + [ + 0, + 1, + 1, + 84558, + 994734, + 994734, + 994734, + 1000000, + 1000000, + 1000000, + 1000000, + 1200000, + 1471962, + 2077334, + 2609734, + 3583188, + 10000000, + 12875310, + 16889315, + 25000050, + 510000000 + ], + [ + 0, + 1, + 100, + 100000, + 987029, + 992295, + 992295, + 1000000, + 1000000, + 1100000, + 1100000, + 1250000, + 1500000, + 2000000, + 3200000, + 11000000, + 12579485, + 13072548, + 20000000, + 25000050, + 995574029 + ], + [ + 0, + 1, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1016276, + 1103466, + 1810112, + 2500000, + 5301918, + 10000000, + 13019685, + 20584612, + 25047431, + 67088763, + 1500000000 + ], + [ + 0, + 100, + 210313, + 979388, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1001059, + 1100000, + 1100000, + 1250000, + 1250000, + 1500000, + 1902556, + 6409454, + 11458928, + 13254795, + 25000050, + 245572922 + ], + [ + 0, + 1, + 1, + 77, + 246470, + 635065, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1493088, + 1886828, + 5295600, + 9580848, + 14300010, + 25702270, + 59660114, + 1807057677 + ], + [ + 0, + 1, + 1, + 77, + 100000, + 618162, + 635065, + 877095, + 966194, + 991680, + 1000000, + 1016276, + 1228633, + 1511498, + 2000000, + 3705219, + 7091585, + 13272234, + 25000050, + 59253230, + 1500000000 + ], + [ + 0, + 10, + 10, + 50, + 200000, + 961176, + 994982, + 994982, + 994982, + 1000000, + 1000000, + 1057862, + 1057862, + 1100000, + 1524130, + 2581584, + 3377661, + 10500000, + 13281230, + 14314107, + 1500000000 + ], + [ + 0, + 1, + 100, + 52631, + 616749, + 950610, + 984560, + 984560, + 984560, + 1000000, + 1000000, + 1088249, + 1100000, + 1251312, + 1500000, + 1794851, + 6281546, + 13229085, + 13281230, + 20000000, + 400000000 + ], + [ + 0, + 399002, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1511498, + 2500000, + 3727370, + 6449834, + 13204775, + 18692478, + 42933705 + ], + [ + 0, + 1, + 1, + 33547, + 221519, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1109000, + 1200000, + 1511367, + 1855834, + 3703569, + 10000000, + 14840000, + 26392101, + 36428966, + 195569616, + 857820387 + ], + [ + 0, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1014355, + 1100000, + 1143000, + 1558873, + 2144703, + 3720436, + 12881919, + 13292990, + 104452237 + ], + [ + 0, + 1, + 150, + 100000, + 447686, + 970776, + 1000000, + 1100000, + 1184909, + 1300001, + 1500000, + 1800000, + 2045479, + 2713030, + 10000000, + 13200010, + 13306190, + 13367565, + 20000000, + 26929468, + 538578792 + ], + [ + 0, + 35305, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1428737, + 2000000, + 11602906, + 13321245, + 40000000, + 541538916 + ], + [ + 0, + 1, + 54442, + 427653, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1109000, + 1500000, + 1616082, + 10000000, + 18663521, + 1500000000 + ], + [ + 0, + 1, + 659, + 100000, + 200000, + 993699, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1105854, + 1250000, + 1500000, + 1500000, + 1556570, + 1707350, + 6476436, + 13292990, + 23175558, + 195557220 + ], + [ + 0, + 1, + 1, + 77, + 100000, + 616749, + 990307, + 990307, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1228000, + 1556570, + 2133290, + 10000000, + 17996605, + 25873318, + 47535163, + 500000000 + ], + [ + 0, + 1, + 1, + 1, + 77, + 100000, + 971176, + 971176, + 1000000, + 1000000, + 1000000, + 1000000, + 1233622, + 2000000, + 4702638, + 8847043, + 10961483, + 14107549, + 22732604, + 32567170, + 669758779 + ], + [ + 0, + 1, + 1, + 77, + 100000, + 225231, + 947870, + 976694, + 976694, + 976694, + 1000000, + 1100000, + 1261966, + 1616082, + 1964070, + 3650115, + 6368355, + 10682933, + 25000000, + 37434632, + 1631080686 + ], + [ + 0, + 77, + 191794, + 334602, + 334602, + 966563, + 966563, + 966563, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1027198, + 1245975, + 2000000, + 2500000, + 5000000, + 12890000, + 25000050, + 387682541 + ], + [ + 0, + 1, + 1452, + 460015, + 979080, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1027198, + 1250000, + 1500000, + 1556570, + 2430815, + 6428511, + 11606163, + 13357415, + 25000000, + 66719661, + 1235092912 + ], + [ + 0, + 1, + 1, + 50, + 56736, + 988978, + 1000000, + 1000000, + 1000000, + 1027761, + 1100000, + 1250000, + 2000000, + 3714501, + 7963611, + 10000000, + 12893871, + 15634784, + 26516825, + 88330883, + 1000000000 + ], + [ + 0, + 1, + 1, + 1, + 13965, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1043500, + 1250000, + 1500000, + 1556570, + 2153742, + 5995124, + 17404359, + 41612731, + 2163987508 + ], + [ + 0, + 1, + 94008, + 973200, + 973200, + 1000000, + 1000000, + 1000000, + 1097283, + 1145000, + 1500000, + 1525097, + 9954820, + 11646660, + 11646660, + 11646660, + 11646660, + 11646660, + 11646660, + 20885230, + 154510399 + ], + [ + 0, + 100, + 887179, + 975856, + 975856, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1027198, + 1250000, + 1570109, + 3179139, + 6621331, + 13284532, + 28489610, + 8916218657 + ], + [ + 0, + 1, + 1, + 50, + 100, + 100000, + 926946, + 1000000, + 1000000, + 1100000, + 1155000, + 1229220, + 1467876, + 2000000, + 3204432, + 10000000, + 10500000, + 13513805, + 13777675, + 27228240, + 1508950543 + ], + [ + 0, + 100000, + 950723, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1076989, + 1284210, + 1500000, + 2000000, + 2324597, + 4000000, + 11610156, + 25000050, + 537627847 + ], + [ + 0, + 17807, + 100000, + 949650, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1027198, + 1145000, + 1250000, + 1250000, + 1389115, + 1626536, + 9931270, + 11669726, + 20000000, + 45000000, + 1500000000 + ], + [ + 0, + 69469, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1015828, + 1043062, + 1281881, + 1500000, + 1771882, + 5891804, + 10676223, + 12637328, + 13952580, + 28037820, + 143542073 + ], + [ + 0, + 30000, + 59925, + 92075, + 106923, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1057858, + 1250000, + 1500000, + 6695268, + 14478175, + 195394734 + ], + [ + 0, + 100, + 88768, + 805282, + 969259, + 969259, + 1000000, + 1000000, + 1000000, + 1000000, + 1108327, + 1217661, + 1500000, + 1627374, + 2000000, + 3086654, + 6659112, + 11440000, + 13408179, + 18554449, + 222530310 + ], + [ + 0, + 58218, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1015828, + 1155000, + 1250000, + 1250000, + 1603821, + 6614746, + 11440000, + 13950800, + 400000000 + ], + [ + 0, + 100, + 255549, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1053960, + 1250000, + 1482833, + 1624215, + 2216654, + 6270918, + 13947580, + 400000000 + ], + [ + 0, + 38002, + 296876, + 978148, + 1000000, + 1000000, + 1063090, + 1262645, + 1735702, + 2152274, + 3399944, + 3399944, + 5650405, + 10000000, + 11036264, + 12811326, + 14157481, + 20563494, + 33513915, + 81725708, + 1500000000 + ], + [ + 0, + 100, + 751001, + 995796, + 995796, + 995796, + 995796, + 1000000, + 1000000, + 1000000, + 1000000, + 1062237, + 1176881, + 1500000, + 1730856, + 3196426, + 3448647, + 6589522, + 18482866, + 82310227, + 995382866 + ], + [ + 0, + 100, + 84525, + 320655, + 937680, + 1000000, + 1000000, + 1000000, + 1053960, + 1100000, + 1100000, + 1144448, + 1496047, + 1670902, + 2000000, + 2599271, + 4024791, + 5514942, + 8155424, + 20000000, + 1500000000 + ], + [ + 0, + 50, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1062237, + 1282530, + 1735702, + 2162998, + 4059255, + 7922993, + 10500000, + 13851400, + 14025750, + 1500000000 + ], + [ + 0, + 1, + 34051, + 978582, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1015828, + 1145000, + 1258816, + 1581468, + 2000000, + 3000000, + 10000000, + 12584000, + 400000000 + ], + [ + 0, + 564730, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1015828, + 1100000, + 1396761, + 2000000, + 8953307, + 13419887, + 95394989 + ], + [ + 0, + 100, + 227179, + 999310, + 1000000, + 1000000, + 1000000, + 1000000, + 1007635, + 1100000, + 1250000, + 1500000, + 2211860, + 7953092, + 11000000, + 11000000, + 11000000, + 11467724, + 11467724, + 11467724, + 1500000000 + ], + [ + 0, + 100, + 986695, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1015828, + 1100000, + 1200000, + 1411808, + 1900703, + 2861174, + 3226596, + 3226596, + 6605905, + 11441498, + 13041833, + 26964856, + 400000000 + ], + [ + 0, + 63566, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1002720, + 1100000, + 1250000, + 1411808, + 1500000, + 1609445, + 4189923, + 6589522, + 11620000, + 21329641, + 273936950 + ], + [ + 0, + 229698, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1411808, + 2132630, + 3814585, + 10000000, + 27806080, + 1500000000 + ], + [ + 0, + 1, + 2665, + 150226, + 231098, + 560298, + 981040, + 990989, + 1000000, + 1000000, + 1100000, + 1206934, + 1511498, + 2101636, + 3562094, + 4062679, + 6593222, + 11000000, + 20000000, + 39521743, + 995378059 + ], + [ + 0, + 1, + 50, + 100000, + 973922, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1058116, + 1250000, + 1498878, + 1548992, + 2182504, + 6153362, + 10000000, + 12368270, + 16975451, + 39289706, + 1284536725 + ], + [ + 0, + 1, + 100, + 200000, + 949696, + 1000000, + 1000000, + 1015828, + 1100000, + 1261388, + 1511498, + 2000000, + 2128312, + 5197549, + 8872614, + 10000000, + 13781895, + 16267188, + 25000050, + 35930639, + 409903550 + ], + [ + 0, + 100, + 274391, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1284000, + 1284000, + 1500000, + 1541660, + 2530056, + 6591435, + 10000000, + 1500000000 + ], + [ + 0, + 100, + 100000, + 235684, + 499303, + 1000000, + 1000000, + 1000000, + 1015828, + 1250000, + 1284000, + 1500000, + 1541338, + 1644653, + 2158021, + 4093290, + 9958251, + 13808940, + 17385900, + 20000000, + 130000000 + ], + [ + 0, + 19871, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1284000, + 1500000, + 1639860, + 2139895, + 2500000, + 10500000, + 17385900, + 48000000 + ], + [ + 0, + 1, + 815, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1284000, + 1339049, + 1500000, + 1808660, + 2576749, + 13877400, + 20000000, + 141000000 + ], + [ + 0, + 1, + 26969, + 232356, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1284000, + 1573252, + 3000000, + 3782965, + 6590723, + 9180711, + 11084426, + 20000000, + 28032630, + 69027867, + 831071825 + ], + [ + 0, + 12416, + 234821, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1284000, + 1555050, + 2177754, + 7959870, + 10500000, + 14039975, + 25000050, + 1500000000 + ], + [ + 0, + 12889, + 100000, + 251004, + 1000000, + 1000000, + 1005943, + 1005943, + 1169888, + 1284000, + 1357000, + 1749021, + 2839974, + 4098381, + 6595187, + 6639577, + 10352982, + 11702099, + 13982850, + 14132090, + 100000000 + ], + [ + 0, + 1, + 28968, + 899860, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1166554, + 1261000, + 1261000, + 1294207, + 1500000, + 2000000, + 8773255, + 11009671, + 25762922, + 402715474 + ], + [ + 0, + 10, + 50, + 92730, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1229927, + 1250000, + 1284000, + 1581741, + 9731333, + 25000000, + 400000000 + ], + [ + 0, + 588, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1018746, + 1136489, + 1284000, + 1564008, + 2194494, + 3473798, + 5353937, + 10000000, + 11087744, + 20000000, + 473245747 + ], + [ + 0, + 100000, + 478431, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1119822, + 1250000, + 1284000, + 1500000, + 1861131, + 2376179, + 2408080, + 3376978, + 9173393, + 19173346, + 39972049, + 3386965000 + ], + [ + 0, + 1, + 49590, + 234046, + 986265, + 986265, + 995335, + 1000000, + 1000000, + 1000000, + 1000000, + 1284000, + 1357000, + 2329194, + 4054680, + 5000000, + 5000000, + 10000000, + 10500000, + 13828382, + 1506015000 + ], + [ + 0, + 1, + 10, + 15917, + 981586, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1124224, + 1250000, + 1286340, + 1860861, + 4098544, + 10000000, + 13907635, + 21841250, + 128388175 + ], + [ + 0, + 700, + 100000, + 100000, + 100000, + 942246, + 991978, + 991978, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1164673, + 1284000, + 3827765, + 10500000, + 20000000, + 1000000000 + ], + [ + 0, + 1, + 1, + 4298, + 77809, + 918109, + 1000000, + 1000000, + 1000000, + 1100000, + 1200000, + 1284000, + 1287757, + 2000000, + 3253316, + 5000000, + 10000000, + 12890567, + 14042795, + 21393993, + 563843330 + ], + [ + 0, + 12371, + 942337, + 992069, + 992069, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000091, + 1250000, + 1284000, + 1500000, + 2224959, + 3710398, + 9942337, + 11550000, + 25000000, + 1500000000 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1027580, + 1200000, + 1250000, + 1284000, + 1592709, + 2228311, + 5617118, + 11364153, + 28085590, + 226118602 + ], + [ + 0, + 13800, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1059780, + 1284000, + 1307478, + 1572220, + 4424494, + 10000010, + 15750000, + 25000050, + 55756957, + 468040130 + ], + [ + 0, + 10, + 898, + 26330, + 937799, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1012521, + 1218657, + 1284000, + 2000000, + 5276296, + 9186192, + 141000000 + ], + [ + 0, + 13556, + 952396, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1024273, + 1167201, + 1284000, + 1572220, + 2000000, + 3867241, + 7698887, + 10500000, + 22105707, + 39172134, + 100000000, + 962577817 + ], + [ + 0, + 10, + 888, + 107016, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1047560, + 1100000, + 1200000, + 1250000, + 1284000, + 1500000, + 2316519, + 6543056, + 11097028, + 14070570, + 19135770, + 1500000000 + ], + [ + 0, + 85, + 49239, + 633975, + 1000000, + 1000000, + 1000000, + 1000000, + 1145164, + 1284000, + 1500000, + 2000000, + 2754348, + 5955216, + 6690472, + 13200010, + 23619724, + 25866447, + 54458209, + 130000000, + 915197728 + ], + [ + 0, + 77, + 3418, + 191665, + 985513, + 1000000, + 1000000, + 1000000, + 1091404, + 1200000, + 1300682, + 2000000, + 2687257, + 3347257, + 6675985, + 10090732, + 14070570, + 25521973, + 33817532, + 80910516, + 1060905178 + ], + [ + 0, + 77, + 100000, + 945989, + 945989, + 1000000, + 1000000, + 1021099, + 1274969, + 1300682, + 2000000, + 3755130, + 4884581, + 10500000, + 10500000, + 10500000, + 10500000, + 12043260, + 28010070, + 35474706, + 243515296 + ], + [ + 0, + 3418, + 265819, + 997794, + 997794, + 997794, + 997794, + 997794, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1284000, + 1285219, + 1500000, + 2076131, + 6713548, + 13960185, + 1500000000 + ], + [ + 0, + 269, + 80429, + 274005, + 566174, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1359256, + 2196174, + 2601364, + 9174719, + 10500000, + 10500000, + 13960185, + 28979786, + 350739131 + ], + [ + 0, + 862, + 309186, + 992514, + 992514, + 992514, + 992514, + 1000000, + 1000000, + 1000000, + 1250000, + 1284000, + 1300000, + 2009776, + 3122626, + 9942451, + 10693304, + 13820163, + 15493925, + 25000000, + 362310244 + ], + [ + 0, + 10562, + 572737, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1008273, + 1250000, + 1500000, + 1600977, + 2538430, + 4868726, + 6755477, + 10500000, + 14300010, + 23923547, + 28307760, + 58879388, + 500000000 + ], + [ + 0, + 1, + 77, + 12772, + 100000, + 268472, + 945956, + 1000000, + 1000000, + 1284000, + 1382236, + 1510458, + 2000000, + 2230551, + 3788566, + 6673330, + 9977561, + 11761977, + 16356592, + 28336681, + 1500000000 + ], + [ + 0, + 1, + 4219, + 238266, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1375000, + 2000000, + 2774453, + 8670000, + 9943449, + 10968856, + 14159660, + 25000050, + 30859738, + 3936689890 + ], + [ + 0, + 19870, + 957052, + 957052, + 957052, + 957052, + 1000000, + 1000000, + 1000000, + 1000000, + 1177776, + 1280542, + 1359256, + 1500000, + 2000000, + 3000000, + 3479925, + 10000000, + 20000000, + 28307760, + 1000000000 + ], + [ + 0, + 10, + 14040, + 100000, + 971229, + 971229, + 971229, + 1000000, + 1000000, + 1100000, + 1177776, + 1250000, + 1284000, + 1300000, + 1504812, + 3875358, + 10000000, + 12063925, + 14300000, + 26913067, + 800000000 + ], + [ + 0, + 37407, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1163847, + 1290000, + 1367000, + 1500000, + 2056914, + 3100000, + 6867107, + 10000000, + 12043260, + 14300010, + 28849540, + 104483916 + ], + [ + 0, + 1, + 19870, + 100000, + 809913, + 809913, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046482, + 1250000, + 1429522, + 1878398, + 2204839, + 3872532, + 11000000, + 32742882, + 225487971 + ], + [ + 0, + 1, + 100000, + 282415, + 805656, + 1000000, + 1000000, + 1000000, + 1017725, + 1250000, + 1250000, + 1395830, + 2500000, + 2507061, + 2507061, + 3829874, + 10500000, + 10534894, + 12914422, + 25000050, + 1500000000 + ], + [ + 0, + 50, + 239040, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1500000, + 2000000, + 3100000, + 7913715, + 10500000, + 15623428, + 15623428, + 1500000000 + ], + [ + 0, + 50, + 964140, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1321577, + 2000000, + 9946190, + 25000050, + 573306618 + ], + [ + 0, + 27850, + 177043, + 800000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1002599, + 1100000, + 1183027, + 1525453, + 3000000, + 7926144, + 12837011, + 14511085, + 28735350, + 572369891 + ], + [ + 0, + 430, + 100000, + 985614, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1003396, + 1156362, + 1280542, + 1516096, + 2000000, + 11000000, + 25000050, + 2800000000 + ], + [ + 0, + 99002, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1011362, + 1250000, + 1250000, + 1541549, + 2500000, + 3538838, + 3538838, + 10000000, + 16387203, + 1000000000 + ], + [ + 0, + 27850, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1151853, + 1500000, + 2000000, + 3520520, + 3520520, + 7925870, + 14314445, + 16356592, + 572411248 + ], + [ + 0, + 100, + 83570, + 240263, + 307505, + 953026, + 1000000, + 1100000, + 1317573, + 1409000, + 1525453, + 2000000, + 2127799, + 3861533, + 8880256, + 12049935, + 13247586, + 18064890, + 25892054, + 42498643, + 1500000000 + ], + [ + 0, + 1, + 1, + 430, + 993686, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1151522, + 1250000, + 2000000, + 5067627, + 12045231, + 14332655, + 20000000, + 509023955 + ], + [ + 0, + 1, + 50, + 30000, + 100000, + 975419, + 1000000, + 1000000, + 1000000, + 1000000, + 1184740, + 1250000, + 1250000, + 1250000, + 1359256, + 1585152, + 2193115, + 9114760, + 9706027, + 25000050, + 150999901 + ], + [ + 0, + 4104, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1162977, + 1250000, + 1280542, + 1625945, + 4000000, + 7888567, + 14033482, + 21588450, + 400000000 + ], + [ + 0, + 106195, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1136883, + 1250000, + 1630936, + 2750000, + 3970122, + 12080440, + 25000050, + 1500000000 + ], + [ + 0, + 1, + 430, + 30000, + 713145, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1145428, + 1250000, + 1257359, + 1371000, + 2155964, + 3308020, + 9157673, + 12060000, + 28559710, + 269523861 + ], + [ + 0, + 100, + 100000, + 999430, + 1000000, + 1000000, + 1000000, + 1000000, + 1100001, + 1250000, + 1400326, + 1815468, + 2128955, + 3722098, + 6719292, + 8657950, + 11738408, + 17013251, + 28427520, + 95642680, + 995243450 + ], + [ + 0, + 100, + 430, + 430, + 200000, + 940555, + 1000000, + 1000000, + 1083346, + 1314420, + 1569332, + 2000000, + 2235403, + 4000000, + 6659847, + 10500000, + 10500000, + 15689072, + 25000050, + 46166771, + 1500000000 + ], + [ + 0, + 77, + 173612, + 991801, + 991801, + 1000000, + 1056733, + 1321000, + 1610510, + 2295279, + 3656661, + 5994302, + 6710142, + 9142393, + 13276308, + 20000000, + 25769775, + 42850076, + 95175806, + 249754644, + 8664117143 + ], + [ + 0, + 77, + 66440, + 394005, + 874131, + 1000000, + 1100000, + 1248614, + 1500000, + 2000000, + 2037136, + 2646273, + 3102140, + 6571236, + 9577220, + 11322237, + 14213760, + 26020275, + 32954850, + 63875977, + 396003045 + ], + [ + 0, + 430, + 823902, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1184740, + 1250000, + 1627656, + 2427999, + 5707176, + 11322237, + 25000050, + 62780798, + 1500000000 + ], + [ + 0, + 100, + 100000, + 594186, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1177050, + 1862371, + 2183014, + 3558615, + 8482422, + 9137383, + 20000000, + 33109893, + 85109515 + ], + [ + 0, + 1, + 100, + 69440, + 805996, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1036948, + 1100000, + 1250000, + 1500000, + 2000000, + 7874203, + 14447985, + 14825590, + 423909016 + ], + [ + 0, + 1, + 100, + 100000, + 979469, + 999955, + 1000000, + 1000000, + 1000000, + 1000000, + 1005312, + 1135481, + 1398188, + 2222958, + 4806484, + 6604777, + 11034083, + 20000000, + 28945160, + 45058091, + 197257308 + ], + [ + 0, + 77, + 93, + 100000, + 363071, + 990875, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1544160, + 1873143, + 2767288, + 6931513, + 14219265, + 26442070, + 115224623, + 2550028645 + ], + [ + 0, + 100000, + 106195, + 106195, + 106195, + 305870, + 952175, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1001700, + 1500000, + 2000000, + 3621385, + 3621385, + 6552837, + 15995064, + 24719857, + 589201211 + ], + [ + 0, + 64727, + 251076, + 970450, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1849485, + 2517401, + 5245481, + 6973849, + 9164587, + 12628927, + 22187397, + 26890130, + 39898437, + 91004677, + 4903419042 + ], + [ + 0, + 10, + 77, + 148394, + 617623, + 931919, + 1000000, + 1100000, + 1250000, + 1562832, + 2081636, + 2545872, + 3549462, + 3549462, + 6805712, + 8980000, + 11904210, + 15693835, + 26290214, + 68659288, + 2402280744 + ], + [ + 0, + 93, + 73160, + 200000, + 839978, + 910122, + 910122, + 1000000, + 1343966, + 1669562, + 2163967, + 2783674, + 3832250, + 4789656, + 7848152, + 13190460, + 19057716, + 28460825, + 43991938, + 144831912, + 5485989278 + ], + [ + 0, + 1, + 31215, + 269518, + 836728, + 1000000, + 1000000, + 1100000, + 1100000, + 1145799, + 1265341, + 1439993, + 2000000, + 3036651, + 4837699, + 7889898, + 11000000, + 22057184, + 28726156, + 86612402, + 348725247 + ], + [ + 0, + 1, + 100, + 249219, + 979701, + 979701, + 979701, + 979701, + 1000000, + 1000000, + 1100000, + 1100000, + 2000000, + 4078204, + 4879839, + 10430239, + 10500000, + 15057715, + 28213767, + 48097285, + 758484900 + ], + [ + 0, + 1, + 11, + 100, + 457164, + 937309, + 937309, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1331000, + 1862000, + 2356475, + 5987626, + 7842055, + 13000000, + 26387024, + 48097285, + 334359855 + ], + [ + 0, + 50, + 100, + 272492, + 454936, + 821362, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1312646, + 3859169, + 4486665, + 10500000, + 15693222, + 17259247, + 25780417, + 609225342 + ], + [ + 0, + 1, + 100, + 111843, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1302980, + 2128000, + 2658000, + 4203365, + 11808466, + 15699200, + 32342090, + 1500000000 + ], + [ + 0, + 10, + 10, + 64439, + 812046, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1044619, + 1343810, + 2000000, + 4546097, + 8941249, + 16420015, + 25000050, + 2500000000 + ], + [ + 0, + 93, + 46542, + 100000, + 382318, + 1000000, + 1000000, + 1000000, + 1000000, + 1500000, + 1591722, + 1591722, + 2704247, + 4582407, + 10000000, + 10500000, + 16231940, + 25000000, + 26659815, + 43951748, + 2500000000 + ], + [ + 0, + 26011, + 487249, + 965570, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1590127, + 2243249, + 2304633, + 2721871, + 5002249, + 9670000, + 15693835, + 16231940, + 25000050, + 26940249, + 47219803, + 194502249 + ], + [ + 0, + 100, + 227717, + 273719, + 740769, + 824387, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1410431, + 1410431, + 2001017, + 6492776, + 9750000, + 18503071, + 25692100, + 59506113, + 711204818 + ], + [ + 0, + 1, + 10, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1182994, + 1270498, + 1566734, + 2000000, + 4000000, + 6380761, + 7986465, + 15465618, + 17619399, + 86617973 + ], + [ + 0, + 26011, + 141047, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1135481, + 1250000, + 2047000, + 2521000, + 2521000, + 3482905, + 5000000, + 7770324, + 16414175, + 24313991, + 1500000000 + ], + [ + 0, + 22907, + 272182, + 729860, + 729860, + 729860, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1300001, + 1685018, + 2397884, + 7797163, + 10000000, + 16493250, + 26528301, + 32828380, + 194556357 + ], + [ + 0, + 1, + 62970, + 611308, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 2000000, + 2376279, + 5000000, + 6565676, + 7464899, + 10000000, + 17263218, + 25775002, + 25810000, + 194577613 + ], + [ + 0, + 1, + 100, + 168051, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 2000000, + 3482905, + 3980928, + 3980928, + 6624602, + 10000000, + 16282268, + 17263218, + 23400000, + 27280375, + 1500000000 + ], + [ + 0, + 62970, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1143078, + 1500000, + 2291168, + 8408446, + 13025310, + 16179405, + 25000050, + 400000000 + ], + [ + 0, + 100, + 100000, + 619500, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1262386, + 1262386, + 2000000, + 2228000, + 2947947, + 9111022, + 13050788, + 14300000, + 16267160, + 25000000, + 1513072481 + ], + [ + 0, + 11730, + 46417, + 638059, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1262386, + 1262386, + 1527531, + 2228000, + 2967990, + 7434178, + 15651843, + 36738964, + 1500000000 + ], + [ + 0, + 30000, + 619500, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1250000, + 1513038, + 2000000, + 2228000, + 3277408, + 4393216, + 10000000, + 14000000, + 400000000 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1500000, + 2151441, + 3000000, + 7369218, + 10500000, + 13039618, + 14300000, + 20000000, + 194715198 + ], + [ + 0, + 24257, + 799900, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1104963, + 1250000, + 1250000, + 1385390, + 1559199, + 2000000, + 7374406, + 10500000, + 43771156 + ], + [ + 0, + 62970, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1045877, + 1069314, + 1250000, + 1378983, + 4426539, + 10000000, + 16495718, + 1500000000 + ], + [ + 0, + 480, + 31510, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046889, + 1250000, + 1347096, + 2000000, + 2518899, + 10500000, + 323750168 + ], + [ + 0, + 1, + 957, + 55130, + 57521, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 3100000, + 7256033, + 10500000, + 20000000, + 31708810, + 618670683 + ], + [ + 0, + 1, + 1, + 14420, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1034096, + 2000000, + 3565195, + 5543454, + 7266821, + 10000000, + 10000000, + 16496523, + 29830939, + 45176856, + 1500000000 + ], + [ + 0, + 77, + 100000, + 834133, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1108107, + 1250000, + 2000000, + 3000000, + 5769132, + 15716775, + 16493250, + 25893197, + 1500000000 + ], + [ + 0, + 1, + 150, + 6085, + 100000, + 403635, + 995640, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 1500000, + 2280093, + 4430159, + 4869192, + 17879752, + 142025906 + ], + [ + 0, + 10, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1027768, + 1500000, + 2334020, + 3853076, + 4137892, + 8864886, + 13245923, + 16494283, + 1500000000 + ], + [ + 0, + 46, + 500, + 500, + 216222, + 964662, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1244245, + 1250000, + 1500000, + 1703918, + 3980931, + 3980931, + 4543743, + 10994279, + 1000000000 + ], + [ + 0, + 100, + 54350, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1312830, + 1585349, + 3949629, + 4477193, + 5214117, + 10994279, + 30000000, + 2500000000 + ], + [ + 0, + 500, + 500, + 82944, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1500000, + 3000000, + 7243981, + 15577440, + 37362721 + ], + [ + 0, + 1, + 1, + 1, + 59762, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 2279204, + 5227818, + 10000000, + 10500000, + 15829261, + 25524567, + 31358270, + 100000000, + 1500000000 + ], + [ + 0, + 1, + 100, + 62970, + 621165, + 990478, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1003600, + 1250000, + 1250000, + 2000000, + 4219275, + 7220501, + 16931034, + 25000050, + 31154880, + 510000000 + ], + [ + 0, + 100, + 27440, + 115044, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1150000, + 1250000, + 1500000, + 2000000, + 2000000, + 7193848, + 10962655, + 27310833, + 1500000000 + ], + [ + 0, + 1, + 1, + 100, + 96693, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1153000, + 1500000, + 2000000, + 2265497, + 4448718, + 9798384, + 11000000, + 15694015, + 25000000, + 28178291, + 510000000 + ], + [ + 0, + 1, + 500, + 70710, + 962761, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1042686, + 1500000, + 1513038, + 3818545, + 3818545, + 3818545, + 10000000, + 15577440, + 15679135, + 16820483, + 194820483 + ], + [ + 0, + 100, + 549429, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 2000000, + 2242212, + 3794986, + 3794986, + 7769586, + 11543355, + 31388030, + 1214482507 + ], + [ + 0, + 1, + 69330, + 994283, + 994283, + 1000000, + 1000000, + 1000000, + 1000000, + 1031338, + 1031338, + 1206823, + 1250000, + 1250000, + 3137889, + 8899927, + 10000000, + 10500000, + 10500000, + 20632600, + 1500000000 + ], + [ + 0, + 1, + 100, + 598500, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1013870, + 1100000, + 1500000, + 7198512, + 8881701, + 15629570, + 15694015, + 20000000, + 100000000 + ], + [ + 0, + 500, + 500, + 27440, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1078633, + 1100000, + 1120075, + 1250000, + 2277678, + 8898294, + 11508292, + 994886473 + ], + [ + 0, + 50, + 500, + 500, + 978522, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1021802, + 1651325, + 5105786, + 12252893, + 15695204, + 20000000, + 189079644 + ], + [ + 0, + 100, + 76827, + 611352, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1034526, + 1500000, + 2257231, + 2562907, + 7148053, + 12040728, + 18008652, + 22601658, + 500000000 + ], + [ + 0, + 100, + 252324, + 986402, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1021802, + 1032529, + 1100000, + 1500000, + 4221915, + 5474390, + 10500000, + 15696815, + 1500000000 + ], + [ + 0, + 1, + 60, + 95506, + 991408, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1020473, + 1050000, + 2178000, + 2236277, + 5868982, + 10000000, + 15697060, + 38119132, + 1000000000 + ], + [ + 0, + 1, + 150, + 604647, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1250000, + 1500000, + 2178000, + 2527602, + 6191204, + 10500000, + 15478010, + 20000000, + 363009749 + ], + [ + 0, + 1, + 1670, + 598500, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1021802, + 1066246, + 1066246, + 1100000, + 1500000, + 7088736, + 12040728, + 25929864, + 100000000 + ], + [ + 0, + 1, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1050087, + 1100000, + 2000000, + 6000000, + 12015028, + 15699774, + 25000050, + 30000000, + 3134485879 + ], + [ + 0, + 1, + 50, + 100000, + 246878, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1015371, + 1100000, + 2263726, + 9540502, + 15139415, + 15139415, + 18217217, + 30000000, + 58545163, + 722456617 + ], + [ + 0, + 1, + 50, + 500, + 75784, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1024378, + 1605267, + 4069703, + 11356033, + 20000000, + 27192971, + 108509613, + 1500000000 + ], + [ + 0, + 50, + 100000, + 990191, + 990191, + 990191, + 990191, + 990191, + 1000000, + 1000000, + 1000000, + 1000000, + 1021802, + 1250000, + 1500000, + 2000000, + 6023386, + 10000010, + 17263416, + 35950079, + 995064233 + ], + [ + 0, + 100, + 98558, + 256397, + 990191, + 1000000, + 1000000, + 1000000, + 1000000, + 1049000, + 1250000, + 1500000, + 2000000, + 3200000, + 10000000, + 12048912, + 13745696, + 14985415, + 14985415, + 20000000, + 1500000000 + ], + [ + 0, + 1, + 2, + 48836, + 244180, + 984871, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1049000, + 1250000, + 1500000, + 2833270, + 7875445, + 14777870, + 16566016, + 31414749, + 81638467, + 5012178077 + ], + [ + 0, + 100, + 450, + 460, + 460, + 460, + 243129, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1021044, + 1049000, + 1250000, + 2000000, + 5911148, + 10500000, + 14777870, + 15058465, + 31000000 + ], + [ + 0, + 100, + 588361, + 591673, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1026154, + 1026154, + 1026154, + 1026154, + 1026154, + 1319283, + 2000000, + 4156291, + 14807300, + 25000050 + ], + [ + 0, + 100, + 990191, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1049000, + 1464100, + 1635962, + 5922920, + 14650845, + 15699810, + 23988298, + 26803541, + 100000000 + ], + [ + 0, + 50, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1007670, + 1007670, + 1007670, + 1025631, + 1100000, + 2985674, + 10117083, + 15699956, + 24776232, + 1116218133 + ], + [ + 0, + 100, + 450, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1034000, + 1200001, + 1523342, + 2000000, + 2502493, + 3407411, + 4194814, + 6862143, + 10500000, + 13650531, + 18336411, + 137573168 + ], + [ + 0, + 51479, + 577961, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1022567, + 1090645, + 1100000, + 1154360, + 1250000, + 1565432, + 6394152, + 10395296, + 13322932, + 22195584, + 28877190, + 1500000000 + ], + [ + 0, + 100, + 460, + 85701, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1036667, + 1314147, + 2051262, + 3000000, + 6774156, + 14438595, + 14587710, + 15700862, + 25000050, + 166946324 + ], + [ + 0, + 1, + 460, + 460, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1050888, + 1250000, + 1728771, + 3347226, + 10000000, + 12040000, + 14509250, + 400000000 + ], + [ + 0, + 100, + 568995, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1023333, + 1040991, + 1040991, + 1250000, + 1615569, + 6713371, + 13799121, + 14438595, + 45000000 + ], + [ + 0, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1031135, + 1140458, + 1250000, + 1294679, + 1343524, + 1617506, + 4098149, + 10920000, + 1500000000 + ], + [ + 0, + 879, + 976172, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1036000, + 1100000, + 1500000, + 1500000, + 1500000, + 2000000, + 3999671, + 9388042, + 10500000, + 10587898, + 22910511, + 28677690, + 142966158 + ], + [ + 0, + 50, + 404, + 12136, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1036899, + 1250000, + 1318772, + 1516654, + 1516654, + 3842698, + 10547518, + 27529379 + ], + [ + 0, + 100, + 11975, + 228119, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1654695, + 6587009, + 17707514, + 632106780 + ], + [ + 0, + 100000, + 817991, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1020130, + 1500000, + 3000000, + 7955826, + 10018500, + 10518545, + 11198064, + 35345430, + 831862042 + ], + [ + 0, + 12423, + 100000, + 976851, + 976851, + 976851, + 976851, + 1000000, + 1000000, + 1100000, + 1300001, + 1540911, + 1540911, + 2143310, + 4713777, + 10018414, + 10500000, + 11956897, + 24857551, + 48438680, + 1420581769 + ], + [ + 0, + 797, + 14606, + 100000, + 264480, + 1000000, + 1000000, + 1000000, + 1000000, + 1085236, + 1654695, + 3000000, + 4712463, + 6525227, + 6525227, + 7691385, + 11801938, + 19778890, + 30000000, + 130000000, + 1500000000 + ], + [ + 0, + 100, + 51071, + 228164, + 1000000, + 1000000, + 1000000, + 1000000, + 1029370, + 1092715, + 1336334, + 1575801, + 3000000, + 5938681, + 6594119, + 8993679, + 10081085, + 10081085, + 20000000, + 51277811, + 1500000000 + ], + [ + 0, + 155, + 25020, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1001168, + 1054000, + 1090645, + 1250000, + 1508391, + 1960020, + 2228254, + 6639546, + 6639546, + 10000000, + 13322434, + 22242216, + 54138313 + ], + [ + 0, + 25020, + 225454, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100001, + 1500000, + 1665708, + 3000000, + 11200000, + 13799216, + 45000000, + 800000000 + ], + [ + 0, + 10, + 12095, + 225456, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100001, + 1337579, + 1337579, + 2182875, + 5465484, + 8000000, + 13200000, + 245508875 + ], + [ + 0, + 1, + 861, + 79395, + 968565, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1098610, + 1100000, + 1269758, + 2000000, + 10000000, + 13200010, + 169555805 + ], + [ + 0, + 26, + 35300, + 980809, + 980809, + 994289, + 994289, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1250000, + 1500000, + 2061079, + 3000000, + 95471729 + ], + [ + 0, + 860, + 99835, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1084077, + 1100000, + 1100000, + 1337579, + 6471351, + 10500000, + 18589101, + 1500000000 + ], + [ + 0, + 1, + 1855, + 29380, + 97763, + 251337, + 900000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1002937, + 1125445, + 1250000, + 2000000, + 3000000, + 10063599, + 1000000000 + ], + [ + 0, + 12059, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1025494, + 1093451, + 1300001, + 3109408, + 10000000, + 10518545, + 13200000, + 42019313 + ], + [ + 0, + 32820, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1059757, + 1102000, + 1318790, + 2128669, + 6024873, + 10000000, + 14628091, + 15582599, + 27065390, + 400000000 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1020843, + 1100000, + 1250000, + 1500000, + 2855080, + 5306332, + 7316981, + 10573998, + 14736432, + 22132470, + 37270853, + 104385501, + 1500000000 + ], + [ + 0, + 100, + 77759, + 504000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1094000, + 1100000, + 1137471, + 1500000, + 1677786, + 3066218, + 6573241, + 8090000, + 15170499, + 26020575, + 30704380, + 400000000 + ], + [ + 0, + 10000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1066000, + 1464100, + 1567498, + 2087861, + 2200000, + 3975409, + 10000000, + 26135459, + 59669299, + 900381951 + ], + [ + 0, + 49914, + 500000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1037707, + 1037707, + 1218682, + 1250000, + 1500000, + 2175117, + 13178985, + 13431470, + 400000000 + ], + [ + 0, + 1, + 4333, + 232362, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1036492, + 1250000, + 1500000, + 1667087, + 2132657, + 10000000, + 13191090, + 1500000000 + ], + [ + 0, + 1, + 2379, + 217606, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1003165, + 1049846, + 1049846, + 1066000, + 1102935, + 1337579, + 2088009, + 10000000, + 400000000 + ], + [ + 0, + 500, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1093000, + 1093000, + 1100001, + 1250000, + 1336764, + 1485528, + 2080384, + 6367942, + 16090900, + 100000000 + ], + [ + 0, + 20170, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1024983, + 1066000, + 1100000, + 1803699, + 2024983, + 5000000, + 6377107, + 25654392, + 372257667 + ], + [ + 0, + 1, + 20170, + 500000, + 535212, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1140621, + 2000000, + 5000000, + 10000000, + 13008915, + 79560978 + ], + [ + 0, + 1, + 1, + 1, + 100, + 100000, + 325257, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 2000000, + 3000000, + 13008915, + 14628091, + 16247568, + 25543749, + 43493653, + 1099817444 + ], + [ + 0, + 500, + 100000, + 200000, + 264044, + 504000, + 983174, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1006352, + 2000000, + 3000000, + 5654511, + 8686344, + 25000000, + 1500000000 + ], + [ + 0, + 50, + 71227, + 246392, + 999470, + 999470, + 999470, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1054379, + 1054379, + 1250000, + 2007625, + 3000000, + 8668086, + 10000000, + 14649612, + 1500000000 + ], + [ + 0, + 77, + 60575, + 215647, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1023333, + 1553588, + 2126935, + 3236171, + 6331491, + 11133794, + 15221676, + 20290343, + 30599762, + 535105096 + ], + [ + 0, + 500, + 49914, + 216423, + 985983, + 985983, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1017000, + 1100000, + 1250000, + 2034972, + 3923295, + 6318534, + 8863389, + 14644903, + 82050659 + ], + [ + 0, + 500, + 20170, + 100000, + 216867, + 900000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1204194, + 1204194, + 2000000, + 3135250, + 6346514, + 10311897, + 10500000, + 25548680, + 1500000000 + ], + [ + 0, + 50, + 20170, + 210466, + 963141, + 993599, + 993599, + 993599, + 1000000, + 1000000, + 1000000, + 1024000, + 1250000, + 1500000, + 1527184, + 3218094, + 3218094, + 3218094, + 5064339, + 10000000, + 188862280 + ], + [ + 0, + 50, + 85521, + 251314, + 532697, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1016819, + 1165832, + 1596564, + 2611564, + 10432161, + 12980910, + 44474564, + 1208146811 + ], + [ + 0, + 1, + 96947, + 218050, + 964447, + 964447, + 964447, + 1000000, + 1000000, + 1062063, + 1293868, + 1827540, + 2103139, + 3919506, + 4183393, + 5289883, + 8025451, + 10679523, + 15143636, + 43598636, + 3228343607 + ], + [ + 0, + 500, + 100000, + 219482, + 950786, + 986339, + 986339, + 986339, + 986339, + 986339, + 1000000, + 1000000, + 1000000, + 1005100, + 1100000, + 2042040, + 3886453, + 6313755, + 7406985, + 13460522, + 81736727 + ], + [ + 0, + 500, + 500, + 220227, + 735490, + 935070, + 959432, + 993922, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1049000, + 1089583, + 1210000, + 1250000, + 1510558, + 2500000, + 7496388, + 609367630 + ], + [ + 0, + 1, + 2284, + 20430, + 105249, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1065932, + 1100000, + 1148983, + 1350170, + 2000000, + 2823481, + 5059985, + 10000000, + 13942141, + 65611592 + ], + [ + 0, + 14216, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1073958, + 1250000, + 1426733, + 1500000, + 1543204, + 5773182, + 12976305, + 1500000000 + ], + [ + 0, + 1, + 2, + 21088, + 956963, + 1000000, + 1000000, + 1000000, + 1000000, + 1010281, + 1300001, + 1500000, + 2500000, + 3973905, + 5059661, + 7422401, + 10000000, + 18721873, + 25000050, + 26247900, + 1419415597 + ], + [ + 0, + 1, + 500, + 34322, + 657733, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1002534, + 1012507, + 1043451, + 1300001, + 1500000, + 2051070, + 3208635, + 3208635, + 6690940, + 25000000, + 180565491 + ], + [ + 0, + 150, + 85531, + 981165, + 987523, + 987523, + 987523, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1035684, + 1213299, + 1250000, + 1500000, + 2000000, + 3957999, + 10500000, + 13165220, + 146776731 + ], + [ + 0, + 200, + 122359, + 253842, + 262414, + 997835, + 1000000, + 1000000, + 1000000, + 1000000, + 1064642, + 1500000, + 3148738, + 7995730, + 10311897, + 10321838, + 13096860, + 25000000, + 44091700, + 255033732, + 5382062843 + ], + [ + 0, + 93552, + 981339, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1055186, + 1373614, + 1664714, + 3670432, + 5260852, + 7751315, + 10500000, + 20000000, + 1500000000 + ], + [ + 0, + 2288, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1051187, + 1100000, + 1250000, + 1373614, + 1619300, + 4132859, + 6402924, + 10500000, + 13096860, + 13165220, + 26041930, + 1500000000 + ], + [ + 0, + 20170, + 100000, + 800000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1033702, + 1046584, + 1100000, + 1146219, + 1500000, + 2166674, + 4380262, + 6686842, + 8183591, + 13152130, + 25000050, + 2000000000 + ], + [ + 0, + 77, + 39378, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1033702, + 1037035, + 1063730, + 1142000, + 1250000, + 1500000, + 2162855, + 3871632, + 6454322, + 7975208, + 10500000, + 26343550, + 500000000 + ], + [ + 0, + 77, + 500, + 44732, + 504000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1025375, + 1100000, + 1182179, + 1500000, + 1748190, + 2901092, + 5000000, + 8385951, + 12789519, + 26749215, + 1500000000 + ], + [ + 0, + 77, + 77863, + 222900, + 1000000, + 1000000, + 1058091, + 1100000, + 1100000, + 1288543, + 1455505, + 1525357, + 1918573, + 2665076, + 4839172, + 7017630, + 16000834, + 19815146, + 26343550, + 124751470, + 3271165196 + ], + [ + 0, + 38790, + 261278, + 989587, + 989587, + 989587, + 989587, + 989587, + 993761, + 1000000, + 1018074, + 1100000, + 1383301, + 1500000, + 1605138, + 2839247, + 5139320, + 10500000, + 25000050, + 52687100, + 510000000 + ], + [ + 0, + 100, + 100000, + 900000, + 1000000, + 1000000, + 1002534, + 1068756, + 1100000, + 1250000, + 1250000, + 1365092, + 1500000, + 1903533, + 3091317, + 3895704, + 6272291, + 9907856, + 10500000, + 25619052, + 510000000 + ], + [ + 0, + 100, + 902207, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1026052, + 1100000, + 1250000, + 1250000, + 1603628, + 2193452, + 4412982, + 6366754, + 12269219, + 22094664, + 49012218, + 1500000000 + ], + [ + 0, + 89727, + 981863, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1039765, + 1140222, + 1171000, + 1227172, + 1500000, + 1837939, + 3959442, + 9037948, + 10500000, + 10500000, + 19533125, + 101052482 + ], + [ + 0, + 1, + 100, + 221396, + 565351, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1171000, + 2000000, + 2273367, + 3996044, + 10500000, + 12922040, + 20000000, + 1500000000 + ], + [ + 0, + 1, + 100, + 100000, + 965862, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1175445, + 1500000, + 2000000, + 3217908, + 3217908, + 6332819, + 10999827, + 25000050, + 104331054 + ], + [ + 0, + 1, + 500, + 970854, + 990777, + 990777, + 990777, + 990777, + 990777, + 1000000, + 1000000, + 1057344, + 1379318, + 1484489, + 1777098, + 2226276, + 6315752, + 8195927, + 12992668, + 26742148, + 250592548 + ], + [ + 0, + 100, + 100000, + 979853, + 979853, + 979853, + 979853, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1135000, + 1250000, + 1500000, + 3653040, + 6799566, + 10000000, + 13046460, + 26092920, + 532087909 + ], + [ + 0, + 43607, + 935427, + 997718, + 997718, + 997718, + 1000000, + 1000000, + 1000000, + 1000000, + 1084444, + 1104445, + 1250000, + 1729476, + 2000000, + 3439757, + 7197841, + 11000000, + 20000000, + 54603527, + 288794730 + ], + [ + 0, + 1, + 69170, + 990182, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1016928, + 1016928, + 1100000, + 1250000, + 1739494, + 3437099, + 3883668, + 6415683, + 9940497, + 15208489, + 18904399, + 1500000000 + ], + [ + 0, + 1, + 67020, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029071, + 1100000, + 1250000, + 1496786, + 1841770, + 3730536, + 9990732, + 18904399, + 60000000 + ], + [ + 0, + 100, + 500, + 54427, + 217480, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1014586, + 1062018, + 1250000, + 1500000, + 3722253, + 8198846, + 13656290, + 18904399, + 600000000 + ], + [ + 0, + 500, + 67020, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1031581, + 1080057, + 1187832, + 1299790, + 1906123, + 8195205, + 10500000, + 20230390, + 176652647 + ], + [ + 0, + 1810, + 67020, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1065397, + 1124765, + 1124765, + 1124765, + 1360572, + 1500000, + 2794000, + 13048760, + 28566482, + 1500000000 + ], + [ + 0, + 33813, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1126278, + 1320026, + 1501971, + 2699483, + 6352219, + 10687035, + 13048760, + 25000050, + 1000000000 + ], + [ + 0, + 500, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1082826, + 1100000, + 1317095, + 1731663, + 3262794, + 3262794, + 5000000, + 10307580, + 14506190, + 25633324, + 118719720 + ], + [ + 0, + 500, + 55860, + 843039, + 1000000, + 1000000, + 1000000, + 1105250, + 1250000, + 1347875, + 1581185, + 2462879, + 3831417, + 10999958, + 11000000, + 11000000, + 11000000, + 11000000, + 15921126, + 20000000, + 1500000000 + ], + [ + 0, + 95061, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1025352, + 1100000, + 1100000, + 1256044, + 1524288, + 2000000, + 3610703, + 10532967, + 25535349, + 500000000 + ], + [ + 0, + 6861, + 484275, + 1000000, + 1000000, + 1000000, + 1021480, + 1077735, + 1100000, + 1100000, + 1300905, + 1763572, + 2090570, + 4621411, + 8500772, + 11301833, + 13200000, + 20671585, + 30843073, + 67983014, + 1724121071 + ], + [ + 0, + 100000, + 975952, + 975952, + 975952, + 975952, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1058419, + 1255027, + 1517171, + 2044200, + 3958893, + 8024795, + 11301833, + 27027097, + 1500000000 + ], + [ + 0, + 100, + 97916, + 107579, + 965168, + 996602, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1074046, + 1250000, + 1339671, + 1500000, + 1815428, + 2083997, + 4200125, + 12823275, + 20000000, + 61589649 + ], + [ + 0, + 1, + 1, + 100, + 67020, + 216216, + 405427, + 991205, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1481553, + 1725918, + 2320088, + 6306738, + 10000000, + 12938895, + 95675672 + ], + [ + 0, + 1, + 1, + 20140, + 100000, + 216204, + 531553, + 980184, + 1000000, + 1000000, + 1000000, + 1028203, + 1100000, + 1250000, + 1500000, + 1929814, + 6268239, + 10500000, + 17680406, + 25513120, + 175266328 + ], + [ + 0, + 28746, + 100000, + 216220, + 988224, + 988224, + 996675, + 1000000, + 1000000, + 1000000, + 1000000, + 1054652, + 1100000, + 1380681, + 1500000, + 1674194, + 2598707, + 9958428, + 15007524, + 27446641, + 95677081 + ], + [ + 0, + 1, + 100000, + 281302, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1025459, + 1100000, + 1500000, + 2000000, + 2537751, + 3294804, + 5189192, + 8031240, + 12195071, + 20000000, + 46326980, + 1407772266 + ], + [ + 0, + 1, + 7060, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1061858, + 1367426, + 1592518, + 2000000, + 3377127, + 7950000, + 8998035, + 10500000, + 14506190, + 25893190, + 42052445, + 1500000000 + ], + [ + 0, + 1, + 100, + 100000, + 521327, + 1000000, + 1000000, + 1100000, + 1296390, + 1367705, + 1536081, + 1575965, + 2056869, + 6207326, + 10000000, + 10500000, + 10687035, + 14300010, + 25000000, + 40525482, + 647854299 + ], + [ + 0, + 95980, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1367705, + 2000000, + 3924874, + 10688218, + 12958780, + 18170465, + 524851981 + ], + [ + 0, + 100000, + 721910, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1083000, + 1126132, + 1254311, + 1631554, + 6309189, + 10611191, + 13870552, + 20000000, + 1500000000 + ], + [ + 0, + 100, + 213760, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1200000, + 1500000, + 2000000, + 5755952, + 10000000, + 11755738, + 12873855, + 19169797, + 19169797, + 95724793 + ], + [ + 0, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041786, + 1100000, + 1200001, + 1509437, + 2000000, + 3000000, + 10000000, + 10689750, + 10880818, + 10880818, + 20000000, + 25793210, + 83583598 + ], + [ + 0, + 13279, + 77307, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041152, + 1041152, + 1100000, + 1100000, + 1100460, + 1500000, + 1628574, + 2623714, + 3000000, + 10000000, + 11095683, + 12873855, + 31000000 + ], + [ + 0, + 500, + 67020, + 100000, + 109066, + 210068, + 255179, + 460590, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100460, + 1509437, + 3654212, + 10687814, + 12776240, + 20000000, + 1500000000 + ], + [ + 0, + 16449, + 999427, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041786, + 1100000, + 1250000, + 1250000, + 1668415, + 2083423, + 6270667, + 12776240, + 25000050, + 200000000 + ], + [ + 0, + 100, + 100000, + 190847, + 1000000, + 1000000, + 1000000, + 1000000, + 1010876, + 1100000, + 1100000, + 1200000, + 1537410, + 2000000, + 3610170, + 10000000, + 12195071, + 12199982, + 20000000, + 25651240, + 100000000 + ], + [ + 0, + 1, + 50, + 500, + 76550, + 500528, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100270, + 1469744, + 2981463, + 10101816, + 18570167, + 29999053, + 299641175 + ], + [ + 0, + 65985, + 976473, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1005535, + 1005535, + 1005535, + 1005535, + 1005535, + 1100000, + 1130000, + 1568578, + 2302033, + 10000000, + 12063713, + 12825620, + 1500000000 + ], + [ + 0, + 500, + 500, + 11917, + 100000, + 948727, + 972254, + 1000000, + 1000000, + 1000000, + 1100000, + 1100234, + 1500000, + 2000000, + 2060150, + 4676548, + 8262591, + 10000000, + 12590610, + 25000050, + 7283637019 + ], + [ + 0, + 76550, + 987601, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1009812, + 1102325, + 1130000, + 1139069, + 1371935, + 2000000, + 4608689, + 10500000, + 14772231, + 1500000000 + ], + [ + 0, + 500, + 14364, + 100000, + 983327, + 984277, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1015898, + 1100000, + 1130000, + 1250000, + 1500000, + 2733947, + 16688179, + 400000000 + ], + [ + 0, + 46738, + 210034, + 521411, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1007520, + 1100000, + 1100000, + 1100000, + 1100000, + 1250000, + 1563170, + 2260000, + 10000000, + 12624615, + 515638615 + ], + [ + 0, + 73710, + 139231, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1102091, + 1663810, + 3111813, + 10000000, + 10692383, + 12624615, + 58527439 + ], + [ + 0, + 13850, + 208800, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046923, + 1100000, + 1143011, + 1618759, + 3626518, + 8021166, + 10500000, + 12624615, + 25000050, + 291690342 + ], + [ + 0, + 10000, + 89175, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1036995, + 1086049, + 1100000, + 1149780, + 1149780, + 1149780, + 2128707, + 12624615, + 120585508 + ], + [ + 0, + 35381, + 76550, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1086049, + 1250000, + 1539492, + 2000000, + 9697311, + 10518569, + 20000000, + 1500000000 + ], + [ + 0, + 3745, + 35381, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1030000, + 1086049, + 1204958, + 1530116, + 2050178, + 5069557, + 10030000, + 12523525, + 195866218 + ], + [ + 0, + 11090, + 205124, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1006164, + 1100000, + 1544680, + 2000000, + 3659283, + 5025824, + 10000000, + 12446995, + 25744800, + 2500000000 + ], + [ + 0, + 23818, + 515246, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1280502, + 1500000, + 2000000, + 4728348, + 8032931, + 10000000, + 14300010, + 45000000 + ], + [ + 0, + 59605, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1015495, + 1015495, + 1015495, + 1015495, + 1015495, + 1054000, + 1639880, + 4675710, + 11000000, + 11000000, + 11000000, + 14030420, + 25000050 + ], + [ + 0, + 11501, + 408753, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1002616, + 1046247, + 1100000, + 1577817, + 2586381, + 4625752, + 4625752, + 4625752, + 4960538, + 12781293, + 1500000000 + ], + [ + 0, + 50, + 12693, + 72920, + 110689, + 1000000, + 1000000, + 1000000, + 1042023, + 1100000, + 1337140, + 2000000, + 2500000, + 4090151, + 4619030, + 6748168, + 7474712, + 8295640, + 12270450, + 20000000, + 504691500 + ], + [ + 0, + 1, + 1, + 10789, + 65980, + 179467, + 406200, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1008744, + 1066040, + 1673482, + 3805251, + 8039900, + 17303042, + 24802690, + 2001002563 + ], + [ + 0, + 11796, + 65980, + 152560, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1025000, + 1028565, + 1115564, + 1500000, + 1618870, + 3559565, + 5069557, + 5069557, + 10500000, + 245966565 + ], + [ + 0, + 4380, + 4380, + 4380, + 39956, + 822137, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1025000, + 1100000, + 1577817, + 3817695, + 10567722, + 2001002563 + ], + [ + 0, + 1, + 1, + 1, + 77, + 13280, + 200179, + 777840, + 1000000, + 1003000, + 1100000, + 1250000, + 1701443, + 2036544, + 4849018, + 8716872, + 9697311, + 20000000, + 26923751, + 71047450, + 1003000000 + ], + [ + 0, + 186, + 59605, + 65980, + 110603, + 994542, + 994542, + 994542, + 994542, + 994542, + 994542, + 1000000, + 1000000, + 1000000, + 1002500, + 1100000, + 1328812, + 4202969, + 12467116, + 100000000, + 1500000000 + ], + [ + 0, + 1, + 1, + 11770, + 174585, + 1000000, + 1000000, + 1000000, + 1000000, + 1012451, + 1250000, + 1263398, + 1449562, + 1647546, + 3235480, + 8078545, + 10667042, + 17455159, + 25605647, + 55943503, + 400000000 + ], + [ + 0, + 11294, + 296567, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1003000, + 1003000, + 1004900, + 1500000, + 1567500, + 1990695, + 3000000, + 8862281, + 10000000, + 10667042, + 12100305, + 17929941, + 400000000 + ], + [ + 0, + 1, + 30000, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1010102, + 1100000, + 1418023, + 1760263, + 4849018, + 9698085, + 10500000, + 12100305, + 75249109, + 1420273294 + ], + [ + 0, + 1, + 1, + 80, + 16072, + 1000000, + 1000000, + 1000000, + 1000000, + 1004900, + 1100000, + 1100000, + 1771031, + 3041333, + 3041333, + 10403616, + 11986860, + 12100305, + 24200610, + 31875627, + 3698017568 + ], + [ + 0, + 8, + 13589, + 110646, + 966064, + 966064, + 966064, + 966064, + 966064, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1516032, + 2000000, + 9125202, + 23183499, + 1000000000 + ], + [ + 0, + 13988, + 234226, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000024, + 1043925, + 1552829, + 3000000, + 3022290, + 3022290, + 5964304, + 10000010, + 11972925, + 23183499, + 400000000 + ], + [ + 0, + 11289, + 976053, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1025926, + 1031745, + 1031745, + 1037258, + 1500000, + 1654231, + 3000000, + 7249466, + 10500000, + 1000000000 + ], + [ + 0, + 80, + 4380, + 4380, + 26024, + 982200, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000605, + 1053399, + 1250000, + 1980206, + 2012402, + 3417844, + 10000000, + 1500000000 + ], + [ + 0, + 13151, + 181785, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1031398, + 1100001, + 2000000, + 5077422, + 11624117, + 12100305, + 1005000000 + ], + [ + 0, + 1, + 1, + 3756, + 59605, + 100000, + 994609, + 1000000, + 1000000, + 1000000, + 1000000, + 1033926, + 1300001, + 1622019, + 4455963, + 5098768, + 10000000, + 11806394, + 24052650, + 27060533, + 1500000000 + ], + [ + 0, + 11195, + 100000, + 179398, + 229822, + 998825, + 998825, + 998825, + 998825, + 998825, + 1000000, + 1000000, + 1000047, + 1098587, + 1248622, + 1492961, + 2000000, + 5983980, + 11550000, + 20013193, + 1003000000 + ], + [ + 0, + 50, + 12398, + 45560, + 265308, + 998825, + 998825, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000047, + 1010209, + 1100000, + 1432348, + 2000000, + 10500000, + 12026325, + 246014272 + ], + [ + 0, + 80, + 80, + 13167, + 198382, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1063661, + 1100001, + 1384547, + 2015216, + 6532343, + 10500000, + 10560303, + 11971635, + 40404913, + 202087646 + ], + [ + 0, + 231, + 83191, + 800000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000881, + 1049588, + 1388175, + 1500000, + 1500000, + 6035036, + 9016230, + 11262127, + 11902970, + 12026325, + 12300000, + 29423050, + 1500000000 + ], + [ + 0, + 80, + 231, + 11527, + 245649, + 1000000, + 1000000, + 1000000, + 1000000, + 1027075, + 1045043, + 1045043, + 1045043, + 1100000, + 1100000, + 1484382, + 1511049, + 3756222, + 11900000, + 23356354, + 5000000000 + ], + [ + 0, + 50, + 39183, + 255478, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1027075, + 1064119, + 1100000, + 1176925, + 1511049, + 3000000, + 4782872, + 10000000, + 10500000, + 11902970, + 25000000, + 164833922 + ], + [ + 0, + 1, + 1, + 80, + 100, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1043223, + 1187270, + 1525002, + 1537587, + 8000709, + 9625106, + 11991335, + 23805940, + 1500000000 + ], + [ + 0, + 252, + 500, + 245649, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1009460, + 1100000, + 1501118, + 2000000, + 5940998, + 10000000, + 20000000, + 383165151 + ], + [ + 0, + 39000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1038604, + 1100000, + 1100000, + 1200000, + 1489732, + 1995048, + 3257197, + 5097801, + 5921134, + 7828499, + 31000000 + ], + [ + 0, + 252, + 888, + 100000, + 462000, + 1000000, + 1000000, + 1000000, + 1000000, + 1039741, + 1100000, + 1196532, + 1250000, + 1492846, + 1507001, + 2500000, + 4701978, + 11000000, + 12299260, + 13200000, + 44939318 + ], + [ + 0, + 1, + 1, + 29, + 42189, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1027075, + 1100000, + 1250000, + 2067837, + 6628114, + 10743441, + 11754945, + 25392350, + 1500000000 + ], + [ + 0, + 1, + 1, + 10000, + 195123, + 214605, + 878972, + 1000000, + 1000000, + 1038604, + 1086882, + 1175999, + 1548974, + 2054150, + 3388577, + 7738455, + 8132642, + 10500000, + 25000050, + 164210441, + 899887542 + ], + [ + 0, + 77, + 500, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1015133, + 1093124, + 1250000, + 1500000, + 2204999, + 5985751, + 11153199, + 1500000000 + ], + [ + 0, + 43, + 100, + 490244, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1004000, + 1038604, + 1100000, + 1265000, + 1500000, + 4266480, + 8918636, + 32629124 + ], + [ + 0, + 18662, + 900000, + 900000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1038604, + 1100000, + 1250000, + 1500000, + 1979427, + 2930422, + 2930422, + 2930422, + 5948646, + 500000000 + ], + [ + 0, + 1, + 80, + 500, + 42680, + 186720, + 1000000, + 1000000, + 1003000, + 1038604, + 1100000, + 1218393, + 1500000, + 5942052, + 7755551, + 8046000, + 18175870, + 36993174, + 63917852, + 129149475, + 7860068392 + ], + [ + 0, + 1, + 100, + 38821, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1016980, + 1018945, + 1040740, + 1250000, + 2000000, + 5902328, + 8046000, + 11661935, + 96131632 + ], + [ + 0, + 1, + 29, + 29, + 50, + 39000, + 112253, + 1000000, + 1000000, + 1020664, + 1038000, + 1045040, + 1100000, + 1500001, + 3000000, + 5940998, + 7241400, + 11938366, + 14601463, + 25000050, + 1506015000 + ], + [ + 0, + 75, + 100, + 90288, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1027825, + 1045040, + 1152609, + 1500000, + 3458567, + 5983618, + 7290000, + 11661935, + 14702650, + 31976003, + 1506015000 + ], + [ + 0, + 50, + 827, + 236544, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1038000, + 1066189, + 1189837, + 1500000, + 5660734, + 10500000, + 400000000 + ], + [ + 0, + 1, + 1, + 77, + 15728, + 191036, + 1000000, + 1000000, + 1000000, + 1012487, + 1015225, + 1015225, + 1015225, + 1093124, + 1500000, + 3877594, + 5949907, + 10000000, + 19052222, + 42415817, + 281231032 + ], + [ + 0, + 10, + 29, + 150000, + 967462, + 967462, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1380974, + 1979333, + 2945544, + 2945544, + 3563675, + 8046000, + 16912582, + 111282598 + ], + [ + 0, + 620, + 13741, + 892361, + 987965, + 987965, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029011, + 1126628, + 1500000, + 3963088, + 9197000, + 25000050, + 1500000000 + ], + [ + 0, + 438, + 97533, + 485097, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1493730, + 2935423, + 5797101, + 11455300, + 23643240, + 1500000000 + ], + [ + 0, + 1, + 2919, + 90095, + 200000, + 989259, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1033463, + 1100000, + 1250000, + 1341021, + 1550562, + 2930422, + 5828196, + 10972599, + 500000000 + ], + [ + 0, + 10, + 77, + 73423, + 991085, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1024529, + 1055000, + 1500000, + 5883004, + 11589020, + 30000000 + ], + [ + 0, + 14704, + 193320, + 752364, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1123045, + 1500000, + 1869712, + 2000000, + 2948904, + 5999936, + 8079768, + 10500000, + 11589020, + 482582800 + ], + [ + 0, + 30000, + 249304, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1023513, + 1038000, + 1250000, + 1500000, + 1500000, + 1577922, + 4395633, + 10000000, + 1500000000 + ], + [ + 0, + 620, + 100000, + 780963, + 997237, + 997237, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1006150, + 1030129, + 1030129, + 1250000, + 1967284, + 10020750, + 86203739 + ], + [ + 0, + 41416, + 465580, + 485023, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1018832, + 1086882, + 1086882, + 1106692, + 1250000, + 1250000, + 1974622, + 5904451, + 10500000, + 97308779 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1126628, + 5865869, + 5904451, + 42745431 + ], + [ + 0, + 1000000, + 1000000, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1100000, + 1250000, + 5902328, + 5904451, + 31000000 + ], + [ + 0, + 100000, + 1000000, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1086882, + 1086882, + 1086882, + 1429168, + 5902328, + 5902328, + 292626758 + ], + [ + 0, + 846833, + 846833, + 846833, + 1000146, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1067234, + 1086882, + 1086882, + 1086882, + 1086882, + 5902328, + 8046000, + 82918846 + ], + [ + 0, + 1000000, + 1067234, + 1067234, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1250000, + 1500000, + 5831182, + 5904451, + 55921271 + ], + [ + 0, + 100000, + 1000000, + 1067234, + 1086881, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1735404, + 5831182, + 5902328, + 1500000000 + ], + [ + 0, + 788247, + 788247, + 788247, + 1000000, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1250000, + 3975348, + 6215861, + 44959419 + ], + [ + 0, + 718085, + 718085, + 1002041, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1250000, + 3975348, + 5831182, + 53153917 + ], + [ + 0, + 30000, + 673991, + 673991, + 673991, + 1000000, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1599747, + 3100000, + 55245539 + ], + [ + 0, + 1030270, + 1067234, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1250000, + 2446181, + 7338544, + 277237450 + ], + [ + 0, + 507020, + 855832, + 1000000, + 1067234, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1086882, + 1100000, + 2446181, + 3354742, + 6363242, + 6363242, + 11536980, + 400000000 + ], + [ + 0, + 29350, + 587945, + 624313, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1018035, + 1086000, + 1086882, + 1086882, + 1086882, + 1100000, + 1250000, + 1580089, + 2840259, + 7793073, + 12100010, + 176579890 + ], + [ + 0, + 52, + 502966, + 689343, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1047057, + 1086882, + 1250000, + 1324474, + 1587772, + 3000000, + 4070916, + 9485088, + 14902237, + 56937135, + 6564152785 + ], + [ + 0, + 91251, + 529498, + 529498, + 840155, + 840155, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1067000, + 1086882, + 1168085, + 1250000, + 1632659, + 2216391, + 4634221, + 10500000, + 15421873, + 456460344 + ], + [ + 0, + 626, + 36630, + 540534, + 989167, + 1000000, + 1033690, + 1086000, + 1086882, + 1195571, + 1250000, + 1486390, + 1643964, + 3488684, + 5298937, + 10500000, + 13216045, + 31396835, + 1900585180, + 1900585180, + 1900585180 + ], + [ + 0, + 708, + 200000, + 803050, + 803050, + 903050, + 903050, + 903050, + 959859, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1086882, + 1100000, + 1500000, + 2354154, + 7909040, + 600000000 + ], + [ + 0, + 159, + 969234, + 969234, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1086882, + 1163575, + 1452725, + 1555739, + 2208521, + 3126548, + 3126548, + 13216045, + 384815474 + ], + [ + 0, + 12793, + 460581, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046017, + 1086000, + 1086882, + 1231496, + 1500000, + 1572084, + 2317924, + 6693494, + 13200000, + 1500000000 + ], + [ + 0, + 13887, + 956203, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046290, + 1100000, + 1250000, + 2272412, + 4249643, + 1000000000 + ], + [ + 0, + 13067, + 344665, + 951191, + 951191, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1030000, + 1086000, + 1200000, + 1447172, + 1500000, + 1627025, + 2340000, + 3782170, + 6806096, + 400000000 + ], + [ + 0, + 423, + 46362, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1067000, + 1122434, + 1387405, + 2167877, + 2842764, + 7433940, + 10500000, + 400000000 + ], + [ + 0, + 117, + 706, + 100000, + 997733, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1072420, + 1287775, + 1500000, + 2173764, + 2845433, + 6341572, + 10500000, + 1500000000 + ], + [ + 0, + 1, + 10, + 14111, + 406382, + 979994, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1278310, + 2000000, + 2866071, + 8887420, + 15876438, + 153779759 + ], + [ + 0, + 13292, + 540307, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1058711, + 1210000, + 1500000, + 2000000, + 3966852, + 6992025, + 19951504, + 400000000 + ], + [ + 0, + 15467, + 269589, + 992553, + 992553, + 992553, + 1000000, + 1000000, + 1000000, + 1000000, + 1025150, + 1090434, + 1447583, + 1596882, + 2324410, + 2840517, + 6313668, + 6973184, + 11000000, + 25000050, + 67848798 + ], + [ + 0, + 460, + 14268, + 871061, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1045421, + 1321594, + 2000000, + 2344101, + 5859973, + 6998226, + 10093259, + 27352844 + ], + [ + 0, + 370, + 59731, + 121872, + 997661, + 997661, + 997661, + 997661, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1008295, + 1100001, + 1250000, + 1558994, + 2344754, + 4010693, + 10000000, + 157940912 + ], + [ + 0, + 1, + 13081, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1008295, + 1020377, + 1020377, + 1020377, + 1020377, + 1020377, + 1100000, + 1325225, + 2000000, + 3873659, + 7018603, + 25000000, + 2998535992 + ], + [ + 0, + 50, + 98716, + 597793, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1132703, + 1250000, + 1633803, + 2826508, + 5495886, + 7016046, + 1500000000 + ], + [ + 0, + 34733, + 998866, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1008295, + 1044093, + 1250000, + 1646610, + 2008006, + 2340762, + 2361233, + 5609337, + 10500000, + 2688048494 + ], + [ + 0, + 10, + 61054, + 567000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1009973, + 1017022, + 1250000, + 2000000, + 2256836, + 3914110, + 5933390, + 14975582, + 283094891 + ], + [ + 0, + 1, + 50, + 11556, + 247113, + 985203, + 1000000, + 1000000, + 1086000, + 1250000, + 1395353, + 1576643, + 2229971, + 4035225, + 4932619, + 7241400, + 10500000, + 14812325, + 26881983, + 67633242, + 4815210597 + ], + [ + 0, + 14114, + 247232, + 997633, + 997633, + 997633, + 997633, + 997633, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1024309, + 1250000, + 2340000, + 4074708, + 6531187, + 12100010, + 26505105, + 600000000 + ], + [ + 0, + 1, + 12283, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1067000, + 1250000, + 1518984, + 2000000, + 2209229, + 3988548, + 5795792, + 11688423, + 14833475, + 28317652, + 43816222, + 6650982443 + ], + [ + 0, + 765, + 249580, + 953033, + 992177, + 992177, + 992177, + 1000000, + 1000000, + 1000000, + 1000000, + 1038053, + 1112627, + 1112627, + 1500000, + 2188932, + 3957382, + 7566514, + 13200010, + 20120750, + 606235981 + ], + [ + 0, + 238, + 100000, + 830670, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1167246, + 1250000, + 1500000, + 1651766, + 2129724, + 3936892, + 5000000, + 7241400, + 11200572, + 17748266, + 25000050, + 139306159 + ], + [ + 0, + 10, + 12825, + 567000, + 963674, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1055000, + 1167246, + 1500000, + 1562834, + 2098469, + 2500000, + 3638368, + 4104458, + 4786191, + 9909516, + 1500000000 + ], + [ + 0, + 10, + 13645, + 944551, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046059, + 1086000, + 1431024, + 2000000, + 2267067, + 5054421, + 7886335, + 15314560, + 100000000 + ], + [ + 0, + 10, + 303, + 100000, + 248905, + 655461, + 984278, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1086882, + 1100000, + 1250000, + 1645793, + 4375076, + 9893794, + 14300010, + 1000000000 + ], + [ + 0, + 446, + 32490, + 246127, + 995020, + 997345, + 997345, + 997345, + 997345, + 997345, + 1000000, + 1000000, + 1086000, + 1100000, + 1115654, + 1504846, + 3000000, + 3994158, + 5674105, + 14974800, + 29949600 + ], + [ + 0, + 736, + 30000, + 75270, + 311558, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1022523, + 1086000, + 1250000, + 1500000, + 2000000, + 3922301, + 5516611, + 1500000000 + ], + [ + 0, + 1, + 50, + 32490, + 841519, + 985190, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1043294, + 1100001, + 2000000, + 2500000, + 4059063, + 6531187, + 24771504, + 34641775, + 1000000000 + ], + [ + 0, + 1, + 10, + 25960, + 250880, + 953230, + 988816, + 988816, + 988816, + 988816, + 988816, + 1000000, + 1000000, + 1026054, + 1100000, + 1250000, + 2863278, + 7036769, + 14974800, + 30298230, + 1149632206 + ], + [ + 0, + 1, + 50, + 25960, + 200000, + 937343, + 958114, + 1000000, + 1000000, + 1000000, + 1055000, + 1460160, + 1556599, + 3696483, + 3696483, + 3696483, + 4240869, + 5644794, + 9922533, + 15979624, + 84606732 + ], + [ + 0, + 1, + 10000, + 100000, + 948395, + 958114, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1041157, + 1100000, + 1283122, + 2222222, + 2871840, + 6056460, + 10000000, + 14768059, + 27727742, + 4998351166 + ], + [ + 0, + 50, + 13302, + 80080, + 902596, + 970854, + 1000000, + 1000000, + 1090200, + 1221453, + 1504846, + 2176672, + 2507484, + 3908050, + 5000000, + 6007692, + 6803000, + 10110796, + 15081545, + 15207200, + 120388395 + ], + [ + 0, + 14050, + 527979, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1022495, + 1132750, + 1574137, + 2500000, + 4343351, + 6082880, + 10500000, + 400000000 + ], + [ + 0, + 13330, + 605801, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1058447, + 1098221, + 1100000, + 1250000, + 1500000, + 2235774, + 4114458, + 4514903, + 12163800, + 94941153 + ], + [ + 0, + 58, + 11054, + 105249, + 961999, + 974273, + 974273, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1067000, + 1100000, + 1504846, + 2246630, + 4514903, + 5677966, + 10000000, + 15174045, + 1500000000 + ], + [ + 0, + 1, + 10, + 736, + 100000, + 253306, + 992747, + 1000000, + 1000000, + 1000000, + 1000000, + 1012751, + 1100000, + 1586224, + 3416285, + 5000000, + 7114964, + 10500000, + 15139715, + 25645530, + 124712678 + ], + [ + 0, + 1, + 717, + 200000, + 608457, + 972521, + 985272, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1586907, + 2268755, + 4137646, + 6946363, + 11000000, + 25000000, + 107068555 + ], + [ + 0, + 460, + 872057, + 978659, + 978659, + 978659, + 978659, + 978659, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1500000, + 1717575, + 3971604, + 7875587, + 100000000 + ], + [ + 0, + 937, + 100000, + 934766, + 983586, + 983586, + 983586, + 983586, + 983586, + 1000000, + 1000000, + 1000000, + 1003100, + 1250000, + 2206570, + 2500000, + 3894692, + 7076614, + 10000000, + 15198300, + 194868666 + ], + [ + 0, + 50, + 104194, + 977333, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1067000, + 1409747, + 1549149, + 2281327, + 3927386, + 9614372, + 100000000 + ], + [ + 0, + 10, + 50, + 13435, + 969023, + 985437, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 2000000, + 2500000, + 5226624, + 7036769, + 11756389, + 27716611, + 2000000000 + ], + [ + 0, + 50, + 11049, + 258180, + 902520, + 982317, + 982317, + 982317, + 982317, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 2500000, + 4692020, + 10555153, + 16910887, + 1500000000 + ], + [ + 0, + 597, + 100000, + 966132, + 998378, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1062000, + 1250000, + 2209874, + 5000000, + 7054475, + 7862142, + 13200000, + 25000050, + 100000000 + ], + [ + 0, + 10, + 12910, + 100000, + 991942, + 993564, + 993564, + 993564, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1061000, + 1596633, + 2288256, + 7155522, + 10000000, + 10500000, + 20000000, + 1500000000 + ], + [ + 0, + 50, + 31657, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1006799, + 1100000, + 2248787, + 4189891, + 7173623, + 7740445, + 10500000, + 15394000, + 191465991 + ], + [ + 0, + 55, + 994, + 13330, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1020533, + 1100001, + 1500000, + 2251215, + 3879309, + 7182312, + 10500000, + 11000000, + 2997214646 + ], + [ + 0, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1049967, + 1250000, + 1409747, + 2318797, + 3754222, + 3754222, + 6971737, + 7053277, + 15437690, + 258060003 + ], + [ + 0, + 10718, + 258719, + 958090, + 958090, + 983963, + 1000000, + 1000000, + 1000000, + 1063249, + 1250000, + 1505362, + 1505362, + 1998820, + 2281948, + 3360081, + 6946363, + 6987484, + 15470340, + 27320208, + 2000988146 + ], + [ + 0, + 882, + 257251, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1016185, + 1063249, + 1250000, + 1250000, + 2000000, + 2500000, + 5160964, + 7117037, + 10016185, + 17169673, + 131352459 + ], + [ + 0, + 668, + 85760, + 982661, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1004270, + 1100000, + 1128844, + 2000000, + 2252455, + 2882614, + 6157088, + 8514489, + 15376409, + 34083277, + 1500000000 + ], + [ + 0, + 50, + 100000, + 978083, + 978083, + 978083, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1800000, + 2500000, + 5000000, + 10000000, + 15434335, + 31036900, + 1500000000 + ], + [ + 0, + 32840, + 200000, + 908345, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1250000, + 1500000, + 2127153, + 4010676, + 7741629, + 7790682, + 7790682, + 7790682, + 8514489, + 21882041, + 792494569 + ], + [ + 0, + 20969, + 262926, + 897898, + 989553, + 989553, + 989553, + 989553, + 989553, + 1000000, + 1000000, + 1000000, + 1037471, + 1500000, + 2500000, + 2738364, + 5000000, + 10000000, + 15482890, + 25000000, + 400000000 + ], + [ + 0, + 975, + 960133, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1037471, + 1246841, + 1500000, + 2284555, + 4178760, + 7740900, + 14796061, + 25531862, + 620252209 + ], + [ + 0, + 10000, + 200000, + 973762, + 973762, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1149312, + 1500000, + 2000000, + 2500000, + 2821314, + 7201370, + 10172439, + 20976131, + 1506015000 + ], + [ + 0, + 50, + 72520, + 266426, + 919552, + 985657, + 985657, + 1000000, + 1000000, + 1000000, + 1028598, + 1028598, + 1063249, + 1250000, + 1840000, + 3121347, + 4362472, + 4371364, + 10500000, + 20333805, + 1500000000 + ], + [ + 0, + 605, + 100000, + 968870, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1121482, + 1500000, + 2250245, + 2500000, + 5000000, + 7241400, + 10101165, + 12222634, + 50000000 + ], + [ + 0, + 650, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1001739, + 1063249, + 1250000, + 1306599, + 2000000, + 2646020, + 2880709, + 3909880, + 7597079, + 10500000, + 1500000000 + ], + [ + 0, + 1, + 1, + 11639, + 188074, + 987731, + 1000000, + 1000000, + 1000000, + 1000000, + 1018861, + 1161844, + 1500000, + 2287624, + 2606073, + 4144074, + 5000000, + 14675045, + 16031445, + 25000050, + 103475045 + ], + [ + 0, + 1, + 280, + 231288, + 992329, + 992665, + 1000000, + 1000000, + 1000000, + 1000000, + 1006159, + 1161844, + 1625194, + 2500000, + 4471575, + 4471575, + 7251987, + 10000000, + 17924185, + 31718680, + 649348507 + ], + [ + 0, + 10, + 280, + 47077, + 200000, + 994776, + 1000000, + 1000000, + 1000000, + 1000000, + 1042670, + 1124302, + 1596633, + 2305395, + 2500000, + 5263031, + 9199117, + 10000000, + 14393785, + 26029088, + 1500000000 + ], + [ + 0, + 1, + 32840, + 978662, + 998824, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000260, + 1100000, + 1216808, + 1583813, + 2500000, + 4824339, + 10500000, + 16031445, + 25533608, + 294201820 + ], + [ + 0, + 483, + 100000, + 942584, + 965093, + 965093, + 965093, + 965093, + 965093, + 1000000, + 1000000, + 1037444, + 1100000, + 1500000, + 2000000, + 3858239, + 7312893, + 10000000, + 16986186, + 21739136, + 1500000000 + ], + [ + 0, + 10, + 10, + 100000, + 969304, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1037444, + 1418661, + 1674382, + 2352606, + 6389946, + 10000000, + 17669404, + 44621504, + 349913685 + ], + [ + 0, + 483, + 100000, + 873689, + 925718, + 925718, + 925718, + 1000000, + 1000000, + 1000000, + 1000000, + 1040879, + 1250000, + 1511412, + 2500000, + 4440417, + 6050808, + 11000000, + 23630170, + 29312205, + 1500000000 + ], + [ + 0, + 12378, + 871635, + 996509, + 997946, + 997946, + 997946, + 997946, + 997946, + 997946, + 1000000, + 1000000, + 1000000, + 1000000, + 1071161, + 1250000, + 2288501, + 4033104, + 8586203, + 11551286, + 72954337 + ], + [ + 0, + 1, + 283, + 100000, + 982495, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 2000000, + 2883683, + 8106812, + 10086277, + 16358330, + 20000000, + 639807517 + ], + [ + 0, + 1, + 86596, + 995411, + 995411, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1037669, + 1500000, + 1500000, + 2270926, + 4092372, + 7796221, + 16135485, + 1500000000 + ], + [ + 0, + 1, + 14210, + 274385, + 987156, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1712000, + 4541222, + 6543332, + 10000000, + 20000000, + 31000000, + 1500000000 + ], + [ + 0, + 795, + 66240, + 66240, + 277297, + 965608, + 965608, + 965608, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1016000, + 1321917, + 2192163, + 7241400, + 10000000, + 18000000, + 34158078 + ], + [ + 0, + 10, + 12736, + 100000, + 948277, + 984825, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1040879, + 1556599, + 1647723, + 2000000, + 3000000, + 10000000, + 10500000, + 11000000, + 18000000, + 130000000 + ], + [ + 0, + 1, + 77, + 88687, + 100000, + 951471, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1040879, + 1100000, + 1500000, + 2048470, + 3963531, + 10000000, + 11594762, + 20813857, + 71088836, + 390567595 + ], + [ + 0, + 707, + 76540, + 100000, + 967198, + 1000000, + 1000000, + 1000000, + 1000000, + 1013912, + 1094021, + 1250000, + 1500000, + 1596633, + 2500000, + 2691841, + 7544994, + 9743674, + 10053246, + 16424615, + 1500000000 + ], + [ + 0, + 46476, + 758601, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1024309, + 1045627, + 1581812, + 1933369, + 2328688, + 4214131, + 4630124, + 9743674, + 10000000, + 283754837 + ], + [ + 0, + 10, + 10, + 34120, + 272430, + 1000000, + 1000000, + 1000000, + 1000000, + 1032842, + 1032842, + 1032842, + 1032842, + 1045627, + 1500000, + 1861279, + 2500000, + 5800142, + 16463145, + 16463145, + 2650551695 + ], + [ + 0, + 13740, + 355702, + 838127, + 838127, + 984241, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1178275, + 1665197, + 2500000, + 4784945, + 10000000, + 12854011, + 16570200, + 19414136, + 19414136, + 33132640 + ], + [ + 0, + 1, + 30000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1023750, + 1178275, + 1591323, + 2000000, + 2630606, + 4183565, + 8089493, + 14300000, + 20000000, + 45000000, + 1500000000 + ], + [ + 0, + 1, + 2, + 12040, + 100000, + 630000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1072750, + 1250000, + 1624660, + 2342592, + 2921272, + 5464064, + 10500000, + 18000000, + 31548792, + 640968965 + ], + [ + 0, + 1, + 1, + 12417, + 290871, + 990499, + 990499, + 990499, + 990499, + 1000000, + 1000000, + 1017128, + 1283989, + 1786561, + 2710922, + 4550849, + 10000000, + 11000000, + 16995160, + 27819474, + 1500000000 + ], + [ + 0, + 10, + 10, + 41630, + 100000, + 987668, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1016000, + 1250000, + 1594336, + 1729507, + 2882157, + 3696426, + 10000000, + 12439225, + 94513157 + ], + [ + 0, + 1, + 77, + 95916, + 953609, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1061978, + 1061978, + 1100000, + 1481605, + 1610387, + 2500000, + 6537966, + 10000000, + 12983713, + 2500000000 + ], + [ + 0, + 34120, + 274489, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1032000, + 1391024, + 1724194, + 2500000, + 5993950, + 8553847, + 10627795, + 17610238, + 118310238 + ], + [ + 0, + 1, + 13008, + 648976, + 1000000, + 1000000, + 1032000, + 1500000, + 1500000, + 1644163, + 2000000, + 2364567, + 2570625, + 2570625, + 4237194, + 7588680, + 9976019, + 10000000, + 11937280, + 25915250, + 306849851 + ], + [ + 0, + 1, + 1, + 10, + 856, + 100000, + 1000000, + 1000000, + 1000000, + 1032000, + 1353323, + 2000000, + 2388113, + 3778155, + 5416555, + 7794820, + 10000000, + 16289325, + 25000000, + 39141887, + 655667327 + ], + [ + 0, + 1, + 856, + 145379, + 980738, + 1000000, + 1000000, + 1000000, + 1000000, + 1002500, + 1100001, + 1400000, + 2000000, + 2500000, + 3000000, + 7287017, + 10000000, + 13200010, + 21230588, + 32681610, + 1500000000 + ], + [ + 0, + 12998, + 109487, + 969829, + 1000000, + 1000000, + 1000000, + 1250000, + 1353779, + 1634742, + 2500000, + 2595920, + 4132926, + 4132926, + 4132926, + 4479274, + 6145223, + 8671417, + 13287059, + 16464135, + 33816618 + ], + [ + 0, + 11361, + 100000, + 982124, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1075000, + 1491392, + 1685304, + 2404427, + 2930769, + 10000000, + 10966058, + 18900000, + 918944742 + ], + [ + 0, + 333, + 946, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1048285, + 1048285, + 1048285, + 1048285, + 1250000, + 1640443, + 4189474, + 7585763, + 10500000, + 16387260, + 25000050, + 836800400 + ], + [ + 0, + 1, + 11401, + 101264, + 972816, + 972816, + 972816, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1021101, + 1118533, + 1297276, + 1531304, + 2500000, + 3000000, + 10000000, + 25000050, + 645075723 + ], + [ + 0, + 1, + 85, + 10968, + 100000, + 961004, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1009289, + 1178000, + 1500000, + 1772153, + 6192254, + 10000000, + 11550000, + 16464135, + 23665039, + 1500000000 + ], + [ + 0, + 962, + 100000, + 741000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1016247, + 1201691, + 1500000, + 1650000, + 2500000, + 7544436, + 10000000, + 10424562, + 10500000, + 16612430, + 53144164 + ], + [ + 0, + 558, + 983526, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 1694766, + 2500000, + 3000000, + 5335764, + 7241400, + 11550000, + 16467575, + 25000050, + 1003000000 + ], + [ + 0, + 85, + 71836, + 814563, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1018387, + 1106496, + 1509600, + 1861279, + 2417850, + 3992030, + 3992030, + 4612622, + 9946000, + 10510693, + 20000000, + 400000000 + ], + [ + 0, + 558, + 13411, + 100000, + 1000000, + 1000000, + 1010160, + 1053104, + 1118533, + 1306599, + 1564256, + 1861279, + 1948555, + 2295931, + 2500000, + 6100320, + 10000000, + 10675289, + 15934275, + 16535825, + 400000000 + ], + [ + 0, + 1, + 558, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1016660, + 1076263, + 1200000, + 1931994, + 2346452, + 3376825, + 5335764, + 8169606, + 10556794, + 20071828, + 25553597, + 46786110, + 2364798247 + ], + [ + 0, + 9, + 699, + 30000, + 990440, + 990440, + 990440, + 1000000, + 1000000, + 1000000, + 1078515, + 1172386, + 1509600, + 1931994, + 2500000, + 4590597, + 7524886, + 11094038, + 11094038, + 25406205, + 1800000000 + ], + [ + 0, + 85, + 12316, + 272407, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1250000, + 1250000, + 1656086, + 1931994, + 4221616, + 10073387, + 14919013, + 14919013, + 16461840, + 20000000, + 45659685, + 1003000000 + ], + [ + 0, + 1, + 1, + 1, + 77, + 430, + 100000, + 1000000, + 1000000, + 1033339, + 1118533, + 1500000, + 1677194, + 1931994, + 2398889, + 7885294, + 10508571, + 14919013, + 16461840, + 32640680, + 1500000000 + ], + [ + 0, + 1, + 1, + 10, + 200, + 24287, + 111886, + 1000000, + 1000000, + 1100000, + 1250000, + 1300001, + 1693119, + 1931994, + 4257022, + 7241400, + 10000010, + 25000000, + 26101938, + 32932830, + 1500000000 + ], + [ + 0, + 1, + 1, + 1, + 77, + 12838, + 269974, + 1000000, + 1019117, + 1045000, + 1250000, + 1564256, + 1919576, + 1931994, + 4488338, + 5104097, + 8779935, + 10500000, + 18064841, + 28932487, + 400000000 + ], + [ + 0, + 50, + 100000, + 1000000, + 1000000, + 1016017, + 1016017, + 1016017, + 1016017, + 1016017, + 1100000, + 1250000, + 1500000, + 1931994, + 2285313, + 3000000, + 6163251, + 9730166, + 20000000, + 97856791, + 6283106019 + ], + [ + 0, + 565, + 13262, + 100000, + 1000000, + 1000000, + 1001621, + 1023786, + 1061531, + 1250000, + 1250000, + 1500000, + 1681971, + 1931994, + 2283108, + 2283108, + 4356265, + 9642315, + 13252779, + 25000050, + 1500000000 + ], + [ + 0, + 85, + 10769, + 630000, + 1000000, + 1000000, + 1000000, + 1100000, + 1138822, + 1250000, + 1500000, + 1500000, + 1796524, + 1931994, + 2327338, + 2500000, + 9661662, + 10686731, + 15942889, + 19974214, + 633011606 + ], + [ + 0, + 12415, + 100000, + 416683, + 1000000, + 1063267, + 1114202, + 1250000, + 1500000, + 1500000, + 1571378, + 1931994, + 2342503, + 2840059, + 3966449, + 3966449, + 3966449, + 7811194, + 16215645, + 28690544, + 106692983 + ], + [ + 0, + 565, + 565, + 565, + 565, + 97931, + 632017, + 984075, + 1000000, + 1000000, + 1000000, + 1000000, + 1223695, + 1399000, + 1500000, + 1965305, + 2500000, + 5985224, + 10693710, + 16320340, + 1500000000 + ], + [ + 0, + 990, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1022781, + 1250000, + 1353000, + 1500000, + 1509000, + 1931994, + 1931994, + 2500000, + 7330341, + 10500000, + 16410914, + 1999999538 + ], + [ + 0, + 13758, + 373789, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1106496, + 1500000, + 1800000, + 1931994, + 2616536, + 7287897, + 10681843, + 14300010, + 20000000, + 400000000 + ], + [ + 0, + 1, + 558, + 30000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1005533, + 1155750, + 1500000, + 1500000, + 1931994, + 2328418, + 2500000, + 2500000, + 9642662, + 11000000, + 15960530, + 1500000000 + ], + [ + 0, + 1, + 10, + 95662, + 631001, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1266871, + 1708938, + 1931994, + 2500000, + 5980743, + 10000000, + 14965398, + 25000050, + 348970361 + ], + [ + 0, + 1, + 150, + 12921, + 993610, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1500000, + 1841000, + 1931994, + 4140201, + 4357518, + 9038278, + 10500000, + 10500000, + 25000050, + 100000000 + ], + [ + 0, + 1, + 1, + 30837, + 996793, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1500000, + 1931994, + 2500000, + 10000000, + 11920446, + 15844985, + 26854223, + 515510678 + ], + [ + 0, + 77, + 49222, + 427641, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1087573, + 1100369, + 1500000, + 1931994, + 2500000, + 4974886, + 14300010, + 25000050, + 400000000 + ], + [ + 0, + 50, + 609000, + 978189, + 978189, + 988189, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1513395, + 1931994, + 4439946, + 9962774, + 18976284, + 94652761 + ], + [ + 0, + 10873, + 886914, + 928081, + 928081, + 928081, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100001, + 1500000, + 1931994, + 1931994, + 1931994, + 4090795, + 14919013, + 1500000000 + ], + [ + 0, + 13342, + 219605, + 313798, + 972924, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1195426, + 1500000, + 1931994, + 2316366, + 9093303, + 15030830, + 194575577 + ], + [ + 0, + 1, + 527, + 97888, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1046871, + 1250000, + 1500000, + 1790906, + 2029494, + 3985723, + 7882290, + 10500000, + 25000000, + 345562288 + ], + [ + 0, + 10, + 12307, + 100000, + 892516, + 969700, + 981847, + 1000000, + 1000000, + 1000000, + 1000000, + 1266871, + 1682000, + 2318828, + 3854441, + 3854441, + 5045277, + 8592313, + 10000000, + 16545277, + 400000000 + ], + [ + 0, + 1, + 10879, + 100000, + 942424, + 942424, + 942424, + 942424, + 942424, + 942424, + 1128475, + 1250000, + 1500000, + 1800000, + 1931994, + 2182377, + 2500000, + 6476816, + 7812340, + 8759103, + 1500000000 + ], + [ + 0, + 525, + 138773, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1006834, + 1309600, + 1800000, + 2197927, + 2500000, + 7850944, + 10407144, + 26277310 + ], + [ + 0, + 1, + 1, + 30000, + 138773, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1250000, + 1500000, + 1666025, + 1931994, + 4065443, + 7544161, + 10405396, + 25000050, + 46430643, + 580550625 + ], + [ + 0, + 1, + 85, + 11638, + 100000, + 985936, + 985936, + 985936, + 985936, + 985936, + 1000000, + 1042282, + 1250000, + 1500000, + 1708000, + 1931994, + 2954421, + 4883940, + 7446211, + 20000000, + 642377333 + ], + [ + 0, + 12319, + 975429, + 975429, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1195085, + 1500000, + 1708000, + 1931994, + 2500000, + 4176624, + 7389358, + 16436665, + 1500000000 + ], + [ + 0, + 652, + 11619, + 113153, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1195085, + 1332334, + 1500000, + 1693427, + 1931994, + 1931994, + 2010749, + 3929592, + 7813145, + 20000000, + 164719492 + ], + [ + 0, + 1, + 1, + 77, + 52645, + 272262, + 1000000, + 1000000, + 1100000, + 1300001, + 1500000, + 1893969, + 2423959, + 4070520, + 5723014, + 7596437, + 11428931, + 25000050, + 32873330, + 66873497, + 2741295815 + ], + [ + 0, + 1, + 50, + 72824, + 850000, + 948245, + 1000000, + 1000000, + 1000000, + 1099246, + 1250000, + 1500000, + 1608124, + 1931994, + 2500000, + 3990660, + 7085930, + 7820883, + 20000000, + 25967707, + 416530048 + ], + [ + 0, + 1, + 1, + 936, + 80683, + 945349, + 946032, + 946032, + 946032, + 946032, + 946032, + 946032, + 957675, + 1100001, + 1554677, + 1732953, + 2000000, + 3117378, + 9960617, + 25000050, + 66899311 + ], + [ + 0, + 1, + 50, + 82361, + 585835, + 981680, + 981680, + 1000000, + 1000000, + 1000000, + 1016247, + 1250000, + 1500000, + 1723991, + 2222222, + 3230874, + 7257160, + 9737846, + 25000050, + 54538851, + 3200996008 + ], + [ + 0, + 50, + 11790, + 200000, + 878666, + 878666, + 937092, + 1000000, + 1000000, + 1000000, + 1209600, + 1500000, + 1679215, + 1931994, + 2236045, + 2500000, + 4460786, + 9490713, + 16335680, + 25000000, + 256914196 + ], + [ + 0, + 1, + 10, + 100000, + 962239, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1321859, + 1500000, + 2405137, + 7744387, + 16490945, + 25000000, + 663369907 + ], + [ + 0, + 50, + 13028, + 712567, + 957944, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1500000, + 1931994, + 1931994, + 1931994, + 1931994, + 3862860, + 6497877, + 7648548, + 16372911, + 24310290, + 1500000000 + ], + [ + 0, + 10, + 501, + 100000, + 850000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1117419, + 1931994, + 2500000, + 7721482, + 11658268, + 25622171 + ], + [ + 0, + 50, + 576, + 100000, + 835267, + 956601, + 1000000, + 1000000, + 1000000, + 1147792, + 1250000, + 1250000, + 1250000, + 1694973, + 2297775, + 2500000, + 3997988, + 3997988, + 3997988, + 7124497, + 43065997 + ], + [ + 0, + 50, + 50, + 100000, + 988229, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1250000, + 1646295, + 2393790, + 5288482, + 7124497, + 8269000, + 10500000, + 17395080, + 34395960, + 175280319 + ], + [ + 0, + 10, + 50, + 13373, + 799454, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1029901, + 1465900, + 1794000, + 2849024, + 11062548, + 25000000, + 1500000000 + ], + [ + 0, + 50, + 2833, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1147792, + 1685376, + 2371712, + 2500000, + 3901493, + 6483210, + 10000000, + 13550329, + 20000000, + 100000000, + 1523279758 + ], + [ + 0, + 50, + 482, + 34943, + 949398, + 1000000, + 1000000, + 1000000, + 1000000, + 1029901, + 1058795, + 1147792, + 1250000, + 1550862, + 2000000, + 4365307, + 7765463, + 8671000, + 17197980, + 65204826, + 348687630 + ], + [ + 0, + 50, + 13048, + 996918, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1147792, + 1699262, + 2397525, + 2500000, + 17094145, + 2500000000 + ], + [ + 0, + 10, + 10, + 10, + 50, + 21980, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1070145, + 1250000, + 1300001, + 2329627, + 2660200, + 10000000, + 17094145, + 94395857 + ] + ], + "BaseFee": [ + 8319566, + 8284894, + 8300290, + 8360803, + 8327617, + 8452385, + 8527183, + 8606889, + 8530194, + 8579438, + 8541035, + 8565263, + 8587241, + 8633224, + 8612504, + 8589080, + 8588474, + 8520241, + 8536876, + 8583217, + 8615452, + 8582338, + 8697238, + 8653646, + 8663845, + 8708820, + 8781208, + 8775349, + 8852279, + 8805688, + 8798741, + 8744787, + 8706575, + 8682771, + 8663243, + 8671022, + 8692061, + 8618362, + 8590773, + 8594790, + 8522922, + 8459429, + 8411232, + 8370661, + 8295849, + 8271303, + 8233555, + 8184685, + 8164010, + 8087256, + 8021489, + 8016035, + 8005456, + 8026199, + 8015963, + 8033424, + 7936304, + 7930629, + 7868665, + 7813574, + 7777566, + 7776831, + 7775652, + 7763046, + 7764712, + 7789978, + 7789002, + 7806796, + 7879287, + 7930859, + 7900594, + 7935999, + 7931078, + 7942155, + 7911672, + 7960323, + 7965104, + 7979545, + 7971115, + 8172610, + 8130863, + 8232664, + 8219523, + 8239551, + 8255229, + 8259197, + 8256393, + 8253720, + 8277432, + 8349510, + 8292514, + 8350323, + 8344431, + 8386495, + 8383351, + 8456747, + 8399791, + 8406458, + 8391626, + 8395315, + 8351507, + 8309094, + 8254058, + 8281405, + 8255862, + 8285046, + 8297534, + 8319147, + 8292045, + 8278743, + 8252542, + 8171779, + 8128970, + 8120485, + 8109001, + 8073143, + 8030093, + 8014653, + 7944429, + 7921584, + 7962336, + 7961422, + 7953013, + 7936922, + 7890179, + 7853570, + 7783649, + 7745719, + 7715917, + 7705104, + 7734218, + 7726331, + 7690662, + 7607255, + 7618547, + 7644980, + 7632466, + 7599598, + 7550022, + 7571503, + 7551967, + 7559468, + 7703638, + 7680913, + 7692728, + 7675107, + 7719805, + 7761325, + 7850410, + 7918342, + 8081580, + 8035528, + 8023527, + 8061915, + 8122768, + 8110050, + 8110873, + 8135930, + 8144800, + 8160472, + 8217675, + 8170198, + 8149550, + 8122515, + 8067996, + 8075673, + 8014797, + 8048471, + 8075246, + 8053636, + 8201089, + 8391882, + 8433363, + 8467417, + 8500894, + 8508146, + 8485178, + 8486257, + 8438211, + 8433169, + 8420416, + 8403008, + 8350042, + 8345925, + 8406533, + 8437191, + 8440541, + 8416316, + 8431671, + 8485228, + 8480445, + 8522463, + 8551151, + 8480987, + 8498939, + 8521885, + 8521871, + 8483511, + 8497219, + 8453648, + 8463220, + 8443930, + 8378430, + 8416498, + 8387258, + 8339613, + 8289450, + 8238331, + 8180479, + 8128838, + 8116539, + 8151511, + 8139087, + 8176291, + 8191909, + 8209839, + 8139974, + 8134551, + 8090350, + 8055407, + 8031082, + 8005345, + 7990657, + 7956399, + 7943054, + 7892117, + 7962594, + 7944982, + 7957327, + 7923583, + 7921595, + 8005292, + 7974761, + 7944632, + 7892599, + 7885077, + 7854976, + 7822801, + 7800925, + 7726726, + 7660233, + 7609324, + 7551739, + 7564498, + 7490781, + 7460071, + 7452862, + 7431307, + 7466011, + 7485846, + 7433716, + 7393877, + 7389162, + 7341243, + 7291590, + 7270855, + 7217924, + 7194881, + 7173802, + 7143265, + 7117108, + 7089334, + 7049533, + 7015059, + 6966446, + 6923643, + 6867621, + 6818795, + 6813692, + 6842332, + 6842393, + 6755810, + 6815747, + 6797420, + 6861596, + 6877413, + 6879936, + 6829917, + 6813781, + 6818077, + 6776821, + 6781119, + 6778176, + 6740581, + 6710540, + 6724767, + 6698962, + 6673594, + 6643111, + 6593424, + 6579704, + 6549179, + 6561174, + 6569321, + 6533724, + 6507540, + 6479594, + 6464067, + 6424607, + 6379655, + 6360231, + 6319691, + 6276898, + 6261194, + 6275777, + 6251828, + 6208690, + 6228063, + 6181467, + 6187257, + 6198894, + 6184439, + 6184229, + 6189553, + 6170682, + 6118073, + 6057176, + 6028794, + 6024892, + 5984048, + 5978184, + 5964677, + 5921130, + 5901637, + 5875467, + 5851221, + 5808226, + 5794359, + 5761871, + 5739598, + 5713986, + 5689419, + 5650908, + 5634875, + 5595200, + 5592176, + 5641439, + 5635394, + 5587068, + 5619956, + 5594628, + 5586238, + 5558674, + 5575795, + 5599968, + 5565894, + 5544533, + 5548972, + 5510885, + 5523756, + 5489425, + 5464999, + 5400409, + 5368528, + 5365079, + 5358818, + 5320149, + 5299996, + 5286848, + 5266737, + 5270692, + 5234739, + 5242962, + 5244076, + 5203112, + 5208916, + 5203128, + 5226151, + 5191415, + 5181653, + 5185104, + 5175809, + 5184101, + 5141859, + 5112635, + 5113520, + 5076842, + 5053799, + 5066505, + 5086703, + 5074900, + 5076474, + 5039199, + 5054241, + 5070271, + 5058910, + 5040097, + 5011162, + 4975577, + 4948510, + 4920049, + 4922689, + 4902449, + 4912631, + 4948047, + 4935514, + 4957190, + 4934672, + 4901732, + 4902808, + 4880569, + 4867958, + 4826021, + 4794424, + 4768940, + 4759846, + 4746941, + 4717589, + 4701876, + 4687518, + 4715263, + 4704901, + 4689193, + 4657912, + 4640831, + 4610969, + 4578459, + 4552243, + 4561536, + 4582880, + 4557228, + 4543547, + 4514465, + 4485104, + 4509373, + 4476371, + 4479748, + 4481765, + 4490034, + 4482326, + 4477387, + 4497365, + 4497899, + 4475705, + 4445866, + 4425492, + 4417241, + 4399149, + 4380990, + 4387855, + 4359408, + 4354826, + 4362092, + 4375217, + 4390872, + 4385014, + 4367254, + 4373321, + 4384008, + 4349567, + 4345742, + 4314163, + 4330419, + 4335470, + 4306298, + 4280965, + 4269410, + 4278815, + 4278184, + 4290456, + 4283486, + 4288026, + 4293574, + 4304246, + 4317098, + 4367819, + 4400200, + 4411626, + 4402099, + 4395736, + 4397484, + 4408016, + 4407789, + 4416846, + 4404154, + 4436199, + 4417280, + 4417517, + 4415175, + 4425809, + 4419502, + 4398123, + 4376722, + 4396787, + 4393150, + 4389233, + 4421758, + 4467893, + 4470465, + 4526066, + 4555604, + 4544472, + 4582019, + 4566160, + 4589968, + 4560934, + 4557692, + 4541524, + 4520479, + 4478120, + 4480909, + 4450893, + 4437850, + 4413139, + 4400056, + 4415337, + 4429632, + 4423467, + 4429555, + 4426629, + 4406780, + 4408700, + 4398213, + 4399326, + 4379739, + 4347156, + 4376806, + 4373663, + 4358342, + 4338740, + 4340043, + 4399759, + 4380903, + 4391867, + 4363931, + 4380009, + 4387306, + 4417329, + 4411214, + 4397576, + 4420894, + 4395816, + 4384867, + 4453042, + 4449254, + 4444710, + 4459221, + 4447650, + 4417950, + 4393764, + 4383042, + 4368701, + 4350360, + 4339905, + 4339897, + 4334799, + 4316391, + 4313564, + 4299457, + 4289952, + 4302118, + 4280041, + 4265678, + 4238144, + 4219333, + 4199229, + 4196788, + 4213263, + 4291770, + 4339895, + 4406466, + 4413000, + 4418266, + 4425971, + 4409695, + 4427078, + 4401592, + 4435398, + 4440416, + 4455856, + 4430998, + 4430384, + 4426061, + 4459608, + 4421884, + 4436479, + 4442780, + 4452473, + 4481297, + 4504603, + 4538040, + 4581537, + 4592559, + 4599917, + 4626717, + 4650861, + 4672971, + 4649194, + 4650267, + 4629909, + 4605266, + 4636007, + 4595786, + 4591078, + 4612930, + 4617134, + 4675250, + 4647302, + 4634348, + 4605011, + 4605701, + 4605497, + 4602981, + 4593966, + 4621941, + 4620044, + 4679992, + 4676627, + 4710697, + 4672105, + 4660951, + 4647101, + 4671996, + 4654625, + 4636261, + 4644937, + 4635879, + 4667197, + 4680932, + 4685611, + 4693633, + 4717770, + 4693542, + 4690190, + 4690041, + 4677669, + 4653396, + 4668346, + 4647256, + 4661743, + 4715754, + 4717960, + 4719888, + 4727374, + 4713323, + 4781418, + 4765310, + 4808258, + 4837029, + 4806951, + 4799595, + 4789226, + 4780781, + 4771482, + 4778309, + 4771888, + 4777864, + 4777552, + 4805263, + 4783866, + 4805362, + 4759953, + 4737921, + 4755980, + 4756550, + 4815995, + 4824194, + 4941864, + 4932078, + 4947222, + 4921378, + 4941909, + 4930503, + 4989689, + 5019239, + 5121840, + 5211718, + 5390349, + 5410648, + 5473339, + 5449839, + 5471393, + 5451153, + 5448252, + 5497751, + 5471397, + 5480601, + 5445179, + 5443643, + 5422387, + 5393135, + 5380594, + 5363459, + 5327010, + 5315310, + 5284802, + 5279614, + 5238925, + 5232725, + 5221817, + 5198629, + 5215888, + 5220248, + 5192480, + 5227818, + 5226379, + 5211655, + 5192450, + 5231339, + 5229462, + 5209857, + 5179517, + 5173208, + 5178925, + 5159338, + 5113527, + 5093735, + 5079001, + 5046472, + 5019489, + 4995139, + 4950242, + 4937478, + 4936066, + 4925958, + 4935767, + 4916738, + 4883615, + 4862571, + 4836417, + 4812866, + 4779615, + 4763589, + 4740847, + 4707538, + 4689959, + 4666547, + 4656476, + 4611599, + 4574700, + 4562391, + 4554570, + 4577719, + 4583913, + 4561319, + 4528280, + 4509080, + 4491125, + 4522560, + 4528271, + 4510899, + 4477158, + 4455059, + 4417401, + 4392996, + 4397030, + 4383734, + 4355289, + 4347242, + 4352124, + 4336306, + 4327141, + 4313275, + 4305396, + 4322222, + 4322752, + 4312953, + 4326970, + 4335854, + 4342255, + 4325436, + 4360989, + 4374650, + 4401557, + 4388408, + 4384044, + 4378127, + 4365620, + 4378097, + 4380262, + 4396758, + 4390592, + 4363403, + 4326862, + 4301487, + 4307347, + 4317760, + 4330683, + 4294612, + 4348820, + 4344898, + 4364821, + 4374044, + 4394191, + 4396473, + 4377263, + 4364173, + 4349587, + 4332592, + 4324695, + 4312965, + 4281347, + 4299778, + 4274426, + 4291485, + 4315533, + 4347797, + 4324328, + 4319594, + 4322919, + 4298869, + 4291286, + 4292674, + 4276619, + 4276159, + 4275207, + 4258748, + 4234055, + 4196870, + 4197443, + 4185994, + 4156932, + 4180459, + 4208205, + 4198393, + 4214116, + 4200685, + 4188187, + 4174509, + 4148999, + 4152467, + 4133782, + 4102480, + 4090151, + 4086985, + 4087535, + 4062000, + 4040849, + 4033435, + 3995620, + 4003578, + 4001078, + 4025651, + 4010305, + 3990976, + 3990819, + 4024755, + 4017648, + 4014923, + 4008776, + 3990546, + 3995937, + 3997112, + 3985728, + 3967657, + 3959188, + 3943646, + 3918316, + 3900423, + 3895634, + 3879712, + 3860682, + 3836614, + 3902446, + 3887313, + 3887633, + 3885348, + 3882148, + 3868368, + 3861484, + 3833659, + 3819159, + 3818434, + 3850972, + 3863007, + 3855577, + 3873748, + 3864492, + 3866400, + 3850235, + 3852998, + 3845660, + 3840127, + 3907908, + 3957855, + 3993294, + 4029662, + 4072748, + 4119661, + 4189823, + 4233917, + 4292039, + 4338640, + 4405349, + 4544574, + 4704419, + 4887475, + 4901369, + 4932135, + 4964941, + 4945166, + 4993975, + 4966322, + 5013228, + 4986328, + 4980631, + 4988078, + 4977930, + 4980269, + 4957553, + 4944492, + 4937443, + 4927470, + 4942267, + 4944634, + 4983778, + 4991601, + 5044725, + 5027927, + 5047050, + 5043649, + 5049705, + 5027182, + 5006411, + 5017595, + 5069068, + 5058016, + 5078851, + 5046573, + 5058847, + 5084574, + 5066100, + 5093579, + 5114920, + 5131334, + 5137587, + 5145897, + 5163580, + 5165202, + 5171638, + 5156781, + 5160964, + 5130908, + 5172818, + 5144779, + 5154926, + 5166696, + 5246581, + 5257028, + 5286448, + 5312686, + 5327029, + 5343816, + 5325291, + 5324955, + 5332626, + 5347800, + 5326467, + 5382707, + 5378496, + 5452778, + 5454832, + 5470283, + 5474872, + 5487716, + 5522108, + 5526595, + 5523401, + 5508196, + 5481147, + 5448305, + 5464064, + 5429775, + 5437435, + 5446936, + 5486843, + 5483826, + 5489762, + 5488045, + 5462421, + 5507307, + 5537478, + 5505921, + 5489193, + 5516377, + 5528189, + 5511942, + 5505667, + 5487280, + 5488805, + 5440114, + 5449674, + 5438555, + 5405216, + 5400810, + 5399461, + 5383444, + 5377024, + 5332794, + 5320177, + 5293677, + 5310013, + 5299457, + 5293924, + 5281662, + 5300314, + 5284261, + 5325428, + 5347239, + 5397347, + 5424423, + 5436570, + 5454723, + 5512299, + 5478889, + 5497503, + 5511567, + 5503460, + 5496299, + 5445227, + 5496982, + 5550950, + 5569270, + 5690604, + 5690493, + 5732660, + 5693149, + 5734003, + 5704920, + 5698049, + 5674288, + 5646125, + 5611475, + 5604143, + 5603474 + ], + "GasUsedRatio": [ + 0.26387421333333333, + 0.36430564666666665, + 0.45484304, + 0.26717758, + 0.58304188, + 0.48082362666666667, + 0.48912271333333335, + 0.18481838666666667, + 0.42954886, + 0.2587304266666667, + 0.3806126933333333, + 0.37610076666666664, + 0.42258046, + 0.2933319466666667, + 0.2880037733333333, + 0.3321566, + 0.2009205, + 0.36587494, + 0.42380678, + 0.39592718, + 0.26927337333333334, + 0.5564670466666667, + 0.24979567333333333, + 0.3529765, + 0.41985298, + 0.47186851333333335, + 0.32221295333333333, + 0.47944472, + 0.24561376, + 0.3201831133333333, + 0.23113153333333333, + 0.26050342, + 0.28776551333333333, + 0.29584787333333334, + 0.34829946, + 0.37377405333333336, + 0.19201746666666666, + 0.2799797866666667, + 0.34112706666666665, + 0.19396865333333332, + 0.20917191333333332, + 0.23837528, + 0.25294108, + 0.18437564666666667, + 0.28401864, + 0.25727083333333334, + 0.23440699333333334, + 0.2912311733333333, + 0.17664067333333333, + 0.19779501333333332, + 0.32199932666666664, + 0.31133668, + 0.37651986666666665, + 0.3120763733333333, + 0.36963897333333334, + 0.13184071333333333, + 0.3214135533333333, + 0.20311218, + 0.21664318666666665, + 0.2565263133333333, + 0.3317564666666667, + 0.3308045866666667, + 0.3063126133333333, + 0.33691209333333333, + 0.38756614, + 0.3312447666666667, + 0.37140885333333334, + 0.4880956733333333, + 0.44242216666666667, + 0.2697313333333333, + 0.40802185333333335, + 0.3229983533333333, + 0.35661212666666664, + 0.2693630733333333, + 0.43582116666666665, + 0.34334424, + 0.36355254666666664, + 0.3157252933333333, + 0.7546375466666667, + 0.24819550666666668, + 0.5420063333333334, + 0.30672846666666664, + 0.37394437333333336, + 0.3650478466666667, + 0.34134632666666664, + 0.32767466, + 0.32793610666666667, + 0.38121639333333335, + 0.4784635, + 0.21956178, + 0.44952166666666665, + 0.3215719933333333, + 0.41735066, + 0.3270837266666667, + 0.47925036, + 0.22108236, + 0.3465634, + 0.30392564666666666, + 0.3406601, + 0.24636224, + 0.24869012, + 0.22293936, + 0.38855433333333333, + 0.2819256, + 0.3922492533333333, + 0.35845536666666666, + 0.37674646666666667, + 0.2790353133333333, + 0.30659606, + 0.2805848733333333, + 0.17022598, + 0.24602074, + 0.31593576, + 0.30976136, + 0.25963284, + 0.24445712, + 0.30128630666666667, + 0.18730063333333333, + 0.28540562, + 0.41907408, + 0.3314186, + 0.3157289, + 0.2996114066666667, + 0.23517698, + 0.25600100666666664, + 0.18494687333333334, + 0.25211554, + 0.2692072466666667, + 0.30997470666666666, + 0.39631079333333336, + 0.3163356466666667, + 0.2563902066666667, + 0.15257943333333332, + 0.35807301333333336, + 0.3911594, + 0.30605101333333334, + 0.2615596533333333, + 0.22460654666666666, + 0.38075458, + 0.29032784, + 0.34988826666666667, + 0.6511927533333334, + 0.28416652666666664, + 0.35897184666666665, + 0.29515475333333335, + 0.43039757333333334, + 0.42297382, + 0.5246344466666667, + 0.477556, + 0.6769196533333334, + 0.23835935333333333, + 0.30844118, + 0.41307511333333335, + 0.45913858, + 0.3072374466666667, + 0.33502466, + 0.3848220666666667, + 0.3515045333333333, + 0.3654031133333333, + 0.45016394, + 0.23704225333333334, + 0.29121136, + 0.27804206666666664, + 0.22146370666666668, + 0.34919426666666664, + 0.20769641333333333, + 0.40335926666666666, + 0.38878014, + 0.28873074666666665, + 0.63848304, + 0.7210730866666667, + 0.4157169666666667, + 0.4006351266666667, + 0.39922798, + 0.34755205333333333, + 0.28834010666666665, + 0.33545362, + 0.23897201333333334, + 0.32337405333333336, + 0.3081290466666667, + 0.2988757933333333, + 0.22827815333333334, + 0.32511438, + 0.45436667333333336, + 0.39411558, + 0.3399508866666667, + 0.28549692666666665, + 0.3637410466666667, + 0.4391991866666667, + 0.32393856666666665, + 0.41591212, + 0.38943714, + 0.19657892, + 0.36861384, + 0.37833283333333334, + 0.33330482, + 0.25831037333333334, + 0.36026508, + 0.24787110666666667, + 0.35220624, + 0.2953445333333333, + 0.20404793333333332, + 0.40906117333333336, + 0.27543104, + 0.2386544, + 0.23308218, + 0.23055291333333333, + 0.21629396666666667, + 0.22812065333333334, + 0.3081161666666667, + 0.4051457333333333, + 0.30793099333333335, + 0.4095182666666667, + 0.36516996, + 0.3698133, + 0.19149955333333332, + 0.32222791333333334, + 0.24276944666666667, + 0.26134808, + 0.2830034533333333, + 0.27992157333333334, + 0.30275203333333334, + 0.26187852666666667, + 0.30537748666666664, + 0.22645232666666668, + 0.48216931333333335, + 0.29646734, + 0.35923031333333333, + 0.26265534, + 0.32915091333333335, + 0.50942952, + 0.2697680533333333, + 0.27036432666666665, + 0.22417394, + 0.3174471933333333, + 0.26970759333333333, + 0.26506286, + 0.2867247133333333, + 0.17480724666666667, + 0.18990578666666666, + 0.22256784666666668, + 0.20720427333333333, + 0.36149396666666667, + 0.17091304666666668, + 0.26500424, + 0.31722728666666666, + 0.2851292, + 0.4111678933333333, + 0.37761315333333334, + 0.21726974, + 0.24401122, + 0.32270422666666665, + 0.22524826, + 0.22060648, + 0.28593674, + 0.21200076666666667, + 0.28012397333333333, + 0.2845036933333333, + 0.26238726, + 0.27230239333333334, + 0.2682909, + 0.23976314, + 0.25182802666666665, + 0.21783605333333333, + 0.23092984666666666, + 0.19847564, + 0.21483985333333333, + 0.32086016, + 0.40338848666666666, + 0.33348382, + 0.12243266, + 0.48120026, + 0.2885171733333333, + 0.49068715333333335, + 0.3717529866666667, + 0.33944937333333336, + 0.21216112666666667, + 0.29395632666666666, + 0.3438423666666667, + 0.23248256666666667, + 0.343904, + 0.32609836666666664, + 0.24089088, + 0.25905308, + 0.3686696466666667, + 0.26937604, + 0.2702175866666667, + 0.25720474666666665, + 0.20867516666666666, + 0.29865053333333336, + 0.25601214, + 0.3638597333333333, + 0.3540291933333333, + 0.2430197, + 0.26653891333333335, + 0.26175751333333336, + 0.29339316, + 0.2315901, + 0.21671793333333333, + 0.2825880533333333, + 0.22709848, + 0.22047460666666666, + 0.2916332933333333, + 0.37215385333333334, + 0.2697305466666667, + 0.21833016, + 0.38533945333333336, + 0.20863731333333332, + 0.34894707333333336, + 0.36468186, + 0.29446778, + 0.33276600666666667, + 0.34768256, + 0.28251713333333334, + 0.19123755333333334, + 0.16743772666666668, + 0.25523664, + 0.32254469333333335, + 0.22034459333333334, + 0.31700019333333335, + 0.29567452666666666, + 0.21165090666666667, + 0.2784641333333333, + 0.2594266533333333, + 0.26455552, + 0.21086448, + 0.29354166, + 0.23988428, + 0.26890626666666667, + 0.25895969333333335, + 0.26167409333333336, + 0.22051776, + 0.28604347333333335, + 0.21598183333333335, + 0.32432282, + 0.4801555066666667, + 0.31547396666666666, + 0.19040743333333332, + 0.43144321333333335, + 0.25821905333333334, + 0.30833664666666666, + 0.25109501333333334, + 0.38466829333333336, + 0.40558997333333335, + 0.23192173333333332, + 0.26936637333333335, + 0.34667802, + 0.21893445333333333, + 0.3722614066666667, + 0.22974580666666666, + 0.25917184, + 0.13635022666666666, + 0.23494067333333332, + 0.32262362, + 0.31388076, + 0.21306648666666667, + 0.2701973, + 0.29198550666666667, + 0.26993271333333335, + 0.34585026, + 0.21964438666666666, + 0.3595167266666667, + 0.33687493333333335, + 0.20313912, + 0.35192544666666664, + 0.31481349333333336, + 0.40708133333333335, + 0.22255497333333332, + 0.30199176, + 0.34443350666666667, + 0.30345590666666666, + 0.36003466, + 0.19752605333333334, + 0.23860533333333334, + 0.3362197866666667, + 0.21378737333333334, + 0.25768308, + 0.37523895333333335, + 0.3997771133333333, + 0.29465908, + 0.33850298666666667, + 0.21095315333333334, + 0.3830842666666667, + 0.38619568, + 0.29598658666666666, + 0.2713506666666667, + 0.23764976, + 0.21497976666666666, + 0.24266586666666667, + 0.23747386, + 0.34227885333333335, + 0.26480706666666665, + 0.3679518133333333, + 0.45348914, + 0.29111785333333334, + 0.40653406, + 0.25762337333333335, + 0.22207725333333334, + 0.3369949466666667, + 0.25773318666666667, + 0.29026573333333333, + 0.18974905333333333, + 0.22421101333333332, + 0.24474109333333333, + 0.3015496, + 0.28814282, + 0.23027491333333333, + 0.2778187066666667, + 0.2824365, + 0.43198312666666666, + 0.2967064933333333, + 0.27768676, + 0.22215042666666668, + 0.27221342, + 0.22608623333333333, + 0.2158223, + 0.23790034666666668, + 0.3673598, + 0.41131983333333333, + 0.24004326, + 0.28329622666666665, + 0.22665388, + 0.22493606, + 0.42351866, + 0.21135634666666667, + 0.34590708666666664, + 0.34083838666666666, + 0.3640865, + 0.304719, + 0.31496558, + 0.40770272, + 0.3353143066666667, + 0.25109415333333335, + 0.22221591333333332, + 0.2569548, + 0.3022578533333333, + 0.26506821333333336, + 0.26453236, + 0.35945241333333333, + 0.22528030666666668, + 0.31581404, + 0.36114294, + 0.3834823133333333, + 0.39296871333333333, + 0.31109692666666666, + 0.265828, + 0.3564881066666667, + 0.374063, + 0.20239739333333334, + 0.3186763, + 0.21222056666666667, + 0.39613590666666665, + 0.35277637333333334, + 0.22118546, + 0.23528549333333335, + 0.28834698, + 0.37004861333333333, + 0.33087366, + 0.38114497333333336, + 0.3062551333333333, + 0.3510004133333333, + 0.35490014, + 0.37476151333333335, + 0.38310030666666667, + 0.5291497533333334, + 0.45689282666666664, + 0.37661197333333335, + 0.29734124666666667, + 0.30924170666666667, + 0.33996124666666666, + 0.37325159333333335, + 0.3324728533333333, + 0.36758068666666666, + 0.28543742, + 0.45460274, + 0.26225470666666667, + 0.33423032, + 0.32449365333333335, + 0.3734769333333333, + 0.30958204666666667, + 0.2527093933333333, + 0.2522315333333333, + 0.4097445, + 0.3195443866666667, + 0.31847114666666665, + 0.45683742, + 0.5072285266666666, + 0.34292947333333335, + 0.5406260133333334, + 0.4421043, + 0.29260556666666665, + 0.4710373466666667, + 0.2756443533333333, + 0.42023466666666665, + 0.22790564666666666, + 0.32148484, + 0.2742094466666667, + 0.2561001133333333, + 0.17715702, + 0.34371496, + 0.22168927333333333, + 0.28449058, + 0.24052668666666666, + 0.28392397333333336, + 0.39121562, + 0.38729408666666665, + 0.31013509333333333, + 0.35627362, + 0.32232132, + 0.25859812, + 0.34059863333333334, + 0.29368703333333335, + 0.3375534666666667, + 0.25912548, + 0.20933954, + 0.44701136, + 0.3213641666666667, + 0.27494645333333334, + 0.25837348, + 0.33833956, + 0.5626577, + 0.26190270666666665, + 0.37504640666666667, + 0.22731568, + 0.39474082, + 0.36110166, + 0.44738634, + 0.3102578266666667, + 0.28180392666666665, + 0.42170937333333336, + 0.23878919333333334, + 0.29181947333333336, + 0.5924665466666666, + 0.3191557133333333, + 0.31630806666666667, + 0.38774890666666667, + 0.2900847933333333, + 0.22203572, + 0.24209043333333333, + 0.29265838, + 0.27879844, + 0.26335892, + 0.29327902, + 0.33330060666666667, + 0.3137548866666667, + 0.26255370666666666, + 0.32241452666666665, + 0.2788258866666667, + 0.29648583333333334, + 0.38060147333333333, + 0.24780273333333333, + 0.27739974666666667, + 0.22575166666666666, + 0.25935775333333333, + 0.2539174066666667, + 0.32364280666666667, + 0.3987633933333333, + 0.6438899066666667, + 0.52022342, + 0.5889917066666667, + 0.35804986, + 0.35322319333333335, + 0.3624010266666667, + 0.27204296, + 0.3990347533333333, + 0.23738383333333332, + 0.46134226, + 0.3521893266666667, + 0.39128593333333334, + 0.24035304666666665, + 0.3310234, + 0.31707025333333333, + 0.4596575333333333, + 0.19234864, + 0.38834756666666664, + 0.35700488, + 0.36969644, + 0.44122905333333334, + 0.42001514666666667, + 0.4570484733333333, + 0.49308446, + 0.37343192, + 0.36003736, + 0.43043724666666666, + 0.4203090133333333, + 0.41256918666666664, + 0.24852662, + 0.3371834533333333, + 0.26036691333333334, + 0.24462106, + 0.4445890866666667, + 0.188735, + 0.31625922, + 0.41266272, + 0.34852574, + 0.54312038, + 0.23369960666666667, + 0.28687626, + 0.22782564, + 0.33583348, + 0.33259272666666667, + 0.32422486666666667, + 0.30068814, + 0.43482699333333336, + 0.3264918133333333, + 0.54959418, + 0.32134749333333334, + 0.45475284666666665, + 0.19679008666666667, + 0.29354240666666664, + 0.28380544, + 0.4226193466666667, + 0.27136427333333335, + 0.26757605333333334, + 0.36452416666666665, + 0.3008305866666667, + 0.44592674, + 0.38238192, + 0.34999625333333334, + 0.36186916, + 0.4190424133333333, + 0.2477397, + 0.32142894, + 0.3328019133333333, + 0.2893666, + 0.24684586666666666, + 0.38688064, + 0.2580364, + 0.38528906, + 0.52643424, + 0.34113061333333333, + 0.34014654, + 0.35977055333333335, + 0.2837951933333333, + 0.5741258066666667, + 0.2771849733333333, + 0.48354712, + 0.43306238, + 0.22969292666666666, + 0.30782818666666667, + 0.2973242, + 0.3039441466666667, + 0.3009147133333333, + 0.3571831066666667, + 0.31093496, + 0.35420656666666667, + 0.33224448, + 0.43000554, + 0.2591174133333333, + 0.40822659333333333, + 0.17583793333333333, + 0.25618722, + 0.3968615466666667, + 0.3353341066666667, + 0.5416257533333333, + 0.3617107866666667, + 0.7398636, + 0.30032854666666664, + 0.3845117533333333, + 0.24626616666666667, + 0.40286656666666665, + 0.29486307333333334, + 0.5334036466666666, + 0.43203889333333334, + 0.6740264266666667, + 0.6258024866666667, + 0.9045814266666666, + 0.39609878, + 0.52644368, + 0.26177387333333335, + 0.3992507, + 0.2716787133333333, + 0.32446246666666667, + 0.4847555533333333, + 0.25343844, + 0.36137238, + 0.22561152666666667, + 0.32862936, + 0.2682525666666667, + 0.24341999333333333, + 0.29457559333333333, + 0.28025394, + 0.22006758, + 0.29672474666666665, + 0.23767095333333332, + 0.31697002, + 0.20488633333333334, + 0.31360663333333333, + 0.29858845333333334, + 0.25932115333333333, + 0.38866664666666667, + 0.3472654, + 0.24467652666666667, + 0.44676301333333335, + 0.32874304666666665, + 0.2863774333333333, + 0.27191377333333333, + 0.45815970666666667, + 0.32735151333333334, + 0.27084902, + 0.23627340666666666, + 0.31302954, + 0.3517521733333333, + 0.2702958466666667, + 0.18534373333333334, + 0.2688233466666667, + 0.2851215933333333, + 0.22658788666666665, + 0.24421605333333332, + 0.2524805666666667, + 0.1835302, + 0.29035833333333333, + 0.32856488666666667, + 0.29920119333333334, + 0.3665235333333333, + 0.2690763466666667, + 0.22105255333333335, + 0.26151208666666664, + 0.24368722, + 0.25217302, + 0.21818574666666668, + 0.2774493533333333, + 0.2537631, + 0.21623176, + 0.27109604666666665, + 0.2501331333333333, + 0.29736248666666665, + 0.17270708, + 0.19997608666666666, + 0.2884863733333333, + 0.30476046, + 0.41804564, + 0.35588548, + 0.25118224666666666, + 0.21260955333333334, + 0.2626635133333333, + 0.26696708, + 0.4499907266666667, + 0.35438050666666665, + 0.2693921733333333, + 0.20866738666666668, + 0.25106571333333333, + 0.19245162666666665, + 0.24125372666666667, + 0.3486387266666667, + 0.2829329, + 0.22518428666666668, + 0.3025359, + 0.35205054, + 0.2727540333333333, + 0.29810462, + 0.2799255666666667, + 0.30288659333333334, + 0.398471, + 0.33537818, + 0.29555250666666666, + 0.38750129333333333, + 0.36755486666666665, + 0.35794173333333335, + 0.2687771666666667, + 0.47032728, + 0.3855446, + 0.4358456666666667, + 0.28354187333333336, + 0.31675908, + 0.31083682, + 0.2857186666666667, + 0.38096857333333334, + 0.34157723333333334, + 0.3961006733333333, + 0.3099577, + 0.23012288, + 0.19375898666666666, + 0.23558946, + 0.35603996, + 0.3736266266666667, + 0.38321742, + 0.19451247333333332, + 0.54370554, + 0.3182995733333333, + 0.40975988, + 0.36855118, + 0.41010308, + 0.3419890466666667, + 0.26050608, + 0.28348961333333333, + 0.2776290533333333, + 0.26821054666666666, + 0.3029514, + 0.28812616, + 0.21114879333333333, + 0.4050830066666667, + 0.23506305333333333, + 0.39985198, + 0.4267290733333333, + 0.4579375, + 0.24336508666666667, + 0.31508497333333335, + 0.34616558, + 0.24060732666666668, + 0.30393265333333336, + 0.3387259933333333, + 0.27099498, + 0.33154029333333335, + 0.32962248666666666, + 0.2691660733333333, + 0.23669342, + 0.18695966, + 0.33561178, + 0.28787116, + 0.21762116666666667, + 0.42766407333333334, + 0.44395498, + 0.29446918, + 0.3957501466666667, + 0.28021226, + 0.28374430666666667, + 0.2789017266666667, + 0.23148302666666667, + 0.34726530666666666, + 0.25833502, + 0.20712812666666666, + 0.2832441866666667, + 0.3204303133333333, + 0.33558016, + 0.22921471333333332, + 0.24654841333333333, + 0.30275024666666667, + 0.1770769, + 0.36653050666666664, + 0.32292466, + 0.43569528, + 0.26979529333333335, + 0.25300261333333335, + 0.33267382, + 0.47505889333333334, + 0.30390258, + 0.32202786, + 0.30781524, + 0.25754103333333334, + 0.35585246666666664, + 0.3382380133333333, + 0.28586343333333336, + 0.25776703333333334, + 0.29775772666666667, + 0.2679052, + 0.22627997333333333, + 0.2572248066666667, + 0.31286558666666664, + 0.26521036, + 0.2515832333333333, + 0.22942895333333332, + 0.6193152066666666, + 0.26870104, + 0.3347054933333333, + 0.32353709333333336, + 0.31960504, + 0.27416947333333336, + 0.30367076, + 0.21323608, + 0.27029354, + 0.3301665, + 0.4753579333333333, + 0.38542177333333333, + 0.3012752066666667, + 0.4118828333333333, + 0.29350829333333334, + 0.3415660933333333, + 0.26364952, + 0.34529491333333334, + 0.3015918, + 0.30935072, + 0.6275143533333334, + 0.5463537, + 0.4825717333333333, + 0.48512476666666665, + 0.5115380133333334, + 0.52531272, + 0.61718438, + 0.5087349866666667, + 0.5621290866666667, + 0.5142928533333333, + 0.5895950333333333, + 0.86006356, + 0.9195463533333333, + 0.9818609466666667, + 0.3807130933333333, + 0.43795135333333335, + 0.44419230666666665, + 0.2669493133333333, + 0.49783545333333334, + 0.24104432666666667, + 0.4907490333333333, + 0.24390268, + 0.31428796666666664, + 0.35825334, + 0.29942349333333335, + 0.34116748, + 0.25731097333333336, + 0.28942314, + 0.30957029333333336, + 0.2996664333333333, + 0.38338402, + 0.34131577333333335, + 0.4652752133333333, + 0.35949635333333335, + 0.51071412, + 0.2778359066666667, + 0.39672394666666666, + 0.32210198, + 0.3533464866666667, + 0.25899558, + 0.26447016, + 0.3705679866666667, + 0.5043103866666667, + 0.29699262666666665, + 0.4019892133333333, + 0.22740950666666668, + 0.37386944666666666, + 0.4180950333333333, + 0.2727761066666667, + 0.42373652666666667, + 0.40316540666666667, + 0.38682024, + 0.3536464066666667, + 0.36029474, + 0.39060668666666665, + 0.33857158, + 0.35410198, + 0.2854513733333333, + 0.34685346666666667, + 0.23627069333333334, + 0.46947047333333336, + 0.24299182666666666, + 0.36620754, + 0.37138974, + 0.59102608, + 0.36652182, + 0.42660645333333336, + 0.41605507333333336, + 0.37833046666666664, + 0.38585548, + 0.27555441333333336, + 0.3322811666666667, + 0.35734441333333333, + 0.38076088, + 0.26684666, + 0.50931076, + 0.3202927266666667, + 0.5635157466666667, + 0.33961266, + 0.3805443533333333, + 0.34731696, + 0.37243424, + 0.43778672, + 0.3468765466666667, + 0.3236993266666667, + 0.28745261333333333, + 0.25148650666666666, + 0.23346728666666666, + 0.38154232666666665, + 0.22874148, + 0.35684721333333336, + 0.3624585733333333, + 0.45544192666666666, + 0.3241672, + 0.3513767133333333, + 0.32811791333333334, + 0.25551478, + 0.47028892, + 0.42464018, + 0.23835313333333333, + 0.28269441333333334, + 0.41587141333333333, + 0.3690235666666667, + 0.2843482133333333, + 0.31435828666666665, + 0.27766971333333335, + 0.33796627333333334, + 0.18548258, + 0.36262305333333333, + 0.29932822, + 0.23116458666666667, + 0.3197466666666667, + 0.3291695666666667, + 0.28389059333333333, + 0.31345750666666666, + 0.19623759333333332, + 0.29389901333333335, + 0.2503153533333333, + 0.38476852666666667, + 0.30020082, + 0.31593184, + 0.2947277266666667, + 0.39219196, + 0.28285429333333334, + 0.46317634, + 0.40159653333333334, + 0.48951367333333334, + 0.4169427866666667, + 0.37065815333333335, + 0.3889869266666667, + 0.5092544, + 0.23231429333333334, + 0.38995794666666667, + 0.3759725666666667, + 0.3088156933333333, + 0.31164524666666665, + 0.17846524666666666, + 0.49174487333333333, + 0.49696274, + 0.38834193333333333, + 0.6964415466666667, + 0.3330075, + 0.4568358533333333, + 0.21845961333333333, + 0.45293353333333336, + 0.24879768, + 0.31325914, + 0.2638306, + 0.2506108066666667, + 0.23105016666666667, + 0.31155580666666666, + 0.33134248666666666 + ] +}` + +const infuraFeesJSON = `{ + "low": { + "suggestedMaxPriorityFeePerGas": "0.001147792", + "suggestedMaxFeePerGas": "0.012370742", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 8000 + }, + "medium": { + "suggestedMaxPriorityFeePerGas": "0.008671", + "suggestedMaxFeePerGas": "0.0311169", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 6000 + }, + "high": { + "suggestedMaxPriorityFeePerGas": "0.01719798", + "suggestedMaxFeePerGas": "0.07331273", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 4000 + }, + "estimatedBaseFee": "0.005611475", + "networkCongestion": 0.84, + "latestPriorityFeeRange": [ + "0.000000482", + "0.065204826" + ], + "historicalPriorityFeeRange": [ + "0.000000001", + "1.90058518" + ], + "historicalBaseFeeRange": [ + "0.003818434", + "0.005734003" + ], + "priorityFeeTrend": "down", + "baseFeeTrend": "down", + "version": "0.0.1" +}` diff --git a/examples/gas-comparison/data/ethereum/data.go b/examples/gas-comparison/data/ethereum/data.go new file mode 100644 index 0000000..991dcce --- /dev/null +++ b/examples/gas-comparison/data/ethereum/data.go @@ -0,0 +1,33950 @@ +package ethereum + +import ( + "encoding/json" + "gas-comparison/data" + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" + "math/big" +) + +// GetGasData returns the gas data fetched from Ethereum Mainnet (Chain ID: 1) +func GetGasData() (*data.GasData, error) { + // Parse the embedded JSON data + var block ethclient.BlockWithFullTxs + err := json.Unmarshal([]byte(latestBlockJSON), &block) + if err != nil { + return nil, err + } + + var gasPrice *big.Int + gasPrice, err = hexutil.DecodeBig(gasPriceJSON) + if err != nil { + return nil, err + } + + var maxPriorityFeePerGas *big.Int + maxPriorityFeePerGas, err = hexutil.DecodeBig(maxPriorityFeePerGasJSON) + if err != nil { + return nil, err + } + + var feeHistory ethereum.FeeHistory + err = json.Unmarshal([]byte(feeHistoryJSON), &feeHistory) + if err != nil { + return nil, err + } + + var infuraFees infura.GasResponse + err = json.Unmarshal([]byte(infuraFeesJSON), &infuraFees) + if err != nil { + return nil, err + } + + return &data.GasData{ + LatestBlock: &block, + GasPrice: gasPrice, + MaxPriorityFeePerGas: maxPriorityFeePerGas, + FeeHistory: &feeHistory, + InfuraSuggestedFees: &infuraFees, + }, nil +} + +// Embedded JSON data +const latestBlockJSON = `{ + "number": "0x16816a5", + "hash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "parentHash": "0x53675c6fb6e1ecb1376e138ea584f9d20e94e1c9f8e6da036ad03d95432c0cd2", + "nonce": "0x0000000000000000", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "logsBloom": "0x7ff375fbdba96f76fef163b8f3ebdfffd7fff1f5f79f66ba16bda3fa75ffefcf7f7efffdf8bfaebfdbff5b75df2f65bff7fdbbeefedc7fbd9ff53ffff7fffcfbffb2b63a76fffffbe9fe6d7fe27d3bfd7f6f9ef7e6dffcfdfffefffdefe6fee3fd7ffd6feff7dfe77ffffbcfaeedfbfbff7b5dff24fffffe3fb6eefffc9fdfe6fb3bbffff6fb7faffdfbbdebcfebff6edf1fd7e7f9ffff9fe7f57d7e7ff7febfffffdbf7d6956bdd5f5f3fefffffffffbf7e7bf5f67de7fe9f7f77bc7f9deb77ff7c9cefeffe7fff7fffbcfeeffeffe6b7fdfe7ff73c6ff4fffb35cadafafffebff6ff7b77fffdebd3fc7feefdbdff71fdffde3f9bfeb7c5fbf5ffd7e2efdeb5", + "transactionsRoot": "0x085e4d97adcc1171fc04e1fcf662793cdce6ddecc17925fb5ab5137c746d4754", + "stateRoot": "0xa3d15d1eb8af99c5db054c15b376ee512ad444c774ebccfba01eaf8603f9a26e", + "receiptsRoot": "0xbfdc8631c23c22174dba943df24f9dc52d87114fd9ca7de4614ebc483165b609", + "miner": "0xdadb0d80178819f2319190d340ce9a924f783711", + "difficulty": "0x0", + "totalDifficulty": null, + "extraData": "0x4275696c6465724e6574202842656176657229", + "size": "0x2d119", + "gasLimit": "0x2ad4d44", + "gasUsed": "0x21ff854", + "timestamp": "0x68f2770b", + "baseFeePerGas": "0x2af9d41c", + "withdrawalsRoot": "0xdb2ed07ba105fac41b8041d8f9be9001084524f4bb2a8a8cb3ad4db15e90db44", + "blobGasUsed": "0x100000", + "excessBlobGas": "0x80000", + "transactions": [ + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x38c54fe0feb2388d1c89bcfade6f8e11bccc493c", + "gas": "0x26a9b", + "gasPrice": "0x2317ac301c", + "hash": "0x3c71e45875e30e74b2d3f1dc8be144861fc5aa37581072ad3952ca6b107ced6b", + "input": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f2770c0000000000000000000000000000000000000000000000000000000000000003100404000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000380000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070c0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000002c68af0bb1400000000000000000000000000000000000000000000000000000000158306cd430c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c68af0bb1400000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000158306cd430c00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede5400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x17", + "to": "0x66a9893cc07d91d95644aedd05d03f95e1dba8af", + "transactionIndex": "0x0", + "value": "0x2c68af0bb140000", + "v": "0x1", + "r": "0xa480198d77b82ec47b2e6676994c9719de106b2f5837a671213732b605781936", + "s": "0x1ad76f555d6e5cc9947a3dbd62fecf3a5caf6b28e0d529699c51ae39d368554b", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x232c058745", + "maxPriorityFeePerGas": "0x22ecb25c00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xeb0f9a96ea7d3e45daf53ed2ffee3e19d26cc594", + "gas": "0x47a3d", + "gasPrice": "0x1909a901c", + "hash": "0x258d6e1ad71173de5c53c9d6e2e510072d9d25407348a648a09b76ee515515a6", + "input": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f2770c00000000000000000000000000000000000000000000000000000000000000050a02100404000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000006e00000000000000000000000000000000000000000000000000000000000000160000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede54000000000000000000000000000000000000000000000000000010b4da4fac63000000000000000000000000000000000000000000000000000000006919fcfa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066a9893cc07d91d95644aedd05d03f95e1dba8af000000000000000000000000000000000000000000000000000000006919fcfa00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000004159e075e886cbc2884c9beb1ce3e2d07446d0f805b4d13f13219e870c0688b2cb04603cccb0c3b4d91704b851bafe30664287c66f231d7dbeb5a77da635d24c671b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000010b4da4fac6300000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000010b4da4fac630000000000000000000000000000000000000000000000000197d44e93f051890000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000197d44e93f051890000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede54000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xab", + "to": "0x66a9893cc07d91d95644aedd05d03f95e1dba8af", + "transactionIndex": "0x1", + "value": "0x0", + "v": "0x1", + "r": "0xdf1891bd76a0311c47bb52accd2b481a6672624f02bfed0aa4bd839ce32bb7ff", + "s": "0x12258531885dd2c771ae50cbf3805fb55ac5c5a3ade617a286256f92c4ec6802", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x1a4f3e745", + "maxPriorityFeePerGas": "0x165a0bc00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x74308ed5a74e762e0856245ee643161b1dccf727", + "gas": "0x5208", + "gasPrice": "0x8462031c", + "hash": "0xb1abad4980f653323a14af944e405553a51f9e23d4946aa52b62ed65c80629d9", + "input": "0x", + "nonce": "0x1a", + "to": "0x46823759060dbb2d8d958edf1d400695d56e7b23", + "transactionIndex": "0x2", + "value": "0xa99e65e888700e", + "v": "0x1", + "r": "0xeb1d167b7dbf16445e6efdf124631df26a1b7d34b4d6e8fb9e3581746fc16367", + "s": "0x682ca21f0059369ebcc2890cfd3b9d943f6a22c6552bc7154bf97b80b411f407", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xf2238945", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x105359f19a6e82cd9d56e97680c8858f9e925328", + "gas": "0x4fa03", + "gasPrice": "0xf4d471e1c", + "hash": "0x4ece24d26cb024b73fa4b9eb611650e3af404232a584a86230462cdcb8ffdc2b", + "input": "0xcae6a6b300000000000000000000000000000000000000000000000006f05b59d3b20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aa35e37e55fafc3f1a2dc488daa283ed870f23f4000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000068f2770b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000060b0c100404040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000030b060e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede54000000000000000000000000105359f19a6e82cd9d56e97680c8858f9e92532800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000105359f19a6e82cd9d56e97680c8858f9e925328000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105359f19a6e82cd9d56e97680c8858f9e92532800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede54000000000000000000000000105359f19a6e82cd9d56e97680c8858f9e9253280000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x177", + "to": "0x3a10dc1a145da500d5fba38b9ec49c8ff11a981f", + "transactionIndex": "0x3", + "value": "0x6f05b59d3b20000", + "v": "0x0", + "r": "0x1312d4e6fbd3a8dcdb59e7b78f478ad732ce08e2fa6c46bf646df40137614ece", + "s": "0xcd9b155d8eb3bf9d69d20f1329ca0de7bab821d8df4181522b1a297526ac34a", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xf4d471e1c", + "maxPriorityFeePerGas": "0xf224d4a00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9ec7bfd589c1dcd4dde3bcc5a298cc4bc33b6ce6", + "gas": "0x7e57c0", + "gasPrice": "0x42521d37", + "hash": "0x7cf63e5f7f2d1cce078664768e049cea991cd8978aaa45a72dfbc829759cb312", + "input": "0x6aac3a0b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000008200000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000000001760000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000e59ad4aa26e1c9055114a5173533e4952f8cdc0a000000000000000000000000e8f25038eabf81165c7dd024633a287ee7e18495000000000000000000000000e12b76b6551da26b886b65a3dc62b6aeb69de91600000000000000000000000038a5f938ba323d1180076ce94e32696a04889d1c000000000000000000000000f113ab67d7765d48b09d21ebd0d65885665ffb7600000000000000000000000039ab7f12adacc761b09f6e27c3f365559e92c1b50000000000000000000000001a54fa9799d7a9081e0894ceda83a7c10904ddc400000000000000000000000030d22a6c055865be951771cc48b2c599c1256ad10000000000000000000000006694329f4db9c3ae3a45531fae302a9a103bd0350000000000000000000000001f1a6b3cfc746ad301c81c95ffea7bb110aa77af0000000000000000000000000e27db95b5bd4f50d76460b570462f1077cf7e57000000000000000000000000814075407f8ae09589b8ac604ea463a1f3b64667000000000000000000000000a434ea315ddd74e49169a094c49a559bcce9facf000000000000000000000000dd73b64805d77fc58513435623d2f76cf4793d440000000000000000000000009030a6700d0cb6ec5d78d58aa286d8cbc63fb6d2000000000000000000000000b142fb01493d53c6e2ae77efc05a7023c2ce493100000000000000000000000088000dbed8b23acdcf785834540449bf8824b7f2000000000000000000000000c1a6d2b636bdf5875f6bc087ef1fe85b9c1525a5000000000000000000000000d4fa18097968012c92706567351e6ea76021dee70000000000000000000000001ff66c3c563f9069ba2bdcc0704e1a378c87c61100000000000000000000000020877f4c051719e68a7bce30e0c53f463d7a10000000000000000000000000000eb154b9391ab2518c8353c9e907dc58a8753b36000000000000000000000000e4f1b419ac9fb7612ed54c9d80adcfeff18f3fc400000000000000000000000073ea44bc4bc03d56862b421b4204fa005a7050b000000000000000000000000002104c7c878c73a98482413e8404f104f846b6840000000000000000000000004ef31d6b9a47b4fc07d65d317bec39d24e71683d0000000000000000000000007ff42af8376d70f1696243cf301d1ac10dab4085000000000000000000000000791743ce3ccbf05eae101eb0986761f0733c97c80000000000000000000000005f1dba7e2fd46f3d6fc2ef7a150adc88190dca4a0000000000000000000000007f7772a6962213e587b7c8fa43952c4be422a29e0000000000000000000000005d3445aef5ebf3beb0692867f523d33cb7f61db6000000000000000000000000c1e86a91e58e29c798291b5d04b79a3fcce4fed00000000000000000000000004da7417159bfb1bcafff5619ab34d620209a874d0000000000000000000000000a51f357327b180b9f5183467ee5a4b1605bc0be000000000000000000000000a398389c47c72beed0c8c401f98e01948c7fb5b2000000000000000000000000c9da10b24ee5d444357ceda5c7856147590849c3000000000000000000000000528a7d8cc775ffef9c2d71f2f6ad86178b116cd5000000000000000000000000c5fa9e14ca0e4c43445b286a434e79ac082a1ba500000000000000000000000041b304c563d1240016709b2ccc8da6a7997d94880000000000000000000000002c52828f16427d09da253737527709063bdd31fa000000000000000000000000ae508e11bc968d4717620581f76747b0923629820000000000000000000000006c1940ff548e3edc5deae2544c49989ce34c466e000000000000000000000000bbfd8db01d8eea51671f795448c8bcb35000abe90000000000000000000000000f405e63becd425c1608b5bec8bf54aefbecc0b90000000000000000000000006ad587de58c98516254a7dbcade0d75abc65a3a3000000000000000000000000defe4029201733be49876b03c2b1d1457ea1bc8900000000000000000000000059de4af7943d70d3729a8284132ca4e24402bbb400000000000000000000000080580f9b2523ed685c6e8924db542aaacf37a67600000000000000000000000013e1ea67181bea7c956ec70e23f62e999a129d0d0000000000000000000000007d33d17ba659e9d7683b72943b07a08fd914c4b100000000000000000000000091e3c5dba631b30a5b01f2261c4300f3037599780000000000000000000000000e30e059366851d21c4739d44ffe34b2768793240000000000000000000000001d652baef61be0e1b8517d4e4c3447add505192e000000000000000000000000c380b15af217ede3735125c8f622dfe500d901f400000000000000000000000094c11ec14df11097e331dde78bce02fafa44f860000000000000000000000000cf66b60ad7bdfefa30b37dd4a1ce13ffde80d52b0000000000000000000000005c34ba6a39cface163939e940ea688a8aaa48f9300000000000000000000000014e6c20c8f4506dce85ce90e60dfc598f57db527000000000000000000000000eebd4af63fd55b05458ec36e3edf8ce0421411fd00000000000000000000000065587d62323b1d6f3bc8795ce7ebea749dd847c1000000000000000000000000000000000000000000000000000000000000003c00000000000000000000000000000000000000000000000000000000000004650000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000183100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000004ce00000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000113000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000ecc00000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000f3c000000000000000000000000000000000000000000000000000000000000204400000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000042400000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000009c400000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000007200000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000129800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000009970000000000000000000000000000000000000000000000000000000000000db600000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000008c70000000000000000000000000000000000000000000000000000000000000a8c00000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000207500000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000023280000000000000000000000000000000000000000000000000000000000001e18000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000003c00000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad000000000000000000000000000000000000000000000000000002e8d02e18ad0", + "nonce": "0x1d6c", + "to": "0xf695f6bb9c63389083c7ee8a6045c0894c309d80", + "transactionIndex": "0x4", + "value": "0x0", + "v": "0x1b", + "r": "0x1882392612fd2c2ea42c7ae8e413957c6951f10d074d9dcf2b052e9363824db6", + "s": "0x492b036fded76c37712d61b2075f551b261f6d9e6aed8905d98d776f630c750c", + "type": "0x0" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6d2baa30b9c2d2964098392a700dca169502fe20", + "gas": "0x1414fb", + "gasPrice": "0x8462031c", + "hash": "0xf559807f1aa31cccd889e4cf79a8df6e9d33e9228e072d0a7f3a28d019adcb67", + "input": "0x41212e9e0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001a556e6973776170563345786368616e6765416461707465725632000000000000", + "nonce": "0x2d", + "to": "0x9865f79bb187e81bccb8d3d10d314b9ae4e1ed3b", + "transactionIndex": "0x5", + "value": "0x0", + "v": "0x0", + "r": "0x1544f957542b01afb342b9df540cae9b7430848ec3d2da3e579464edf4254f12", + "s": "0x2e9d6a15afd04c70da23549cebed3073652c1b27090b1ae7804cf85d86d262dc", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xb7b58162", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb568c1f18d80cbafb3267976c0b95efe76b2b38f", + "gas": "0x4f45b", + "gasPrice": "0x154ffc61c", + "hash": "0x81d8a07afbb2a99d571ac2a39aa17abfbd31b31bb2f510047dc90e1560a544d7", + "input": "0xcae6a6b3000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008732afea11f2183aa43c520a11a6bad6c8452943000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000068f2770b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000060b0c100404040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000030b060e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede54000000000000000000000000b568c1f18d80cbafb3267976c0b95efe76b2b38f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000b568c1f18d80cbafb3267976c0b95efe76b2b38f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b568c1f18d80cbafb3267976c0b95efe76b2b38f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede54000000000000000000000000b568c1f18d80cbafb3267976c0b95efe76b2b38f0000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x15f", + "to": "0x3a10dc1a145da500d5fba38b9ec49c8ff11a981f", + "transactionIndex": "0x6", + "value": "0x16345785d8a0000", + "v": "0x1", + "r": "0x1251e54f639370d4764de5326310823224d46f5733000f1b0d91fc0fa7774428", + "s": "0x31568f56d5a229c9c050b3606d375ff148d1a6b2f4508a49b2f9ab6323c6d159", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x154ffc61c", + "maxPriorityFeePerGas": "0x12a05f200", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6aa065a9b4408c054b8dcc24bad1049c8e318722", + "gas": "0x4b69e", + "gasPrice": "0x154ffc61c", + "hash": "0x8e1b0becad9d46c8d06efe6b6a78b9c51f3646e2a92b0d733dcff0325604f6bb", + "input": "0xcae6a6b30000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000068f2770b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000060b0c100404040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000030b060e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000006aa065a9b4408c054b8dcc24bad1049c8e31872200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006aa065a9b4408c054b8dcc24bad1049c8e3187220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006aa065a9b4408c054b8dcc24bad1049c8e31872200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000006aa065a9b4408c054b8dcc24bad1049c8e3187220000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x5a", + "to": "0x3a10dc1a145da500d5fba38b9ec49c8ff11a981f", + "transactionIndex": "0x7", + "value": "0xde0b6b3a7640000", + "v": "0x1", + "r": "0x74f9910a8bb49586f334761329d208e62bbec04f3063c6fbf3676ae552154539", + "s": "0x720e5ab3599b377964a3e179830ac37926caa84662ce2581dc26e71189db6f79", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x154ffc61c", + "maxPriorityFeePerGas": "0x12a05f200", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x148c67ace132281d83a7bc72eaffb884cecf2f56", + "gas": "0x4f956", + "gasPrice": "0x154ffc61c", + "hash": "0xe8bc5a61c7dcb9639b6c49240522ec4f5de9214384fbd22ea022b9bdd4ce0055", + "input": "0xcae6a6b300000000000000000000000000000000000000000000000006f05b59d3b20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ebf893fe2d89611a579a707a701cfff22c2f81cb000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000068f2770b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000060b0c100404040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000030b060e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede54000000000000000000000000148c67ace132281d83a7bc72eaffb884cecf2f5600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000148c67ace132281d83a7bc72eaffb884cecf2f56000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000148c67ace132281d83a7bc72eaffb884cecf2f5600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede54000000000000000000000000148c67ace132281d83a7bc72eaffb884cecf2f560000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x644", + "to": "0x3a10dc1a145da500d5fba38b9ec49c8ff11a981f", + "transactionIndex": "0x8", + "value": "0x6f05b59d3b20000", + "v": "0x0", + "r": "0x549db5037e3bbd5e25af7cd67304b9eb3e41ad0fb70ed3bdb64463a6d6ff93f1", + "s": "0x54fb35eb3fcae699888c5eb9be1255ceb181fed166623a9fc8832cc75d8e4a02", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x154ffc61c", + "maxPriorityFeePerGas": "0x12a05f200", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0a338782562e1740b9468f0855dd4c51f29defde", + "gas": "0xa1e81", + "gasPrice": "0x8462031c", + "hash": "0x85a7630e91a776b3b2a7c53997507017b56a0b21ac9fd5098c14fdf3acef399c", + "input": "0xc32e720200000000000000000000000000000000000000000000238ddce551429e02c5700000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x60a", + "to": "0xfa7c7863a798cf209b40127da4d054a6c34ec211", + "transactionIndex": "0x9", + "value": "0x0", + "v": "0x0", + "r": "0xbf7625fc852a7b18e0d20dfd51b72b8f465fb83e6e0e3e5ac9daa4749860e6e6", + "s": "0x59d2906ba407647d4f397ffaf9b0ca877d6836d7cdcbc5c9dfc0f2ca4b501108", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5b0051e4ea8eaf6ec523ab2aa76fe0149e68b040", + "gas": "0x4b69e", + "gasPrice": "0x154ffc61c", + "hash": "0x0b0d98f228e4962abb548354447209299a8698ab189429a7ffd88752c96e58b6", + "input": "0xcae6a6b30000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000068f2770b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000060b0c100404040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000030b060e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000005b0051e4ea8eaf6ec523ab2aa76fe0149e68b04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000005b0051e4ea8eaf6ec523ab2aa76fe0149e68b0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b0051e4ea8eaf6ec523ab2aa76fe0149e68b04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000005b0051e4ea8eaf6ec523ab2aa76fe0149e68b0400000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1097", + "to": "0x3a10dc1a145da500d5fba38b9ec49c8ff11a981f", + "transactionIndex": "0xa", + "value": "0xde0b6b3a7640000", + "v": "0x0", + "r": "0xeac1f5a5bf2e31bab6a990be2c46707f19014fd108b666152bd54262e00f7da4", + "s": "0x340efb9f3dc63ca64048994753ff693f8b4c0aafd0f0edd8f6dd78e46138d69d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x154ffc61c", + "maxPriorityFeePerGas": "0x12a05f200", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1c7779a134f407b8c4307d71ca7b65e586f8fbec", + "gas": "0xc368b", + "gasPrice": "0x8462031c", + "hash": "0x3e6c3a7fc8c22ec907a4e49eee7c2a763c77f858320925c00dd847248bb6ad47", + "input": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000cd5fe23c85820f7b72d0926fc9b05b43e359b7ee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae0000000000000000000000000000000000000000000000000cdb8c12259d0fe8000000000000000000000000000000000000000000000000000000000000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000005c44666fc8059bbc415e2a411bd58b514db78ccbaf5d4e4dc40f0eea2b7f7d21b8ada27d2b300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000001c7779a134f407b8c4307d71ca7b65e586f8fbec0000000000000000000000000000000000000000000000cc4ebbc62e17e9c28f0000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f6a756d7065722e65786368616e67650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a30783030303030303030303030303030303030303030303030303030303030303030303030303030303000000000000000000000000000000000000000000000000000000000000000000000ac4c6e212a361c968f1725b4d055b47e63f80b75000000000000000000000000ac4c6e212a361c968f1725b4d055b47e63f80b75000000000000000000000000cd5fe23c85820f7b72d0926fc9b05b43e359b7ee0000000000000000000000004c9edd5852cd905f086c759e8383e09bff1e68b30000000000000000000000000000000000000000000000000cdb8c12259d0fe800000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003445f3bd1c8000000000000000000000000cd5fe23c85820f7b72d0926fc9b05b43e359b7ee0000000000000000000000000000000000000000000000000cdb8c12259d0fe80000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae0000000000000000000000004c9edd5852cd905f086c759e8383e09bff1e68b30000000000000000000000000000000000000000000000cc4ebbc62e17e9c28f000000000000000000000000d2b37ade14708bf18904047b1e31f8166d39612b00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002246be92b89000000000000000000000000cd5fe23c85820f7b72d0926fc9b05b43e359b7ee0000000000000000000000000000000000000000000000000cdb8c12259d0fe80000000000000000000000004c9edd5852cd905f086c759e8383e09bff1e68b30000000000000000000000000000000000000000000000cd558fb14e7c6000000000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000e20199f3204741000301cd5fe23c85820f7b72d0926fc9b05b43e359b7ee01ffff01202a6012894ae5c288ea824cbc8a9bfb26a49b9300d2b37ade14708bf18904047b1e31f8166d39612b00cdb92cddef2c01c02aaa39b223fe8d0a0e5c4f27ead9083c756cc201ffff01c7bbec68d12a0d1830360f8ec58fa599ba1b0e9b01d2b37ade14708bf18904047b1e31f8166d39612b00ddef2ce1941001dac17f958d2ee523a2206206994597c13d831ec701ffff0bf063bd202e45d6b2843102cb4ece339026645d4a00d2b37ade14708bf18904047b1e31f8166d39612be19410cd5638000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x108", + "to": "0x1c7779a134f407b8c4307d71ca7b65e586f8fbec", + "transactionIndex": "0xb", + "value": "0x0", + "v": "0x0", + "r": "0x8eb80505a9b76c2c60f302bf3487fab5b83913d48ee9df61d8879f7c0c6046c3", + "s": "0x64e65f12b6636677e511921f76e7048364c1d86fe1b80a6e3f7da899c14b89cb", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9bd325f0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0b5f23a88e93e73e6b9f3f20de5a1e799732e1ef", + "gas": "0xb62c", + "gasPrice": "0x8462031c", + "hash": "0x1b7ef4347067d858ea8c8c755e47568c9c973685800c190d6c48b04a57ddbec7", + "input": "0x095ea7b3000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c00000000000000000000000000000000000000000000000a25a434e275a4be96", + "nonce": "0x25", + "to": "0x9813037ee2218799597d83d4a5b6f3b6778218d9", + "transactionIndex": "0xc", + "value": "0x0", + "v": "0x1", + "r": "0xb29bcca3ef3e109ee3f30cc03782b086f89d7437239288335ee712bae3a99cdc", + "s": "0x7a0abc2301e18e1cd87a8048d49aef1360c3daff5d82ae3e1479aa083eb4db32", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0b5f23a88e93e73e6b9f3f20de5a1e799732e1ef", + "gas": "0x77c18", + "gasPrice": "0x8462031c", + "hash": "0xa400e793cdc712d89a59ab250cfca814a242c6d19d5872beabe8441195a9f901", + "input": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000009813037ee2218799597d83d4a5b6f3b6778218d900000000000000000000000000000000000000000000000a25a434e275a4be9600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a00000000000000000000000009813037ee2218799597d83d4a5b6f3b6778218d90000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c5300000000000000000000000000000000000000000000000a25a434e275a4be9600000000000000000000000000000000000000000000000112f9edefc66338460000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000027a10b7671b988e000000000000000000000000f326e4de8f66a0bdc0970b79e0924e33c79f1915000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006642213bc0b000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece0000000000000000000000009813037ee2218799597d83d4a5b6f3b6778218d900000000000000000000000000000000000000000000000a25a434e275a4be96000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005841fff991f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0005850de84b038750d21b3be00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000f7d31825946e7fd99ef07212d34b9dad84c396b70000000000000000000000009813037ee2218799597d83d4a5b6f3b6778218d900000000000000000000000000000000000000000000000a25a434e275a4be9600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2781e00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4103b48be000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece0000000000000000000000009813037ee2218799597d83d4a5b6f3b6778218d90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f7d31825946e7fd99ef07212d34b9dad84c396b70000000000000000000000000000000000000000000000000000000000001e0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4103b48be000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000002710000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb110000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e48d68a15600000000000000000000000074de5d4fcbf63e00296fd95d33236b979401663100000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000001183bf5a0ff9fee68000000000000000000000000000000000000000000000000000000000000002c6b175474e89094c44da98b954eedeac495271d0f000001f44fabb145d64652a948d72533023f6e7a623c7c530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1", + "nonce": "0x26", + "to": "0x881d40237659c251811cec9c364ef91dc08d300c", + "transactionIndex": "0xd", + "value": "0x0", + "v": "0x0", + "r": "0x42ce55068cbf4df03258442d4617d95ff003546b46f525707627c4edbd4756d5", + "s": "0x28702af6b90bc6dbe1b9e2239ff69a5f0c52744cb1da4f959415ba24dd0741a2", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x72eb30d3ca53f5e839325e2eacf535e70a9e6987", + "gas": "0x5e7c4", + "gasPrice": "0x8462031c", + "hash": "0x55b655f1bc17d3327a55baeb9fe5b5610de2b02d4914c661de547a0cf0e46c4d", + "input": "0x38ec89950000000000000000000000002feeced99b3b7dea3d63f39371627ea8b55cbdbc00000000000000000000000000000000000000000000000000000000f69eb0f0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000072eb30d3ca53f5e839325e2eacf535e70a9e698700000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f7bc88000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000002b7970536b7a754a4e445947427058443772746c68454e39705865495035312d36626a7078523236423256670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000002feeced99b3b7dea3d63f39371627ea8b55cbdbc00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000efc305ff8fba6393bd89d3af1e492fc1a4b1eb858aca16b45e4c1c938b982a0f", + "nonce": "0x5b0", + "to": "0xfc29813beeb3c7395c7a5f8dfc3352491d5ea0e2", + "transactionIndex": "0xe", + "value": "0x0", + "v": "0x0", + "r": "0x552015e3dad83a16166abcceead7114126e81d7e23fddbb95c2b0531425bbd0", + "s": "0x11d5096a90612c9fc819501299cdc14a90f8edbadb59021bd7f17c476270bf73", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9cd53a8c", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbeeec612beb3ce8f380b4bce1451dd1882fd7502", + "gas": "0x6a569", + "gasPrice": "0x2af9d41c", + "hash": "0x33e7a8995a7dddb6fcf8539c6970bcdf3c6e6b34a26fdd6b387f2a488e4110d4", + "input": "0x0632d0b500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000400000000000001c79661464a1535db01d1425685789dcc9228d47c7a5c049388d80000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000068f276dd0000000000000000000000000000000000000000000000000000000068f2775500000000000000000000000055555535a287325d4a2a3da8c9f42f5a185d303c000000000000000000000000000000000000000000000000000000000000006400000000000000000000000068749665ff8d2d112fa859aa293f07a622782f3800000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000020000000000000000000000000035db01d1425685789dcc9228d47c7a5c049388d80000000000000000000000002d8774566867f7f4c9d64251afd3b3367cc297d7000468324fb45db5e5cf14be7031cc9e6bac128f367cb9b08ce33ecc99278e410000000000000000000000000000000000000000000000000000000068f27761000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000f957689600000000000000000000000000000000000000000000000000000000f81840620000000000000000000000002d8774566867f7f4c9d64251afd3b3367cc297d70000000000000000000000000000000000000000000000000000000000000041eec7a9e8e44b4620874a09dd45d781e7b2cd1615020f424ad33b91f9f8c7040400928ce03bfd2195889808a701a25a068253e5815e9b844642a40a9aba3515a31b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000006131b5fae19ea4f9d964eac0408e4408b66337b500000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000604e21fd0e900000000000000000000000000000000000000000000000000000000000000200000000000000000000000006e4141d33021b52c91c28608403db4a0ffb50ec6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000005c000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000068749665ff8d2d112fa859aa293f07a622782f38000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000beef02961503351625926ea9a11ae13b29f5c5550000000000000000000000000000000000000000000000000000000068f2771900000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004063407a490000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e00000000000000000000000006e4141d33021b52c91c28608403db4a0ffb50ec60000000000000000000000006546055f46e866a4b9a4a13e81273e3152bae5da00000000000000000000000068749665ff8d2d112fa859aa293f07a622782f38000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000010009046d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068749665ff8d2d112fa859aa293f07a622782f38000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000beef02961503351625926ea9a11ae13b29f5c55500000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000f95c8f940000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000010000000000000000000000006e4141d33021b52c91c28608403db4a0ffb50ec6000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x91f", + "to": "0xbeef02961503351625926ea9a11ae13b29f5c555", + "transactionIndex": "0xf", + "value": "0x0", + "v": "0x0", + "r": "0x21c1d4717bd8b0ac5afbb7c6b38b89186e8f0757afc526a837fda9bb22e61f0b", + "s": "0x43b5854907101432cd934ff1aeaad855f54e85c9c4cd9eb848b24993de745ff", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2af9d41c", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x191be49e488efc7cc3133b4d883ab46753892a87", + "gas": "0x705e7", + "gasPrice": "0x8462031c", + "hash": "0xe7b0105605387254d00e2d2d21e1785a1fb8b9ce90e74d7a4f64f4f40e66627c", + "input": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000003d0b9f5000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000880000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000003d0b9f50000000000000000000000000000000000000000000000000000000003c4c36cf0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000088f1a0000000000000000000000000f326e4de8f66a0bdc0970b79e0924e33c79f1915000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000007442213bc0b000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000003d0b9f50000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000006641fff991f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a028c0e3b5a710d3f0e434098b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000048000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000003d0b9f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2782300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001646c5f9cf9000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037271001eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000d1b71758e21960000137e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000024d0e30db00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e48d68a15600000000000000000000000074de5d4fcbf63e00296fd95d33236b979401663100000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000003c8620e0000000000000000000000000000000000000000000000000000000000000002cc02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000064a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5", + "nonce": "0x76", + "to": "0x881d40237659c251811cec9c364ef91dc08d300c", + "transactionIndex": "0x10", + "value": "0x0", + "v": "0x1", + "r": "0x14f77a2bf65025311da747167903c54d269a7884e539120b1331efcb58cda40f", + "s": "0x68cfb1d1475ef41666952e97eb11007d49da0070f17253447e27760d42a48e99", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x7830c87c02e56aff27fa8ab1241711331fa86f43", + "gas": "0x1e8480", + "gasPrice": "0x66949e1c", + "hash": "0x25a3ca51c3005d813375d7e95d207d92ad511175e5d13e1b3239e7fb51cf4662", + "input": "0x1a1da07500000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000015694000000000000000000000000000000000000000000000000000000000000001700000000000000000000000032529c8cdafd3fae8c28c346156ec5a395817f4200000000000000000000000000000000000000000000000000be429b37e2d000000000000000000000000000fc4eb2749447764ad6acc00391db232f031ee32e0000000000000000000000000000000000000000000000000011048fbce464000000000000000000000000005c16b8ef169cf962967f93e40c35f34f8e61410a0000000000000000000000000000000000000000000000000012116d21fb0c00000000000000000000000000172e37ed3519e2bbcb8dbd47ce53bf748b9682a1000000000000000000000000000000000000000000000000010ae95624dda80000000000000000000000000050f04c1b1488c044b81e8558eb35b825169abf390000000000000000000000000000000000000000000000000000f05c7b857000000000000000000000000000d435ef86092565bbc6b4ab1e967f8890a247a174000000000000000000000000000000000000000000000000006d782902f404000000000000000000000000006937d78300ef481cb7ff7d337b2e71cabdb3cb6400000000000000000000000000000000000000000000000000f914a0c8f86c00000000000000000000000000de964e8879cf4a4489f721fe1956896c59db78b60000000000000000000000000000000000000000000000000022bd9cb78a3c00000000000000000000000000bbd81d2f00649ff7ca3a9e5905a3d62cbc7fcaf1000000000000000000000000000000000000000000000000001dc91a8149340000000000000000000000000018196dc488d15515b882193fce202877138739c3000000000000000000000000000000000000000000000000001a8ac0c8b2ec000000000000000000000000006e8bf3a8c5c240cb4ed5db24d18c8b6989a662d9000000000000000000000000000000000000000000000000000a0f7184bff40000000000000000000000000004945e38fbdd142b29892a237c00900095d5c9a500000000000000000000000000000000000000000000000000eaba166b261c00000000000000000000000000e4f42b1f0b35e7fd8e4ff746de961f1881af441f000000000000000000000000000000000000000000000000001a885a1c6fcc00000000000000000000000000b7c2470cc23a07bcfa9bb1da266a2fa4ae3f5d9a000000000000000000000000000000000000000000000000002ee035a8e294000000000000000000000000005e7d7e834f3e9d0a566671a28057acb60f76a3cf000000000000000000000000000000000000000000000000000077b08340a000000000000000000000000000ffe6d327ce90229bd5a81fe2c3e6555e7e9c3088000000000000000000000000000000000000000000000000005d817dc465ec000000000000000000000000000f86ae36e2c501ff895fa691b5d40503caa53d73000000000000000000000000000000000000000000000000005618938ce20c000000000000000000000000003d8b5ee256752c432072cc3e04553b6480e7f41a000000000000000000000000000000000000000000000000005dc06b51c52800000000000000000000000000b97381a811b0d775a61ddfdbf0762e49d133d1900000000000000000000000000000000000000000000000000008e90ee554340000000000000000000000000004cf4a162ae26121669419813c5a5a4a9ad0c2f60000000000000000000000000000000000000000000000000058c56d06661c0000000000000000000000000038b2233f61e0a99b73d50de9e24c2440a9e5dc55000000000000000000000000000000000000000000000000001a837ecba2340000000000000000000000000083c9f6fa433f876c3faa1ab4343b21a3a3d3afaf000000000000000000000000000000000000000000000000004c8534c9c600000000000000000000000000007e11f671ad5269dfe39d494cafe3af13727491f900000000000000000000000000000000000000000000000000464f8bbf671c00", + "nonce": "0x2ac055", + "to": "0xa9d1e08c7793af67e9d92fe308d5697fb81d3e43", + "transactionIndex": "0x11", + "value": "0x0", + "v": "0x0", + "r": "0x492783f8a65356656b24b659ce8626e5333543a7a3cf028cad8fc9f2400174de", + "s": "0x495508cf266c49305278d0ff4bc30ad1f386ea72fa8cdaac0988f296a122b81a", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xb2d05e00", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x7830c87c02e56aff27fa8ab1241711331fa86f43", + "gas": "0x1e8480", + "gasPrice": "0x66949e1c", + "hash": "0xcb5d404f0eb6740235a90d499a1f452f7edb36b89fc05ebbf5a9a3ece438c15c", + "input": "0xca350aa60000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000003d090000000000000000000000000000000000000000000000000000000000000001800000000000000000000000045804880de22913dafe09f4980848ece6ecbaf78000000000000000000000000eae7380dd4cef6fbd1144f49e4d1e6964258a4f4000000000000000000000000000000000000000000000001d5116a3fa66e1800000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000d017575eb133f62df42604f985d1067de4c07c030000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000001bb4a4d451aea3d39d04d9335348d301e5da66f0000000000000000000000000000000000000000000000000000000000a6802e000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000004c41437f0a01fd3e93877ff0d78863a4d0460720000000000000000000000000000000000000000000000000000000005fa9bf0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006bede224f45ff949be724268ff28bfb66e5c863d00000000000000000000000000000000000000000000000000000000122dee40000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000d650da78118c88b1ec6cdc19e8c67a0ccbf60a59000000000000000000000000000000000000000000000000000000000097b849000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c0fe73a5fca255f0f7f55f03261dff7772658ed7000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000edbcb57fcce533caa216f6a539d1395532c975470000000000000000000000000000000000000000000000000000000008f0d180000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006d87c0a9144779e8486312cd0f9cc9e48c7b5e57000000000000000000000000000000000000000000000000000000001443fd00000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000ca911d709040eed906db4d8f9719395ef3df2ee5000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000b443824a782b4e3f1883848639c54b2f5da8ad5f0000000000000000000000000000000000000000000000000000000002a6840e000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000007e5c7826be0d59dff479037345a485c60c108b0e0000000000000000000000000000000000000000000000000000000045806e68000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000002dab8de11c08414a1a5d61076b4995688d5ef39b000000000000000000000000000000000000000000000000000000001dc6422b000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000004a835308b9eb54b4ec06e0bf7033782e3372add700000000000000000000000000000000000000000000000000000000017d6c0b000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c19399c7649121e29aec197b1a82b9a64cd10eab00000000000000000000000000000000000000000000000000000000042bfa30000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000001289a5713b290b2581cf2e329390c06ce0bd32f00000000000000000000000000000000000000000000000000000000011ace25000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000ece61234a1d610387487feb69b2f5845afb743040000000000000000000000000000000000000000000000000000000008ab7458000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000238faaf95cd88896876ecae6399ef5d1bee46cf2000000000000000000000000000000000000000000000000000000001dccab79000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0d09dab6512249e0ada8f001e068635d646021000000000000000000000000000000000000000000000000000000000741253e4000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000085197fb6d067b87948c64d1d7d1454ecefab15d20000000000000000000000000000000000000000000000000000000000fdf384000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000d7fb0d899df517382fe4d33fede60e8743993a2d000000000000000000000000000000000000000000000000000000000017a5fe0000000000000000000000006e2a43be0b1d33b726f0ca3b8de60b3482b8b05000000000000000000000000095e63f78bd2fd5ea8a0d58182f3d998558881fda0000000000000000000000000000000000000000000007a333551455d49d6400000000000000000000000000152649ea73beab28c5b49b26eb48f7ead6d4c8980000000000000000000000000f9f949a30b97c42ace87aae6f24ee2607003e3700000000000000000000000000000000000000000000022afa899aed36c8e000000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000009e9df2d44ee5e421e75ad0b735598ddd3c47f5f00000000000000000000000000000000000000000000000004345a021934f000", + "nonce": "0x2ac056", + "to": "0xa9d1e08c7793af67e9d92fe308d5697fb81d3e43", + "transactionIndex": "0x12", + "value": "0x0", + "v": "0x0", + "r": "0xbc881e6a21c2f5e8d4babf9e35bab0e051c8ada61e20c62cdeab7dc6efdff37c", + "s": "0x4e4ad345557d70798d3da9a332aeb4ac4c6b85c1526fe9a392d3cccccc74baa7", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xb2d05e00", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xfe5d4f8e6bfdc08b5b0cacd8201d8f3aff1dbe6b", + "gas": "0xdc35", + "gasPrice": "0x8462031c", + "hash": "0x0e83dc4de0df82b48366e81a517464af17023f3fd03266fe69db472f710e6851", + "input": "0x095ea7b3000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c00000000000000000000000000000000000000000000000000000000073dc3f8", + "nonce": "0x26e", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x13", + "value": "0x0", + "v": "0x1", + "r": "0xcec7acf887080520880793d218b8156657e27188b9523cf9456975c4eb81d41", + "s": "0x189b6e1a321e7918b8c7c2ed6c03d5cdd6940f213fcf8fa39e860121353c221c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xfe5d4f8e6bfdc08b5b0cacd8201d8f3aff1dbe6b", + "gas": "0x55a97", + "gasPrice": "0x8462031c", + "hash": "0xba28d2a1f7cfb5732e4f191c23905e3c56a2a1cc36694ff031dfd2beecebdba7", + "input": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000073dc3f800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000073dc3f8000000000000000000000000000000000000000000000000006eb0edebdf43fa00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000ff3ddd996a73000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000007642213bc0b000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000073dc3f8000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000006841fff991f00000000000000000000000074de5d4fcbf63e00296fd95d33236b9794016631000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000070cec55e16f33800000000000000000000000000000000000000000000000000000000000000a044e25e61eefba478972de32600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000048000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000073dc3f800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2781f00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001646c5f9cf9000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037271001eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000d1b71758e21960000137e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000024d0e30db000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000002710000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000242e1a7d4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0", + "nonce": "0x26f", + "to": "0x881d40237659c251811cec9c364ef91dc08d300c", + "transactionIndex": "0x14", + "value": "0x0", + "v": "0x0", + "r": "0x724e58b7a5aae9469a1741ccf6420820e130ed26b7ef665746378144221c566a", + "s": "0x10a6c550e649a1a782e6b9965325bb094d0df359bacc49dcec5167f2a9b8e4e5", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x498a6fd0c10f91a805a0024ea7ddc709c0ec4cee", + "gas": "0xb5b3", + "gasPrice": "0x8462031c", + "hash": "0x1e0e58569cefa0a993f52394e46902989d8b8c90f6912bacf721ad49a8ef9e5a", + "input": "0x095ea7b3000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c000000000000000000000000000000000000000000000001a055690d9db80000", + "nonce": "0x81", + "to": "0x4e15361fd6b4bb609fa63c81a2be19d873717870", + "transactionIndex": "0x15", + "value": "0x0", + "v": "0x0", + "r": "0x5eb5012121a3ca50d9d872ba4697aba1632ce3ef028323ed822de135fc95ff83", + "s": "0x384cbc0410338d0f888428e6025bcbb92c6069fdc52506ab941b742c70c4e6c7", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x498a6fd0c10f91a805a0024ea7ddc709c0ec4cee", + "gas": "0x55751", + "gasPrice": "0x8462031c", + "hash": "0xc02e5045978af2ef76f58995d7fa2f9ceb0e638302c291f30c5f695f8a77e00d", + "input": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000004e15361fd6b4bb609fa63c81a2be19d873717870000000000000000000000000000000000000000000000001a055690d9db8000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004e15361fd6b4bb609fa63c81a2be19d873717870000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000019cb0d2b1a82dc00000000000000000000000000000000000000000000000000000000000004ad458000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000003a4965bf58a4000000000000000000000000000f326e4de8f66a0bdc0970b79e0924e33c79f1915000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a88770ba910000000000000000000000004e15361fd6b4bb609fa63c81a2be19d8737178700000000000000000000000000000000000000000000000019cb0d2b1a82dc00000000000000000000000000000000000000000000000000000000000004ad45808800000000000003b6d03400e26a21013f2f8c0362cfae608b4e69a249d5efc00800000000000003b6d03400d4a11d5eeaac28ec3f61d100daf4d40471f18527dcbea7c0000000000000000000000000000000000000000000000000e", + "nonce": "0x82", + "to": "0x881d40237659c251811cec9c364ef91dc08d300c", + "transactionIndex": "0x16", + "value": "0x0", + "v": "0x1", + "r": "0x4fb5aaa49c46b2fe49e3401886ec650c8c2923a0ba078aae357a164e8ed86de1", + "s": "0x5269840e1569a22c261695fdb7fa31a3ba5b15908db33d5f8bff452d5a5bd127", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd01c28faa34f5eebbe4ad0c27e115d01abb27d52", + "gas": "0xb565", + "gasPrice": "0x8462031c", + "hash": "0x54d8bc68737946fb92342bb43fbdcd3a49c0ddaa7457e7bc40d26434cf811439", + "input": "0x095ea7b3000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c0000000000000000000000000000000000000000000000056bc75e2d63100000", + "nonce": "0x5", + "to": "0x455e53cbb86018ac2b8092fdcd39d8444affc3f6", + "transactionIndex": "0x17", + "value": "0x0", + "v": "0x1", + "r": "0x72a7d6da223c68dde6bf053c7ae7f61e4f899c5e7fe52fd821fd9ff517a28ac7", + "s": "0x2889d69a2e260368749cb7d89ada9490b41674cbff8e8c6e2fcd92ee08ef9628", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd01c28faa34f5eebbe4ad0c27e115d01abb27d52", + "gas": "0x46a07", + "gasPrice": "0x8462031c", + "hash": "0xe52502c428c11a0099ae6a8a709773f2a540f5b05ce38463a69d168ab56dd0f7", + "input": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000455e53cbb86018ac2b8092fdcd39d8444affc3f60000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000455e53cbb86018ac2b8092fdcd39d8444affc3f6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000011143070000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000002761c000000000000000000000000f326e4de8f66a0bdc0970b79e0924e33c79f1915000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001e8cc713a04000000000000000000000000000000000000000068f2773900000000012527f80000000000000000000000009ba0cf1588e1dfa905ec948f7fe5104dd40eda310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000455e53cbb86018ac2b8092fdcd39d8444affc3f60000000000000000000000000000000000000000000000000000000001193fb30000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000005bbe470068f277390000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000056bc75e2d63100000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000411cba83c96e7ff51ce2838287e81580aca905396ad9985171b3a9b5b2203100acb77bc7709c599dd79333630d7456ed087ed0e203716cf957f2fd605aa15048ceb3000000000000000000000000000000000000000000000000000000000000007dcbea7c0000000000000000000000000000000000000000000000008d", + "nonce": "0x6", + "to": "0x881d40237659c251811cec9c364ef91dc08d300c", + "transactionIndex": "0x18", + "value": "0x0", + "v": "0x0", + "r": "0xe4a32e00d4f2ed3910786e4c1ea71593c17b2522c922865c515eb156de263124", + "s": "0x2cc2e39cd34c26fd6e1b310b130dfd1cd48fdebb56152b1668545cdc5a8f9b6a", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x15fee62ca21d316d482816e2ddeed7dfacbb9d70", + "gas": "0x57973", + "gasPrice": "0x7a010f2a", + "hash": "0x23e87cc3a0d54e356fb8905c2b15b5a6e483c5a2d2c331cfc1b5855dc4266b6b", + "input": "0x99e1d0160000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000066a9893cc07d91d95644aedd05d03f95e1dba8af0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004853593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f27e07000000000000000000000000000000000000000000000000000000000000000400080604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000e101e63ee82f4c8acc5e8f0e03da8b444be71c680000000000000000000000000000000000000000000000000000000002faf080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002ba0b86991c6218b36c1d19d4a2e9eb0ce3606eb480001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000b4c6fedd984bc983b1a758d0875f1ea34f81a6af0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000b4c6fedd984bc983b1a758d0875f1ea34f81a6af000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c00000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000060000000000000000000000000b4c6fedd984bc983b1a758d0875f1ea34f81a6af00000000000000000000000015fee62ca21d316d482816e2ddeed7dfacbb9d700000000000000000000000000000000000000000000000000000012e8cdd13360b000000000000000000000000000000000000000000000000000000", + "nonce": "0x2", + "to": "0x15fee62ca21d316d482816e2ddeed7dfacbb9d70", + "transactionIndex": "0x19", + "value": "0x0", + "v": "0x0", + "r": "0x32e9cea3c00698cff8c373e8ecbee13b8ecf710b5117168952f1227487cc86f1", + "s": "0x342949ca54b775256d08f006e8ad123d947af94e55649ecbf117eb20bd90b5f3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x7e2de43f", + "maxPriorityFeePerGas": "0x4f073b0e", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xcdd071d8744f9e55429619243413057e956b15f4", + "gas": "0xa78cb", + "gasPrice": "0x66a6d9d0", + "hash": "0xc5e78e8bdb78efd46a93cfce18abf74c09a165d6f581be8570f774fc1f0e2964", + "input": "0x25356bc700000000000000000000000000000000000000000000000041d5f144b61ab4010000000000000000000000000000000000000000000000000000000045639607000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000012f6af000000000000000000000000be0ed4138121ecfc5c0e56b40517da27e6c5226b00000000000000000000000000000000000000000000000248d21bf0b51989dc0000000000000000000000000000000000000000000000000000000068f27752000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001e4810c705b000000000000000000000000ce57c3984a549f28b5173ebae96d3e662f3760a7000000000000000000000000111111125421ca6dc452d289314280a0f8842a65000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000012f6af000000000000000000000000be0ed4138121ecfc5c0e56b40517da27e6c5226b00000000000000000000000000000000000000000000000125af2003c9a0b22f00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000c8ea76dddf0000000000000000000000006aba0315493b7e6989041c91181337b662fb1b90000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000012f6af00000000000000000000000000000000000000000000000125af2003c9a0b22f28800000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640200000000000000000000000d31d41dffa3589bb0c0183e46a1eed983a5e5978f9338bcb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x7c4", + "to": "0x6aba0315493b7e6989041c91181337b662fb1b90", + "transactionIndex": "0x1a", + "value": "0x0", + "v": "0x0", + "r": "0xcc03175f9b97c8fe2f414ba2d3664ff01591b382889a08e624070bfc35a87e6c", + "s": "0x845319d20f054ea292ccbcd4673fdec0659a7cf0cedefa5190992052d9a4ea3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x775a0b68", + "maxPriorityFeePerGas": "0x3bad05b4", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0c4c88c7554d79a7ea2609ed4062350b8599107b", + "gas": "0xdc29", + "gasPrice": "0x8462031c", + "hash": "0x404b0af808e98b2b5db00f5dfe04583a753d2e0659779bbc4e7fb5f2d70f847b", + "input": "0x095ea7b30000000000000000000000000439e60f02a8900a951603950d8d4527f400c3f1000000000000000000000000000000000000000000000000000000000485e6f4", + "nonce": "0x6", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x1b", + "value": "0x0", + "v": "0x0", + "r": "0x8eaccfc5ded4b38238daa4c7e84e8d45cc52a411f0369e71930c5a04d7236239", + "s": "0x566d4a7cf2bc9f36b5776efba70c62b61ddfc6af439aca62db29c8205a720681", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9cd53a8c", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0c4c88c7554d79a7ea2609ed4062350b8599107b", + "gas": "0x3352b", + "gasPrice": "0x8462031c", + "hash": "0xa8b7f60504808e8396fff4823472d0737f4a79dfa5ed7891c3cf14a6f41d643a", + "input": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000485e6f400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000f736f636b6574416461707465725632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000003a23f943181408eac424116af7b7790c94cb97a50000000000000000000000003a23f943181408eac424116af7b7790c94cb97a5000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e583100000000000000000000000000000000000000000000000000000000047bc541000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000a21b3000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de515200000000000000000000000000000000000000000000000000000000000002a4000001ad792ebcb900000000000000000000000000000000000000000000000000000000047bc541000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000003d5b00000000000000000000000000000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c4c88c7554d79a7ea2609ed4062350b8599107b0000000000000000000000000c4c88c7554d79a7ea2609ed4062350b8599107b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000047b87e6000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000068f2763f0000000000000000000000000000000000000000000000000000000068f2ca45d00dfeeddeadbeef765753be7f7a64d5509974b0d678e1e3149b02f40000000000000000000000000000000000000000000000000000000084", + "nonce": "0x7", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "transactionIndex": "0x1c", + "value": "0x0", + "v": "0x1", + "r": "0xa63f723760cb347cecfd1369d21e04427c1c43093576445bada856b72e0232b4", + "s": "0x28ba0311c14a57f7a932eea5cae65f45e458559ea9e47bcf74d6d6ea30dc2e0", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9cd53a8c", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3f58e480331a3c0b6e1eb3ed5e2726e790ced951", + "gas": "0x3dbec", + "gasPrice": "0x8a57e41c", + "hash": "0x793350be70e69d6f48e2d75083e0146a7ae5ad6173c050631c77618e4b268c37", + "input": "0x12aa3caf0000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a19000000000000000000000000068749665ff8d2d112fa859aa293f07a622782f38000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a1900000000000000000000000003f58e480331a3c0b6e1eb3ed5e2726e790ced9510000000000000000000000000000000000000000000000000000000000000e700000000000000000000000000000000000000000000000000000000000e8287b000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000002f200008200a07225b0d068749665ff8d2d112fa859aa293f07a622782f38b4f34d09124b8c9712957b76707b42510041ecbb000000000000000000000000000000000000000000000000000000000000000b90cbe4bdd538d6e9b379bff5fe72c3d67a521de500000000000000000000000000000000000000000000000000000000000000035120111111125421ca6dc452d289314280a0f8842a6568749665ff8d2d112fa859aa293f07a622782f38012456a758683b3885d52a42bf7789ef4db8f04af94f78500bf091e4fa5a08892cd4e8eadd47000000000000000000000000bee3211ab312a8d065c4fef0247448e17a8da0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000068749665ff8d2d112fa859aa293f07a622782f380000000000000000000000000000000000000000000000000000000000ea85cf0000000000000000000000000000000000000000000000000000000000000e62000000000000000000000000000006c5800068f2770d372978f1c5427640a1900000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000004198d98c2b61cfc38c4e5abfbce5df53d721d7d20ea08b32ec3dd3eddd360c57f1216d76fa7063a245ce5fb86048082eb28ab2ac85cdca9b632a7f98da709402cf1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000141111111254eeb25477b68fb85ed929f73a96058200000000000000000000000000000000000000000000000000000000854edd14", + "nonce": "0xd", + "to": "0x1111111254eeb25477b68fb85ed929f73a960582", + "transactionIndex": "0x1d", + "value": "0x0", + "v": "0x0", + "r": "0xf100f695357eccfddc36b859db77626c4480ae520c030b7777948dd33ef4b171", + "s": "0x1b8709919d9749f86cb6f2117725a0a13cc4c9597bf4c1cc7ccc0de38a1b63c9", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9b917080", + "maxPriorityFeePerGas": "0x5f5e1000", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x7e9c187b0369c5d3e9e1eca56999b45a7c7ac062", + "gas": "0x386a3", + "gasPrice": "0xa22f681c", + "hash": "0x6a4bb06834bc9fd894a462970f9f3084447c11510050a6f78f02f1c53fc259b3", + "input": "0x0193b9fc00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000002540be40000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000068f27e0000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000384a1f1ce430000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020001907f63da66b8bd71f620db74b7f3d46cfff60fa0a9243d35981b74f249710e000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000007e9c187b0369c5d3e9e1eca56999b45a7c7ac06200000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000000000000000000e7080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066163726f73730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6a756d7065722e65786368616e676500000000000000000000000000000000000000000000000000000000007e9c187b0369c5d3e9e1eca56999b45a7c7ac0620000000000000000000000007e9c187b0369c5d3e9e1eca56999b45a7c7ac062000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a219439258ca9da29e9cc4ce5596924745e12b930000000000000000000000000000000000000000000000000000000253fc659d0000000000000000000000000000000000000000000000000de05a5a258ffd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2763f0000000000000000000000000000000000000000000000000000000068f29a200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000413b6292c5d52e75ec6ef1e330465c00502ec4a2d41265ceb3c3d7cbdfa2f81128547d3a36e3a6d28395ba2fe2f1b8c6b93e2a4033dad6d541e529bbd43d6fab751c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xf2", + "to": "0x89c6340b1a1f4b25d36cd8b063d49045caf3f818", + "transactionIndex": "0x1e", + "value": "0x0", + "v": "0x1", + "r": "0xc59b8960b21e440f67bb05e94773ed989770f814d713115e1d01c7ca95520216", + "s": "0x663805a912eca74fc3029b5cb792d978bf3d9d6f5f40af3d2a786f62ce693348", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xbedaa480", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf3da0ba18f437ca18de82f56bd0dec53f0d7ead4", + "gas": "0x3ffd7", + "gasPrice": "0x8462031c", + "hash": "0x1cd134ba5a9ee2e797155aa940cff13f96ce15ed46fbed055290e68635d4dac2", + "input": "0x5f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031bced02db000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000077e06c9eccf2e797fd462a92b6d7642ef85b0a4400000000000000000000000000000000000000000000000000314d8341ded80000000000000000000000000000000000000000000000000000000000085461d3000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000006f69c0fc2800000000000000000000000000f326e4de8f66a0bdc0970b79e0924e33c79f1915000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001889fda64bd0000000000000000000000000000000000000000343ad84242674434daef057d000000000000000000000000388364512b2603eb2588ea12eda201423d5f7ffe000000000000000000000000000000000000000000000000000000000000000000000000000000000000000077e06c9eccf2e797fd462a92b6d7642ef85b0a44000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000087fca3a00000000000000000000000000000000000000000000000000314d8341ded800000000000000000000000000a0d9389cd60068f277320000000000000000000020100173b80cb275880391d1825ee720d2b109422e7011ba273ca86bd3516305e2eafeae0ec8b3c493d8459f455bcad93f31324ece9e378a40a5fd85aed4084f00000000000000000000000000000000000000000000000000314d8341ded80060000000000000000000000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000062", + "nonce": "0x1f", + "to": "0x881d40237659c251811cec9c364ef91dc08d300c", + "transactionIndex": "0x1f", + "value": "0x31bced02db0000", + "v": "0x1", + "r": "0x66b8aec6b14d8924b0288015d90cb58c64e71f8d7b70a8b72c2f2c9f4356b9fb", + "s": "0x381f7964b7cbebb8a56e274f1131c0b98a5d94b9911d723b7faf772d2868bb61", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x53639a3722ede61e837ceaacac7f068bc3079649", + "gas": "0x12a5f", + "gasPrice": "0x197ac3dc9", + "hash": "0xf6e9ffc0da164de14aa5e33adfe8879f5eeb8223360fa3331e8467e33b918bfe", + "input": "0xa9059cbb0000000000000000000000009642b23ed1e01df1092b92641051881a322f5d4e00000000000000000000000000000000000000000052bdf3884f67e45c444b85", + "nonce": "0x10", + "to": "0x4ae149fd6059af772b962efac6bf0236872d6940", + "transactionIndex": "0x20", + "value": "0x0", + "v": "0x26", + "r": "0xbfe6a726af0a7c8b1226ff7dbe7c7766153b1c0f77c5d0b03962b4921f8a8347", + "s": "0xe40e31927d40faf37c3bc37dcff4cb64b1cd61386a24e3d72b1b4dcb05b8551", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x4da2ef811e412e73ec33c61ef949299845d5109c", + "gas": "0x4709d", + "gasPrice": "0x7a010f2a", + "hash": "0x2304e362792f6ad8eb5376ae268ead4cbbd84915db78a6a3557433b79658201a", + "input": "0x99e1d0160000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000066a9893cc07d91d95644aedd05d03f95e1dba8af000000000000000000000000000000000000000000000000008e1bc9bf040000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003c53593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f27e0000000000000000000000000000000000000000000000000000000000000000040b080604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000008e1bc9bf04000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000008e1bc9bf040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000341ea9d0e5c9a2a7781aff398117846ea2fff2ab0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000341ea9d0e5c9a2a7781aff398117846ea2fff2ab000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c00000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000060000000000000000000000000341ea9d0e5c9a2a7781aff398117846ea2fff2ab0000000000000000000000004da2ef811e412e73ec33c61ef949299845d5109c00000000000000000000000000000000000000000000000000005cd17e253a230b000000000000000000000000000000000000000000000000000000", + "nonce": "0x1297", + "to": "0x4da2ef811e412e73ec33c61ef949299845d5109c", + "transactionIndex": "0x21", + "value": "0x8e1bc9bf040000", + "v": "0x1", + "r": "0x83027130a93cb60b6c4fc1f42ac49f3f0d780da0a0668a587d5d6fdc13bc7416", + "s": "0x65edc2ccca60a2065a4a35005e8cb1c64d5e948a06ab5a9298e53e854bf129e4", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x7e2de43f", + "maxPriorityFeePerGas": "0x4f073b0e", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc72d8a8b6bcd0d3530365e6eaccd6ea722cecd7f", + "gas": "0x42cd5", + "gasPrice": "0x8462031c", + "hash": "0xac4419631f6ecd3e2cfa7eb8a4ab958b33eabbec1b4ceb9d465bb13ce2b9d5e1", + "input": "0xac9650d8000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a40c49ccbe000000000000000000000000000000000000000000000000000000000010ec20000000000000000000000000000000000000000000000000005875d47615cdac0000000000000000000000000000000000000000000000003710130238cb665400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f27dfb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084fc6f7865000000000000000000000000000000000000000000000000000000000010ec20000000000000000000000000c72d8a8b6bcd0d3530365e6eaccd6ea722cecd7f00000000000000000000000000000000ffffffffffffffffffffffffffffffff00000000000000000000000000000000ffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000", + "nonce": "0x12a", + "to": "0xc36442b4a4522e871399cd717abdd847ab11fe88", + "transactionIndex": "0x22", + "value": "0x0", + "v": "0x0", + "r": "0x60bc0e06b63be334c65932e19f212af0b817d56251e7f69a32cb3e94e10749bc", + "s": "0x19f1543052d177ea35701a745648b2fd4111c9a4b7a5909e168ad376d1508885", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9aac8ec0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2023255c91bd57d1aff6cad90b64c0362ef559db", + "gas": "0x42150", + "gasPrice": "0x8462031c", + "hash": "0x433ee06009e3518206f9c3fdf162f7dc387623e1c157df58a7845835a116449d", + "input": "0xa9059cbb0000000000000000000000009dcbc3a220263554ba69f9c3b8101205c3e522360000000000000000000000000000000000000000000000006d7eea1613a83bbd", + "nonce": "0x184", + "to": "0xfa1fdbbd71b0aa16162d76914d69cd8cb3ef92da", + "transactionIndex": "0x23", + "value": "0x0", + "v": "0x1", + "r": "0x2c3f556e6a3f26907fa09ac8a4d58e6df5e48d82d2ffb8392ddb1394b496aaa3", + "s": "0x41b0b5722271f9378e63e05e79d9a7f4cbcfe7b6fbd9e2b80528e3b433f1b536", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9aac8ec0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf16e8f1f21dc9293429a3534d1d32c6dd42c9e46", + "gas": "0x56ff4", + "gasPrice": "0x70e70eee", + "hash": "0x6824a7d19d5895d1ff557d84f61a62e77766047c13ccbef26dc64e007c23acea", + "input": "0x30be55670000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000006c00000000000000000000000000000000000001ff3684f28c67538d4d072c22734000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c68af0bb140000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000005c42213bc0b000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c68af0bb140000000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004e41fff991f000000000000000000000000f5042e6ffac5a625d4e7848e0b01373d8eb9e222000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000002cb44e9400000000000000000000000000000000000000000000000000000000000000a0ff1efac8419960e3d8640fc80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000003600000000000000000000000000000000000000000000000000000000000000044bd01c2260000000000000000000000000000000000000000000000000000000068f2781000000000000000000000000000000000000000000000000002c68af0bb14000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000024d0e30db00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e48d68a156000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002cc02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000064a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000f5c4f3dc02c3fb9279495a8fef7b0741da956157000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000002d28a5670000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f5042e6ffac5a625d4e7848e0b01373d8eb9e22200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001243b2253c8000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f16e8f1f21dc9293429a3534d1d32c6dd42c9e4600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006ea56a8a8fd49451857ac2d3b901ed5181e28bda96accbb246dc980213747fb6", + "nonce": "0x41", + "to": "0xf5042e6ffac5a625d4e7848e0b01373d8eb9e222", + "transactionIndex": "0x24", + "value": "0x2c68af0bb140000", + "v": "0x0", + "r": "0x36adfe573db60f5ec984b3326ad14573dd3b05a362da80c4dcf8e87e53a156f5", + "s": "0x37e4f0f1aed58957e792a6733f49eb9da72fca065846ac8b1e770fed049771ad", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x7a32a829", + "maxPriorityFeePerGas": "0x45ed3ad2", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x204c6162ac3e56f57a976c509ca0b347d564b483", + "gas": "0x40a5b", + "gasPrice": "0x8462031c", + "hash": "0xb06e6530a7f52e4e504876e8dcdd7ea0b9dc89faa3ef3e36a34a71ba3bbc5b42", + "input": "0xd7a08473000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000b8ce07a20000000000000000000000000000000000000000000000000000000068f27dee000000000000000000000000000000000000000000000000000000000000001c730b3ad05cddf2cfcf9efe92ab5133b1ebb13a943348e568390606074c7c36bc468ae85c0192bb0c915be171337291ddcbd7cdf0a65958b4a321d4742eee710d00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000304ae32859000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200595fafc24a8be2f2b3611bf75774b9688e782cd4a459ae9c80bd59e105b6731d000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000ef5affffa431881c141b50a7d1534ec008513cd000000000000000000000000000000000000000000000000000000000b8ce07a2000000000000000000000000000000000000000000000000000000000000210500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000572656c6179000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6a756d7065722e65786368616e6765000000000000000000000000000000000025d634c13cef730820aac318ded2006abd1d93cf522bd405eb44bdcfb4e92bb0000000000000000000000000ef5affffa431881c141b50a7d1534ec008513cd0000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda0291300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000041584bbd3a6d6f545ba2257abf29349ae7f09907a9ff40f28121153712676031f31554dca4bdeb288fa9d0b200f02d27e51a5d81ea2ad5149f0d5076e8e5ea0a921b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x20e", + "to": "0x89c6340b1a1f4b25d36cd8b063d49045caf3f818", + "transactionIndex": "0x25", + "value": "0x0", + "v": "0x1", + "r": "0x7c7af9f4abfa04c722bad855946c56c5f3f28856eaabad15d1ec957a260b59d1", + "s": "0x202e77b1779908037dfc8793191aed6910147bc550523ee793fc11a7dd0c72", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9aac8ec0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x167a9333bf582556f35bd4d16a7e80e191aa6476", + "gas": "0x30d40", + "gasPrice": "0x154ffc61c", + "hash": "0x4bfef11316744565d1a7f14b6550743c61bfa9a66ee352d7b6dd1fa52808b9bd", + "input": "0xa9059cbb00000000000000000000000078894ae974c64f6126ecfdb5338864750f5bd57a00000000000000000000000000000000000000000000000070105609579e8400", + "nonce": "0xef82b", + "to": "0x01791f726b4103694969820be083196cc7c045ff", + "transactionIndex": "0x26", + "value": "0x0", + "v": "0x0", + "r": "0xad2ba66960b9ce677a83d1eeaff2ab31329c1bfa246187bf08ebeb9262ae27fa", + "s": "0x5a24864c348a13ecb65e00c6116dbcd99ebd88610ff13334f737ecfcf79804f", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x16a6ed626", + "maxPriorityFeePerGas": "0x12a05f200", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x167a9333bf582556f35bd4d16a7e80e191aa6476", + "gas": "0x30d40", + "gasPrice": "0x154ffc61c", + "hash": "0x83d5ee7acd1e79ec72a3204e4ddd4f57c4426fcd6eec61df2ad19fda24a36842", + "input": "0xa9059cbb0000000000000000000000005bfc83546fafbf025e44b95d1cd050c9fbcd90b4000000000000000000000000000000000000000000000001021cd8c6eb882c00", + "nonce": "0xef82c", + "to": "0x61fac5f038515572d6f42d4bcb6b581642753d50", + "transactionIndex": "0x27", + "value": "0x0", + "v": "0x0", + "r": "0x6276c114839d3bef7e324741b053b84501cabea3ae4e8b749586ef54e84cde36", + "s": "0x2f5e92e6807154b799d92213cd253dcfa7c025bdd2e157a2f4db3772380c76b1", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x16ad1d2b0", + "maxPriorityFeePerGas": "0x12a05f200", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc6b26836b59f148eefb47d8a0369b13d62bbbdcb", + "gas": "0x493e0", + "gasPrice": "0x8462031c", + "hash": "0x3136bbd54763a8d885f54c47336752f37e0186480824282306e9ee3dc5d955bf", + "input": "0x474cf53d00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2000000000000000000000000c6b26836b59f148eefb47d8a0369b13d62bbbdcb0000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x22", + "to": "0xd01607c3c5ecaba394d8be377a08590149325722", + "transactionIndex": "0x28", + "value": "0xec4165cd9040000", + "v": "0x0", + "r": "0x424c0832132adddfdae8646785ec543eb8631299c0f92e5eab2f420c9b517a61", + "s": "0xb313291cf323ae78ad378c77099124220ada783f9bd82f8fd867eee16cfff23", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9bd325f0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa4aa6b191d518b08a90289ee76cf588f1f20b909", + "gas": "0x3cfea", + "gasPrice": "0x7690c3fc", + "hash": "0xa01ed4293c1084ca755975de61c40d9c8f6fa46ead4e96a4fb631f12aa8d51bc", + "input": "0x99e1d016000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008487517c4500000000000000000000000032b053f2cba79f80ada5078cb6b305da92bde6e100000000000000000000000066a9893cc07d91d95644aedd05d03f95e1dba8af000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000691a03ef0000000000000000000000000000000000000000000000000000000000000000000000000000000066a9893cc07d91d95644aedd05d03f95e1dba8af0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003253593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f27dfb000000000000000000000000000000000000000000000000000000000000000308060c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000b6f57078b68bb624c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000032b053f2cba79f80ada5078cb6b305da92bde6e1000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c00000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a4aa6b191d518b08a90289ee76cf588f1f20b90900000000000000000000000000000000000000000000000000fe0d6bdfc16c200b000000000000000000000000000000000000000000000000000000", + "nonce": "0xb1", + "to": "0xa4aa6b191d518b08a90289ee76cf588f1f20b909", + "transactionIndex": "0x29", + "value": "0x0", + "v": "0x1", + "r": "0x14a02d09980538e60c4bcc865a6d135e1fa161e9c0cf9e5d524af96647b0de99", + "s": "0x1f124dffddc00c9c9d1373db98e0ced72b54c41c25ee8a5d0873e4bee4c48798", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x7ae2b8c1", + "maxPriorityFeePerGas": "0x4b96efe0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x56fc0708725a65ebb633efdaec931c0600a9face", + "gas": "0x302bb", + "gasPrice": "0x83bcb082", + "hash": "0xacad13629f19e38efbc0183505cc9aa0750350f34c7d403d6f904560152d8407", + "input": "0x122067ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f56400000000000000000000000000000000000000000000000000000000196fec30000000000000000000000000000000000000000000000000018fd8a3650b2400000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000068f2771300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000014a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "nonce": "0xe89c", + "to": "0x51c72848c68a965f66fa7a88855f9f7784502a7f", + "transactionIndex": "0x2a", + "value": "0x0", + "v": "0x0", + "r": "0xffa2e15251a527c3664705b9e699f97e6ac46211d220e159af64dd61b019d029", + "s": "0x53d87c0178f76bc1febe37e87bb36b30bcf6e50b92842b1d3bf3e77332cd752a", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x83bcb082", + "maxPriorityFeePerGas": "0x83bcb082", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9eb9e9b2ba5c2665a16beaa8e137410358b6beaf", + "gas": "0x26870", + "gasPrice": "0x98e9c57f", + "hash": "0x52581a11dec2df7f1f28c49714c39531905ac8dc177d22613361babdf4270c9a", + "input": "0x122067ed0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c7bbec68d12a0d1830360f8ec58fa599ba1b0e9b000000000000000000000000000000000000000000000000000000014fac728f000000000000000000000000000000000000000000000000149e4a41fd53e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2771300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000014dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000", + "nonce": "0xefe2", + "to": "0x51c72848c68a965f66fa7a88855f9f7784502a7f", + "transactionIndex": "0x2b", + "value": "0x0", + "v": "0x0", + "r": "0x1cdcecba0307e7c0b97f23449e37a295fac18ef47077a71e04ebb83d5fe5a2e2", + "s": "0x11e27326f5bc0979c3f1779f185bd85e7467dbf9a91baa7edfec66b1dbc236de", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x98e9c57f", + "maxPriorityFeePerGas": "0x98e9c57f", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x96d898d1f2a922ed7183a23ba7e2a650595cd62e", + "gas": "0x3e0bd", + "gasPrice": "0x7a010f2a", + "hash": "0xbfde57e94928887030cefe9c85f202e978caa7426b00a028d57dcdd57ca59e7f", + "input": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f27e0100000000000000000000000000000000000000000000000000000000000000040b080604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000014df48080e3000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000014df48080e30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000032b053f2cba79f80ada5078cb6b305da92bde6e1000000000000000000000000000000000000000000000000000000000000006000000000000000000000000032b053f2cba79f80ada5078cb6b305da92bde6e1000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c0000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000006000000000000000000000000032b053f2cba79f80ada5078cb6b305da92bde6e100000000000000000000000096d898d1f2a922ed7183a23ba7e2a650595cd62e00000000000000000000000000000000000000000000000d8d31e3dc5aa793a40b", + "nonce": "0x18d", + "to": "0x66a9893cc07d91d95644aedd05d03f95e1dba8af", + "transactionIndex": "0x2c", + "value": "0x14df48080e30000", + "v": "0x0", + "r": "0xdaf0f894661d13d16dbeb3c15fdfd0e5b7583a74f10410fc81943896f1f3878e", + "s": "0x2b0f6afc5345c962f16168511b5e7c82ebfc38274631e6523fbc47e5b62ebf6c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x7e2de43f", + "maxPriorityFeePerGas": "0x4f073b0e", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x02932aa7c01689fbc42b9132b26f031818989fe4", + "gas": "0x15f90", + "gasPrice": "0x165a0bc00", + "hash": "0xa7e1d247b1e47c1d0f221b2563695f28aabef80747b37331a938411a5ace2e39", + "input": "0xa9059cbb000000000000000000000000168470c67f1b6d6e89d0c7cb51c1adc6b5c6cc8a0000000000000000000000000000000000000000000000000000000005e95de0", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x2d", + "value": "0x0", + "v": "0x25", + "r": "0x9c2b28f839e1e4f3f25f802e9dc236c6435d3c7143a167c98ac809deabecde7f", + "s": "0x7a310fc32bc62f080fd1773e7ea4825a4fff7123efe13e7884435bedb40036ca", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2b25b37c683f042e9ae1877bc59a1bb642eb1073", + "gas": "0x344a6", + "gasPrice": "0x770e49fd", + "hash": "0x7c589b9b6d73f973bbeaa374e0469ac4c2e638ea97ce5ce5f9403d16bcba9f93", + "input": "0x30a28ffc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043ae24960e5534731fc831386c07755a2dc33d47000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f000000000000000000000000000000000000000000000013b058bd1fad600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e6e46aa20ab6f00000000000000000000000000000000000000000000000000000000068f27713", + "nonce": "0xa4f0", + "to": "0x51c72848c68a965f66fa7a88855f9f7784502a7f", + "transactionIndex": "0x2e", + "value": "0x0", + "v": "0x1", + "r": "0x838873c171df43784ac357dbc0e953b00898c5d4ac5bf0a0d35b938f06ff6d7e", + "s": "0x7d7c5ca68a87d78118f63aac991ae49eb55f9bc9c49e7c68ad1e7b9b50b1bc77", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x770e49fd", + "maxPriorityFeePerGas": "0x770e49fd", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8bf2f42e8da1548f4c823ed493d38b723b8dfa9b", + "gas": "0x186a0", + "gasPrice": "0x154ffc61c", + "hash": "0xa4273199ebcb6a295900b437ede96066b651f83142107f92ef563433e985fbcd", + "input": "0xa9059cbb00000000000000000000000082b3e30d22ac5a9002e9f30f15429e9617f06ee60000000000000000000000000000000000000000000000000000000076d0b42a", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x2f", + "value": "0x0", + "v": "0x1", + "r": "0x34e6b81de0a44e1333ad6ed215f60452ad255ab08edb399460ccf1ccb42db651", + "s": "0x7321c4082ec65226c07ff4bcdc9a891201727c74e423fb756e9924d5c696ea69", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x164ce75f2", + "maxPriorityFeePerGas": "0x12a05f200", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x58d14960e0a2be353edde61ad719196a2b816522", + "gas": "0x7a1200", + "gasPrice": "0x9208154a", + "hash": "0x9cde48507a9e2c7f67c373dbb824d70900033037cf420dd051b45cf7e886e27e", + "input": "0xcf02827d000000000000000000000000000000000000000000000000000000000000014500000000000000000000000000000000000000000000000000000000000043030000000000000000000000000000000000000000000000000000000000004303000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002610000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000043038bea264253330414c14d3a82fa7864615a744ca65031a4f52477d521789bd4b800000000000000000000000000000000000000000000000000000000029d8fd40000000000000000000000000000000000000000000000000000000000000000c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4700ae52abdd83d30dcc0a98b61b437ef79e5b02d4e41b5af01d8ef2274f626b7670000000000000000000000000000000000000000000000000000000068f233c133d003474a64a06c843c038f7355dc7593ceb59ac8ebe3f2315b646f472da574000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x6a72", + "to": "0x8c0bfc04ada21fd496c55b8c50331f904306f564", + "transactionIndex": "0x30", + "value": "0x0", + "v": "0x1", + "r": "0xc15c2b513e8fd1b067ba335c67a23fea93f725892fc038ddbaa697f9ca8c51bf", + "s": "0xc57285478b482188dca3ef455ce4b11bce8c91d26d48cfc0ebc306e6381664b", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9208154a", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1043cc2cce18e96b34b00bf19bc2a256a8b0cfba", + "gas": "0x34f21", + "gasPrice": "0x751b4b37", + "hash": "0xeaa7d0b69cba54bffcf4ae16aba125d86d323aa813b7feee7603e8b9f4a202f0", + "input": "0x99e1d0160000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000066a9893cc07d91d95644aedd05d03f95e1dba8af00000000000000000000000000000000000000000000000001442b4f213c8d7c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003c53593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f27e0b00000000000000000000000000000000000000000000000000000000000000040b000604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000001442b4f213c8d7c0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000001442b4f213c8d7c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000bb8df4c0665e67cf0698447ca9e454ed56cc6f2df1e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000df4c0665e67cf0698447ca9e454ed56cc6f2df1e000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c00000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000060000000000000000000000000df4c0665e67cf0698447ca9e454ed56cc6f2df1e0000000000000000000000001043cc2cce18e96b34b00bf19bc2a256a8b0cfba0000000000000000000000000000000000000000000014b39990c350827a8d080b000000000000000000000000000000000000000000000000000000", + "nonce": "0x51", + "to": "0x1043cc2cce18e96b34b00bf19bc2a256a8b0cfba", + "transactionIndex": "0x31", + "value": "0x1442b4f213c8d7c", + "v": "0x0", + "r": "0x6e570a40a759cf501b9ae01c4a1ca025bc65a471555124e58a11242920866677", + "s": "0x56ff32c9c4ed9ffe677c29b74a97e8a0549fbc85e89e2573654ba7c6eeb7d9a8", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x78fc9a35", + "maxPriorityFeePerGas": "0x4a21771b", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd4f69d02ef082f612558588d103994a7e3cf29c9", + "gas": "0x3fb1c", + "gasPrice": "0x66949e1c", + "hash": "0x8679684c756c003882c10fd77e1f56665b6e7ffcafd5ea5a1e36875a44ceaadd", + "input": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f27dfc00000000000000000000000000000000000000000000000000000000000000040b080604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000c3663566a580000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000c3663566a58000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000226676c9e15be689817f5ae44863f0811181a5ae0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000226676c9e15be689817f5ae44863f0811181a5ae000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c00000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000060000000000000000000000000226676c9e15be689817f5ae44863f0811181a5ae000000000000000000000000d4f69d02ef082f612558588d103994a7e3cf29c90000000000000000000000000000000000000000000000000007d5757cef34200c", + "nonce": "0xf2d2", + "to": "0x66a9893cc07d91d95644aedd05d03f95e1dba8af", + "transactionIndex": "0x32", + "value": "0xc3663566a58000", + "v": "0x0", + "r": "0xc199a5d052e774e108cdbc3d276e3975a35a40bd72c18c5a955a2be7af5e7c55", + "s": "0x9a8b025a407c985649f61385464262c0635f77b5d0cec3c925cc1dcd9df544", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x77359400", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xda6b9e7578c3bb3f422e44044de0eb4a9890fe94", + "gas": "0x2bfcc", + "gasPrice": "0x7690c3fc", + "hash": "0x35103d88b8f97b228329ef26761bacd593a64ae288d4c5a537b1f7657b5beb7d", + "input": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f27df1000000000000000000000000000000000000000000000000000000000000000309050c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000020f1dba99532000000000000000000000000000000000000000000016723969730155d12c99e04700000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a21af1050f7b26e0cff45ee51548254c41ed6b5c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c00000000000000000000000000000000000000000000000000015083569120000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000da6b9e7578c3bb3f422e44044de0eb4a9890fe94000000000000000000000000000000000000000000000000020dcd3742c200000c", + "nonce": "0x6f", + "to": "0x66a9893cc07d91d95644aedd05d03f95e1dba8af", + "transactionIndex": "0x33", + "value": "0x0", + "v": "0x1", + "r": "0xc70163b31178fafa866b5f575bf3a34b93b284822d62a980e44c25d83a0654cc", + "s": "0x158c1ce9001db4f21c7fd7fa2ccf560c6d3d363ce4e100e19955edb4a7f70d08", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x7ae2b8c1", + "maxPriorityFeePerGas": "0x4b96efe0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc1b634853cb333d3ad8663715b08f41a3aec47cc", + "gas": "0x36053", + "gasPrice": "0x66949e1c", + "hash": "0x4bbf6a5c738d38b9c8c8e4e2aec999f17f73ec2131756017c7d3c509f8071e4e", + "input": "0x3e5aa08200000000000000000000000000000000000000000000000000000000000fe02b000000000000000000000000000000000000000000000000000000000020fe5f000000000000000000000000e64a54e2533fd126c2e452c5fab544d80e2e4eb50000000000000000000000000000000000000000000000000000000015f4643d0000000000000000000000000000000000000000000000000000000015f46537", + "nonce": "0xf181d", + "to": "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6", + "transactionIndex": "0x34", + "value": "0x0", + "v": "0x0", + "r": "0x869daac4c986483116ae685eb83e26dc2cbefd7f731f3f64b0a48e0e8a67df67", + "s": "0x487f53aa3305b97e979ad34d2a5f35b447e8b1d8650e0595132ce10ce5e677cd", + "type": "0x3", + "chainId": "0x1", + "maxFeePerGas": "0x42d01bcca", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [ + { + "address": "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x000000000000000000000000000000000000000000000000000000000000000a", + "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103", + "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc", + "0xa10aa54071443520884ed767b0684edf43acec528b7da83ab38ce60126562660" + ] + }, + { + "address": "0x8315177ab297ba92a06054ce80a67ed4dbd7ed3a", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000007", + "0x0000000000000000000000000000000000000000000000000000000000000009", + "0x000000000000000000000000000000000000000000000000000000000000000a", + "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103", + "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc", + "0xa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8746a6b2", + "0xa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8746a6b3", + "0xf652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f379d0b9d" + ] + }, + { + "address": "0xe64a54e2533fd126c2e452c5fab544d80e2e4eb5", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0xe85fd79f89ff278fc57d40aecb7947873df9f0beac531c8f71a98f630e1eab62", + "0x7686888b19bb7b75e46bb1aa328b65150743f4899443d722f0adf8e252ccda41" + ] + } + ], + "blobVersionedHashes": [ + "0x01a81cbc6aec5d50c89c1670633353fe98d17350dc99a2b7e082f8fe2d567f3c", + "0x01e42af76c9e706819df3105ff9567645f0f1d94a5e1e567a8c4870278a2f290", + "0x01e89c24dd2f6d43cf62590a353696e96fe6ec093ccdc53de75c32b8d6f65667" + ] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2c671f852e95ebd0fb753d5be06918a8d1ec362a", + "gas": "0x6ddd0", + "gasPrice": "0xa22f681c", + "hash": "0xb4a21adc83150e2ec431ee88d064960cebaee47ff32b290c05fbd4c41c48b8cc", + "input": "0x574da7170000000000000000000000003376e7f9510b566f8cc6ab9e4f4588d941a64685000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000004761153c000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000444f55543a3334393231464542463731323945363441443945433945423530463943454641353742314534364541453838374433433731443641423134373746354637363700000000000000000000000000000000000000000000000000000000", + "nonce": "0x27", + "to": "0xe3985e6b61b814f7cdb188766562ba71b446b46d", + "transactionIndex": "0x35", + "value": "0x0", + "v": "0x0", + "r": "0x3f7d00118266189d3df915585a2f71f178640725087942d803a43a75fdb8d473", + "s": "0xe4ea1f4cd0eec1027b6ac53dd867389d25fd805096d35a9bb9bf15b927a7144", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2540be400", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1123bc42ede1b4fce8cb75bdebaa6944453fdbd7", + "gas": "0x29a19", + "gasPrice": "0x8462031c", + "hash": "0xc75d62106902e3e14d0d68b60d920f690f2ae849cea266779bd2e821cccc7056", + "input": "0xae169a500000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x2f", + "to": "0x28ca9caae31602d0312ebf6466c9dd57fca5da93", + "transactionIndex": "0x36", + "value": "0x0", + "v": "0x0", + "r": "0xe04544ba9607bc0444a83ae5a46c4263e746956410badae421caa403d12c0a0f", + "s": "0x78cf1f2cd0f304581900d5ad8cd6d6b25bf87d609ef0bcc713292f3359d0a508", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d5c09f3", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf621b27508b5bc902ff553d0323105c59351a634", + "gas": "0x435b0", + "gasPrice": "0x2af9d41c", + "hash": "0x834ff4be0d18349e2f99d647774e341a200d91e87dfea559beef71e77405e98d", + "input": "0x78e111f60000000000000000000000002c6e668d3a4b25c557ce40b134a65eb36cfc22290000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000014470aa0dfe0000000000000000000000009c4fe5ffd9a9fc5678cfbd93aa2d4fd684b67c4c00000000000000000000000045804880de22913dafe09f4980848ece6ecbaf78000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000203466579c80900000000000000000000000000000000000000000000000061824125f9169c0000000000000000000000000000000000000000000008d8583090842f80000000000000000000000000000000000000000000000000393e8339d8c7e20000000000000000000000000000000000000000000000000000000000f5d2320f51e67800000000000000000000000000000000000000000000000000000000068f2770b7f0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000", + "nonce": "0xa1a3", + "to": "0xa69babef1ca67a37ffaf7a485dfff3382056e78c", + "transactionIndex": "0x37", + "value": "0x324216", + "v": "0x1", + "r": "0x51eddabb9cc9b0b284db4013034d69bf8b9a79f7719c9ad9476ffe1d05a46bb5", + "s": "0x48cf78501a94fdb2762fc0a01f16f0d96e887bb3a284e116a9b094a9e95dedf", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x4076be2a", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbee2da2ece7a3c3a9c265134bf6f5cd399293002", + "gas": "0x456f4", + "gasPrice": "0x50df9ba9", + "hash": "0xfcc29ea9ee13db15033728d023a75b81d3c14866adf074924179d0635f8e9300", + "input": "0x4cf3fe9c00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000780000000000000000000000000bee2da2ece7a3c3a9c265134bf6f5cd3992930020000000000000000000000000000000000000000000000000000000068f27719000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000011f84b9aa48e5f8aa8b9897600006289be000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000006040d335884000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001000000000000000000000000004449cd34d1eb1fedcf02a1be3834ffde8e6a6180000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef600000000000000000000000000000000000000000000006c6b935b8bbd40000000000000000000000000000000000000000000000000006c6b935b8bbd40000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000011f84b9aa48e5f8aa8b9897600006289be00000000000000000000000010a2445c584cb645583f47daab7c5feac4cef30b04683250428abd0fdad3ef85eb7eaeb3def4373317a765dfd4eaa6bfeb4098030000000000000000000000000000000000000000000000000000000068f27817000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eef3c785d6342400000000000000000000000000000000000000000000000000eb353832d88a9f00000000000000000000000010a2445c584cb645583f47daab7c5feac4cef30b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000099500f17a274000000000000000000000000000000000000000000000000000096e90b08e231000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c0000000000000000000000000000000000000000000000000000000068f2770b0000000000000000000000000000000000000000000000000000000068f27747000000000000000000000000bee3211ab312a8d065c4fef0247448e17a8da0000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000ef161da4e98cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041070de7ef2fd810dc11d34de07808a88c0cf6435751cce9fa5a8b66b9f7fbee18345d9efb7282b1c0b09600301a407aae662885b6249eb04c2c66b4627a896e891c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000416c4327917c200ee2588ee386560201ba456bb6fd5f97c7c6ef63d495dbff295a2d4f7489b7d1a08da881b7e255a77837ed23b2160ba428948a62f01ecd470adf1c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041133e62f888b211bc80da26cfcbb84c8a933033f9f4f2552484bf6d072660594d0b90f73fd857b79630a6bd2063d75e7883185546b30e3f45de53b1f05fdb80e31c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x12be", + "to": "0xbee3211ab312a8d065c4fef0247448e17a8da000", + "transactionIndex": "0x38", + "value": "0x0", + "v": "0x1", + "r": "0x96b7c09bbc334373fb501e5432b1d7eba1da2e0569b6a16742a0afee3a16a358", + "s": "0x3778c5b98a09181ce00845d4c2e823b3ba066c989dce217f6423b7ac8de7302d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5ebe72e2", + "maxPriorityFeePerGas": "0x25e5c78d", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x63c79fccd0a21e4a4d87056a0efe3b85d8c373d4", + "gas": "0x186a0", + "gasPrice": "0xa22f681c", + "hash": "0x9e89c92f24b6269d45712824c69c71de7aa13175d5a5b18022095bb9d1687425", + "input": "0x23b872dd000000000000000000000000aefb346f7fc899aee40ecbea814079771085461d0000000000000000000000006cd318452446c0f935f52aa5cfd7921e841e83310000000000000000000000000000000000000000000000000000000005f5e100", + "nonce": "0x49bc1", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x39", + "value": "0x0", + "v": "0x0", + "r": "0xc75f45ab4812f07a6f8cde0b8fb199a7f6f23c6a5deb8d8f9144c446fb7c5f38", + "s": "0x5e323084ee8f2bcea1553b057c0a267817819a178d69cc25657fdea547fc0124", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2a600b9c00", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0ada3111b866ff1ad0477f0c5d2e8ed35a36eb5b", + "gas": "0x14820", + "gasPrice": "0xa22f681c", + "hash": "0x136365e91aa01cfda297b64338e7ebeaf088f460d401ede49f438964eb2c0ab1", + "input": "0xa9059cbb000000000000000000000000a8a29eaa3d260f8dc5dc1ec3f093d2b9e85a08ed000000000000000000000000000000000000000000000000000000000098af91", + "nonce": "0x9b944", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x3a", + "value": "0x0", + "v": "0x0", + "r": "0x28d179677ca9b7996fcdcf6cdb8a78030d2511b09f6de788d912cfcdfacd502d", + "s": "0x34f4d1bef257728e5cfa54112f14ba795f7f10ab292ecca8f99dde12b297ca7e", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x17bfac7c00", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x46340b20830761efd32832a74d7169b29feb9758", + "gas": "0x55730", + "gasPrice": "0x9d298ddc", + "hash": "0xcc5b5cffcd0b18b86a3e0218caa4b8cc7560c24e8b5749595ca63e8d5bc1fd2b", + "input": "0xa9059cbb00000000000000000000000061a3624bacb0526732be9d37a93ae58ad4b8927100000000000000000000000000000000000000000000000000000001dcb0e711", + "nonce": "0xf448d0", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x3b", + "value": "0x0", + "v": "0x25", + "r": "0xba746f407669de08dda79c227807a1e4903d752601d262c13c205e3397de75d", + "s": "0x461a3186a5342bd082d7c66e62bffa4d6d89789929e28e310310c3b85ae48866", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x46340b20830761efd32832a74d7169b29feb9758", + "gas": "0x55730", + "gasPrice": "0x9d298ddc", + "hash": "0x451505ca8cbb5a46ed389bc83dcaaad02f11f077ab6dd3b2b424c489cd4eee95", + "input": "0xa9059cbb00000000000000000000000040fb98bd494def8e075e3af992fd6cb031a995d1000000000000000000000000000000000000000000000000000000000151a759", + "nonce": "0xf448d1", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x3c", + "value": "0x0", + "v": "0x26", + "r": "0x480ea2470d6cf17715161ab6061e32edb100efe8117280c1ce40eb9f8b42e965", + "s": "0x4e0b68b17e7ab687101735702c5d26c614a24582b3d014b4ccaf0a4168d33451", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb42f812a44c22cc6b861478900401ee759ebead6", + "gas": "0x61a8", + "gasPrice": "0x66949e1c", + "hash": "0xa11d6b3296a39cf9d1db14e69aaf6f0792568708a2a8713a2ff071916e2aa330", + "input": "0x", + "nonce": "0x2e707", + "to": "0xec277b451e4c088ab3ed4dac18d7a2933d181f77", + "transactionIndex": "0x3d", + "value": "0xa1d3841ef1e2", + "v": "0x1", + "r": "0x4a0cea0dbb145a9aa8ee2cdbe18e7d9638a907c2249709f7b7438a91296aac26", + "s": "0x32dbae619913e9491ab74d22674d6e079d57b2a0c63c7842208aa1855db83137", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x6fdb3f4a", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xec277b451e4c088ab3ed4dac18d7a2933d181f77", + "gas": "0xc085", + "gasPrice": "0x66949e1d", + "hash": "0x020c1ef70e58a6ac30d64baf018b262d7809e6391794f21676159f331199ef39", + "input": "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0xc", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x3e", + "value": "0x0", + "v": "0x0", + "r": "0x3838a01bc7a850fb1a7b708f28c0b1275331b0d0d71c1c76a09210ce50a2d567", + "s": "0x24e16c7ec7ee03cf13668fe7414944f03d203e398815d3d8c20cdb4741aedc5d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x6fdb3f4a", + "maxPriorityFeePerGas": "0x3b9aca01", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xec277b451e4c088ab3ed4dac18d7a2933d181f77", + "gas": "0xb1d8", + "gasPrice": "0x66949e1d", + "hash": "0x193f7feaab3c88433676186d272a3e83426c20c370294881526891f3f4dc22fd", + "input": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000011a741", + "nonce": "0xd", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x3f", + "value": "0x0", + "v": "0x1", + "r": "0x7acdc9a1b24fe887bfca552c98126a8260bb5164a47628ae78b5c404d27bfe60", + "s": "0x5b7d7b137084951c0a22b157051eb1265ab8bf9c7e3779b58a91523ecbf45952", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x6fdb3f4a", + "maxPriorityFeePerGas": "0x3b9aca01", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3ecbbf214331bb3d2cb39c7316c51dd8b1e7aef1", + "gas": "0x61198", + "gasPrice": "0x48c7391c", + "hash": "0x220423aeda39aeb7b5b944e53ab1d235ef241953a632c5f1487c3df5a8643f43", + "input": "0x9871efa400000000003945d3bdfd2f00303edd4558e28ebc1ce0fa3bdfe9598b45f84deb00000000000000000000000000000000000000000000000026235e70f8a7d8160000000000000000000000000000000000000000000000000074632cc5ef15360000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000170000000000000003b6d03400c921e2026fb73af0b8c00fba4584a5d30ad77fe22220afc2bbb000000137478044384cc9da7e926cb87e7e3d92171295439fe70000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee22220afc2bbb00000067c2806ea08ca8f313d860808ef7431fc72c6fbcf4a72d", + "nonce": "0x2a", + "to": "0x2e1dee213ba8d7af0934c49a23187babeaca8764", + "transactionIndex": "0x40", + "value": "0x0", + "v": "0x0", + "r": "0x1bb8482e7a6c1f9fabbdbfc392c08136862d528be82c66209d4ddd899af7a8c", + "s": "0x46437d6cb4dcc99f8034b46b6beef87b3c018eea622ccc860f2b45472223dc3e", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x4d192de1", + "maxPriorityFeePerGas": "0x1dcd6500", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x50246e667a85bbda1dfc9a213a6cf126b9c6bbe3", + "gas": "0x1724c", + "gasPrice": "0x8462031c", + "hash": "0x6b4d45eccef21208e44717f2317bc41ccbe56d33f9da70a70b102002a0948932", + "input": "0xa9059cbb000000000000000000000000dde27f61aa1b64374a6354c78824977e030fcb360000000000000000000000000000000000000000000000000000000092639600", + "nonce": "0x75", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x41", + "value": "0x0", + "v": "0x0", + "r": "0xfc5f459e43423690c20c7fa5cd9455cb51c9d35dd515bbcea8bc14452b401bfb", + "s": "0x6fa8b5b221c146f6c0b18220b878e0f3b03813940f29e8e9048c27a0ef6bea3b", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9af8da00", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6d84cbe201e518ac65d75a12c2da4d30741bae2e", + "gas": "0x1741c", + "gasPrice": "0x8a57e41c", + "hash": "0x6e4797c995b93a24b8b7ba37dd2bc2b631973d9c079317b3d96c2ae0dbdbb254", + "input": "0xa9059cbb0000000000000000000000000e794dbe58f2a4d01feca184d71bf631d3bc7eba000000000000000000000000000000000000000000000000000000015a014540", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x42", + "value": "0x0", + "v": "0x1", + "r": "0x83dad1fe927169adc3699654f1a8988a2abc1595a60449963d9617b9001e1f35", + "s": "0x4d06e589933c052da84e0dca405c97343c5062a4c83dfb71dfd67b5f42f9e090", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9cc29d80", + "maxPriorityFeePerGas": "0x5f5e1000", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x43954cdd8159105e585f511d65d2ea24d5600b2b", + "gas": "0x551e8", + "gasPrice": "0x48c7391c", + "hash": "0x8a3f2349421e523c0f41dac9a47587f09ae0894463bfc283593731efcf77c824", + "input": "0x0d5f0e3b00000000003945d3c5562f8043954cdd8159105e585f511d65d2ea24d5600b2b0000000000000000000000000000000000000000000000012ac90075e684c000000000000000000000000000000000000000000000000000000ded4c60db56f900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001a000000000000000000000007b1e5d984a43ee732de195628d20d05cfabc3cc7000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee3ca20afc2bbb00000081b3206ea08ca8f313d860808ef7431fc72c6fbcf4a72d", + "nonce": "0xa", + "to": "0x2e1dee213ba8d7af0934c49a23187babeaca8764", + "transactionIndex": "0x43", + "value": "0x0", + "v": "0x0", + "r": "0xee419d3eb69bf1fb2108d0f6776c3b933beb3150061d7553ac682553f0845438", + "s": "0x55d2130fcffc16df2df7ab2c3bbebaacff9313b8a06fe040a60852d1ce0900df", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x72ef682f", + "maxPriorityFeePerGas": "0x1dcd6500", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6114eabfb766d065c4398c944dae797312697729", + "gas": "0x171bd", + "gasPrice": "0x8462031c", + "hash": "0x9a5d292fa71be145942214b6d4bcee73419c77b7e06fdf4e55853d51bfe2c632", + "input": "0xa9059cbb00000000000000000000000019f5ba28f9104617fa8bd520a8d443c06dde2a8b000000000000000000000000000000000000000000000000000000017fa1c04a", + "nonce": "0x4", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x44", + "value": "0x0", + "v": "0x1", + "r": "0x4d04e1632be135d06160248135e09cc342ffa98d710a2eb8002f1fcc4594948f", + "s": "0x657ee01a210d4dba0de645a94e6630d365cf6ed0f498a647dd05204b6a6c8fc2", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x05ff6964d21e5dae3b1010d5ae0465b3c450f381", + "gas": "0xcb6f", + "gasPrice": "0xa22f681c", + "hash": "0x5353e35da19e5fe77b4219cfc84f3fafcff50a825d773a03b8563614531d8d51", + "input": "0x23b872dd0000000000000000000000006edb0e0c3c60f32e54aff8e060c3422efa85ae9200000000000000000000000005ff6964d21e5dae3b1010d5ae0465b3c450f3810000000000000000000000000000000000000000000000000000000005f5e100", + "nonce": "0x29fe0", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x45", + "value": "0x0", + "v": "0x0", + "r": "0x9ef9aa9e0cbf38d03a15d3a39dcda3a79b59656c42a5fcc9e8d08eaa00672bef", + "s": "0x4bd6eab8a3bd0f304a5ccede3869feb2852577423ea99f0b9c633e95d3546a10", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac411258", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x05ff6964d21e5dae3b1010d5ae0465b3c450f381", + "gas": "0xcb7b", + "gasPrice": "0xa22f681c", + "hash": "0xace4b5ea6fc97d3a8964542626b28328b97a5739ce2fe7b00c59d412ea8b503b", + "input": "0x23b872dd00000000000000000000000031b033ee749767a7f6636b5a93f8d8f47325db1600000000000000000000000005ff6964d21e5dae3b1010d5ae0465b3c450f3810000000000000000000000000000000000000000000000000000000005f0f57a", + "nonce": "0x29fe1", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x46", + "value": "0x0", + "v": "0x1", + "r": "0x43504eabbe2dd1a6126b27aa0c393fd153dd7dc22c04c75343632bcc79738cef", + "s": "0x766a216778a2e7209a4ae5c7d09adcb4c029a2b641c4a599ab1be8a780de7605", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac411258", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x05ff6964d21e5dae3b1010d5ae0465b3c450f381", + "gas": "0xcb6f", + "gasPrice": "0xa22f681c", + "hash": "0xf6968d7a35303289401518c79caeb4034592db25ee66ebf17d20d38a097fadd6", + "input": "0x23b872dd00000000000000000000000080291edc9d3a97025a9029f072530de1aeaec44f00000000000000000000000005ff6964d21e5dae3b1010d5ae0465b3c450f3810000000000000000000000000000000000000000000000000000000000989680", + "nonce": "0x29fe2", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x47", + "value": "0x0", + "v": "0x1", + "r": "0x93003687a54b733d90a4c91d214584e54ff275c2e6c50d5ebe64439e19fb650", + "s": "0x72a16245ae71b11c3efef4f3fb7dc789b3803f50051452ea2bc374074cf43c1d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac411258", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x05ff6964d21e5dae3b1010d5ae0465b3c450f381", + "gas": "0xcb6f", + "gasPrice": "0xa22f681c", + "hash": "0x17bdec38aa913eb3895db9590c235f8de040e94eb47f76542b58468b6437da00", + "input": "0x23b872dd0000000000000000000000008e299dea45a3e5a6828ed32753068f032243ff5300000000000000000000000005ff6964d21e5dae3b1010d5ae0465b3c450f3810000000000000000000000000000000000000000000000000000000000a7d8c0", + "nonce": "0x29fe3", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x48", + "value": "0x0", + "v": "0x0", + "r": "0x7a591bf8fb3ad866170eda269a5f08bf4bc14bcf946d238b1cbf000cac3545f3", + "s": "0x2e94cc215c6d277c4b8bf4ea6b1ae8592abab6467a714c7d041975a017470413", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac411258", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x05ff6964d21e5dae3b1010d5ae0465b3c450f381", + "gas": "0xcb87", + "gasPrice": "0xa22f681c", + "hash": "0x7917d97d6fcf81b578d08950588a10686e0a974d6b74e5dfbfdcd804a84fbdbf", + "input": "0x23b872dd00000000000000000000000027e2399a8cdbbc679aab0e8507daceee16143a0400000000000000000000000005ff6964d21e5dae3b1010d5ae0465b3c450f3810000000000000000000000000000000000000000000000000000004d9922762b", + "nonce": "0x29fe4", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x49", + "value": "0x0", + "v": "0x1", + "r": "0xb73205dff3dc69f3f71b3dcfed83ee8f5a5b3cd79c75e51b9c1586dface55301", + "s": "0x60695191bf68cf2b6999799c60eb270bd113bcd2a9f2c1af6c3f21104ec55e16", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac411258", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x05ff6964d21e5dae3b1010d5ae0465b3c450f381", + "gas": "0xcb6f", + "gasPrice": "0xa22f681c", + "hash": "0x987f1258c7ad6a85bb25e2d1843d7e5be51966d2d585aa0dda171ad1928769ad", + "input": "0x23b872dd0000000000000000000000000c8aa5263afde3c43a0fe88aed2b10ade922e66600000000000000000000000005ff6964d21e5dae3b1010d5ae0465b3c450f3810000000000000000000000000000000000000000000000000000000009896800", + "nonce": "0x29fe5", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x4a", + "value": "0x0", + "v": "0x1", + "r": "0x574134e6c7521a9d81b36a607e654b7a30ca0d249bb21a8d812fb32be68cc212", + "s": "0x72d1a6a29dfa7748227e862140c7989413dbb0203b6373e3ffdb2b419775255e", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac411258", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x05ff6964d21e5dae3b1010d5ae0465b3c450f381", + "gas": "0xcb6f", + "gasPrice": "0xa22f681c", + "hash": "0x20dbe2ec37a098e75bc17b2d8257b216525218519f28f9a1db3d0ac4e400d952", + "input": "0x23b872dd000000000000000000000000c2507bd27ff8b613cd573d6ff57e7fe1be22916100000000000000000000000005ff6964d21e5dae3b1010d5ae0465b3c450f381000000000000000000000000000000000000000000000000000000002bb40060", + "nonce": "0x29fe6", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x4b", + "value": "0x0", + "v": "0x0", + "r": "0x272d11728fda67e814a3e95d1ea863a1f7ce3754e371bdc9f2f1bb0f81dacc37", + "s": "0x620a5cc0acbe73ff54f87195674f75c85c7740afbd846ffc366615fde66cd54c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac411258", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x05ff6964d21e5dae3b1010d5ae0465b3c450f381", + "gas": "0xcb6f", + "gasPrice": "0xa22f681c", + "hash": "0xd38be6398fd7d5507ab08627461ed41ebbdecbf1e19bc165ee41b01d822da42d", + "input": "0x23b872dd000000000000000000000000ec5fb7795a7972685a907d6aea51a7058b08876300000000000000000000000005ff6964d21e5dae3b1010d5ae0465b3c450f3810000000000000000000000000000000000000000000000000000000011e1a300", + "nonce": "0x29fe7", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x4c", + "value": "0x0", + "v": "0x0", + "r": "0x26f6b5e9f8e5ab6a4479e4bdc521f3c95e8690356d4007aecd5b72974ba4d577", + "s": "0x2937dda96732212ba41fc180fbd7035df24f25a0c86c4d36caffb439d2065cee", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac411258", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x88d58bfbcd70c25409b67117fc1cdfefda113a78", + "gas": "0x1738a", + "gasPrice": "0x66949e1c", + "hash": "0x68447403e11986978fccc95be4f183ced4bad2c4b4a3f5cb0fc422c78d2dbde3", + "input": "0x9aaab648f141765460cb29db5d57efbb06f795eaf129ae4cf5680133af9ba5cea036ab5b0000000000000000000000000000000000000000000000000000000001336cc87371aa496a1b2e426594eab537551cacf446c42a3113ab7cca66b8a9348ce263000000000000000000000000000000000000000000000000000000000168169e", + "nonce": "0x2bb9", + "to": "0x8bf8442d49d52377d735a90f19657a29f29aa83c", + "transactionIndex": "0x4d", + "value": "0x0", + "v": "0x1", + "r": "0x1a8234b1c336934691b005780f161bcbd1123f3df4c3c0b57dd918427695a791", + "s": "0x427f0230400079e1280ebdaff974f1827d264fcb55546e76fd01a8b2a9334f95", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xb2d05e00", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x18e296053cbdf986196903e889b7dca7a73882f6", + "gas": "0x15f90", + "gasPrice": "0xa22f681c", + "hash": "0xdc23c7d107d1cd12ef91128ac4a47eaf580f6960558f29d283ad6a57cb7a4918", + "input": "0xa9059cbb000000000000000000000000288e1ae66b2c55fcbf0fcd1368ec27a174f707dd00000000000000000000000000000000000000000000000000000002540be400", + "nonce": "0x3647e", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x4e", + "value": "0x0", + "v": "0x0", + "r": "0x3606a8020dc92b40e4f52e5c7efba5535525b7041b31ac1a985f54de24116b0a", + "s": "0x4de715aa9e226d9a927961eba034dd4bc97fe6bf718642feb980fb5d8069f9fe", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2e90edd000", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x559432e18b281731c054cd703d4b49872be4ed53", + "gas": "0x33450", + "gasPrice": "0xa22f681c", + "hash": "0x90ef4c43c495e27167053916b5a5557e3df3f083df078d666903517616fbfec5", + "input": "0xa9059cbb0000000000000000000000009daf0533805e89a6d30a8f59b8fac56bb87204860000000000000000000000000000000000000000000000000000000001a76e70", + "nonce": "0x132b3b", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x4f", + "value": "0x0", + "v": "0x0", + "r": "0x93c356d62c182153cc81674ee8d97d6528ae82ab9a5db33606a2f9f8e2f73762", + "s": "0x6b29c00a0130ac70f8ba85dcbad5fbf59d66c164832fc54c561029e9262a4d9c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x74e1881c00", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x559432e18b281731c054cd703d4b49872be4ed53", + "gas": "0x33450", + "gasPrice": "0xa22f681c", + "hash": "0xa4a45496024cc71c51709a818692079f54708f4486eae5243e04ffbc99fba820", + "input": "0xa9059cbb000000000000000000000000c83fd0637d2bb61f7a6c04142f0e101c91907ba500000000000000000000000000000000000000000000000000000000040deef0", + "nonce": "0x132b3c", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x50", + "value": "0x0", + "v": "0x0", + "r": "0x46e4bbbad3479485ce7062802574181e9110aeeadf723df5ed102587b8f938fb", + "s": "0x7c1d9a7e18964a40ad5e031058ff3fc57aed1a49424dd39f2bb07c682ac9c563", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x74e1881c00", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x559432e18b281731c054cd703d4b49872be4ed53", + "gas": "0x33450", + "gasPrice": "0xa22f681c", + "hash": "0xeb78acddbbb51e4de683e3658de077c7de9012b35db4ac35850b9be731ee6b19", + "input": "0xa9059cbb000000000000000000000000d3c2155f43d637e8e17a67933a9858c6961c98fe000000000000000000000000000000000000000000000000000000000d5cb720", + "nonce": "0x132b3d", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x51", + "value": "0x0", + "v": "0x0", + "r": "0x343f39198631a09b62818c177b7bac736fa07ca33dc1c059d2f379dcfacaa182", + "s": "0x38b5d582b7b5237295ebda613c25acbc8898d537f69b8204b730897aaf879b8e", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x74e1881c00", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc8ad355c8291cbd52e738ed1df1f5ccbbbbf00ee", + "gas": "0x113756", + "gasPrice": "0x357b96f0", + "hash": "0x9bd65e0c23e579f90ee919ef4f760c4e2c5ddf65d5edccdd67a0a7328ef405e9", + "input": "0x13d79a0b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000000060000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0000000000000000000000000be9895146f7af43049ca1c1ae358b0541ea49704000000000000000000000000be9895146f7af43049ca1c1ae358b0541ea497040000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0000000000000000000000000be9895146f7af43049ca1c1ae358b0541ea497040000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000010e2b481bc3a72000000000000000000000000000000000000000000000000000f4e1f62e85147340000000000000000000000000000000000000000000000000498b1c1bc774f8b00000000000000000000000000000000000000000000000005138740672ddc7200000000000000000000000000000000000000000000000005bd66766ecb845b0000000000000000000000000000000000000000000000000656c195b70507960000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000038af625257b06c1389c8c398f4a770330e44f5a500000000000000000000000000000000000000000000000005138740672ddc91000000000000000000000000000000000000000000000000049826ff48d95bc00000000000000000000000000000000000000000000000000000000068f2777af3ef4e1477de213e3c0a9dcc25112f3c62d65283db00bab8de61147b78f9a07b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000005138740672ddc7200000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000041da7d9bb4939e52f21f5acbf91f00250f2cdd917d0f831aa272eecaee7e2bda3a6442023dffd67ac1aaa6388daa7ddcf8bd6d05912a5e83d5964b1e1bf2769fce1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005000000000000000000000000a1b9bb95597ba76e41d53c9f53b1e6232b6a77730000000000000000000000000000000000000000000000000656c195b70507c100000000000000000000000000000000000000000000000005bcc0ea005609000000000000000000000000000000000000000000000000000000000068f277bef3ef4e1477de213e3c0a9dcc25112f3c62d65283db00bab8de61147b78f9a07b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000656c195b7050796000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000415366c9e9fe1196390ca87e1e022767fff111692461a018179c4c1c07f57508924cd3bc803c45ebbcb960020d1764e088ceb56e6fdf8cf05a57aaba9115f99f8a1c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000a200000000000000000000000003de27efa2f1aa663ae5d458857e731c129069f2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002438e9922e0000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000000000000000000000000000000000000000000000000000000000000dd49677ad0e4ed52e0c717ac91dabcb5df2515ef000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000144b80f2bdf000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000004104000000000000000000000000177622e79acece98c39f6e12fa78ac7fc8a8bf620000000000000000000000000000000000000000000000000b68a3ce5e2728a60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bbbbbbb520d69a9775e85b458c58c648259fad5f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002644dcebcba0000000000000000000000000000000000000000000000000000000068f2771e0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab4100000000000000000000000051c72848c68a965f66fa7a88855f9f7784502a7f0000000000000000000000000000000000000000000000002a78fe54944d6052000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000000000000000000000000000000c8cf76ded6acf3a000000000000000000000000000000000000000000000000eb82490e0b725ce40000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41000000000000000000000000000000000000000000000000000000000000000087f70560c5eec365190d5de367e2f3380000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000c8ce522638e353b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000041b24648589b998799a4d29f109af80dde8e92a16c50d7ca743a86efb005ad1b8418c9b22a226ece2470de40e466be931126d6ec4b3348528016ec1c826bb1c96a1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e40e8e3e840000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9000000000000000000000000000000000000000000000000eb80f1c0f2a3a6720000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41000000000000000000000000dd49677ad0e4ed52e0c717ac91dabcb5df2515ef00000000000000000000000000000000000000000000000000000000000000000000000000000000dd49677ad0e4ed52e0c717ac91dabcb5df2515ef0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001a45e482445000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000015ca09c763d0b0581781af2c6d8f600000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000010e2b481bc3a72000000000000000000000000000000000000000000000000000000000000000081140000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca03de27efa2f1aa663ae5d458857e731c129069f29000200000000000000000588000000000000000000000000000000000000000000000000eb80f1c0f2a3a67200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003de27efa2f1aa663ae5d458857e731c129069f2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002438e9922e0000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b09d29", + "nonce": "0x39a2", + "to": "0xa9d635ef85bc37eb9ff9d6165481ea230ed32392", + "transactionIndex": "0x52", + "value": "0x0", + "v": "0x1", + "r": "0x4e01489eda68f0cd9bae5a938464f6c9c937510ddba5c9d2785e605aed72b55e", + "s": "0x1e2fbde580b3786b188a4761c5b3d875defecbfcc4a08fab005445b53abdbf0", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xbf0170e4", + "maxPriorityFeePerGas": "0xa81c2d4", + "accessList": [ + { + "address": "0x177622e79acece98c39f6e12fa78ac7fc8a8bf62", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x75f96ab15d697e93042dc45b5c896c4b27e89bb6eaf39475c5c371cb2513f7d2" + ] + }, + { + "address": "0x2c4c28ddbdac9c5e7055b4c863b72ea0149d8afe", + "storageKeys": [ + "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc", + "0xa214b15162c78c6464e5ab06ab626d767ffac37a0858a2cbd1ab2e078f4bfd88" + ] + }, + { + "address": "0x31724ca0c982a31fbb5c57f4217ab585271fc9a5", + "storageKeys": [] + }, + { + "address": "0x3de27efa2f1aa663ae5d458857e731c129069f29", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000008" + ] + }, + { + "address": "0x51c72848c68a965f66fa7a88855f9f7784502a7f", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000000000000000000000000000000000000000000d", + "0x855fecc19a5b2954f79669b9159a26db2e4cb0d7267f46524e2c2c1f977ca7c9" + ] + }, + { + "address": "0x5d4aa78b08bc7c530e21bf7447988b1be7991322", + "storageKeys": [] + }, + { + "address": "0x6048a8c631fb7e77eca533cf9c29784e482391e7", + "storageKeys": [] + }, + { + "address": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "storageKeys": [ + "0x0aff09191133cfad0d49cfb53b64bcb434eec93a823f6575f050914447c322f8", + "0x35319886236d14fde3fb5d2d478c99523591cec1329d23f2a1dd0025f7b62718", + "0x618059526d7d1bb5608c8e3a0740d1f656fa8a764ecca600a8e0e3e0c313ce66", + "0x9529ab6a598e10fcf842276577716c906a4105897a46a7242b663baeb42e545a" + ] + }, + { + "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "storageKeys": [ + "0x15bb318ace3874593e924db0b331186e1ac96545334def7194398d80a4190c1c", + "0x35319886236d14fde3fb5d2d478c99523591cec1329d23f2a1dd0025f7b62718", + "0x356ea57d585b4c2292ee2a39c9da213499f25d18b4fba5671c7bc01208e40e2e", + "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc", + "0x618059526d7d1bb5608c8e3a0740d1f656fa8a764ecca600a8e0e3e0c313ce66", + "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103", + "0xef20d101d16846b84ef30a10e293ea991366e706a3e41d808dc5189de75e68b1" + ] + }, + { + "address": "0x9008d19f58aabd9ed0d60971565aa8510560ab41", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x00d6bcc391261774067ab11982b04953e0cedbc6e08f74b921e4d8952bde7fcf", + "0x19b6e884ad52c7f9731f77cce175569b3184e424169445c78c55296720b71945" + ] + }, + { + "address": "0x9e7ae8bdba9aa346739792d219a808884996db67", + "storageKeys": [] + }, + { + "address": "0xa331d84ec860bf466b4cdccfb4ac09a1b43f3ae6", + "storageKeys": [ + "0xdf51137274c15a4f4d502fad8bc517271298cb3a19298199d7f9fa10262281ac" + ] + }, + { + "address": "0xba12222222228d8ba445958a75a0704d566bf2c8", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000003", + "0x11ef7aceafa1f92965a612374f624aa1821f1722860c8545d39ee4c51f81cb11", + "0x880fd49b8fcc88cf13d27747a6e53a2b2ee927afb596868d7ad88347c3b292cf", + "0x880fd49b8fcc88cf13d27747a6e53a2b2ee927afb596868d7ad88347c3b292d0" + ] + }, + { + "address": "0xbbbbbbb520d69a9775e85b458c58c648259fad5f", + "storageKeys": [ + "0x5d180c6335474cd028cae16a15d30bafd88d4088b3be08d68ae819e396d28956" + ] + }, + { + "address": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x11ca248d2293c2ddce6cf77f0757439df8b19f6af3568d020126de693ff7ca2d", + "0x1790b1707bab416a5743a10d27133ff468dbe84cd87a85853cce48c15116e593", + "0x1caf94d9d420cdfdb9729ee5c59692498b7c86b26df6a396f0345cc796cec1f5", + "0x2a0a6a550f0dd1773efc6fa2e16df7c2d5b2a94774169471f842960a0be82550", + "0x5e50dde48cba4d4b793acbdb6cd21c912aee05666e9e461e8f0582c17f1884a1", + "0x5fe6d609c400146a969f025c3363bad1770a8380b9b7d9c95ebd847e4a38aa30", + "0x6133b09a015f75464533f0f24bd13e1ec42086d62bd41789c5a78a4cfcba6487", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x857f4c1e43008ee00da3bdc986b92bc4dca25c7c9d6d3edbbfd22b02d9027495", + "0x9d98752c354deebddd53535455198eacf8cfb934237d3523207f70386be5e3dc", + "0xb1209bae0c5010589f51835a5a931685b5941f745502001c67242cc2a7dcfc49", + "0xcaa90f17444ba143b12990f0510adf0cc79e3a41f7ae4aaf7755cc60a932af4d", + "0xcc236083e86ee3df0f3160002f381f1404bd44c4dec1322196f34d52548202f5", + "0xcdc9e6114e936f3f9d5de44929837285374e9a19e803d461b700fc0ecd6624db" + ] + }, + { + "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "storageKeys": [ + "0x3a3aec5717af62dfc0f5ede964a3e44cef7c5ba4453963ee6e3545ea9708690f", + "0x9d98752c354deebddd53535455198eacf8cfb934237d3523207f70386be5e3dc", + "0xb1209bae0c5010589f51835a5a931685b5941f745502001c67242cc2a7dcfc49", + "0xc14fc4a67ca8528a88afab277530aca202ed5d940051c881248422629a12e7fb" + ] + }, + { + "address": "0xc92e8bdf79f0507f65a392b0ab4667716bfe0110", + "storageKeys": [] + }, + { + "address": "0xdd49677ad0e4ed52e0c717ac91dabcb5df2515ef", + "storageKeys": [ + "0x755465901bf4529c286889dd38157ebb5f543055f51eb88062f90ce770050218" + ] + } + ] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xae2fc483527b8ef99eb5d9b44875f005ba1fae13", + "gas": "0x16d98d", + "gasPrice": "0x3013c001", + "hash": "0xbd2eb72cc8e20c308a352708daeebf00c5cde074b91da3c701265ad17c749c6a", + "input": "0x2bd06c7a0cec48f80936fb51dac25af91099775449d5002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0035decafa3f8a0135350639c1bb0770c2624f15d002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0d4a6051098b6ab685ed98f6bd91e2be8b055ad86002454efc6e50000000000000000000000000000000000000000000000000000000000000000d08ed17410a8693f2cf2c6ab75f66eae4233645802002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0af160c7298de3273d3882d96a08be87839a40fdc002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0ead71c6cef700894978aba066f2587aafd7ac474002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0cc3d791ad17122f8cea26a10923bb9e25f0a1562002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0bc9578e7bddd71afe958bfeb5b0aec176fe42ecb002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0e743d13a3dd53fee9f9c3697b22381a74d15562c002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0769c4c8eb4fa0cd079af5eee008a207eb12047b8002454efc6e50000000000000000000000000000000000000000000000000000000000000000d06519f2fcd577981f65e851e8c9c67dc0aad8f3d2002454efc6e50000000000000000000000000000000000000000000000000000000000000000d040895d10398860b161e7127579050c4085d4b185002454efc6e50000000000000000000000000000000000000000000000000000000000000000d05308e069e59b7573362c29d28998226d12bde0ae002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0a6428751012b04e1577cd22c7e488c82951aad13002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0e91376e9efb7e184f0a4533727cc8c6c6d48da75002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0128d51e9529d45c7497ff76023ad43755d0c0067002454efc6e50000000000000000000000000000000000000000000000000000000000000000d09f9b966187facf91234c35ca91e555b995010ecc002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0d8892f6443d04b7f10ce67e5c2200aefac1c162a002454efc6e50000000000000000000000000000000000000000000000000000000000000000d0c1d4a4988f7f2d21ebd33137eb29b312d03f86f6002454efc6e50000000000000000000000000000000000000000000000000000000000000000d045b975fa5d4dfc36008f2d25b67c1d5f4a681058002454efc6e5000000000000000000000000000000000000000000000000000000000000000066553e9c493678d8606d6a5ba284643db2110df8235c0343f106c42dab2f00ae78736cd615f374d3085123a210448e74fc6393c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20064d0ae78736cd615f374d3085123a210448e74fc6393002442966c6800000000000000000000000000000000000000000000000002dab2fb00000000acc434722ebf06", + "nonce": "0x506721", + "to": "0x1f2f10d1c40777ae1da742455c65828ff36df387", + "transactionIndex": "0x53", + "value": "0xb", + "v": "0x1", + "r": "0x42e6f6dd5b42ccbd2274e10e9e8e9f3049960df08ba872d73752cde30edb65d9", + "s": "0x1929211f830fa78df095bd46b6c67c558ed97ae823c942c051570c1d3f1df039", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3013c001", + "maxPriorityFeePerGas": "0x3013c001", + "accessList": [ + { + "address": "0x3bdc69c4e5e13e52a65f5583c23efb9636b469d6", + "storageKeys": [ + "0x00ab4654686e0d7a1f921cc85a932fd8efbc8a1f247b51fa6bca2f7a3976a5bb" + ] + }, + { + "address": "0xead71c6cef700894978aba066f2587aafd7ac474", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x000000000000000000000000000000000000000000000000000000000000000e" + ] + }, + { + "address": "0xbc9578e7bddd71afe958bfeb5b0aec176fe42ecb", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x000000000000000000000000000000000000000000000000000000000000000e" + ] + }, + { + "address": "0xe91376e9efb7e184f0a4533727cc8c6c6d48da75", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "address": "0xd4a6051098b6ab685ed98f6bd91e2be8b055ad86", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "address": "0xcc3d791ad17122f8cea26a10923bb9e25f0a1562", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x000000000000000000000000000000000000000000000000000000000000000c" + ] + }, + { + "address": "0x5308e069e59b7573362c29d28998226d12bde0ae", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "storageKeys": [ + "0x4d428fa5e631df6e9bc2cfcc4c6f233552a7da6ac61f6a0957f360fb6b3b17f2", + "0xbd5af5151dcb9feb2c4ef23509c863dd4415e4d2c27b5c08786933a8ed41acc7" + ] + }, + { + "address": "0x560656c8947564363497e9c78a8bdeff8d3eff33", + "storageKeys": [] + }, + { + "address": "0x6519f2fcd577981f65e851e8c9c67dc0aad8f3d2", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x000000000000000000000000000000000000000000000000000000000000000f" + ] + }, + { + "address": "0xd8892f6443d04b7f10ce67e5c2200aefac1c162a", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x000000000000000000000000000000000000000000000000000000000000000f" + ] + }, + { + "address": "0xe743d13a3dd53fee9f9c3697b22381a74d15562c", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x000000000000000000000000000000000000000000000000000000000000000e" + ] + }, + { + "address": "0x6c7a0cec48f80936fb51dac25af91099775449d5", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "address": "0xae78736cd615f374d3085123a210448e74fc6393", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xb13754d277606a2d2a4b0b75aa440d8613b1fa8a1d6c437b93a244b976fa6435", + "0xd76def9025f964405f3d150080e0f5c1e5eac5059422c506a88c392b617dda7e", + "0x0000000000000000000000000000000000000000000000000000000000000003" + ] + }, + { + "address": "0xc1d4a4988f7f2d21ebd33137eb29b312d03f86f6", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000017" + ] + }, + { + "address": "0xa416a7a07925d60f794e20532bc730749611a220", + "storageKeys": [] + }, + { + "address": "0x035decafa3f8a0135350639c1bb0770c2624f15d", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "address": "0x44e31944e1a6f3b8f805e105b130f8bdb7e2ebd8", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "address": "0x8ed17410a8693f2cf2c6ab75f66eae4233645802", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x000000000000000000000000000000000000000000000000000000000000000f" + ] + }, + { + "address": "0x128d51e9529d45c7497ff76023ad43755d0c0067", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "address": "0x553e9c493678d8606d6a5ba284643db2110df823", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000002", + "0xbfd358e93f18da3ed276c3afdbdba00b8f0b6008a03476a6a86bd6320ee6938b", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000004" + ] + }, + { + "address": "0x6cc65bf618f55ce2433f9d8d827fc44117d81399", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "address": "0xdd3f50f8a6cafbe9b31a427582963f465e745af8", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "address": "0xa347c391bc8f740caba37672157c8aacd08ac567", + "storageKeys": [] + }, + { + "address": "0x769c4c8eb4fa0cd079af5eee008a207eb12047b8", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000013" + ] + }, + { + "address": "0x9f9b966187facf91234c35ca91e555b995010ecc", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000017" + ] + }, + { + "address": "0x45b975fa5d4dfc36008f2d25b67c1d5f4a681058", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000017" + ] + }, + { + "address": "0x1d8f8f00cfa6758d7be78336684788fb0ee0fa46", + "storageKeys": [ + "0x127b4b1443a81eee5d02446ac596ef4531f2941cdd96446159b3ee99b70d438c", + "0x18681ae3313545fc40918f2a4f696b24577bc493dd88b5607959adac1cf59ca1", + "0x0a21bb9bd92d19784f207beb425d3ec5470f391b1056c13229d0fa746c12de79", + "0x24661fa43cfcbbce20f500b5c12b4977ba40531f28ba0cac1a442597c665df81", + "0x4aa51579c872c6e3fae57ef8364fbc3a9393dcfdbeff9c147142069a2579d330", + "0x49585eaefe7634c78147facb0153201345aa8526bd04dfba2c88d373611930c6", + "0x66fbb2bc01c7f3354379985511bb047cddc3089cc9aa6432e0b4de8646473756", + "0xd717895285c810988c435fc34d63d6f3677caa4cb42a484c15f898d73c182dda", + "0x29a251e297570c5a561daa616a39d200bee8572b4e51f9e912f67f0af5f6dd8f", + "0x66d7fccdbe2700d82c48c3288fe673ef5b0ef915ccb2d1ec3f93ade5f2e95b79", + "0x226b556b23fa0337b6105dfc1f0fae755477e9716c5318bf267bfc8c72b54940", + "0xd43555e5e9cbd01a7a0fa36f057b7bb00168ebd5adb2c421c0bfe79bb1f51390", + "0x79cababc0ee8254548fad3b1774bc2bbbf5c7f680db72cf40a5ce4c6a6e6ad04", + "0x8c4f7d2b56bbfa7011cbc31adfb95271b91aa0cce467b7912ad0d1579d2335a7", + "0x04dad0ae6956a727006dd0b6ad74ae523699fd64d5d5f7b6a5cbe0afda5e52ba", + "0x3d568e1d0910a705e47c1e34016aabfe207c556ec3d7b6bced9112251062388b", + "0xa9ca39f6099c1d39d48a086017baafe1c63c2875fbe17fab99a52408cbbc80ad", + "0x759d7cb53a30a0100c34767d09f121a3f2ce6cdeb73834d2bd68673c1b297beb", + "0x912ecbfb96f3cc8cb7d80c618c53e331b1c719e1ccf9830089ddf6f3861edad9", + "0xc96e61de0fee2cc8668895926c0b393f51a1454464180018c82f8dc764491539", + "0xf4cc19457af09f7bd6b792f1932b490f46f646363b59314a4c6ad6ef1c9f44e4", + "0xfc96c014881398b1c801953c6315710140c45b9f91fa14286833bfb2b68edfdd", + "0x2a33d47696f44ce64f6428f6578bab3cf42d09467f0085e7e2cf63e5732fe944", + "0x671b2f713bde53962a715f590cc8404e941da7d9b161ad6cde80405b7dd005ce", + "0x6b435be1d1bf36b9acf82d44dbffac91b129d8c6f447cea0cd105b65d355993b", + "0xa423c431fcce2e6472eefe78d03824adca6adefb19d9fe553768754209b1879e", + "0x673381d37c82bf976cb498bedede3498a4bfd19bbf742fcbd709f05f754b980c", + "0xada5623cd46c40afb4bc5a397a7e76242f78a98958558c5d20ca1574e2fcd02e", + "0x3349aa583ddf6987785d4587e6c09eba31fc07dfc25a015b2c12c70125de8b5b", + "0x8a5e638174d8aca32e35588efcfb56d7d7c41fa53d63eea9543249b914ad2cf8" + ] + }, + { + "address": "0x03d30466d199ef540823fe2a22cae2e3b9343bb0", + "storageKeys": [] + }, + { + "address": "0xaf160c7298de3273d3882d96a08be87839a40fdc", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000f" + ] + }, + { + "address": "0x40895d10398860b161e7127579050c4085d4b185", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000013" + ] + }, + { + "address": "0xa6428751012b04e1577cd22c7e488c82951aad13", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000c", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000013", + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000000000000000000000000000000000000000000e", + "0x0000000000000000000000000000000000000000000000000000000000000017" + ] + }, + { + "address": "0x9e966733e3e9bfa56af95f762921859417cf6faa", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000" + ] + } + ] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xebbe7f0a3e3cd1c66e03a44e207576fac5546f3e", + "gas": "0x1563e", + "gasPrice": "0x8462031c", + "hash": "0xa2d52d925f138c0f462f6ecac59d63c5cf6b37c64a5b59f9fb8aad24d0935163", + "input": "0xa9059cbb000000000000000000000000813abd46337598f9216cb5215dffa9a25ef7180500000000000000000000000000000000000000000000000000000000054a5ec0", + "nonce": "0x6", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x54", + "value": "0x0", + "v": "0x1", + "r": "0xf1290d85b80f562727294d84936f104ea324a1cbdf501edb42b02debb8735221", + "s": "0x1aff7fb32a05776ad814548da11a3b5e36fea4df3d1383ac5d1d86f746f4af3e", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9a6f85c0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd5e20419abfbd294f5a05a3e3c1f4d5ffa1aa760", + "gas": "0x15f90", + "gasPrice": "0x8462031c", + "hash": "0x5cc6c8485a8705049da2113cea6f59c1ccafd0c245b24d46b9040844ffc89dff", + "input": "0xa9059cbb00000000000000000000000048a6e59b075df004af40ea78a94b90d32e3b969b000000000000000000000000000000000000000000000000000000003ba09660", + "nonce": "0xd1", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x55", + "value": "0x0", + "v": "0x0", + "r": "0x56380bd23917bcd29a17e037903372aaf3c4534b3e4cca8dbc9f10458eae050e", + "s": "0x4cb99c139e2905ef5ca0c511a1b93fa6f5e0eef874a7e15699353c4225625e94", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf4fb3240f9a599f4b6e8f060f0c2b4e22bda0e7a", + "gas": "0x17a9a", + "gasPrice": "0x8462031c", + "hash": "0xc0ecbdbd4643be72de92445bc6323a936201159ea0752f6ff56f25653526c726", + "input": "0xfc5f10030000000000000000000000000000000000000000000000000000000000000060f4fb3240f9a599f4b6e8f060f0c2b4e22bda0e7a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000011e3ea34278a6d62e321430c03b7a339b637157ff20f43ba4afe23bc9040adf0210000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4fb3240f9a599f4b6e8f060f0c2b4e22bda0e7a000000000000000000000000000000000000000000000000000e44cdf08ffaa3000000000000000000000000000000000000000000000000000000000000008900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c6761735a69704272696467650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6a756d7065722e65786368616e67650000000000000000000000000000000000", + "nonce": "0x1b", + "to": "0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae", + "transactionIndex": "0x56", + "value": "0xe44cdf08ffaa3", + "v": "0x1", + "r": "0x318d89750b0f2c9f5322f36dd6f8bb608e5486ad9953b784051b042c3d4f37ce", + "s": "0x26d77cb8c737f75995a25d32111df411571c3ccda49d75bceacfec1eb7087f32", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9bd325f0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6887246668a3b87f54deb3b94ba47a6f63f32985", + "gas": "0x5208", + "gasPrice": "0x11964fc1c", + "hash": "0xc71d8ecaec5aa6ec9eb6009f0d2be672e97008a5bbcf49fa27c6490591d0b46a", + "input": "0x", + "nonce": "0x132346", + "to": "0xff00000000000000000000000000000000000010", + "transactionIndex": "0x57", + "value": "0x0", + "v": "0x1", + "r": "0xe4a2fae6ec3023f965d8b8d8b20172e94ac23dd905317e5927e29fa315d16d2b", + "s": "0x3c62b2ff8206f1de734b166a4359f904c593a9ac21823e6947afa5c501b36b9a", + "type": "0x3", + "chainId": "0x1", + "maxFeePerGas": "0x2cb417800", + "maxPriorityFeePerGas": "0xee6b2800", + "accessList": [], + "blobVersionedHashes": [ + "0x015071cc517524056632a3eb9b9c4f344b5dac9dacb07c50050017dad28cda08", + "0x0127e18e52b43ed5fba4a4824b321c374819076330651d69c7390a315b3bd955", + "0x01a497f822ffe0674a3581b17cfc8b6b8a68737321f244a4b05932abca58f86b", + "0x01b7dc4425ae151558fe1ac0138d9f656ea8c55269e9dda48207a2bcceadeeac", + "0x01942680a2507aa42d0d559905d2aa01d0baab6e7aa43c7c6291d9115e1d2d31" + ] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8c7b2ffb617c343a03137bc5baae5c9d4536ea29", + "gas": "0x14793", + "gasPrice": "0x8462031c", + "hash": "0x7e3edb470dfb57b1cb606feb6ad550c53ee68a15caf5f27d8564005d66d8d399", + "input": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x69", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x58", + "value": "0x0", + "v": "0x0", + "r": "0xbcfdd9a9c6aacaeaea64ee685419f8515187cba33ca89814b9f4d46ad5f90099", + "s": "0x2afa47eb9c603c62575e63754a2322bd15bcf6124936fc406394d34e4454a5e8", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9a6f85c0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xfbf05c9dd9580eb6ce78e4472e35190b31e5c386", + "gas": "0xb435", + "gasPrice": "0xa22f681c", + "hash": "0x16412a83924255f5c32adf381d5f372402314dc06e65f7aa9ce828a15be2e817", + "input": "0xa9059cbb0000000000000000000000007772fe062c2b6ac0c0f83ca4948177be4889b1b30000000000000000000000000000000000000000000000000000000002de5d73", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x59", + "value": "0x0", + "v": "0x1", + "r": "0x700e649b32d8670f8b42ced55f5e16645221e5f208c5d82bdf90ed23b6a3b4aa", + "s": "0x4d07d513b853cfd660ddbdc1c18c0fbe45ad53b88db3a4675a4a3336c82dd14f", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xa6815ce1", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x08badfaed232ecfc016299b50a8ba83cc09e1ff9", + "gas": "0xb435", + "gasPrice": "0xa22f681c", + "hash": "0x0eaef1926e3ccfbf0d781fd5f2a2fc38b491c8e5437473da690ad5220c3b1f89", + "input": "0xa9059cbb0000000000000000000000007772fe062c2b6ac0c0f83ca4948177be4889b1b300000000000000000000000000000000000000000000000000000000018ca839", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x5a", + "value": "0x0", + "v": "0x0", + "r": "0xe5cc5e5d04346edface09d16f9da78d56d27e890e8f4c06532cd2b40e223e083", + "s": "0x41f2370e3879a0d78f5515843a061209a7bd7c363430d38a1ae941dada53217c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xa6815ce1", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0835a1e5d458275001e134b48b1f61077852f144", + "gas": "0x8dc53", + "gasPrice": "0x391d3f85", + "hash": "0x037d9d6641d8ace70547ee57f32e344662ce0c0d251507e8229596fc22b00347", + "input": "0xa94e78ef0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d85a68faa78b4431dce816c157b66fc9911b3612000000000000000000000000000000000000000000000dc9ec5bd4b7cf7c105f000000000000000000000000000000000000000000000000002f0e529fece90a00000000000000000000000000000000000000000000000000318856f92f4626000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000009800000000000000000000000000000000000000000000000000000000068f2776bad3d5495d5c04b06bec8e70e5116d35d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000320000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000009be264469ef954c139da4a45cf76cbcc5e3a6a73000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000006000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000068fbb173000000000000000000000000000000000000000000000000000000000000002bd85a68faa78b4431dce816c157b66fc9911b3612002710a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000080f5509edd9a7aafd14cf2b0436dc23385f760d700000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000e92b586627cca7a83dc919cc7127196d70f55a06000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002088df8ec76603509cf8d6fd540835a1e5d458275001e134b48b1f61077852f1440000000000000000000000000000000000000000000000000000000068f2776b000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff86000000000000000000000000def171fe48cf0115b1d80b88dc8eab59176fee57000000000000000000000000000000000000000000000000003208d1e7609e5900000000000000000000000000000000000000000000000000000000032f752a000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000032f752a0000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000411f856fd30a11ef1610b5eaa09270bb0dad713e2a5abdcdae1b3b4b9bafe0bf7c102b19abee5ef0f84806d54952619d07a16e2b60dff9036bb8dc39b44d83ab801b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x44f", + "to": "0xdef171fe48cf0115b1d80b88dc8eab59176fee57", + "transactionIndex": "0x5b", + "value": "0x0", + "v": "0x26", + "r": "0x95fb56c3a4d30eb14b252169f286181e7ae1ef13c7ddc9a9532e551d7aa1cbd3", + "s": "0x5245100a8209e5a906dca322905fe2f548bdbb20dc2168b80d4195891741dbd3", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2cc8e4721a001f1921298bc9d894aca13630b0c6", + "gas": "0xa63b", + "gasPrice": "0xa22f681c", + "hash": "0x58bc6db79db7b669faa9098ee46af9f28ed950d7df72091f0ff845a47293a699", + "input": "0x23b872dd000000000000000000000000e54360d5366ff9844b8806f4f105c9e2201e00d60000000000000000000000002cc8e4721a001f1921298bc9d894aca13630b0c600000000000000000000000000000000000000000001b42a4ee546214e3dda00", + "nonce": "0x18fd", + "to": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", + "transactionIndex": "0x5c", + "value": "0x0", + "v": "0x1", + "r": "0xb271f497ae43de020ffb021c5fd5a0352b27d5a9ef62c95a2f85b6000cb575c1", + "s": "0x3b8d66db38776bf9cdb28d3c0c8117f029d82ccea11e8aa144c57a68bd6c93eb", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac6ad5fe", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2cc8e4721a001f1921298bc9d894aca13630b0c6", + "gas": "0xa647", + "gasPrice": "0xa22f681c", + "hash": "0x2f0152bbc32d430e270c2e9c7fd349ada64e442c83c902cd986cdfb55935faf4", + "input": "0x23b872dd000000000000000000000000aa71c37ba6da74f31310a48d1c0cdaea630b6b5f0000000000000000000000002cc8e4721a001f1921298bc9d894aca13630b0c600000000000000000000000000000000000000000027400f2f15bc6cada83400", + "nonce": "0x18fe", + "to": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", + "transactionIndex": "0x5d", + "value": "0x0", + "v": "0x0", + "r": "0x2b9523e46319f47cb06a44a6995dfc671a8873a3f936cb4a59454c554e66dc4f", + "s": "0x73af4574951f72c5eba7927550ac2120b8dd1f479b32bbca6f9196cde56fbc7b", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac411258", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xfa88e217b477ab486c112b1781ae82c766390796", + "gas": "0xfe7b", + "gasPrice": "0x7a010f2a", + "hash": "0x100d1b1cb430c15923fae6200ff31541af7eaa103c74de53e973c79d611937fe", + "input": "0x095ea7b3000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x1", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x5e", + "value": "0x0", + "v": "0x0", + "r": "0x6cbe3acbe031757e42bb013302fcfb56c749274ff7e1efbd4f2d760f4cc7aba7", + "s": "0x2bf732140eaa8e711604c1ab4643f3102aeb9234a74c28fc370eabcbfc30cc2c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x7e2de43f", + "maxPriorityFeePerGas": "0x4f073b0e", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbe2c1479b24fff0b3b69b37a3fb99a737f46b0da", + "gas": "0x7a120", + "gasPrice": "0x3b75ac40", + "hash": "0xd7ad408cb0d22deb4c174d6b8b557244bfa721007d30a069a2f8c19fe07902ae", + "input": "0x5627c47b000000000000000000000000000000000000000000000000000000000000003ca6f013ee236804827b77696d350e9f0ac3e879328f2a3021d473a0b778ad78ac00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000ac6b00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000168df9e3ce37ed000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000953706f745072696365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003627463000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037573640000000000000000000000000000000000000000000000000000000000", + "nonce": "0xf201", + "to": "0x7bb69f559ce50af8e93d45c65b1c147fda8e7031", + "transactionIndex": "0x5f", + "value": "0x0", + "v": "0x0", + "r": "0xff1c33183b4747b9ce202251d2f118df711b4fdcc54c6fef0dd8eb95c16359e1", + "s": "0x420cf275802f49159a6948255d6fc4eb1bbd63822c0951a63d9bd00663930fac", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3b75ac40", + "maxPriorityFeePerGas": "0x3b75ac40", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc6530be5248ce3b873f0eccbb4d0f34177cb3c22", + "gas": "0x11c8a", + "gasPrice": "0x8462031c", + "hash": "0x94a41ee1cfd8b85cfb93eb8cb4ed4ca35700bac45ab91c353b4b425b58170643", + "input": "0x095ea7b30000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae000000000000000000000000000000000000000000000000000000000d20466d", + "nonce": "0x2d", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x60", + "value": "0x0", + "v": "0x1", + "r": "0xec7a32d37dab7fe2cbae66ea3ca5daa3cdd5d21a14c9cf8743969c562f24697", + "s": "0x2e185b2f16359b35518a506aa2550be73b8c039e71a5efd95727a28efd855ac8", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9a6f85c0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xaa85d71f6c655b1e5f588011ca14e81400e0fe42", + "gas": "0x11c49", + "gasPrice": "0x8462031c", + "hash": "0xb290a68871b4f6d8cc743305e8c3341d82078d0eac7f8b0d3c5b9992b04338c3", + "input": "0x095ea7b30000000000000000000000000000000000001ff3684f28c67538d4d072c22734000000000000000000000000000000000000000000003b53afe9e79995c39800", + "nonce": "0x1e", + "to": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", + "transactionIndex": "0x61", + "value": "0x0", + "v": "0x1", + "r": "0xa26f7c066ca91f7350ac9f13f317854f9175f9335be6ce3ecdbeabe1044bd76", + "s": "0x1e542623d3aa1152e5a7674b4a85de0ca2bd81002f15ced21e28051149d17ab5", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9af8da00", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xcb53690f88ecfcb14f5b87438672b7344e7bdc48", + "gas": "0x11c1e", + "gasPrice": "0x8462031c", + "hash": "0x39ac32b7af59e8552c7d1f63d3dd1346a69bba8e181b6f318583c7bef3d22505", + "input": "0x095ea7b30000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000000000000e2822584", + "nonce": "0x1d3", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x62", + "value": "0x0", + "v": "0x0", + "r": "0x322d0212342827bd644c28ce91e3a49e169276fc010ad3ae0e79e48b58e36402", + "s": "0x4898e5fc5e16d5b9ffda718a58fc46ce8fbf87ad521f002302124d1d6b925ca2", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9a6f85c0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd507220893b9f98fde4cdf42d0f910378e2f6ebe", + "gas": "0x9ea4", + "gasPrice": "0xa22f681c", + "hash": "0xd9390a62b78e2f8ae7701cb56e7013009b86c0aec7d6aa8a7d6de17049076e9a", + "input": "0x23b872dd000000000000000000000000e129188380d48fa09a6a89ac91adc761afdc1612000000000000000000000000d507220893b9f98fde4cdf42d0f910378e2f6ebe0000000000000000000000000000000000000000000000000000017da8b0876d", + "nonce": "0x1f9", + "to": "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac", + "transactionIndex": "0x63", + "value": "0x0", + "v": "0x1", + "r": "0xd8a3e71074e5243a94596be3025beeb81f854e7493fe55182e1265048b417e94", + "s": "0x434f2cdd83526be5653e71e0deda3c150df057f5750607bea9340a6974ac4601", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xac411258", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x7983e61f4f1a3b7349f62a0c1e346925027c3cf7", + "gas": "0x113b8", + "gasPrice": "0x8462031c", + "hash": "0x43ec867174d7cb80ca783cc562852754397f405acde838343936f9419e2951ee", + "input": "0xa9059cbb000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef00000000000000000000000000000000000000000000000000000000004331d6817a73718f2d48257dab6fd0551e4ac760aa0574219cde91c7a3713c8edf720b865d8597", + "nonce": "0x61", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x64", + "value": "0x0", + "v": "0x1", + "r": "0x9441dc0b6178206bdedab03c1060eeed35be330a1098e00c2a675afbcf7a4efe", + "s": "0x12039e38b74479631db8a5bcd04f70495443d28249cf829fadbb46a7347ff9ca", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa29c8cc7ed1a1dd3d83b699014d6ccd998a530a7", + "gas": "0x11068", + "gasPrice": "0x8462031c", + "hash": "0xc6ea3c2cd531159e01f9a567da3bfb172ac89dbdcb8d0c43e6246bc5ec72a544", + "input": "0xa9059cbb0000000000000000000000005e81801c59160aa1c3552b1a9a5fa024b0703ffd0000000000000000000000000000000000000000000000000000000011584ec0", + "nonce": "0x5", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x65", + "value": "0x0", + "v": "0x1", + "r": "0x28a6195950bc2d5c88d4006c0ad8697df4693abdef9af2c7329734aeb9d68dd5", + "s": "0x1323e63c9cdd83ec1a616d5e1543d9b5f9b8c12a64bdcd832d240fe2e090d9d7", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9febee84", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5ce095568097adf980d7aaeece598eb44dee3025", + "gas": "0xf666", + "gasPrice": "0x6d21d230", + "hash": "0xc8a005db0c4029324e36f5178452691460e9204a08e8fbcc1b01f2e736717780", + "input": "0xa9059cbb0000000000000000000000006d14037084fdff90c3f6172a9cf9b98453ff8fc20000000000000000000000000000000000000000000000000000000047868c00", + "nonce": "0xa", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x66", + "value": "0x0", + "v": "0x26", + "r": "0x20bfa84f03e7d7cbb4d492e0569c731f74d0c5e5d6808212fd917e721ca76abb", + "s": "0x4965434ad1cfc477054a3aeab4beacb5448c349e1600670225471c2764c0fcf3", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x573a0fd96f027069b734b7e5039b4a7c9502df34", + "gas": "0x10ac4", + "gasPrice": "0x8462031c", + "hash": "0xfa122308379596e00a22693f268b39fa22209d7396b7507600df54feabc5a917", + "input": "0xa9059cbb00000000000000000000000078f81ccc5d197d49a81ef38cd876e55d1272acf70000000000000000000000000000000000000000000000000000000017d78400", + "nonce": "0x5f", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x67", + "value": "0x0", + "v": "0x1", + "r": "0x867fb57c1ebc5eaf46a9ac0105bb0791d5ffa6081b947754b59d113b7ddd85e2", + "s": "0x7a827f503fb3cdc23345da4ee4f634a5dce42bf6fbe9bc53d2f706648074e2d6", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d5c09f3", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf84633805ca46d60b0fb585314a4049526a6e18d", + "gas": "0x10a1f", + "gasPrice": "0x8462031c", + "hash": "0xccb2657983980cbcc12c0c2dbb7f82ee2d048361202714e6933445c217826341", + "input": "0xd0e30db0", + "nonce": "0x121", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "transactionIndex": "0x68", + "value": "0x2afce2c9c84000", + "v": "0x1", + "r": "0x872933f288db67c4260112bf6ceb42fafe1591c68b03c08c3067d11eb22fa177", + "s": "0x585ff5effa2ea47dde9493bdd8248419fdef40c1a05e5b36799e356f6f70c1a6", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d5c09f3", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf8191d98ae98d2f7abdfb63a9b0b812b93c873aa", + "gas": "0x14b03", + "gasPrice": "0x66949e1c", + "hash": "0xf08aab0ae020d5def33bceffa5e1eff9051be7cb9b98bb3d5b28dd8c2678f185", + "input": "0xa9059cbb000000000000000000000000841ed663f2636863d40be4ee76243377dff13a340000000000000000000000000000000000000000000000001134d972adda6800", + "nonce": "0xeb92", + "to": "0xcf0c122c6b73ff809c693db761e7baebe62b6a2e", + "transactionIndex": "0x69", + "value": "0x0", + "v": "0x0", + "r": "0xc8446b9de279a520f494da00df62688053fbb20fb52a9185d706c0489016b84", + "s": "0x6063b00d6b104b8ceb5e17d4eac4fa1a5751ef99fa05c47719d2d0bba45e9883", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2e90edd000", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9642b23ed1e01df1092b92641051881a322f5d4e", + "gas": "0xc350", + "gasPrice": "0xe2bb90df", + "hash": "0xc23ae6e32088c6ecaec47b95259327b4cdbc42fd219e6e898240b37f954eff8a", + "input": "0x", + "nonce": "0x1ff878", + "to": "0x80be1fb4ae258de2215dc301f855200fa4592ae6", + "transactionIndex": "0x6a", + "value": "0x5b4e038aba4000", + "v": "0x26", + "r": "0xe673e10999b98367ead6e7a68e46a8d7e6f418405c20ee5f6b0e2756d12b23e8", + "s": "0x4eebbd2856930a586e2321c3d18116a1875f65e84311347c2c8cba27e33b9357", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9642b23ed1e01df1092b92641051881a322f5d4e", + "gas": "0xcfb5", + "gasPrice": "0xe2bb90df", + "hash": "0x49cf041dc033ae0a540a61acb3b47bed45e2c2452797cd4f02c036032588c730", + "input": "0xa9059cbb000000000000000000000000d862cdcfeb856c32b3c4f7563f4811d8ddfd42e2000000000000000000000000000000000000000000000074d0b0990ffa3e0000", + "nonce": "0x1ff879", + "to": "0xa9e8acf069c58aec8825542845fd754e41a9489a", + "transactionIndex": "0x6b", + "value": "0x0", + "v": "0x26", + "r": "0xa4b1b28e397cfd60b2842d5b3830cc8f8b393adab6d620f546d324ad6365369c", + "s": "0x3b87e23b370d85205cdf3494518e2333901e6d2b6f6cef338bc00a501f0686e1", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9642b23ed1e01df1092b92641051881a322f5d4e", + "gas": "0xec7f", + "gasPrice": "0xe2bb90df", + "hash": "0x1960227b248c7e781bb23739d31788fd9a82a848626ea387610d43acb1a998ad", + "input": "0xa9059cbb000000000000000000000000d862cdcfeb856c32b3c4f7563f4811d8ddfd42e200000000000000000000000000000000000000000000000ac966f7c23f3a0000", + "nonce": "0x1ff87a", + "to": "0xd9fcd98c322942075a5c3860693e9f4f03aae07b", + "transactionIndex": "0x6c", + "value": "0x0", + "v": "0x26", + "r": "0x29f079bdc9bcef0f7fa6c3934926ba3a76397df89ef39e0f559e1f0b7e775cf0", + "s": "0x1b54246013698134ef300059c8a5cb38be13b291e34b8976db56cd5b052386f0", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc9ff4f259689702c84d4abde296a7c1a4948d940", + "gas": "0x280c0", + "gasPrice": "0x48c7391c", + "hash": "0x8bfe8f055db52eeab6c38962ee93a86261ff6c8c4eeced563784e57a5d7abe95", + "input": "0x522ea81a0000000000000000000000001789e0043623282d5dcc7f213d703c6d8bafbb04000000000000000000000000000000000000000000002a5a058fc295ed000000000000000000000000000000c9ff4f259689702c84d4abde296a7c1a4948d940", + "nonce": "0xc6", + "to": "0x051f1d88f0af5763fb888ec4378b4d8b29ea3319", + "transactionIndex": "0x6d", + "value": "0x0", + "v": "0x1", + "r": "0x396d077ea1fb8b0fbb81064d03df2266a7f6b6367faa66ebf9cddc1b95daf662", + "s": "0xdbdf8cb8654ef4d87ad6beba2a15d7e207f46d67dc524bf87246ccb24ccb5c0", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5c849d75", + "maxPriorityFeePerGas": "0x1dcd6500", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x012259c7510e65b3acad37cbb4fd67eaac24937c", + "gas": "0x5208", + "gasPrice": "0xe22f9771", + "hash": "0x195f52a3ef182789ac1bd8786fcc5c3b81cb17a935bffa974eaa4a4f5eb0853d", + "input": "0x", + "nonce": "0x79c17", + "to": "0x06354ce08f96bc961b9f5110d513e1bedf256ce6", + "transactionIndex": "0x6e", + "value": "0x26747cd12880", + "v": "0x25", + "r": "0x6457ffa2a4ffaaf1eb4c4307a85e98d6a10c14db262f1172bc0b0797482d94b6", + "s": "0x1e72827dad8574b9291c3086a87bd24fc2f72fcc99e8f390e41ee93b698661df", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x012259c7510e65b3acad37cbb4fd67eaac24937c", + "gas": "0x5208", + "gasPrice": "0xe20a77c1", + "hash": "0x323ff81b8a63a000c920ba7218fc6d342b021c8665193b3379916d3ecb5d9903", + "input": "0x", + "nonce": "0x79c18", + "to": "0x23688179b65b177034e716cb17671439ade24c5b", + "transactionIndex": "0x6f", + "value": "0x4baa6e52e590", + "v": "0x25", + "r": "0xeb7fc34e5fef47561a1b8b26fabf5129d1a583823a79eec70b546390a91da513", + "s": "0x3b623f5532f2b13324af3a835cdd8ab16d8fb5d4d101ad524d161fbcc3fe0a60", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xdb861e302ef7b7578a448e951aede06302936c28", + "gas": "0x1f456", + "gasPrice": "0x66949e1c", + "hash": "0xd7e548fee5f714ce53532fb9cbfc7c43c74a4b18494f69c146308d47c9a292db", + "input": "0xa9059cbb00000000000000000000000057631c504a5309cf5bcea62dfcdd7ac4931d7d910000000000000000000000000000000000000000000000000000000007fd04fe", + "nonce": "0x8a61", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x70", + "value": "0x0", + "v": "0x0", + "r": "0x328e0502db9feac96afd2c078f4c7c39e7293f41f7a6bcd123126a87c8c6bfd4", + "s": "0x41234f1904a45b317fb000d9bc6677b23b8732043e792165f165fa195cca6b35", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x6afa0371", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xcd01320177fe4905bde6efa73f914a5112a6d0ba", + "gas": "0x171bd", + "gasPrice": "0x66949e1c", + "hash": "0xc918a33bdea567c7f5242847f30230a76fe3a8d2076a1ad2d848f38268623d59", + "input": "0xa9059cbb00000000000000000000000033b35a04735f56252a6a8a8427176af7adaf792e0000000000000000000000000000000000000000000000000000000ddda71f63", + "nonce": "0x6c", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x71", + "value": "0x0", + "v": "0x0", + "r": "0xa371d57f43b5faae97434871f619724c982db422168c0331f043fd21f29c8887", + "s": "0x5d20437fa9d12bdb7303cc1e3d395a7c97bd62dda282faa6d13f63077e5b31fe", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x74a0b5a5", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x48bb2a7247cafe2a73a36da23c176009d5136a06", + "gas": "0x17199", + "gasPrice": "0x66949e1c", + "hash": "0x9db2c4629ff912c32bc651cea59232aec073d3a0ca5139e9af61ea7311f377fd", + "input": "0xa9059cbb00000000000000000000000041127e1c31219a91bdd5f3abc506ed4899f8431b000000000000000000000000000000000000000000000000000000001dcd6500", + "nonce": "0x3", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x72", + "value": "0x0", + "v": "0x0", + "r": "0xd07fdbab3b9eb333133374baef2e66bca082c20bfc354d67f739c61dd684ef57", + "s": "0x6379180890bf4d4294350562240f1d49868933405cad0666044a1ccba2089984", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x742f9507", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6c00767b1832b2bd6019e6a8480790c4614ef15c", + "gas": "0x10c2f", + "gasPrice": "0x8462031c", + "hash": "0x55301e649dbb5122aa03bb767ee1c24919a9df84cbdb7cd249cf7d2e1d4756ac", + "input": "0xa9059cbb00000000000000000000000087b6be29ec8a2ba4b7fccc0b459734a5110b5ddb000000000000000000000000000000000000000000000000000000118a69b26e", + "nonce": "0x3", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x73", + "value": "0x0", + "v": "0x1", + "r": "0x30b90784836403f2ae69cb7098ed1aff76e9db5497928a2dcb09c5aa11ffb908", + "s": "0x2edb5265d99e9092c8498ee88c3ebfb7aea16a0a8a7a531f337437947d4877ca", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9bd325f0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf12753c127f0e2d4809eebf954d1025b26c76148", + "gas": "0xec7c", + "gasPrice": "0x8462031c", + "hash": "0x19b3484e5449709525a2f60e8cf66372ea4b9156bf770412ce270091ce0be1b6", + "input": "0xa9059cbb00000000000000000000000040cf47dd8ebad3b95c61a5cfbd4e6c5013f5e80c000000000000000000000000000000000000000000000000000000001d851160", + "nonce": "0x0", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x74", + "value": "0x0", + "v": "0x0", + "r": "0x2527ac131096ee2439a4f62e7fdffc15838a2bec53deb23c7afbc381fe78c6f", + "s": "0x18d875fb67b842a5323bd597d892389da75df39a48f512e01a37fb227ed1ded", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9aac8ec0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8c6bf1042b95c26a1e60ecbc5e1ebb9478ffc348", + "gas": "0x16506", + "gasPrice": "0x66949e1c", + "hash": "0x4bf5002ec53408e50dbc4aab41d71f5e2f1feccb9861d737cf2c6b05ba3121f9", + "input": "0x095ea7b30000000000000000000000008157a9d65807521fbb8db8f37eeecefdd247e9b100000000000000000000000000000000000000000000000000274db2687d0773", + "nonce": "0x23", + "to": "0x45804880de22913dafe09f4980848ece6ecbaf78", + "transactionIndex": "0x75", + "value": "0x0", + "v": "0x0", + "r": "0x360b5bf91317bd1a8cd2f78f4b96744fdcde8329b6ccaea2f4070972d1dcd04d", + "s": "0x5a97da9519cee00ab6b21b7422b7e4f89f77365722a4af5d4ecc65686315b512", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x745c2174", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xac44c1b791c8d559e42465cf5a66df244ef3f981", + "gas": "0xcb84", + "gasPrice": "0xa22f681c", + "hash": "0x9c3d49ce6bc282df4929acfd85ccc90ea22f4a422d695e2fc8baaccb72c3a5a1", + "input": "0xa9059cbb000000000000000000000000b8ba36e591facee901ffd3d5d82df491551ad7ef0000000000000000000000000000000000000000000000097066817903040000", + "nonce": "0x1555", + "to": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b", + "transactionIndex": "0x76", + "value": "0x0", + "v": "0x0", + "r": "0xfa581b61aa7cf67cb9de61573ab43635050a146bd9e5b87cf83f898b16001e88", + "s": "0x47acb292d17db3ba2c81f6861042f5991c86e511cff95163c16d294069b81640", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xb2d05e00", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0c501fe3cf04d81d2c1f7f9ae34d873c352ffdee", + "gas": "0x13880", + "gasPrice": "0x77359400", + "hash": "0xf4286f47c17dad7ef29f4692f0540fb4200338bfaa6eca7ee9d061f2c7b7e7e3", + "input": "0xa9059cbb00000000000000000000000096d0471a061593e20f0ebc8c5b8b2d056862aeff0000000000000000000000000000000000000000000000000000000006b11ab0", + "nonce": "0x57", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x77", + "value": "0x0", + "v": "0x1", + "r": "0xc778b1ae2751585172e9581862be2733ba858e8e741320e5189976594164d391", + "s": "0x50345261be52ac62daf3a07fac4f09daff2c23dfd409bbbd08c586e01e2d0834", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x77359400", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2f64b29c3750158546ae6f3bf55566c02f0604bf", + "gas": "0x13880", + "gasPrice": "0x77359400", + "hash": "0x33bf5ce1e7a131735d434071d90ab2f1a0901db5659d1c90851cf849d244bf67", + "input": "0xa9059cbb00000000000000000000000096d0471a061593e20f0ebc8c5b8b2d056862aeff000000000000000000000000000000000000000000000000000000000716e160", + "nonce": "0x51", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x78", + "value": "0x0", + "v": "0x0", + "r": "0xf458a238f1f1e72ebc4a2e07f5ad7d89e1a297859a39ca9bfe06f96e395b4a59", + "s": "0x9f2e3b835bc3f363547f33974750893b1864b6c105180bdd5a045981253ffbf", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x77359400", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x55758b967be70b1cc9fb648f8ef66b659c116e3f", + "gas": "0x13880", + "gasPrice": "0x77359400", + "hash": "0xaf901fae64ecfc481f92391c54f7d1b2df295b1cc096b340f6f1531a74dbc149", + "input": "0xa9059cbb00000000000000000000000096d0471a061593e20f0ebc8c5b8b2d056862aeff00000000000000000000000000000000000000000000000000000000078d9800", + "nonce": "0x2", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x79", + "value": "0x0", + "v": "0x0", + "r": "0x9356a2c161be5d3bd1b92406cce4a48ae4cf6d127fd175927db13ddc46461daf", + "s": "0x20eb4c402a67668f56d495d8c8f9fc000e4966d2c1e10b07654e4bc35a7cab0a", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x77359400", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9d54c4faecc1f05e2b04f2daf39ee62dff198527", + "gas": "0x61a80", + "gasPrice": "0x48f15212", + "hash": "0x5314f09f86ae80458120fcdbc17c89a3d22637906f4c8441168f5e925b14f1e5", + "input": "0x11289565000000000000000000000000844fdf4275f59ed011fef86857db88404b0a7c7e0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000000000000000000000000000000016d01770e9607e999547928427267b1b5bd699c0f52233ade1a0782b10a93990ff1ad68f27702000000040000000100fc71eef9469f7c5d32cbe918349e8c69a3941da9ec429a0c7f3a7b15cd998962366365336663613863fbb30bd8e9d779044c3c30dd82e52a5fa1573388000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002002ce8bfc980000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f2770000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000b929071e5ec22000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000ec71b4c7561fccdc37d6922e71edd1e52f8c27d942d802a89fbcf060c50490000000000000000000000000000000000000000000000000000000088018a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000041529d15a8c13f72890f38393fefb33bd644e449859c733d36ed0f7829941778e62a895173b17e813c745a3665fa71f35ba55d7c3291d4a48865c2e3af8528065c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041cbd2771f94cbea989bd0d290d063d59773166a460709ee7b27b9c3e1896c6fae44e3714d13e4eb88d665ab4bdd7370ed1c72599828010de40742039cb0e9e5d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000415fca50387f0e665414411472a1817cea3dde69dfbd8fef04322b8e18806e289c0795577413249e1a7c73428d89289e28952f47f235c2c903104e561494d11f8f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041ca8c6d981347d23257c7709d07c101d772cbc3910a70c5925b67ebd962d714061a460d6a0ff4ec26b555c489e27a4c4d81b31e08d62db235e8bf2b5ffdc3958e0000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1186", + "to": "0xa68a99c6a80e2acf65d38f64ffac744ae51c8d96", + "transactionIndex": "0x7a", + "value": "0x0", + "v": "0x1", + "r": "0xc1d85211eb253e36a34f97edc87e1c52d4ca699d7b611d8a1004f1f4c1d519eb", + "s": "0x40c6e1a9879b24dd65b09336c9f8e6440fefea19732ba4ff59bf5955f4f9b5c3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x697e5b59", + "maxPriorityFeePerGas": "0x1df77df6", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd343d413048baeea708fcf99dcf980ad3c8731be", + "gas": "0xcaa22", + "gasPrice": "0x31884b9c", + "hash": "0x40d4ea0854b21bc8776bdebb92a1378a6de66804fb2561124cc24d10748ff5c1", + "input": "0x1cf3e2f5000000000000000000000000000000000000000000000000000000000000020000000000000000000000000011235534a66a33c366b84933d5202c841539d1c9a4bf795931fbe369426ad7f38cef34cf92d9fec3a072753155658c469d1ee900000000000000000000000000d343d413048baeea708fcf99dcf980ad3c8731be000000000000000000000000d343d413048baeea708fcf99dcf980ad3c8731be0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000008f3cf7ad23cd3cadbd9735aff958023239c6a063000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000890000000000000000000000000000000000000000000000dae8b8161bd59c1c000000000000000000000000000000000000000000000000000000000068f276fd0000000000000000000000000ba6d224169bbfad4eb2d38c500d2c8e8ede696c000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000ef5cb6690000000000000000000000000000000000000000000000000000000068f2795500000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000199f320d14d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000041bf0d8dd7377b6296f1496a23e780d4abfd36fd67c42f96779e3ff6c88c9ed29306e031e3257af1eeaac882ac338a7852a5eb0703e829d59eb4ee33cc3c934dd91c000000000000000000000000000000000000000000000000000000000000000000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000dae8b8161bd59c1c00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000009040eba4ffc000000000000000000000000b141f554188cf306fde443f6e991949636f80e49000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000000400000000000000000000000011235534a66a33c366b84933d5202c841539d1c90000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000dae8b8161bd59c1c0000000000000000000000000000000000000000000000000000000000ef5cb66900000000000000000000000000000000000000000000000000000000f090a2be0000000000000000000000000000000000000000000000000000000068f279550000000000000000000000000000000050a9ed191724af5793d683c5db6a85e8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111111254eeb25477b68fb85ed929f73a9605820000000000000000000000001111111254eeb25477b68fb85ed929f73a960582000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000005c812aa3caf0000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a1900000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a1900000000000000000000000004bab2cb2ed6ee2d564ba5398cab4161d95e58f1b0000000000000000000000000000000000000000000000dae8b8161bd59c1c0000000000000000000000000000000000000000000000000000000000ee28ca130000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043c00000000000000000000000000000000000000000000000000041e00004e00a0744c8c096b175474e89094c44da98b954eedeac495271d0f90cbe4bdd538d6e9b379bff5fe72c3d67a521de50000000000000000000000000000000000000000000000000b3548e9c8e67b805120111111125421ca6dc452d289314280a0f8842a656b175474e89094c44da98b954eedeac495271d0f012456a75868523e6e9a3fb01e5edc9791b473fb59fe3cbee56d5f7bafa60b9152e63ff0be1a00000000000000000000000051c72848c68a965f66fa7a88855f9f7784502a7f00000000000000000000000051c72848c68a965f66fa7a88855f9f7784502a7f0000000000000000000000008b543dff08ed4ba13ee96f533638ef54591aee710000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000000000f0913d520000000000000000000000000000000000000000000000dadd82cd320cb5a08002000000000000000000000000ce71d3260068f2771b372978f1c5427640a1900000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000028000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000004100eb8154bae7aee61d1548a0dc8456243db1784588dc2f84310a8926d6d101700acb27f247a1418f64451acf40e2962ff718777d4a36b68a2ac247328ec213491c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001741111111254eeb25477b68fb85ed929f73a9605820000014000000140000001400000014000000140000001400000014000000140000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000f0913d5200000000000000000000000000000000000000000000000000000000ce71d3260000000000000000000000000000000000000000000000000000000068f2771b7c9ea27544327ec95b6e3ebc7481e17efd4088319997fb58643504811b3fece40000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000004117c3ca4bad987fc4a78c35e5fe6a7d587b8a517c3ca156c8b0b10a655dea870f2b7220696538953afb717ee7ae995a75ddaf65e318656252d1d383c68f4183791b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f804e36900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x2", + "to": "0xb141f554188cf306fde443f6e991949636f80e49", + "transactionIndex": "0x7b", + "value": "0x0", + "v": "0x0", + "r": "0xcf40fc4264f3a4fc72a9005ce90a8b887d9dda4598ebf13b3aca8c2d5dd6333d", + "s": "0xa269dcd0d396c6d49da2e5ddcc54494e9ef2e726b36b268fb0bdb20d06e9db3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3e686883", + "maxPriorityFeePerGas": "0x68e7780", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3462131b8837e9727d49fbc4de8a66ab49054ad5", + "gas": "0xb485", + "gasPrice": "0x77359400", + "hash": "0x02dec986d1bf30c87c056e47e66caab75e84033d504c4e57d165ff29a5f56cd1", + "input": "0xa9059cbb00000000000000000000000066d4104f99f6a3df367d9ec702ccdbd3c4c52cd10000000000000000000000000000000000000000000000000000000001312d00", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x7c", + "value": "0x0", + "v": "0x25", + "r": "0xfbce3348eb0b9d613806203046cb28002dfa855e729332e4b864d8b9130643a9", + "s": "0x2958ca627b0eda9e9ef019569b3cf86c49b0ff084eac621a6c10ec9185e93001", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x091ae882bd2ee9c468809f176198954fd69f58c9", + "gas": "0x5208", + "gasPrice": "0xbffccd1c", + "hash": "0x9fd2ece0ecedbce05aea47d51ccdb247e67c6bbac1f0c177bae24b8ab727db0f", + "input": "0x", + "nonce": "0x5618", + "to": "0x416a71575811981ac226de7265e42d8de6bab3dc", + "transactionIndex": "0x7d", + "value": "0x215ccf8709be400", + "v": "0x1", + "r": "0x2d55162c5155e08516ec8bc0b18acd1c69b937e298ae0dde4f9027f31e97def", + "s": "0x33d8aecaad9bb998a37ae9589af1cc9d270cce28bb2e9a4c972da51154629840", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xbffccd1c", + "maxPriorityFeePerGas": "0x9502f900", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb8ff877ed78ba520ece21b1de7843a8a57ca47cb", + "gas": "0x5a6b4", + "gasPrice": "0x442701fc", + "hash": "0x13e0b6fab88b0026e13fe2944bf9e41d29d1bb47eab66f0ff5d8b2aff1d8a784", + "input": "0xb143044b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000065000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f2cb5300000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000e40223536e0000000000000000000000000000000000000000000000000000000000000060fc077bce68725cb12a644d332b4499027685a0725e0e3151ee522b737e6cdf0a000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000510100000000000012f000007683000000000000000000000000cab283e4bb527aa9b157bae7180fef19e2aaa71a00007595000000000000000000000000f2b2bbdc9975cf680324de62a30a31bc3ab8a4d5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041d5d63c477189f44e0f1ff32f125a49a0cc5ee1fb500e8117eafc8f7d63a6e015203f96538bf384cc9cf6fd5c183272bb6f60ad7059e23aa22211b10cf968c9971b00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1fdbeb", + "to": "0xa59ba433ac34d2927232918ef5b2eaafcf130ba5", + "transactionIndex": "0x7e", + "value": "0x0", + "v": "0x1", + "r": "0x1acb72dfd06145b3b0fd16cfaa7f0e4eaa1a59d7864ef9aa4f4ef581931e308e", + "s": "0x755033302f594c24fef443ea7e0499ca243d2175d36f8584a7b25b7a81d4728a", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x51c1f8e7", + "maxPriorityFeePerGas": "0x192d2de0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb8ff877ed78ba520ece21b1de7843a8a57ca47cb", + "gas": "0x5a6b4", + "gasPrice": "0x442701fc", + "hash": "0xa4fdada6a712f98c1fb36623ac1881fd3432f5f2b54f53323d2829e6aaf4ec2c", + "input": "0xb143044b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000065000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000068f2cb5300000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000e40223536e000000000000000000000000000000000000000000000000000000000000006079ff7e589a19172acc92a837c79926aa01b0623de5dd8f378ebb0d759b99cfb30000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000005101000000000001672b0000759e00000000000000000000000019cfce47ed54a88614648dc3f19a5980097007dd000075950000000000000000000000006d6620efa72948c5f68a3c8646d58c00d3f4a980000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041eace27996561b574bcb6dbeae5d06f911cf64d488d012c15c349543abd3255a049c25de8804cdd84a888523fe4fc85dda297389f867f8c798ad5c92385bda6381c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1fdbec", + "to": "0xa59ba433ac34d2927232918ef5b2eaafcf130ba5", + "transactionIndex": "0x7f", + "value": "0x0", + "v": "0x1", + "r": "0x57a74ba32facb486d1a2f8ac4acc6dec038b6f02081a47ebbd1e9a4c1f6ebd1b", + "s": "0x51ba6ebcba60988119aff2a6d7892e77de8a0b241ccf51cf7b33ebf100f89535", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x51c1f8e7", + "maxPriorityFeePerGas": "0x192d2de0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc1d65bc143f86452c4a1da122edaaca830a500f0", + "gas": "0xf7d16", + "gasPrice": "0x2e859fee", + "hash": "0xcd6ce10b10b62a52fc0cf93408592e95770f956ba206e19b97602b152736d933", + "input": "0x608060405234801561000f575f5ffd5b5061002c61002161003160201b60201c565b61003860201b60201c565b6100f9565b5f33905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610db3806101065f395ff3fe608060405234801561000f575f5ffd5b50600436106100a7575f3560e01c80637bb98a681161006f5780637bb98a68146101295780638da5cb5b14610147578063a9059cbb14610165578063b2bdfa7b14610195578063e30c3978146101b3578063f2fde38b146101d1576100a7565b806318160ddd146100ab5780634e71e0c8146100c957806354f78dad146100d357806370a08231146100ef578063715018a61461011f575b5f5ffd5b6100b36101ed565b6040516100c09190610ac6565b60405180910390f35b6100d16101f6565b005b6100ed60048036038101906100e89190610b3d565b61038b565b005b61010960048036038101906101049190610b3d565b6104c6565b6040516101169190610ac6565b60405180910390f35b610127610567565b005b6101316105ee565b60405161013e9190610bc3565b60405180910390f35b61014f610613565b60405161015c9190610beb565b60405180910390f35b61017f600480360381019061017a9190610c2e565b61063a565b60405161018c9190610c86565b60405180910390f35b61019d610650565b6040516101aa9190610beb565b60405180910390f35b6101bb610674565b6040516101c89190610beb565b60405180910390f35b6101eb60048036038101906101e69190610b3d565b610699565b005b5f600354905090565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461024e575f5ffd5b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610393610758565b73ffffffffffffffffffffffffffffffffffffffff166103b1610613565b73ffffffffffffffffffffffffffffffffffffffff1614610407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103fe90610cf9565b60405180910390fd5b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634e71e0c86040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156104ad575f5ffd5b505af11580156104bf573d5f5f3e3d5ffd5b5050505050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016105219190610beb565b602060405180830381865afa15801561053c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105609190610d2b565b9050919050565b61056f610758565b73ffffffffffffffffffffffffffffffffffffffff1661058d610613565b73ffffffffffffffffffffffffffffffffffffffff16146105e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105da90610cf9565b60405180910390fd5b6105ec5f61075f565b565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f610646338484610820565b6001905092915050565b5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106a1610758565b73ffffffffffffffffffffffffffffffffffffffff166106bf610613565b73ffffffffffffffffffffffffffffffffffffffff1614610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c90610cf9565b60405180910390fd5b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610857575f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361088e575f5ffd5b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016108e89190610beb565b602060405180830381865afa158015610903573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109279190610d2b565b811115610932575f5ffd5b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf8eeb7e84836040518363ffffffff1660e01b815260040161098e929190610d56565b5f604051808303815f87803b1580156109a5575f5ffd5b505af11580156109b7573d5f5f3e3d5ffd5b5050505060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321e5383a83836040518363ffffffff1660e01b8152600401610a17929190610d56565b5f604051808303815f87803b158015610a2e575f5ffd5b505af1158015610a40573d5f5f3e3d5ffd5b505050508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610aa19190610ac6565b60405180910390a3505050565b5f819050919050565b610ac081610aae565b82525050565b5f602082019050610ad95f830184610ab7565b92915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b0c82610ae3565b9050919050565b610b1c81610b02565b8114610b26575f5ffd5b50565b5f81359050610b3781610b13565b92915050565b5f60208284031215610b5257610b51610adf565b5b5f610b5f84828501610b29565b91505092915050565b5f819050919050565b5f610b8b610b86610b8184610ae3565b610b68565b610ae3565b9050919050565b5f610b9c82610b71565b9050919050565b5f610bad82610b92565b9050919050565b610bbd81610ba3565b82525050565b5f602082019050610bd65f830184610bb4565b92915050565b610be581610b02565b82525050565b5f602082019050610bfe5f830184610bdc565b92915050565b610c0d81610aae565b8114610c17575f5ffd5b50565b5f81359050610c2881610c04565b92915050565b5f5f60408385031215610c4457610c43610adf565b5b5f610c5185828601610b29565b9250506020610c6285828601610c1a565b9150509250929050565b5f8115159050919050565b610c8081610c6c565b82525050565b5f602082019050610c995f830184610c77565b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f610ce3602083610c9f565b9150610cee82610caf565b602082019050919050565b5f6020820190508181035f830152610d1081610cd7565b9050919050565b5f81519050610d2581610c04565b92915050565b5f60208284031215610d4057610d3f610adf565b5b5f610d4d84828501610d17565b91505092915050565b5f604082019050610d695f830185610bdc565b610d766020830184610ab7565b939250505056fea264697066735822122097f8e3c35509bc51c18659d8908a2ef1dc12317f51265202c6e4d570418cddde64736f6c634300081e0033", + "nonce": "0x40", + "to": null, + "transactionIndex": "0x80", + "value": "0x0", + "v": "0x25", + "r": "0x3190e33f50cea69fa66df3647a8799ce1732cda4ddb2ceca36f059316f7f5fec", + "s": "0x53e11e2b0cf9e4e471c42898388f73a00fd8e3cad8d63f14b58849ee6e2c5a5a", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf9393a8b3f556ec42e52861c190d75c6639fb7f8", + "gas": "0xc047", + "gasPrice": "0x66949e1c", + "hash": "0x456008b6e162d8afb0c906aba3bcd69e42e5da8daf0d09ea3b50068051dd2eef", + "input": "0xa9059cbb000000000000000000000000a9d1e08c7793af67e9d92fe308d5697fb81d3e430000000000000000000000000000000000000000000000000000000016be99f0", + "nonce": "0x2", + "to": "0x6c3ea9036406852006290770bedfcaba0e23a0e8", + "transactionIndex": "0x81", + "value": "0x0", + "v": "0x0", + "r": "0xf751841a8900366ed4b756d5e9fd105213508e35e9527cd983d72a9eb09fae46", + "s": "0x4266ccd456ee34c613e2fbab5869ece17b602924b7ffc0c6e8bcff2d4eae5d58", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9502f900", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa377aa6822603cc52e4e9ed6eaa045c46ef6b3e2", + "gas": "0x493e0", + "gasPrice": "0x4a29546c", + "hash": "0xb800c8aa57ee7f4b924efa3950241db5421431d667f5065c2624614c15200887", + "input": "0xd9caed1200000000000000000000000045804880de22913dafe09f4980848ece6ecbaf78000000000000000000000000d1ccd0f5f8b03b1ef996258c695bd4e28ca657eb0000000000000000000000000000000000000000000000000023e1e5803b4000", + "nonce": "0xce584", + "to": "0xb685760ebd368a891f27ae547391f4e2a289895b", + "transactionIndex": "0x82", + "value": "0x0", + "v": "0x26", + "r": "0x8c33daa7e997b9b78bf377986b97df34a266f1005841468f28247151c3eaf7c9", + "s": "0x13a910a80e275ee1b5bffc363540508934ae85baf85ab151f56c843704bf438f", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6febc72a88303b009651aa998247d1e969c016ee", + "gas": "0x9d24", + "gasPrice": "0x897a899d", + "hash": "0xa869401b56b07c35b2c30c82b9c7f15d3ae5ae65268094396a97622f49ace6b0", + "input": "0x095ea7b300000000000000000000000027ccaea1ebb74fa5afb7a00e504ad6d69ef6417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x29", + "to": "0x718477c471b335ee0ca29b9f4b95edd26d2ede54", + "transactionIndex": "0x83", + "value": "0x0", + "v": "0x1", + "r": "0x69a36816e0286beb958597ba11381313fa87228554fe4cbf5d834911c03c6206", + "s": "0x36e7fa18f08e89619ff2298b4052ba6ca2a974cdb7603ef7c9ef9d18006a11a2", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x8d37ffa2", + "maxPriorityFeePerGas": "0x5e80b581", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6dcba6159482586bdc56ddd8f9b03371537765e7", + "gas": "0xb2ca", + "gasPrice": "0x66949e1c", + "hash": "0xcb0afa3bd449ee2215bc96dfb1e7cc9147fc770f23f4ce31c01f82303c42c0b2", + "input": "0xa9059cbb000000000000000000000000a9d1e08c7793af67e9d92fe308d5697fb81d3e430000000000000000000000000000000000000000000000000000006d6f13fbf6", + "nonce": "0xda", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x84", + "value": "0x0", + "v": "0x0", + "r": "0x995a4afa5a2c27df222465752f7d49d69377a1b70f640d4e51ad3997e769dbfc", + "s": "0x63ff2c1e2dcb7e0edc6af1f5cbbcf3549c86962e79060fdb0bf1bb005e1584ce", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9502f900", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb75a1b2415c7c21305c23f75f04bbe255005b14c", + "gas": "0xb2be", + "gasPrice": "0x66949e1c", + "hash": "0x6c6e9a70b3b0df28bb2475e3af94cd550793f14f1b7733f3c9119586035f9188", + "input": "0xa9059cbb000000000000000000000000a9d1e08c7793af67e9d92fe308d5697fb81d3e430000000000000000000000000000000000000000000000000000000014ebd5c0", + "nonce": "0x0", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x85", + "value": "0x0", + "v": "0x0", + "r": "0x38ae4088e2d014a47addb26aeff9bc0433b58f47a76ce7a239de064317197f65", + "s": "0x355b58cec9ab5a00f101a998e8c66cf73104578132fa8ab73156f8ddfdb029d3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9502f900", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x05b2c66558ef4a66d7283e4567e29d4ae42fbf44", + "gas": "0xb2be", + "gasPrice": "0x66949e1c", + "hash": "0xa0f4570d1b06b46befb1d982d488d850b2dfc1ce7043f887246edac67a8f34a4", + "input": "0xa9059cbb000000000000000000000000a9d1e08c7793af67e9d92fe308d5697fb81d3e4300000000000000000000000000000000000000000000000000000000150b6bb0", + "nonce": "0x1b", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x86", + "value": "0x0", + "v": "0x0", + "r": "0xffff02f1199b4ca38d2be2e030de181c05b5daf821e5d1efee96b8fc50159288", + "s": "0x494bf920e036625e7e56374a5ccb699d0e97a0ae558a96a9fefd6cbf3f7f3b47", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9502f900", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x47792b9b4e107bf5847163f8aa895e343298c613", + "gas": "0xb2be", + "gasPrice": "0x66949e1c", + "hash": "0xfb6ec10340241fe695699ebd79435c37681fcf7c8054729d30b3464d68af7326", + "input": "0xa9059cbb000000000000000000000000a9d1e08c7793af67e9d92fe308d5697fb81d3e430000000000000000000000000000000000000000000000000000000014ec23e0", + "nonce": "0x17", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x87", + "value": "0x0", + "v": "0x0", + "r": "0x28cb9519e4bdbc1f8d0397f1ce1a9fd347ab3951b492892e2fb79a180e459979", + "s": "0x579339b558b77b8e7700c1bf9e780f857ffac9163a2bcf0ca71a2c167c137969", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9502f900", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x17ac1517c30d5cd7f065cb28c4703431bb69d47d", + "gas": "0x32918", + "gasPrice": "0x2ebf0e9f", + "hash": "0xe7fa28d79881b42a41c9a416d63028982ae7861fff0008060330198a088482db", + "input": "0x", + "nonce": "0x6d41", + "to": "0x4ec853fe35e84e2b26ea18aa182d2933de10a20f", + "transactionIndex": "0x88", + "value": "0x1c6bf52634000", + "v": "0x26", + "r": "0x8cd0128d3c234bf2f82720fe0eeb71f3d6313c2ca3a513aaf52a6c79ebbe1d7", + "s": "0x3170d461bfe311a69c5bcf7432299fe33da787f4e5174de96b1ecb19cd0353a8", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x17ac1517c30d5cd7f065cb28c4703431bb69d47d", + "gas": "0x32918", + "gasPrice": "0x2ebf0e9f", + "hash": "0xbc13ac39c7322f4cd42b1e492e8b78b652be419756d7a0ea52662b2c06617290", + "input": "0x", + "nonce": "0x6d42", + "to": "0xd9183cadbad0b674f6e7bbea8d94a0d8dd5b98ad", + "transactionIndex": "0x89", + "value": "0x1c6bf52634000", + "v": "0x25", + "r": "0xbb0afac30cd78bbd5696590c44756ec0eb7c1f5b6a16d74d511a54b2c4326927", + "s": "0x300ae7049ce9548f1c9e664565f02a4c28a1764d9cdeb8de528b78a01856ec6a", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x17ac1517c30d5cd7f065cb28c4703431bb69d47d", + "gas": "0x32918", + "gasPrice": "0x2f03457c", + "hash": "0x0545dcef33ed7dddb5f7cf4a1bde95c4926f770a3cb92cf24dac73ab92c85ae7", + "input": "0x", + "nonce": "0x6d43", + "to": "0xec4290ed003afcf97185bcc9427f95553f86c932", + "transactionIndex": "0x8a", + "value": "0x1c6bf52634000", + "v": "0x26", + "r": "0x7952f179819d288f41d8710750f90c9e433a8c6d303f6b552b6c1edaae7d9d24", + "s": "0x59bb40326019551a7f24fe1ed57bae943b402f0eabde2fef56f0ffc426af7531", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x17ac1517c30d5cd7f065cb28c4703431bb69d47d", + "gas": "0x32918", + "gasPrice": "0x2f03457c", + "hash": "0x6560a3e1e7b1173900945b3c0f67f615583904245383e8a063ce4226454ea9b8", + "input": "0x", + "nonce": "0x6d44", + "to": "0x7b61d2bf7866944fa7f823eee7a44667f56c45f3", + "transactionIndex": "0x8b", + "value": "0x1c6bf52634000", + "v": "0x26", + "r": "0xa0e224f4f00059f95d6205f880243416e32eb0e2823e5700d4d84e910d5e246a", + "s": "0x7a11bca19abe57ff98be77c1067ba79a666c07fa802f16bda0e48009686227cd", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x17ac1517c30d5cd7f065cb28c4703431bb69d47d", + "gas": "0x32918", + "gasPrice": "0x2fb7669a", + "hash": "0xe702dc4be1202474a2e6dd47411eae7da93cf6a980c10ce98f91fa83ed001029", + "input": "0x", + "nonce": "0x6d45", + "to": "0x303fe6cd1517a0357bc2d3837082c8a56d715927", + "transactionIndex": "0x8c", + "value": "0x1c6bf52634000", + "v": "0x26", + "r": "0xeed3d456fad58b0bc18dc9a9533ff0527606456b27da1bdbd1ed27d665bcfb8d", + "s": "0x50f4d16f9f9be632b62ceb11fc46b9fbcad69c34733c40491cf5e3d0e47c2af8", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x7719554a9e02751006769245a5a232cfab530622", + "gas": "0x10eb5", + "gasPrice": "0x745c2174", + "hash": "0x1f7a60cae671f7ac832d2067e7a1eaff809bff259805ccf7af7426780e0e4bed", + "input": "0xa9059cbb0000000000000000000000008dfd4d39f93d142aff3ea63a5e4714198f4b1d00000000000000000000000000000000000000000000000000000000003b9aca00", + "nonce": "0x7", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x8d", + "value": "0x0", + "v": "0x0", + "r": "0x6e77d11765e4f9bab013dfb711b38631017be02591c9fcd63601552313fe5103", + "s": "0x198af058f2a2db5c3ec5dbbd3936c3491501938a1d01c39a48d941d7cbd32295", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x745c2174", + "maxPriorityFeePerGas": "0x745c2174", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x39d8e7eed5eee6927b6e42f65c88cb70c702ed4e", + "gas": "0xf67e", + "gasPrice": "0x5a9233b6", + "hash": "0x50d913fd80888be883b82c9f17b9bdea3442c90a5046b380bf9f05deccb53b4d", + "input": "0xa9059cbb000000000000000000000000ea8467186adaf1d849b3cf2cb113c3289b116674000000000000000000000000000000000000000000000000000001a3185c5000", + "nonce": "0x47a", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x8e", + "value": "0x0", + "v": "0x1", + "r": "0xc2d33da68d882f97ffb9e936136f23aecd9c6e0febf5f47769c3659b5989f3", + "s": "0x1eb420f8e26f618935169b3d06c83f5adb90a24abd068b219cb6eff86c135d73", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x8ea23dae", + "maxPriorityFeePerGas": "0x2f985f9a", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x91c62c92cbcb2b66cb7b1f741a73b3ba4704dfcc", + "gas": "0x10c1d", + "gasPrice": "0x742f9507", + "hash": "0xda12399d3f2d450c59d8dec878f3087b3c989ec56279da2b8aba41b79f56c407", + "input": "0xa9059cbb0000000000000000000000002ce4286c4babfe491d169e235cfd498a8a5801040000000000000000000000000000000000000000000000000000000002d9a4a0", + "nonce": "0x8c", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x8f", + "value": "0x0", + "v": "0x0", + "r": "0x74e95dd2a3b6c49257139e951af58b041d1391b669d14e15792b99ce6f823f84", + "s": "0x87fce4eea56ff2c4c3513d0901222bb997fa9e40fff85db5713bc621a16003b", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x742f9507", + "maxPriorityFeePerGas": "0x742f9507", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0b67e8777c6c21337836720a13986417a6608ce7", + "gas": "0x5208", + "gasPrice": "0xb2d05e00", + "hash": "0xbf9815185e679a4f184de21c38f33ba6cf55bb46a9e81c2b77e7a6a0e94474c6", + "input": "0x", + "nonce": "0x0", + "to": "0xf817f103331e5fb18420fe9d813442b1b19f7195", + "transactionIndex": "0x90", + "value": "0xc27c266f504400", + "v": "0x26", + "r": "0xba5700a34a5d9e3f2c2861e3663386900c32e2748ee76b27fecfe155d70d8035", + "s": "0x2367448d0b2be82a2edb192b4713cbd3cd0531705d5e76912acfd27dd8b65dfb", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd845540d4f6b8c2474a1cec90cd053cb5109f00b", + "gas": "0x5208", + "gasPrice": "0xb2d05e00", + "hash": "0x611e20cc36a88dacf9a3efa2ad73bc1b932d083dbb5b3679664403e4f32130fc", + "input": "0x", + "nonce": "0x0", + "to": "0x6d5b47519bdbac75b53a946b9ff76d470b7025e5", + "transactionIndex": "0x91", + "value": "0x5085e36ecf4400", + "v": "0x25", + "r": "0x1c9f018b72e48ef622b9b796ed155a9cafab7f2d37e7ebe4bb24e31dae3ba309", + "s": "0x3a99fe406c7571ab5ecea538a0969e99bb08a5e475fd8aee924fd326ed28192e", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x699ee12a1d97437a4a1e87c71e5d882b3881e2e3", + "gas": "0x26d18", + "gasPrice": "0x4697ec98", + "hash": "0x6b1552397bb23831c326e0a935a5e166edb34bbb031ddb19963dea59dbb39fed", + "input": "0xdeff4b240000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000699ee12a1d97437a4a1e87c71e5d882b3881e2e300000000000000000000000086f51f251ab96566d88a3c11b63165cefbb4e46c00000000000000000000000086f51f251ab96566d88a3c11b63165cefbb4e46c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000048b67ceda7edee00000000000000000000000000000000000000000000000000483e18011ddb74000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000003bb4650000000000000000000000000000000000000000000000000000000068f2ca450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1ae33", + "to": "0x5c7bcd6e7de5423a257d81b442095a1a6ced35c5", + "transactionIndex": "0x92", + "value": "0x0", + "v": "0x1", + "r": "0x931dd5a079e995fa69d96d3fbdeddf6657e7d2aec18d59c25a314d4ddcc137fd", + "s": "0x3e138aef243db57c92b142192a7f84ccf72c178a09ba2d142f900432c5321a3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x7aa7f690", + "maxPriorityFeePerGas": "0x1b9e187c", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3ffc8d4fe4b5e4dce81c4c78033f513b366342b5", + "gas": "0x1134f", + "gasPrice": "0x66949e1c", + "hash": "0x3f0925e68e918f7a8fc7eda47c30b6aa92d93bd84bb8bf0f5b1229fe8a31bdee", + "input": "0x095ea7b30000000000000000000000008157a9d65807521fbb8db8f37eeecefdd247e9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x2c", + "to": "0x3593d125a4f7849a1b059e64f4517a86dd60c95d", + "transactionIndex": "0x93", + "value": "0x0", + "v": "0x1", + "r": "0xebaf8ea64b491d5b270c38b37bfd6344296d8a9d934715eb922c5762031b013", + "s": "0x33b2e8688e5de43a666032348b1e1f80ba3bcfe8db9fc201e5920c39eecd55f3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x745c2174", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5f912a27a3a3b7c5b2bd1d22c0ed145010c5a8f2", + "gas": "0x1134c", + "gasPrice": "0x66949e1c", + "hash": "0xc770a32965233296cd2b52b3d4fef6207326d1225fb8098558a1c994b7a6f2f1", + "input": "0x095ea7b30000000000000000000000000000000000001ff3684f28c67538d4d072c22734ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x27", + "to": "0x6982508145454ce325ddbe47a25d4ec3d2311933", + "transactionIndex": "0x94", + "value": "0x0", + "v": "0x1", + "r": "0x801ad0be7740a7bd941b7343ecc0806e17bcc60e884b392d5d8354e5b1ae415b", + "s": "0x7c6e5a3515e86fc2c3c04aaa0daa7005d06bef11622b8510630da8e0aacb058b", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x742f9507", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x00275382f64efa0bd973a1e2f181f3e7474f55a1", + "gas": "0x15f90", + "gasPrice": "0x6f9c0d4d", + "hash": "0x47008a68ac3320993524a40bd763770f942d0bd2436704850300426bf73d8b64", + "input": "0xa9059cbb000000000000000000000000147ac0b39675769e55a0f0e7fdd3641b4796366100000000000000000000000000000000000000000000000000000000017d7840", + "nonce": "0x2", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x95", + "value": "0x0", + "v": "0x0", + "r": "0xe9fbfad754adcb5e2f19efe66963477d6d2dece907a1f1855232dae731bc9fd8", + "s": "0x31489078763d463e666a81fdf03274d6e981cf443b0f5eb11b1ed8097e194bad", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xe7dc0424", + "maxPriorityFeePerGas": "0x44a23931", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xeb822c7d7d1eb929d748bf310589f3eb597f99b6", + "gas": "0x1107a", + "gasPrice": "0x66949e1c", + "hash": "0x6ef76971f3c48ab84d080df01ac7f8310fb237b6c6f35cc7fb7fc7ec0f2237c3", + "input": "0xa9059cbb000000000000000000000000d7551b20c2fcc6adf199c4d70c5746dc342eacff000000000000000000000000000000000000000000000000000000099c8a1240", + "nonce": "0x1e7", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x96", + "value": "0x0", + "v": "0x1", + "r": "0xf7de4e2b253ba36d789ee376369d8dc40a98522ccf1575284ac8d23e938870bd", + "s": "0x1e52ea9c082cbb70f2cb6a81433c27e97d3e1c10f5f1a7dc6a4719e98d9f02f7", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x745c2174", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x7fc75cb57a9385c267240860758b959dcd19e09c", + "gas": "0x11056", + "gasPrice": "0x66949e1c", + "hash": "0x17c929b3710e83d9517597742f2efa5041d00b1a946187e6ded512d22481bf5a", + "input": "0xa9059cbb000000000000000000000000b63a38d78ba10edf6d7d7a6d702813f84bfd5dba000000000000000000000000000000000000000000000000000000008caabe00", + "nonce": "0x25", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x97", + "value": "0x0", + "v": "0x1", + "r": "0x4c40f1ce8b76b551715d635f36ca3d1158072b02197ad87e684618620f20237d", + "s": "0x6226648f65a3bc296db0ed134d5ea293cd74877012f7f5a024a4d0765fa32592", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x74a0b5a5", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd383a5bae4581e249eca3e27a436a85611dae732", + "gas": "0x10ae8", + "gasPrice": "0x66949e1c", + "hash": "0x7e262975076223a86312c615ce80997f51a1ca23612ef74adcecda8f8607828e", + "input": "0xa9059cbb0000000000000000000000009c6ed3571ecf437521bd6a18ae1b2616508e45b6000000000000000000000000000000000000000000000000000000825679c790", + "nonce": "0x52c", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x98", + "value": "0x0", + "v": "0x0", + "r": "0xf078468a8a405877c80a34edde6146d7f65e9907e52a721dfd133c56ad39a557", + "s": "0xd94e1cf1eb80b8dda676c06aae688980c64cf5bf7dd544d2af82fdcad51630b", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x742f9507", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xcfe736c393f727626b0262b0cce8a1c3c4f5c430", + "gas": "0x61a80", + "gasPrice": "0x2af9d41d", + "hash": "0x4d2894e1d184af05b10729107a98fa7c36c5c6ab52bdbd71e291253efa7ce968", + "input": "0x92928cad0000000000000000000000000000000000000000000000000000000068f2770b000000000000000000000000e0554a476a092703abdb3ef35c80e0d76d32939f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000123fe7b2300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003f6f855beff1be00000000000000000000000000000000000fb7ad33f71142800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e6660000000000000000000000000001000000000000100000000000000000000000", + "nonce": "0x947", + "to": "0xeff6cb8b614999d130e537751ee99724d01aa167", + "transactionIndex": "0x99", + "value": "0x0", + "v": "0x0", + "r": "0xbadab9de9fc73c1353cad468cf520aea9aaaf6fd95251c19038c6ee024c30ffb", + "s": "0x32cd640f5c4cbf71b403c843d15511ff0d0066a3746d6f9f84fbbeae643ecb75", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x4a817c800", + "maxPriorityFeePerGas": "0x1", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf8191d98ae98d2f7abdfb63a9b0b812b93c873aa", + "gas": "0xd178", + "gasPrice": "0x66949e1c", + "hash": "0xa47721ce0b9e1667fa11c7eaa32708262f0702ebfbc0e41b8b68b3c78ff69875", + "input": "0xa9059cbb000000000000000000000000841ed663f2636863d40be4ee76243377dff13a3400000000000000000000000000000000000000000000000c662099ffe672c000", + "nonce": "0xeb93", + "to": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "transactionIndex": "0x9a", + "value": "0x0", + "v": "0x0", + "r": "0xd74ad97f30ab63bf38b49f0e85dd8e9a5c9e1e98b691754275db754bfc55268a", + "s": "0x486232ede1c2f00a06d744b3f0d2b13b07bb66cd2b7f2a5f63fe8960966ae9c8", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2e90edd000", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3d84c5faf644fab9921be5e5d716c14f1b7a2f09", + "gas": "0x5208", + "gasPrice": "0xa22f681c", + "hash": "0x0d5e8b1b0c58e39c39281015063b3e26a2c614954ed5b88145441141dd1e4baa", + "input": "0x", + "nonce": "0x87", + "to": "0x7772fe062c2b6ac0c0f83ca4948177be4889b1b3", + "transactionIndex": "0x9b", + "value": "0x4619c6e731890d1", + "v": "0x0", + "r": "0x69374dc9f8a53732e655558ebbbf73f7e88758ba3b5115d51d522d6220496d5f", + "s": "0x520ddde3badd9031620bc51d66a78baf87ec25aab9430dd78fa0164a23060122", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xa22f681c", + "maxPriorityFeePerGas": "0x77359400", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2ffbb45eb72356230fb2d4579fb876826e943cf8", + "gas": "0xa5ba", + "gasPrice": "0x8462031c", + "hash": "0x4501435dd9d5445cc3a0092f4534a4cdaeec4c8ba6a8360e1c53094c977b19dc", + "input": "0xd0e30db0", + "nonce": "0x54", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "transactionIndex": "0x9c", + "value": "0x71afd498d0000", + "v": "0x0", + "r": "0xa7fa02db3625a69018aa79357e6ff7be0b2b0df4ed43138cf637256992414207", + "s": "0x6646d59c9fca9e9942b5f24955273da0b00f68dbcbbc777e752e59f02b5e9f62", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0751fc54e3ef73c357ba6e2ed5f09c3d5f3b4029", + "gas": "0x879e8", + "gasPrice": "0x30efb51c", + "hash": "0x3776e049d635c5fe91773463c1d26bf6078a7e6d332e111d684e590f1bbad8ae", + "input": "0x12aa3caf0000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a19000000000000000000000000080122c6a83c8202ea365233363d3f4837d13e888000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a1900000000000000000000000000751fc54e3ef73c357ba6e2ed5f09c3d5f3b40290000000000000000000000000000000000000000005d5764e821aa925ed31800000000000000000000000000000000000000000000000000000000008e60714a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006ab00000000000000000000000000000000000000000000000000068d00004e00a0744c8c0980122c6a83c8202ea365233363d3f4837d13e8885aafc1f252d544f744d17a4e734afd6efc47ede400000000000000000000000000000000000000000000eef4358574e7dd1bb60000a007e5c0d200000000000000000000000000000000000000000000061b00046b00007b0c2080122c6a83c8202ea365233363d3f4837d13e8882049df3435bdbb36d22f98fcd2e5027049a1f3ce6ae4071198002dc6c02049df3435bdbb36d22f98fcd2e5027049a1f3ce00000000000000000000000000000000000000000000000008beea947c371a0880122c6a83c8202ea365233363d3f4837d13e8885120d315a9c38ec871068fec378e4ce78af528c76293c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2016452bbbe2900000000000000000000000000000000000000000000000000000000000000e00000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a19000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f277304342b77fe3417bcb09d0a4383301b0dc733c755b0002000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000009042941fc1922c100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000003e8da252d8b4f80000000000000000000000000000000000000000000000000000000068f2773000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000751fc54e3ef73c357ba6e2ed5f09c3d5f3b402900000000000000000000000000000000000000000000000000005af3107a400000000000000000000000efd9cbde43aa0000000000000000091b3e267c0f25a90000000000000020b5799b1f5789184d0000000000014d8d0c6e3c9ba6116000000000000000000000000000000000000000000000120485816d21b5ce42eec400000000000000004563918244f400000000000000000000006a94d74f43000000000000000000000000000068f276f40000000000000000000060a24181e4000000000000000000000000000000000000000000000000000000000000000041c659ebc38b4bf6d8966392682d71d25f8891b8088ab0404c6251a189d875bda5119c5349eca2d76470f8bd88834d022916e81fd627543e176dc97668cf582a4d1b000000000000000000000000000000000000000000000000000000000000005120bbcb91440523216e2b87052a99f69c604a7b6e00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800847fc9d4ad000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e60714a0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009a635db5", + "nonce": "0xe", + "to": "0x1111111254eeb25477b68fb85ed929f73a960582", + "transactionIndex": "0x9d", + "value": "0x0", + "v": "0x1", + "r": "0x267633fc6584bf1f72b4cd3f256292b25193ab0e3db36d915f3f6b15afc605bc", + "s": "0x26dc28694589b01751c9f3c14d649a0838cae80da69ddc7c0dc3eb027c383013", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3c71cdfd", + "maxPriorityFeePerGas": "0x5f5e100", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xe9d0a2d366f831f6f6b71f916a1628fb63aaae08", + "gas": "0xf5019", + "gasPrice": "0x4542f45b", + "hash": "0xd77ddb53927e22fe90b348ec8f4da377f7b40f66db2fbec5469dde85db96d09f", + "input": "0xf3d71e4100000000000000000000000035db01d1425685789dcc9228d47c7a5c049388d8000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000068f276dd0000000000000000000000000000000000000000000000000000000068f2775500000000000000000000000055555535a287325d4a2a3da8c9f42f5a185d303c000000000000000000000000000000000000000000000000000000000000006400000000000000000000000068749665ff8d2d112fa859aa293f07a622782f3800000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000020000000000000000000000000035db01d1425685789dcc9228d47c7a5c049388d80000000000000000000000002d8774566867f7f4c9d64251afd3b3367cc297d7000468324fb45db5e5cf14be7031cc9e6bac128f367cb9b08ce33ecc99278e410000000000000000000000000000000000000000000000000000000068f27761000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000f957689600000000000000000000000000000000000000000000000000000000f81840620000000000000000000000002d8774566867f7f4c9d64251afd3b3367cc297d70000000000000000000000000000000000000000000000000000000000000041eec7a9e8e44b4620874a09dd45d781e7b2cd1615020f424ad33b91f9f8c7040400928ce03bfd2195889808a701a25a068253e5815e9b844642a40a9aba3515a31b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000006835db01d1425685789dcc9228d47c7a5c049388d8dac17f958d2ee523a2206206994597c13d831ec760000000000000000000000000000000000000000000000000000000f96ee3ee0000000000000000000000000000000000000000000000000000000000117786000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068749665ff8d2d112fa859aa293f07a622782f3800000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000068749665ff8d2d112fa859aa293f07a622782f38000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000006546055f46e866a4b9a4a13e81273e3152bae5da00000000000000000000000000000000000000000000000000000000000000a0000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4128acb08000000000000000000000000f00000003d31d4ab730a8e269ae547f8f76996ba0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x19ac", + "to": "0xf00000003d31d4ab730a8e269ae547f8f76996ba", + "transactionIndex": "0x9e", + "value": "0x110d9316ec000", + "v": "0x0", + "r": "0xd850cb0607abaeb779de7fcf79d44fbf988c9d92d83fb86a3eae93e7362ddb9c", + "s": "0x128f2b2f5294b59cdbced98ee11ae380a9d13ec8af1e257f65d4648790d11716", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xb2be0e7f", + "maxPriorityFeePerGas": "0x1a49203f", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x46340b20830761efd32832a74d7169b29feb9758", + "gas": "0x55730", + "gasPrice": "0x9d298ddc", + "hash": "0x5cd750b8b8d42893451fede2f9408029291647f70cac4e2eb6659cb9ab952ede", + "input": "0x", + "nonce": "0xf448d2", + "to": "0xb3538838903c8ea77ecab9c5856b4c9f205d934f", + "transactionIndex": "0x9f", + "value": "0x1297d72c6e98000", + "v": "0x26", + "r": "0x5d5d13bb9c521d7f5eb1b672518e8434911a61b1385c85b9229c2ac08ef1a3b1", + "s": "0x4c26228f2f7792fe5b24abaa948f5e8fbae941c3d69c419fec5f89f78ba00396", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x46340b20830761efd32832a74d7169b29feb9758", + "gas": "0x55730", + "gasPrice": "0x9d298ddc", + "hash": "0xe412cf99d114a501e25a492dd1d76818e15ad73973262c727328af766e9dc0f3", + "input": "0xa9059cbb0000000000000000000000002d99b9664d059fb5612899734572efcdedc08853000000000000000000000000000000000000000000000000000000000636ba90", + "nonce": "0xf448d3", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0xa0", + "value": "0x0", + "v": "0x25", + "r": "0x6e8703003ef5cc814384e2e2a866be31016285130ce23d983819b9f8b7092520", + "s": "0x24d4600c4e3a96fb80947e63191951b8425e0cfd9aed157d06b44f43e023db18", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x4f6c03fc80a2e1898c57730c8047a4620277bbca", + "gas": "0x9162", + "gasPrice": "0x8462031c", + "hash": "0xe64dae606a992237198772320ab3d6e184dcda8cdd764b85cbde22a1118407c0", + "input": "0x49290c1c0000000000000000000000004f6c03fc80a2e1898c57730c8047a4620277bbca6400600ecf021c666cd4113b4d8e5d15604ac29e2bf68fca11067aa1b332b11b", + "nonce": "0x10", + "to": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "transactionIndex": "0xa1", + "value": "0x1716aea3d69470", + "v": "0x0", + "r": "0xb30b82fc58e519faa562cfb0da70072354ae68e70c9b77b267879855ac3bdf20", + "s": "0x1a6c320b45154e8111363ff0c8933a66632af08032e51e6b58bcbf820c77d06c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x94b6adc0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x435b3539f68283dd44f03a4bfe8666c0f6187033", + "gas": "0x19041b", + "gasPrice": "0x2df4c49c", + "hash": "0xd390301115a9f857da2a11c5458c8f515e16364508a66a174bd22f85c6377144", + "input": "0x1fad948c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000435b3539f68283dd44f03a4bfe8666c0f618703300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c0dd06766007026d8bb1881bd8e614b88ed110cc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000aeca00000000000000000000000000000000000000000000000000000000000b1fee000000000000000000000000000000000000000000000000000000000001c218000000000000000000000000000000000000000000000000000000008cff3a74000000000000000000000000000000000000000000000000000000004a817c80000000000000000000000000000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000189ba5ed110efdba3d005bfc882d75358acbbb858423ffba36f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000040d38e5fee370c2a358e089018f7ad568685c2be9019ea9e786e9e4e80013e8829458ba696b8a86c91d8e00c193ddacd5aa27f7af6b962e73064587a4bb1d8e0800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b0b7c5f926930d9ed1af8a01b1a79639d6f1c7f9e15b0a8c44ecad456533d0110ead2ce0e15b0a8c44ecad456533d0110ead2ce00041f605fbcad08b773e65b3d9231ce435000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e434fcd5be000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f432a9e2b931aa74d33844ca5231886c424790cb00000000000000000000000000000000000000000000000000023a94915cbab10000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000017000000000000000000000000000000000000000000000000000000000000000104c8519d4daa1808c40070e6f4c43e2dbe085db7559f225e04758c7a67fe246645187b62141b2bfbffcead799bdcccc001936cbd6a11df4980bdf27a0aacee690000000000000000000000000000000000000000000000000000000000000025f198086b2db17256731bc456673b96bcef23f51d1fbacdd7c4379ef65465572f1d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000be7b2274797065223a22776562617574686e2e676574222c226368616c6c656e6765223a225039777250574e786c647448796974485154744953443147484a3561386d73534c63727071556149343730222c226f726967696e223a22616e64726f69643a61706b2d6b65792d686173683a45414f57774f51414268735158646c6747693568424f616478375459365a585f43714a6c706f786631686b222c22616e64726f69645061636b6167654e616d65223a226f72672e746f736869227d0000", + "nonce": "0x841", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": "0xa2", + "value": "0x0", + "v": "0x0", + "r": "0xe7150570e4f60d20a40de612f7650f03d4ff99dcb023b732ffba1472888927d5", + "s": "0x62ad47eb0f26463683086f9e3ef5bdaa9e20d70bf790bca3144a97025c1d655c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3edcadc5", + "maxPriorityFeePerGas": "0x2faf080", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbee2d7abb114e3a568631c6bc9edc3499e4e6007", + "gas": "0x93056", + "gasPrice": "0x2af9d41c", + "hash": "0x436e4c8dd49906b4ae0dd1e99cf4de41e16004f35029c50976a377ed101a8a72", + "input": "0x4cf3fe9c000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008c0000000000000000000000000bee2d7abb114e3a568631c6bc9edc3499e4e60070000000000000000000000000000000000000000000000000000000068f2771700000000000000000000000000000000000000000000000000001eba28cc86ac0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000006131b5fae19ea4f9d964eac0408e4408b66337b500000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000744e21fd0e900000000000000000000000000000000000000000000000000000000000000200000000000000000000000006e4141d33021b52c91c28608403db4a0ffb50ec6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000003c3a81e81dc49a522a592e7622a7e711c06bf3540000000000000000000000006fa6dbc66062503c706fcd0872f2723eeee1d17c0000000000000000000000000000000000000000000000000000000068f2772100000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000004099e4f62d0000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000009d1fcf346ea1b073de4d5834e25572cc6ad71f4d000000000000000000000000ba1333333333a1ba1108e8412f11850a5c319ba9000000000000000000000000000000000000000000000000199082e8b69921d80000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006e4141d33021b52c91c28608403db4a0ffb50ec6000000000000000000000000000000000000000000000000000000000000004063407a490000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000e00000000000000000000000006fa6dbc66062503c706fcd0872f2723eeee1d17c000000000000000000000000f4c5e0f4590b6679b3030d29a84857f226087fef000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000003c3a81e81dc49a522a592e7622a7e711c06bf354000000000000000000000000000000000000000000000000015db579d1dd33dc000000000000000000000000ff53611968f1e5ca45cfca7918447e7f5776f6d3000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000003c3a81e81dc49a522a592e7622a7e711c06bf354000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000006fa6dbc66062503c706fcd0872f2723eeee1d17c000000000000000000000000000000000000000000000000199082e8b69921d800000000000000000000000000000000000000000000000cc1906921b8ec80db0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000010000000000000000000000006e4141d33021b52c91c28608403db4a0ffb50ec60000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000199082e8b69921d80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041a4c8b558d6f8c9cf77ea806e86e9c6ddee25cab4f277a777b7a5fd00898d357a227b3c6307c9f581c88459d3f5d3bca26727c3cfc9c2d3f29790b063869577731b00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x488f", + "to": "0xbee3211ab312a8d065c4fef0247448e17a8da000", + "transactionIndex": "0xa3", + "value": "0x1eba28cc86ac", + "v": "0x0", + "r": "0xf9f9876e2ff14c53503a38241fe04aa82a91b3884d7923f31c1df5013557769d", + "s": "0x264f436637c88c19bffa98ad1964689d8e419506c8bee10cfe7a12cc347e4001", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x339231bb", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x09c5ac47a77a5086ded764410df18478918156aa", + "gas": "0x5208", + "gasPrice": "0x8a57e41c", + "hash": "0x138e4b7b2cecafc37f0c938d86955baf4cebc0103f63dba7f95b825e319062cc", + "input": "0x", + "nonce": "0xd", + "to": "0x47e64597445c56ecefa6b01602fb699fd44a7a76", + "transactionIndex": "0xa4", + "value": "0xdce3ffb8bbafe", + "v": "0x0", + "r": "0x3bdbeb1ea405bc5450aad2b374c8d008ea7f1ee491f0b67c3c40b884b3263b01", + "s": "0x3b84e76df5a71d0194ea13d47023b97a14abc6fc8595c5a4b7881514d4c3bd5e", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9cc29d80", + "maxPriorityFeePerGas": "0x5f5e1000", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbce8c0de487c2d7e5d47e2cfe57cdd67f47a8392", + "gas": "0x5208", + "gasPrice": "0x8a57e41c", + "hash": "0x62484183d4ce48ee545b5d94fda424b771ef64bbd55214f7c9961783430d531b", + "input": "0x", + "nonce": "0x14", + "to": "0x187fe1a8b76c60b85c00a2819152ff00ff642386", + "transactionIndex": "0xa5", + "value": "0x28254a45f64000", + "v": "0x1", + "r": "0xd3f788a215005717fe0e4a083aac1efd0d69581452ba7af3dd361ec62af18cd3", + "s": "0x35c3ea2727d20bde28990ad6e65473efc511b2b5d4a94b2c75e0572c6c664ea3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9cc29d80", + "maxPriorityFeePerGas": "0x5f5e1000", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2ddff588417d365133869ffee5c74fb610d9d404", + "gas": "0x9ec1e", + "gasPrice": "0x30d7f6a8", + "hash": "0x4a44e04eca033a3d83b87a86891d839bda6621e94469a9b002d1ee666dea3d17", + "input": "0x13d79a0b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000000040000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c139190f447e929f090edeb554d95abb8b18ac1c000000000000000000000000c139190f447e929f090edeb554d95abb8b18ac1c0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000f1556b0d24140000000000000000000000000000000000000000000000000000f14f830f845400000000000000000000000000000000000000000000152c61cd2e1152b6d10d00000000000000000000000000000000000000000000152d02c7e14af68000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000cf3c96b0f299208b085fd3746ffb9a6fe548252300000000000000000000000000000000000000000000152d02c7e14af68000000000000000000000000000000000000000000000000015265e3ce164a1b660cc0000000000000000000000000000000000000000000000000000000068f27df0ac6865450544ea39b4381f6645b6be0deb3115f754543fd711e4eb17e58c6c620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000152d02c7e14af680000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000041fc91590bbaf69a20c1139ee09adba7dab3a21db57db97964f3a03806084738e72a3f31243c6c36130c538e880b144d422d1293cfe42149ee7107e98bf686129e1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000340000000000000000000000000c2921134073151490193ac7369313c8e0b08e1e70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000843df021240000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000152cf3ab1463185018600000000000000000000000000000000000000000000000000000001746b32d8c00000000000000000000000000000000000000000000000000000000000000000000000000000000ffcb2bbd8c94d7671feab47d2bc5484b4e23f018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000024c9daec110000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000000000000000000000000000000000f6e72db5454dd049d0788e411b06cfaf16853042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044959912760000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab410000000000000000000000000000000000000000000000000000001747d46b6f00000000000000000000000000000000000000000000000000000000000000000000000000000000ffcb2bbd8c94d7671feab47d2bc5484b4e23f018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044f81b127e0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000152b682191c97ee065830000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b09d29", + "nonce": "0x780", + "to": "0x1921e0ff550c09066edd4df05d304151c45e77de", + "transactionIndex": "0xa6", + "value": "0x0", + "v": "0x0", + "r": "0x1dee3c0605243b8e3b869852331db538c6a8610e4f58f625aac330d8f3851b37", + "s": "0x3bba50a52d42dca3665854b3f66124a591a3736257bbfdc0bef22604ed853a11", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xba5dd09c", + "maxPriorityFeePerGas": "0x5de228c", + "accessList": [ + { + "address": "0x2c4c28ddbdac9c5e7055b4c863b72ea0149d8afe", + "storageKeys": [ + "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc", + "0xfde9fa83f65c4ebd78bd924b32912d869ca4ab1d73171819b9de90086e596dc1" + ] + }, + { + "address": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd", + "storageKeys": [] + }, + { + "address": "0x6b175474e89094c44da98b954eedeac495271d0f", + "storageKeys": [ + "0x0e3d19729328f478ffc901c115f05d0195e5b68e282b84da93c6bafd953fdc80", + "0x31adef62206227419133dd9a6b4041532c22595206a596cf74f19493bfc8f368", + "0xed4b374d31abe9cd5c2a0aa09134b2c60d8db77408681d37641277d5db7022d0" + ] + }, + { + "address": "0x9008d19f58aabd9ed0d60971565aa8510560ab41", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x98ab7db99cfee110bcc72fbbb0a11b4d48e76a74e8a58986e1ea42d2f126bf9b" + ] + }, + { + "address": "0x9d6d77a21702b9afcf924983fbfb84aaaae79589", + "storageKeys": [] + }, + { + "address": "0x9e7ae8bdba9aa346739792d219a808884996db67", + "storageKeys": [] + }, + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x13b47f23d2a1108525541d5ea06db599b85218b4099197240b2ce242653286b9", + "0x2209089ff8bd3b7bac6ff21ec014fbd229af53b4ecc03dcfbd102128759cb6c8", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x73d4364a0e3e4f76ac6759cc92850e885d3e00ae4da0fcda35f2b80272bdc993", + "0x9254cb65314db3d2d7ca17f753f1d9c7f1b6fa05111d18d10ed5b9519d1b247c", + "0xcc236083e86ee3df0f3160002f381f1404bd44c4dec1322196f34d52548202f5" + ] + }, + { + "address": "0xc139190f447e929f090edeb554d95abb8b18ac1c", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000195", + "0x0d44d572b2c55cd44860d5c0bfd40082539fbbf914cafa44b1d325e0132f87f0", + "0x27730174716f24647ea280794470730836bf8139f11b02bc55be28aa6bd0b07a", + "0x28c0600ebc8f4825b1e5aae37d81f46e8e87354b88237c1e87c204b0e6bee2b6", + "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc", + "0x51a3a835cf4b5be07327939fcec0b2c473acccdfb59396b06828ee2573bcc612", + "0x5b237eb24fde0c9e4fa2aae2dbe0bff864e01e380f22b97feba5d250e1d2cd74", + "0x5d28b9f1d96c52da62a71c43191cf676fa4b05868aa2beef2bfcf31b156ebf61", + "0x6717b9a5f728f4284808dee589e33c74690e3523127b9be33f23a70639275c11", + "0xa76c0c0ee691ae49cae1319f5e8f1affcb8f70d42f73c990fb43d01bffdd3dc0", + "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103" + ] + }, + { + "address": "0xc2921134073151490193ac7369313c8e0b08e1e7", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x0000000000000000000000000000000000000000000000000000000000000002", + "0x0000000000000000000000000000000000000000000000000000000000000003", + "0x000000000000000000000000000000000000000000000000000000000000000a", + "0x000000000000000000000000000000000000000000000000000000000000000b", + "0x000000000000000000000000000000000000000000000000000000000000000d", + "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x0000000000000000000000000000000000000000000000000000000000000010", + "0x0000000000000000000000000000000000000000000000000000000000000011", + "0x0000000000000000000000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000019", + "0x000000000000000000000000000000000000000000000000000000000000001a", + "0x0000000000000000000000000000000000000000000000000000000000000022", + "0x0000000000000000000000000000000000000000000000000000000000000023", + "0x0000000000000000000000000000000000000000000000000000000000000024", + "0x0000000000000000000000000000000000000000000000000000000000000025" + ] + }, + { + "address": "0xc92e8bdf79f0507f65a392b0ab4667716bfe0110", + "storageKeys": [] + }, + { + "address": "0xf6e72db5454dd049d0788e411b06cfaf16853042", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000003" + ] + }, + { + "address": "0xffcb2bbd8c94d7671feab47d2bc5484b4e23f018", + "storageKeys": [] + } + ] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x448166a91e7bc50d0ac720c2fbed29e0963f5af8", + "gas": "0x668a0", + "gasPrice": "0x347f0b76", + "hash": "0x324626204e5f6b84ad1cf6c978a32fc0e84186da90acbd811dada07d19eacd19", + "input": "0x000000cc000000000000000000000000836951eb21f3df98273517b7249dceff270d34bf0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000001f7a03f820000000000000000000000000000000000000000000000001eec8de2d6e4d840", + "nonce": "0x79880", + "to": "0xfbd4cdb413e45a52e2c8312f670e9ce67e794c37", + "transactionIndex": "0xa7", + "value": "0x16816a5", + "v": "0x0", + "r": "0x74b82f8604c61eac1888c0a50798baee09d17887c66c31cafe9215c0d690095c", + "s": "0x5d33d5ca694f975928a0557ac838f1bbcd6eb82fd9e0d8f5ba7069dbcca2197", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x347f0b76", + "maxPriorityFeePerGas": "0x985375a", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf14e4ea7ebc55b238ef86dd2f4e277a56d7922ec", + "gas": "0x5208", + "gasPrice": "0x8462031c", + "hash": "0x67fca39d89aa7d9976bfb268cdbe449e6ab36418666202fff170657b6a86ca37", + "input": "0x", + "nonce": "0x19a", + "to": "0xce627cf5ec4180d2c444b30efcaeda9e17bc357a", + "transactionIndex": "0xa8", + "value": "0x48f7d175e76177d8", + "v": "0x1", + "r": "0xf62f0e8819218dd65c67db7775e4cc24f8396c032c8099286c8f3c9bac90c85b", + "s": "0x5fd5401723082cbbb33d3f7b5421ed4e087d66fc320f23b6f3440897b146594a", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d5c09f3", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8ecf80012304cb58264dd94b58adf1121206eee3", + "gas": "0x5208", + "gasPrice": "0x8462031c", + "hash": "0x5287525d1548e7d2a2ebf3319c77cea6049a0b11dc14fa25eff7ba80a1084c2d", + "input": "0x", + "nonce": "0x0", + "to": "0xa9e838c521eaeb1cf0e0022e8c60cb882e16ee20", + "transactionIndex": "0xa9", + "value": "0x830eed61c8813ac48", + "v": "0x1", + "r": "0xfdcf256b46fc0815662dbbf0c780f65f4a337f06d688e821f2a4d59cd73b4e3a", + "s": "0x6380344ea635df86aa589dbe72d6fd80b6996166ca23e7dc76c1f3daa2f2849b", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xa02d76b7", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x01e73e874f69b1fa88f352062d72d0581fa4ddfb", + "gas": "0x5208", + "gasPrice": "0x8462031c", + "hash": "0x1c47db6fbf29bd35916b0ea1fdf1a53c3fbfbb4a88e81b316f196dfd012ccab0", + "input": "0x", + "nonce": "0x2", + "to": "0x77c476c0d6041124703f01350431efcd20473cfb", + "transactionIndex": "0xaa", + "value": "0x93db1830d816b", + "v": "0x0", + "r": "0xc527f64aab7edb12e99c1bf0ad3fb6131845472b4d68b00503c0dbd579a5fceb", + "s": "0x6b3e85f095242a724139f439d066cba3843d7fd429dee8b8e00934bad6699a2c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d5c09f3", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd0f667b79eb8a22e7aa8c73497cf59841fc0b79f", + "gas": "0x7b0c", + "gasPrice": "0x8462031c", + "hash": "0x3388bf05c2c84864882fdfd417b06bd5effac3a4dffcc0f5fb7d07535a70b9ea", + "input": "0x", + "nonce": "0x2", + "to": "0xb5c81fa6aa8a676321fb823976b1a7c43907eccf", + "transactionIndex": "0xab", + "value": "0x1ff136fbc65924", + "v": "0x1", + "r": "0xb77a480625eacb905dcbe84e926450a6915e760fbc03b3b5d972746f053fda71", + "s": "0x27e5021e69e35a5d44f3c449e3e2d78c8ea585a80e37a6a53d4119e0c90ffef8", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9bd325f0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd308132f6c8a59c399dc3f79d22925ba42779cc0", + "gas": "0x7b0c", + "gasPrice": "0x8462031c", + "hash": "0x8e7995d32c1d314859ee09bdeafbc910c407049440013c79ad6b4e388f51c8cf", + "input": "0x", + "nonce": "0x39", + "to": "0x23393e683f2e7df8b5b4fe1dbafc56a4c13cc565", + "transactionIndex": "0xac", + "value": "0x2c041227dd36000", + "v": "0x1", + "r": "0xee2e8445e770c35045e4d0fed1da14d40bff389c62c7081e95b86b73adb31692", + "s": "0x446b3317619adaab9834c41b6d55e8c64f8aac524b53dfff72c3122252e6bf19", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9bd325f0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x31f4b6fc11ecefcda69d263234849d2d6c32c665", + "gas": "0x5208", + "gasPrice": "0x8462031c", + "hash": "0xb2355c6ff6a428ce78688ef4e1a76c61713e132f34c31dd9f280c3dc8fbc6d1b", + "input": "0x", + "nonce": "0x2c", + "to": "0x56bbe100008c15f410da72d98a8b6e250463d229", + "transactionIndex": "0xad", + "value": "0x9d7efdd477800", + "v": "0x1", + "r": "0x9f3951b1f8c669a22412d8c42ee030925d76288f747c7a020479d9b7515668b0", + "s": "0x21434f83d9ad73707ecb602be469e16823cc62511b154cabddde8c931c43b065", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d5c09f3", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x06e7cd88801fb7fa0205f4ee5877fccf624a4463", + "gas": "0x7b0c", + "gasPrice": "0x8462031c", + "hash": "0xae770c436e6e208dd24efb0002831a7529cfc1a98a8bf30c07d43045738ae8ce", + "input": "0x", + "nonce": "0x7", + "to": "0x9c129ec58d21a17c5d865c7967ad163c3b80cd5d", + "transactionIndex": "0xae", + "value": "0x1681575391f270", + "v": "0x0", + "r": "0x3e52b9a0597423280e11807431e247b92cd8d137ce19d27e36736889bc8a2bf8", + "s": "0x22ae8cb18aa5229053a2073e051db446d353c3db9ede06f1ad4893500e5db3ba", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5d98c6fef6372de07eafa2aae86012c6008d177f", + "gas": "0x5208", + "gasPrice": "0x8462031c", + "hash": "0x5664e189cdd4a17ca680cb22b1d71c9416b2e7ea2b391df6e0d2eeb70842623a", + "input": "0x", + "nonce": "0x2", + "to": "0xb39941d98d052061fcd4f6e36d70327836530186", + "transactionIndex": "0xaf", + "value": "0x2b4b45514aa80", + "v": "0x0", + "r": "0x981c0f368b8a934a0b7f406252af0321cf6c80e01659d6720e1f741fe4430680", + "s": "0x344d642c56504f32f56e6ef75bd5c26f306785687249e382a261f832f5db37f1", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9bd325f0", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbce8c7fd06dcc986cfd0b87c83f5923ebbad68a2", + "gas": "0x5208", + "gasPrice": "0x8462031c", + "hash": "0xe232e4ae95134a9f74a35c96d9d55aeeaadbcef6cff71f58838e6e0ab3a2632b", + "input": "0x", + "nonce": "0x3", + "to": "0xa956f281b4b82b4faced322540838f776bef55e4", + "transactionIndex": "0xb0", + "value": "0x5b68509b83f6", + "v": "0x1", + "r": "0xc863ad2e73f396e1cec182d3ebb69f526f51e534c267063a0a48db6ccabaf6ed", + "s": "0x7b3b9041b2ba45ed0fad66178122323e4a727d886910d7773d520f6b2b889a76", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x7dd89f54d7818ee5061d80175925e10596b5d11f", + "gas": "0x7b0c", + "gasPrice": "0x8462031c", + "hash": "0x3ba1f22b91e69ee86bc64027386b17198de2b55e197d51678255261bdfecd3d3", + "input": "0x", + "nonce": "0x0", + "to": "0xc0a8c739486214c9f2ac6dd83e77eaf6e81a9d4f", + "transactionIndex": "0xb1", + "value": "0x2e2f6e5e148000", + "v": "0x0", + "r": "0xe9f6ffd43923ede8100e955094a0ec84ef6ef2ad149416ac5eded5eb825cd7e0", + "s": "0x28670470f452dcd5c7b3ff006b69305771f8d7e65399afdcde329486cf60a7ea", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d0a50d2", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xdbd47f66aa2f00b3db03397f260ce9728298c495", + "gas": "0x7b0c", + "gasPrice": "0x8462031c", + "hash": "0x5f817a8c6eb5ce35cf58848fe3ec20356a6f222db31614412686e750d65f2d2c", + "input": "0x", + "nonce": "0x1d1e", + "to": "0x71d13056cb985d985ae0f1877818b91d9c4cbd05", + "transactionIndex": "0xb2", + "value": "0x53444835ec580000", + "v": "0x1", + "r": "0x8bdb7a535b522dde9728bc6c7303288875fa95793742f5c6d97d9d297545aa21", + "s": "0x50b20e14333fb3acda9d6a18531235db41dfa8e11a73073ffba95165c856baad", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x9d5c09f3", + "maxPriorityFeePerGas": "0x59682f00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc6cf1fe0d5c825abc82413447be6392d92ac445a", + "gas": "0x17178", + "gasPrice": "0x48c7391c", + "hash": "0x9dfc824bef9aed6878a1aacfe6b024b7182fcdec47a260294542b57ec4ae843b", + "input": "0xa9059cbb0000000000000000000000005b0952f132d0674b56cf47ef686ff25353cc34590000000000000000000000000000000000000000000000000000000bec6a8580", + "nonce": "0x4b", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0xb3", + "value": "0x0", + "v": "0x1", + "r": "0x4cfb728c7d88a7a8d7aee2050866e0ced2e83de9c7dcb778a099072b21f46c25", + "s": "0x75448b74331381f175122fa588f6b7eaebcfffc116bb1e8d161f2023064dfed1", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x4d192de1", + "maxPriorityFeePerGas": "0x1dcd6500", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1b59718eafa2bffe5318e07c1c3cb2edde354f9c", + "gas": "0x26a2a", + "gasPrice": "0x3b6d411c", + "hash": "0x991877370f1e5c18e529a37600527ca881c70db445a07f7bb141dec44d77d624", + "input": "0xdeff4b2400000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000002105000000000000000000000000394311a6aaa0d8e3411d8b62de4578d41322d1bd0000000000000000000000003b060475e9525a83b16fdebe49f2f72989d6e2ed0000000000000000000000003b060475e9525a83b16fdebe49f2f72989d6e2ed00000000000000000000000000000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000006000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000077109b673fb1d00000000000000000000000000000000000000000000000000071f8134beb595000000000000000000000000000000000000000000000000000000000000210500000000000000000000000000000000000000000000000000000000004a5f310000000000000000000000000000000000000000000000000000000068f29a2b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x274b9", + "to": "0x5c7bcd6e7de5423a257d81b442095a1a6ced35c5", + "transactionIndex": "0xb4", + "value": "0x0", + "v": "0x1", + "r": "0x17a8c1b65b55fd0d11f505eed1b94281acbcbfe750a1905ba80d19be3eb1a372", + "s": "0x415dfaa82aa9701a8a40b80f907c8f29aa8eacbd0dbf10b9fcd4fbb1d4cb9e42", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x7b5aaca0", + "maxPriorityFeePerGas": "0x10736d00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8802b353fab4ae1a56b2c633d5a2b3e57930d131", + "gas": "0x7adff", + "gasPrice": "0x3047dc5c", + "hash": "0x1041045ec4b98585af04b3c0ab8f2d6dfb941d15b31130268f3bf28376572a30", + "input": "0x9f40a7b3000000000000000000000000000000000000000000003985f71b92a2977d9dc50000000000000000000000008802b353fab4ae1a56b2c633d5a2b3e57930d1310000000000000000000000008802b353fab4ae1a56b2c633d5a2b3e57930d13100000000000000000000000000000000000000000000000000000043cadbf7fa", + "nonce": "0xef", + "to": "0xbc65ad17c5c0a2a4d159fa5a503f4992c7b545fe", + "transactionIndex": "0xb5", + "value": "0x0", + "v": "0x1", + "r": "0x5a100b824495be095fec6e249b23bd54c326fab3214088e13385194164165c01", + "s": "0x408a6fc3d07f7edf41bd764ef8cbb8339554540f8ea502c2836f4fb74028e38d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x38e039fb", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa66616d9def9626443ce7f2ebf31bd5ed397e882", + "gas": "0x5208", + "gasPrice": "0x74a0b5a5", + "hash": "0x5025b2bbdc62f003906f2671fea2281aa53e8a85aa5315bb052dba2d56e6f898", + "input": "0x", + "nonce": "0xa", + "to": "0x8dc2e2f690c9951ac40d328829cedd6ee723429a", + "transactionIndex": "0xb6", + "value": "0x711dd7eb51b0c", + "v": "0x0", + "r": "0xcc82a6a3a0637b156d7e31a769c9513b68f11e2bc1877eca4716620cfd917086", + "s": "0x390289a9ad319daa998fb8e3dca21f7c289f5d134ab8642c0f234da9927265e3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x74a0b5a5", + "maxPriorityFeePerGas": "0x74a0b5a5", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2df6527b922a8483dec2c1c1bf06a694f1c70ab5", + "gas": "0x5208", + "gasPrice": "0x745c2174", + "hash": "0x97d7176f34adef3db916cce592ed0101a1b057c135f07e95cdedcf20620a2166", + "input": "0x", + "nonce": "0x54", + "to": "0xdc000bfb91127dd1d5ced1673e72ff88e9e3934c", + "transactionIndex": "0xb7", + "value": "0x8f624cdb54cc60", + "v": "0x1", + "r": "0x5b2dd33ef3bc7997170803d103f3d24377c8d731db560444425ea6133a97d03a", + "s": "0x2bea0ae4dcc5b42dea9a2c03d3e38c3e43e766ba9cc633a09549798067bc096d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x745c2174", + "maxPriorityFeePerGas": "0x745c2174", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb66a3951943ebbbdf31d99cf28b716ccdabd4d38", + "gas": "0xf0e0", + "gasPrice": "0x48c7391c", + "hash": "0x0561cd39e450d00b9c165b01ac78ae6ddbca521585b00e0685b8559df609b939", + "input": "0x095ea7b3000000000000000000000000bbbfd134e9b44bfb5123898ba36b01de7ab93d98000000000000000000000000000000000000000000000009cca8a62c74eafa4c", + "nonce": "0x54", + "to": "0x3d7d6fdf07ee548b939a80edbc9b2256d0cdc003", + "transactionIndex": "0xb8", + "value": "0x0", + "v": "0x0", + "r": "0xf2a42a38379c7c94e36dcd0aea961e14b431beb9cdfd3d0dc71202b4e1410bac", + "s": "0x69c93887cc824fc888189cf931c44c0508c08d06136b5d8fbef8834a7f784296", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5c581108", + "maxPriorityFeePerGas": "0x1dcd6500", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xe93685f3bba03016f02bd1828badd6195988d950", + "gas": "0x8b660", + "gasPrice": "0x3ccd995c", + "hash": "0xfbf937ebefd8bdd4cc794a58c9649894210ac47a80a638fcca0c6c69bc227df1", + "input": "0x0894edf10000000000000000000000000000000000000000000000000000000000000040cbe04bbbe8d2e3c063963317decc20fd615c4d77a8fc0f0e463ad040fd110025000000000000000000000000000000000000000000000000000000000000005101000000000000022f000075e8000000000000000000000000ab1e131c6984cc149ef45931073d11ae3549719100007595000000000000000000000000944824290cc12f31ae18ef51216a223ba4063092000000000000000000000000000000", + "nonce": "0x2a62e4", + "to": "0xc02ab410f0734efa3f14628780e6e695156024c2", + "transactionIndex": "0xb9", + "value": "0x0", + "v": "0x1", + "r": "0x4fa73987aa5c597740867770c43fe720559bdb666421f2a9849ef9760bc139fe", + "s": "0x6ba008ce163289ae9bea993dc6ad740b0b8f3bb88df3395f81a85c026a65cab0", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x4565f6fb", + "maxPriorityFeePerGas": "0x11d3c540", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1335d0a7cba7e5742399b0c94305136e8f4bc2a8", + "gas": "0x3b932", + "gasPrice": "0x2af9d41c", + "hash": "0xd5a99e4adda8f27b2845a0c4a9effdeb25069e667fa9f3f4940fc06853ae4e9c", + "input": "0x78e111f60000000000000000000000003e9c943a2ce93c65848b1f2c2c217323ef82ed01000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c4f4ff529500000000000000000000000000000000000000000000000000000001565a30f0000000000000000000000000000000000000000000000000349cd1b974d0ea000000000000000000000000000000000000000000000408f55ab95275bf50f58d0000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000068f2770bff8000000000000000000000000000000000000000000000000000000001225700000000000000000000000000000000000000000000000000000000", + "nonce": "0x10b8a", + "to": "0x5050e08626c499411b5d0e0b5af0e83d3fd82edf", + "transactionIndex": "0xba", + "value": "0xafc21c", + "v": "0x0", + "r": "0xd3eb19e00f54bc030f021a1420d8de9ca282f94dc711795a09056d57f96009cf", + "s": "0x41794b2e9f7321da94c5700021b8a6802dbb8477e497f95454526349f5fd878e", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x4076be2a", + "maxPriorityFeePerGas": "0x0", + "accessList": [ + { + "address": "0xc7bbec68d12a0d1830360f8ec58fa599ba1b0e9b", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000002", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000016", + "0x0000000000000000000000000000000000000000000000000000000000000017", + "0x0c27731cac1e121449a18deab4cdfc63afb79524904e9a0a1a4146c3fad6baf4" + ] + }, + { + "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000003", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x000000000000000000000000000000000000000000000000000000000000000a", + "0x0bcc3f5c0773d5f77cb40655e74390f2499b9e552b946f0b7fca303b3047844e", + "0xa55d452fb1bea570fc3ec56adf248e3f32d4ea87fd3bdf9075911a48178741cf", + "0xd06ef82a07326a6e964ce1700825547c428fbc96deb2e33e7e20498001080d7d" + ] + }, + { + "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "storageKeys": [ + "0x037115957c78e37f987a242ae6019b6d91ee5fe4035e6bd8dbead7487b2a0cdd", + "0x2a306d7595987ab10375e6e054d7489cc80c1cf5351587e21ffbd126573f06c6" + ] + }, + { + "address": "0x3e9c943a2ce93c65848b1f2c2c217323ef82ed01", + "storageKeys": [] + } + ] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc9d82d4e7ed034f0854ff1ecb81f36aadfdce195", + "gas": "0x5208", + "gasPrice": "0x66949e1c", + "hash": "0x40f95f2d11ad0ce7c8048f3656f2db93e95f51574f6db4f4bf6ccf1312a7112c", + "input": "0x", + "nonce": "0x3", + "to": "0x68c01e74dbc156a1ecc009ef10a4c4d2f33d2f6d", + "transactionIndex": "0xbb", + "value": "0xd858e65917ca1bc", + "v": "0x0", + "r": "0x3074b6a9c63879f503e652074d229b9b86e5a55cbf193286ac43ea55ae39c77", + "s": "0x575a9eac14db377d8a0f2c6f67ab6cc25945b9dff712ba8bc67294c6c4423d79", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x742f9507", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3ebe5745a8faf4ab272e62189b3d31f4ace6fe01", + "gas": "0x5208", + "gasPrice": "0x66949e1c", + "hash": "0x5c7808477b3e52c0288f25f6671037ecaeb4c274fa8a79a60bc7f602921e9c1f", + "input": "0x", + "nonce": "0xb0", + "to": "0xbc60efcd54cd83590048c158f97aa540eee9b8ed", + "transactionIndex": "0xbc", + "value": "0x25bf6196bd10000", + "v": "0x1", + "r": "0xe5f2376d3c6a2acc6ba3e71556a11995526874cc1fbf35f1c9fd46e152d29470", + "s": "0x599020e8332a5f98e873d6c8a87d47d9f90a2e2158f83125c1118c6837e7129", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x745c2174", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa6c2bdc5325c60b95ff5b576260721ae527aa881", + "gas": "0x5208", + "gasPrice": "0x66949e1c", + "hash": "0x04b449178ee48ea6528387e70f35a6358668fb141e1cffb87e7b5ec827a21abc", + "input": "0x", + "nonce": "0x16", + "to": "0xddcc822b14eeadb7c1b4555298bbac6666e6fd8a", + "transactionIndex": "0xbd", + "value": "0x6651728988000", + "v": "0x0", + "r": "0xb211b4fa20434f1e5bd2c693476419b5896a9becbef0eede2f349cb0e5b0e707", + "s": "0x6a769250938ec7867645e80edac670f982bf381d53acbc4688e670af98325ec7", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x74a0b5a5", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5a3c0ee5ee8827dabf0f7d1aab8a445d6683f145", + "gas": "0x5208", + "gasPrice": "0x66949e1c", + "hash": "0xac8f571f172fb6d83965fbec80933db70fee3b857ff3141aeb001b92873c9544", + "input": "0x", + "nonce": "0x40", + "to": "0xea594508a316529a392301d9b84ae790ab74c8e3", + "transactionIndex": "0xbe", + "value": "0x3e855c4b21000", + "v": "0x1", + "r": "0xc2904d4e60d2e44c0ae0967621b092ae7fd448f89fc1450adfb42adea1e2400", + "s": "0x1e7226685a88abe12a87d50921326f63fb2439aa2ab2c69ed63c5bcd88585d35", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x742f9507", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5b8c59e46e298ad30cb5a887aadb0897cc258cdb", + "gas": "0x5208", + "gasPrice": "0x66949e1c", + "hash": "0x7123d63bb21bc9b825a18aafd16d53fda274e7e70053281d9cdafc4292530911", + "input": "0x", + "nonce": "0x1", + "to": "0xcec7dbd3f2371ab0dd5ee1701a070af04d43019f", + "transactionIndex": "0xbf", + "value": "0x4064976a8dd0000", + "v": "0x1", + "r": "0x18e5504f8b246a08c8bd5392f19ea85b43c46e57b6695ff24b5eb74a2b64424b", + "s": "0x3524c52f7efec9ce62f56b3ecc3733f0b837dbd70a7c37e5f576cb269d81aecd", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x745c2174", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0a45cec796aadeb344374d9cccaaffddd54c5297", + "gas": "0x11170", + "gasPrice": "0x3dd2d726", + "hash": "0x574e45ea3e5afce5bbfc0fa9826055db0ad357a625fd58806d9f6de0cafdf61b", + "input": "0xa9059cbb00000000000000000000000073d7dfb35d96e57f53ae4436bbd214b47c35c4110000000000000000000000000000000000000000000000000000000000989680", + "nonce": "0x4b", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xc0", + "value": "0x0", + "v": "0x1", + "r": "0xfbc01ec1f966aaa4b16d16d50032b689db9178ae74a96637027f8b84421f9806", + "s": "0x5e3673c9030b6100f7bf8ae08881d9f01d58275d00384f939f2abb8b233665ab", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x46b6bd26", + "maxPriorityFeePerGas": "0x12d9030a", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xe31c04bc11c59ff4f956f19f572ce5c07ca7fe5f", + "gas": "0xf666", + "gasPrice": "0x3cbc063b", + "hash": "0x91be9e9896ff3df372fc0c9f2cebd1d3da7b0f01478d8ed71e2342c37e6d9024", + "input": "0xa9059cbb000000000000000000000000b4d7ac5df238fb14a7050593384d4ab1c7658bdd0000000000000000000000000000000000000000000000000000000040d99000", + "nonce": "0x10", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0xc1", + "value": "0x0", + "v": "0x0", + "r": "0x9b54fe0ab2ebfab2e8b4e006ce0207a6ff126d7455d3f5edeac82b069c7c336e", + "s": "0xbfcbbf696c4580ad5dc682483d03a020c7cf3bf705fc60cd11d306fbb35481c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x508fe0c4", + "maxPriorityFeePerGas": "0x11c2321f", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xed9c6843bf3a69eca32578c253b742e5fbab7738", + "gas": "0x5208", + "gasPrice": "0x5ebe72e2", + "hash": "0xdeca5d61b9b254630c6b5182cf77e9d8b829490cf5f3506a7e2bd7b97de3a475", + "input": "0x", + "nonce": "0x2b9f", + "to": "0x5f3ecae36e842ffb263b013ff783658a826e7a42", + "transactionIndex": "0xc2", + "value": "0x34cbbcb087ffcc59", + "v": "0x0", + "r": "0x855921ab6127c183f8e87a50ad612ebea71a0ccf483c64df29764471d458e9ec", + "s": "0x37db7ef2068fa636be0afc11ef01d67d9a425269d8511d8e937e89211f332245", + "type": "0x1", + "chainId": "0x1", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", + "gas": "0x12b04", + "gasPrice": "0x3bb324b0", + "hash": "0x42ac8ca1a58adffb45924b29b9b091fa171e267b934d3375ec129613ba578366", + "input": "0x30be556700000000000000000000000000000000000000000000000000000000000000600000000000000000000000001b4862f983aa573518b612f1bb1579f4b02796cb0000000000000000000000001b4862f983aa573518b612f1bb1579f4b02796cb00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f5042e6ffac5a625d4e7848e0b01373d8eb9e222000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003aba7d9a692e71b00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000a7b57f93e950453e383f5c938b355f2cb573f6ff22cfcd0f558b86a61a9c4118", + "nonce": "0x3ccebc", + "to": "0xf5042e6ffac5a625d4e7848e0b01373d8eb9e222", + "transactionIndex": "0xc3", + "value": "0x3aba7d9a692e71b", + "v": "0x1", + "r": "0xfe62b79c642b6ed25e3b8622d255772b88d0ef89f7c2e076026e0221d8bbe4c0", + "s": "0x6c55bcf25353236615faedc5312fd520f2d118f5901efced355f0b10d31d59ae", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x44970ab0", + "maxPriorityFeePerGas": "0x10b95094", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xdd3d72c53ff982ff59853da71158bf1538b3ceee", + "gas": "0x3d090", + "gasPrice": "0x3b9aca00", + "hash": "0x928b0a9663d601d1f8e0194bf8ea63f5bb66a21103e0fc9c0bc6489abcf74642", + "input": "0xa9059cbb000000000000000000000000080207fe2b9a53825e3fccfa717ad8220899d083000000000000000000000000000000000000000000000000000000000cc5a6eb", + "nonce": "0xb3542", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xc4", + "value": "0x0", + "v": "0x26", + "r": "0x906d748c00282e3ae65e1d247f131212dab80b3c64b3be22909c62231a8bf4f6", + "s": "0x706dd16cd800da8e2de492616463bf8abd34e49cb6d55e8c8917a63c251124af", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbc98e1421c2ab70c8f3a766a3ea2e760b74fa934", + "gas": "0x181a9", + "gasPrice": "0x36bec7fd", + "hash": "0x0649ef5c2ebf96757d151fbfea8c83efd9e2d64e86dcc7e69455e77fd2702f85", + "input": "0x6a761202000000000000000000000000e6d8d8ac54461b1c5ed15740eee322043f696c080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000648697d2c2000000000000000000000000000000000000000000000ed15452dc4c0dc07f170000000000000000000000000000000000000000000000000000000068a8844b00000000000000000000000000000000000000000000000000000000000001d600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008295594e4380401d910515f24852278cf570c8ceb20187329ac8ed77551bd674a006ae597c9fca931786226efb23a7b94a7406d3dcb92a8b154ae0203e9bc36b901b000000000000000000000000bc98e1421c2ab70c8f3a766a3ea2e760b74fa934000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1b", + "to": "0x7b06a3c0526fbbb46f07531ec5c8ca9b63de908a", + "transactionIndex": "0xc5", + "value": "0x0", + "v": "0x1", + "r": "0xc64a0e2c877d1fd9ca12988b48eccdebcd9aef0045dbee5c6ef3a54118785e79", + "s": "0x71f37864adc4475dc460304af74628ce1487711799a9105c2e2bbd0e4096c5e7", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3a37233f", + "maxPriorityFeePerGas": "0xbc4f3e1", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5a6f297bd0d1d6127f7391cb5f278be92ea80fff", + "gas": "0x5208", + "gasPrice": "0x5c22a5c3", + "hash": "0x4f0b5c289f94391cdbec54e589bd8df132b5cb6ddeab28640a1fc61904a46bde", + "input": "0x", + "nonce": "0x79", + "to": "0xae204455fb8aec6448677b1f43bb5c4d919bf9ec", + "transactionIndex": "0xc6", + "value": "0x1e066979de8d9", + "v": "0x0", + "r": "0xb60ecf6ab64f056a6d974a9bc3520c2a6c2c896d04bfda6ad31faff9d14687d5", + "s": "0x23a4a2395c2755b39efecedd9d89160aeed6c974b42d4cbd9164d052ed8826c0", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5c22a5c3", + "maxPriorityFeePerGas": "0x5c22a5c3", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x7e4c82705396ab8db23f830e0825f80e39340b4d", + "gas": "0x32a6e", + "gasPrice": "0x30efb51c", + "hash": "0xc7b3ad54b02a274b246d3667327a601ed43c4d6fd9722010fa6c6b224ba23751", + "input": "0x12aa3caf0000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a190000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000068b36248477277865c64dfc78884ef80577078f30000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a1900000000000000000000000007e4c82705396ab8db23f830e0825f80e39340b4d000000000000000000000000000000000000000000000000009ab4242774731400000000000000000000000000000000000000000000675d444f1709a59cf0ef000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001150000000000000000000000000000000000000000000000f700006800004e00a0744c8c0900000000000000000000000000000000000000005aafc1f252d544f744d17a4e734afd6efc47ede400000000000000000000000000000000000000000000000000018c0a99fe9ac04041c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2d0e30db00c20c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29e5f2b740e52c239da457109bcced1f2bb40da5b6ae4071138002dc6c09e5f2b740e52c239da457109bcced1f2bb40da5b1111111254eeb25477b68fb85ed929f73a96058200000000000000000000000000000000000000000000675d444f1709a59cf0efc02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000009a635db5", + "nonce": "0x7e", + "to": "0x1111111254eeb25477b68fb85ed929f73a960582", + "transactionIndex": "0xc7", + "value": "0x9ab42427747314", + "v": "0x0", + "r": "0xf299f2085457f05e9ea5719b3c0dd535bb100b99a7cb9d6c17e55422a1c372b5", + "s": "0x2caf2bffb5b66ebf7359b98b13f02e284dde52bb26dad8a42b195f14b77769bb", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3d6f6dd2", + "maxPriorityFeePerGas": "0x5f5e100", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x61531507227c84401b8e560753df6442169a0231", + "gas": "0x52ad", + "gasPrice": "0x5a993231", + "hash": "0x88c68d0e20051cccea328660fccd1d9edf61522717b8186d5149692dc9eb68d8", + "input": "0x", + "nonce": "0x4", + "to": "0x6c753bf3bc197de9f133c93cf73ad03c040872d3", + "transactionIndex": "0xc8", + "value": "0x530ddac9de4c48", + "v": "0x1", + "r": "0xe08dac231415352dacf246c2a3e2d205f2df08a0916766c0b7ce4bfae77b012f", + "s": "0x2ac987a185d748bd6d45d35a1e0d9be4f4987425e1719192ae75e7275ab4a70d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5fb7710f", + "maxPriorityFeePerGas": "0x2f9f5e15", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa38d1c6acd78cd2444147a793a39be424662d9f1", + "gas": "0x16e360", + "gasPrice": "0x30efb51c", + "hash": "0x9d372ef68467ed5168f10e90d2e46112334efb06dd9386c02dac9ed43de4525a", + "input": "0x0d5f0e3b000000000000000000033365a38d1c6acd78cd2444147a793a39be424662d9f10000000000000000000000000000000000000000000005e6e4a7d2092b0d000000000000000000000000000000000000000000000000000002920c7413a1af770000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000120000000000000000000000009117bff68b5939319e61b226bf1f3f5f985eba1", + "nonce": "0x231a", + "to": "0x2e1dee213ba8d7af0934c49a23187babeaca8764", + "transactionIndex": "0xc9", + "value": "0x0", + "v": "0x1", + "r": "0x704c8e16e4b86d53a4c63abcf15b50d13e504c82b5cc4fe0a9e1a615c917781b", + "s": "0x7ff7bcc69573117b2cc0d7d15f07856e8ed1fc3751d1548846ea9a1bb590a56d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x1769b9d8c", + "maxPriorityFeePerGas": "0x5f5e100", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xca7e547cc7df52e6e88ad06066b1987ab6a2ece3", + "gas": "0x32a43", + "gasPrice": "0x30efb51c", + "hash": "0x09d9d198a83182d417b24fbe23872ee5de92aa05c0d32914ec4f8ea8368d44b4", + "input": "0x12aa3caf0000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a190000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000068b36248477277865c64dfc78884ef80577078f30000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a190000000000000000000000000ca7e547cc7df52e6e88ad06066b1987ab6a2ece300000000000000000000000000000000000000000000000000199357bbdaca0d0000000000000000000000000000000000000000000011188b7b7dab2500ef1c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001150000000000000000000000000000000000000000000000f700006800004e00a0744c8c0900000000000000000000000000000000000000005aafc1f252d544f744d17a4e734afd6efc47ede4000000000000000000000000000000000000000000000000000041793284bf754041c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2d0e30db00c20c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29e5f2b740e52c239da457109bcced1f2bb40da5b6ae4071138002dc6c09e5f2b740e52c239da457109bcced1f2bb40da5b1111111254eeb25477b68fb85ed929f73a9605820000000000000000000000000000000000000000000011188b7b7dab2500ef1cc02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000009a635db5", + "nonce": "0x4d", + "to": "0x1111111254eeb25477b68fb85ed929f73a960582", + "transactionIndex": "0xca", + "value": "0x199357bbdaca0d", + "v": "0x0", + "r": "0xf8a84f1d285381ed4be4b8650bb6eb603032c6f8efabfbdb665837d2958de9", + "s": "0x44e91aee0096b671450afd33a28f7ba75cd7d67e4866d8bd9d78fdb633a8f024", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3a50d34b", + "maxPriorityFeePerGas": "0x5f5e100", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x839a431495146539b252eef10010e84265822bb0", + "gas": "0x11170", + "gasPrice": "0x3dd2d726", + "hash": "0xfa4567fa842e9d3c242f2b9b28e06a83d4767fd5f75a90f426cb65655b7501fe", + "input": "0xa9059cbb0000000000000000000000000bbeddfe1abdcd7e8c031fdd9a5ff4ad9d2075a700000000000000000000000000000000000000000000000000000000d171c0ec", + "nonce": "0x3", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xcb", + "value": "0x0", + "v": "0x0", + "r": "0x9911ba0fb1c6d2563f161fa417f5e63e9dda33d0a3783b687888635bc0ebf2da", + "s": "0x38a1bec72e4f1365f3f0f2b323ed7c2d2214202020c7b005553f5453ac128274", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x46b6bd26", + "maxPriorityFeePerGas": "0x12d9030a", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2353d5774b3a3975c8cbbbda6417064415c52c5f", + "gas": "0x298fd", + "gasPrice": "0x3047dc5c", + "hash": "0xd67882d259ffb11c6d6a9a9ceb310b29213c3b43768a598bfae3a9aa6e360e2b", + "input": "0x397a1b280000000000000000000000002353d5774b3a3975c8cbbbda6417064415c52c5f00000000000000000000000000000000000000000000000000039b8e52cd2762", + "nonce": "0x6", + "to": "0x308861a430be4cce5502d0a12724771fc6daf216", + "transactionIndex": "0xcc", + "value": "0x0", + "v": "0x0", + "r": "0xa3485f0e60f947c842b0f0e237d5341bbc2c48eb7187bad90c5cc2e684817297", + "s": "0x61e1a3f92bd72c403ac7943274eff0b567cb6c9884f7d137b0324a06192fc033", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x59682f00", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8ef5751dc714dce720edb7e45464f64049ba18a1", + "gas": "0x3d0d9", + "gasPrice": "0x3047dc5c", + "hash": "0x44558cfb7331d6fb0e63ba8c12f7c00ec03e1be95aa32f933e58c89ae32b3459", + "input": "0x9265bb9d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000006415db7fcc9de0000000000000000000000000000000000000000000000000000000068f27baa00000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000a86c1dcb37d27f0df45c7f5ca65eceb45aa8c1270000000000000000000000000000000000000000000000000000000000b71b0000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000ddfb5c6eaca4ebac981fef8c71676976429dea3300000000000000000000000000000000000000000000000000000000000cc41900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004149159ad3d4d20ee356e960750deb82d35316564c0c463116c3c62f0ae91b6e3451111c129a4e21a5ec05d9836e858fa7ec1fddac60e287b4af4f2730d53c602c1b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004166e20f027d279a9026aea8bc65ecbc81aa69bec6d08b1847b3a69ea9e88a9769699497a85d37cc08ab4a7730814fbad9b4909a871a0db496a2c91dd53d4210521c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1db7", + "to": "0xb60b96f715e4b00cae60a935f88eeb38c6814a21", + "transactionIndex": "0xcd", + "value": "0x0", + "v": "0x1", + "r": "0xfa9c92c41d353cba9e8a8a66e52578fabbddbe0842331a1d0047a6b86574b719", + "s": "0x4a08eae031c1606ab55ccecd9ecc4c6ec7e13970f7a6633e43a441f13e8b35da", + "type": "0x4", + "chainId": "0x1", + "maxFeePerGas": "0x3b08a031", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x614e8c49bd489a35222367b30ff674275313d2ce", + "gas": "0xb1e4", + "gasPrice": "0x3d0db009", + "hash": "0x22b54ad6a8a8aae63e9323fad0d25239fba8c2e8346b934be939131310c69bb1", + "input": "0xa9059cbb0000000000000000000000005861c703ecee4c662398363da60787443e0b74dc000000000000000000000000000000000000000000000000000000000998f8eb", + "nonce": "0xe", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0xce", + "value": "0x0", + "v": "0x1", + "r": "0x433dbbcae923fe73d17fc5e556db7d13a6f5fc357cde561be2e1949e62ddd0e", + "s": "0x4ed224440d5279b6a875b16838fad7751db68a0ecae527c4f57fed48748d5a12", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x4b19c792", + "maxPriorityFeePerGas": "0x1213dbed", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x81c8cd47016fa31a2fa4cc05f10d976660f5ac1c", + "gas": "0x59a2", + "gasPrice": "0x4d7c6d00", + "hash": "0xb44cfe27afc3c1a98f8d932d1477333b502b23f2c9811781198da0ddef7517dc", + "input": "0xa9059cbb0000000000000000000000000f0f39ed7d63012ba804401a121018ed2d3b085800000000000000000000000000000000000000000000000340aad21b3b700000", + "nonce": "0x2ed7", + "to": "0x7d75627e6ae866b2053b384c87af9bb1b078cce4", + "transactionIndex": "0xcf", + "value": "0x0", + "v": "0x1", + "r": "0x7d09f0e97f06edf08e34fe1c8c904958b029444461936f941813867ce176cfe8", + "s": "0x30d7e8824d4735b873266e015029afa3bdbf91e9e048c621fc001a92dba851c6", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x4d7c6d00", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xdd3d72c53ff982ff59853da71158bf1538b3ceee", + "gas": "0x3d090", + "gasPrice": "0x3b9aca00", + "hash": "0x59fe5bf07ae673656ff03ff33630e981c02c41e2090c0317a0e85bde0de44435", + "input": "0xa9059cbb000000000000000000000000f3aa79728064b3d7d5d4733bfca10bae61bb7a70000000000000000000000000000000000000000000000000000000000cc0e9b0", + "nonce": "0xb3543", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xd0", + "value": "0x0", + "v": "0x26", + "r": "0x96a05452c55d072eaef4cf8244216c17dea1ef78db07d9bf10a4b859b0235e05", + "s": "0x422df6f0b29cd5ecab05d8d2eda5bd725369db26a63f574d3696242044eb405e", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xdd3d72c53ff982ff59853da71158bf1538b3ceee", + "gas": "0x3d090", + "gasPrice": "0x3b9aca00", + "hash": "0x9346b3c434adbc1dc67224f2c2bd9517a7bb73201ef5ff2473619fe9f84db457", + "input": "0xa9059cbb000000000000000000000000ecbc7d5ff031e16d3250b3f156976dd639e64cdc000000000000000000000000000000000000000000000000000000001a64471d", + "nonce": "0xb3544", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xd1", + "value": "0x0", + "v": "0x25", + "r": "0x516b36cfcd9963107842741e0602d39b25136bf12bad078629b54919f82295d6", + "s": "0x692a985900088a69891002b4e0a298405819c024aad3893100d3396ee43ad0fd", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x20145c5e27408b5c1cf2239d0115ee3bbc27cbd7", + "gas": "0x7a120", + "gasPrice": "0x397863c7", + "hash": "0x42f89708c1ae0ee8d1897e8d3ee8a43bbedd682404469a5ad5cd3cc917ba23ca", + "input": "0xa9059cbb00000000000000000000000069260666fd4191e1fead92898fcc48cd8a4d571d0000000000000000000000000000000000000000000000015af1d78b58c40000", + "nonce": "0x73e7", + "to": "0x3f80b1c54ae920be41a77f8b902259d48cf24ccf", + "transactionIndex": "0xd2", + "value": "0x0", + "v": "0x26", + "r": "0x91e7617bbc1eca0e2bbb8de0f74fa1c90d5ed3b72a4778385d1e9e1e0ca26eac", + "s": "0x45eca42f0f966aae74da1d9093a3f968471e27077618d7cadb71982f079022ac", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6760dd9d9b2470a41ad3cc92a0970c664b802ecd", + "gas": "0x3d090", + "gasPrice": "0x3b9aca00", + "hash": "0x0afe267e9aee855e24c9ad29dee0d0d7e827be49cee8b494f148642218444f13", + "input": "0xa9059cbb000000000000000000000000dd3d72c53ff982ff59853da71158bf1538b3ceee000000000000000000000000000000000000000000000000000000000365c040", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xd3", + "value": "0x0", + "v": "0x25", + "r": "0x65fe1444473e4f2cd449e52c554c823fc8b813f3c789c1b2357042a26e5a8c", + "s": "0x439189d4cd5347184356bbebeb2307f5441896f3dc75466af6105f9d51eece50", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x60b00f5c370da3a3344a2763fd979e720e09c0c8", + "gas": "0xfde8", + "gasPrice": "0x3d5bd3b7", + "hash": "0xcc68427357808c9aead171681dc3475f1c08b0a58f2e8ff0c05d1b85d9077f3a", + "input": "0xa9059cbb0000000000000000000000003d8698b813b358dcad394762c40ce5fa732063d10000000000000000000000000000000000000000000001c57acae38c48720000", + "nonce": "0x4e6", + "to": "0xfab99fcf605fd8f4593edb70a43ba56542777777", + "transactionIndex": "0xd4", + "value": "0x0", + "v": "0x26", + "r": "0x7f639da1962cc08b0999630c74e69876d21662f23296f08cea7f05a82f4a5334", + "s": "0x197c0b77fa024cc19cf3047fd9285d790a2211c33662914a6bd2f6f62451e8f2", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xdd5cc62f020051046f7276b72f2a84956d26dbf6", + "gas": "0xfde8", + "gasPrice": "0x3d5bd3b7", + "hash": "0x4787488b13b7a8266eaca313fe4e10d8beceea08b9e6722c292c70c0175fc491", + "input": "0xa9059cbb0000000000000000000000003d8698b813b358dcad394762c40ce5fa732063d10000000000000000000000000000000000000000000004d2b3d3664f02f80000", + "nonce": "0x7b4", + "to": "0xfab99fcf605fd8f4593edb70a43ba56542777777", + "transactionIndex": "0xd5", + "value": "0x0", + "v": "0x26", + "r": "0x1ee591daaed9bb45369cefa5ea2557a33c4d75a931a206c92f93c7bf496073be", + "s": "0x5f30f41fe28b145fd1a8f571d68750c10cf9b8a267c9b21521f51c449b3b54b8", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xfd89a20a7414f269b53ce4b42510feca04fd8135", + "gas": "0xfde8", + "gasPrice": "0x3d5bd3b7", + "hash": "0x0ce2970912ba6453227b0fea5d0db804286daca6ad73aadb17acbc5a0ce2d21f", + "input": "0xa9059cbb0000000000000000000000003d8698b813b358dcad394762c40ce5fa732063d1000000000000000000000000000000000000000000000bdb97b5543d01c00000", + "nonce": "0x341", + "to": "0xfab99fcf605fd8f4593edb70a43ba56542777777", + "transactionIndex": "0xd6", + "value": "0x0", + "v": "0x25", + "r": "0x559b3533d8894c121c92bde27e0ffbc0dd36bdbbeb8eff93a8fd0e6278568b63", + "s": "0x7204aeb61c44893ddadbfb1e40435aa076eb3796a6b32a8494b2eb07353aaf2", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "gas": "0x25004", + "gasPrice": "0x30efb51c", + "hash": "0x19ff812681ebd574b768d31bf490c0ff05fed0446ef89a61eb9518c1cc7620df", + "input": "0x04e45aaf000000000000000000000000467bccd9d29f223bce8043b84e8c8b282827790f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e840400000000000000000000000000000000000000000000000000000000020b4aae00000000000000000000000000000000000000000000000004ae7b77a33742800000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1f2894", + "to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "transactionIndex": "0xd7", + "value": "0x0", + "v": "0x0", + "r": "0x289e07066f28b409be205ce80d220e05ba99d81bbde9dc6ea37c09235d7f82dd", + "s": "0x40d61bfd89b9936a5ca2185faab49d2a73cfced8ff968c1bf07e8eb5ee1d1775", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5fb0fe44", + "maxPriorityFeePerGas": "0x5f5e100", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbca34ed5875079cc561840f3409a790769821dbc", + "gas": "0x7a120", + "gasPrice": "0x397863c7", + "hash": "0xa03489b40f30c79745c408f285464b5ed69ef1ded10be0bb668c9945fb172d05", + "input": "0xa9059cbb00000000000000000000000029633da62790e33c3007f9ff938c3321df473bd300000000000000000000000000000000000000000000000000000000957f435d", + "nonce": "0x16c15", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xd8", + "value": "0x0", + "v": "0x26", + "r": "0x2219828f6840ace0d8712d2255e027adc2bf264b78251fb6699df0ccc44499b6", + "s": "0x22e9e4ed69557e27a3be1dace64d285fae10aa2b76b1c569a991dd7443eaf545", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x587937cbfb8b51868d6a661c60e610f2403ee430", + "gas": "0x5208", + "gasPrice": "0x48c7391c", + "hash": "0x45f665944eeb353b2147b8e349edc7ba7dfd6a08cae45c6c4654e5464254f42a", + "input": "0x", + "nonce": "0x5", + "to": "0x5077044e0b1b555fa0d5c3d53ae73b54f658f231", + "transactionIndex": "0xd9", + "value": "0x1365271b5249ce", + "v": "0x1", + "r": "0x34c628a5f0c4a2da8b5b42c0488116f3631789d2fb8a66c1c98b4db25c576eeb", + "s": "0x44196994336a197c6729a5b69c7e32bbe84fd6d94e3af81b89c13912ba74767", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5da6e762", + "maxPriorityFeePerGas": "0x1dcd6500", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8c6aec8d3449fd8e6590a4c7428be5909d8b523c", + "gas": "0xc085", + "gasPrice": "0x374c4d8c", + "hash": "0x3e2cb9427480e303fc07e75683dea01334c81b69acc08cf1a1fc8a6350cefd81", + "input": "0x095ea7b30000000000000000000000002704ba2d5d3544e6292d9aca536b6bbbfebd80e9ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xda", + "value": "0x0", + "v": "0x26", + "r": "0x87a43ffb0255b233cf583c6477e9bd256d12a68ae0d758ca7eb580cff5d09c23", + "s": "0x185d04dee5850fb32051f69bbc121c61d2c9dd0ca685d7c6727b5aa6904b2299", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x387062bd950808179c72a03bb21165bda6df768e", + "gas": "0x5308", + "gasPrice": "0x47648f67", + "hash": "0xaefbf31e8cbd3aa4c99622cafbd3949a2502b6a3a044c43651de0bc3c84e2f73", + "input": "0x010011", + "nonce": "0x14", + "to": "0x391e7c679d29bd940d63be94ad22a25d25b5a604", + "transactionIndex": "0xdb", + "value": "0x566828920846", + "v": "0x0", + "r": "0xb4abe306bf7d9ef58ca767578cf9cb8181cc821c37d6da070f29b3d729227a9c", + "s": "0x7dc0290c1adc1c7a6884fb0c834f46d83b8f30b62822dae947c9f8b188e27365", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x47648f67", + "maxPriorityFeePerGas": "0x3b9aca00", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x583e6d4856df3fdbe68d84dd61ae07bf763916ee", + "gas": "0xfde8", + "gasPrice": "0x3d5bd3b7", + "hash": "0x299b35bfdd186cc8d1d78f49899a596757963b54b4bc0c689d80f11114d75fef", + "input": "0xa9059cbb0000000000000000000000003d8698b813b358dcad394762c40ce5fa732063d10000000000000000000000000000000000000000000000d8736c8f371e10c000", + "nonce": "0xe", + "to": "0xfab99fcf605fd8f4593edb70a43ba56542777777", + "transactionIndex": "0xdc", + "value": "0x0", + "v": "0x26", + "r": "0xa9d0247cdaf93028a157be6ae96da26ebc5257b9ff9d9e0aaf4138a8c2251d62", + "s": "0x4e9177dbcecb84153f1d81ad3e120c24c0d01e27cd3aaf26b4683616871ec243", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3e54a4a16db72f6fcff61ac9b459cf7e79cec7ea", + "gas": "0xfde8", + "gasPrice": "0x3d5bd3b7", + "hash": "0xf445d82827d81c0302a3f39b30d40a099b545db89ac107ef3effa270be53cd74", + "input": "0xa9059cbb0000000000000000000000003d8698b813b358dcad394762c40ce5fa732063d10000000000000000000000000000000000000000000000a2c838a27bd6f80000", + "nonce": "0x385", + "to": "0xfab99fcf605fd8f4593edb70a43ba56542777777", + "transactionIndex": "0xdd", + "value": "0x0", + "v": "0x26", + "r": "0x6a38718d7ed3d6dcaaf886f0e9768bebc38fb0949dcd4665e0f21263d5aadd26", + "s": "0x1d457ff961ed7b30b02aeb67c5545e84b7b22bf53ecba1037e228bfc7ee487fe", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8ef2dec0dbc3b2abcc3063de35d4a4af2d119475", + "gas": "0x5208", + "gasPrice": "0x46b6bd26", + "hash": "0xbcefadcab744f5c28ff47e7e3912735951a944aa8a7ce367386648761a080c01", + "input": "0x", + "nonce": "0x0", + "to": "0xf271f91bd741f0281dd54bf02672b565f8e82559", + "transactionIndex": "0xde", + "value": "0xa5561694c36c8", + "v": "0x0", + "r": "0x40a26c27d2ba7fc7e77c5a45d8cc1af6c57753eb416c64e7c07cddad53dbceac", + "s": "0x164fe00027cdaaf624dd38a390d76e19481e09a480861993091cca0d897ac214", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x46b6bd26", + "maxPriorityFeePerGas": "0x46b6bd26", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x14c4cc11042aae354439e23c56eba95019e162b2", + "gas": "0xa96a", + "gasPrice": "0x3bb324b0", + "hash": "0xc231193b3696a852a59169c2073081c602caa864ec1f3aedc0b9c2f963d5d9ad", + "input": "0x088be20f55ccec992e1b9612624db98c87ba2dca233348b62f5420ea80600cf2", + "nonce": "0x2", + "to": "0xa5f565650890fba1824ee0f21ebbbf660a179934", + "transactionIndex": "0xdf", + "value": "0x53441e8c6b74119d", + "v": "0x0", + "r": "0x35034ed43f68fb75b42c8b2e347b29f42bf8a4583d3fd6026a06814e46906162", + "s": "0x6ebe93ca7a45e317b012ab08223f427db7f89c37681c960a2d1a1b14368785e2", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x44970ab0", + "maxPriorityFeePerGas": "0x10b95094", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x493b26c03d0280256b0d37ba8279295bcbeff225", + "gas": "0x220a8", + "gasPrice": "0x2e859fee", + "hash": "0x1ac94fe7dff28853cc131659d26d62dd5719a6a323e4d27a60a5f6ba09a391c2", + "input": "0x7b0472f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f3e53c8587438d0000", + "nonce": "0xa", + "to": "0x23445c63feef8d85956dc0f19ade87606d0e19a9", + "transactionIndex": "0xe0", + "value": "0x0", + "v": "0x26", + "r": "0x9940b4096de878eb7f491353b7215df4e59e5985bb2dce42453962346912ba6a", + "s": "0xe59a33da55509d76be1edf459744fbea4957c11d824514d0a55dbe234fc726f", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x942b0cc475d412042bdcd383321d9119ffda1339", + "gas": "0x1c981", + "gasPrice": "0x2faf45dc", + "hash": "0x216f6f45cfb705637c4241de1a7dfca5212bc20ea822b5c7e397a89df0c1d8a2", + "input": "0x3e11741f0000000000000000000000006cd2b774ea8f1863346dd475d12c61262074def1000000000000000000000000000000000000000000022dda2b935627a331ca880000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xe1", + "to": "0x01ea841f961af744ed25e5d6f7cf791aebeaa3f8", + "transactionIndex": "0xe1", + "value": "0x0", + "v": "0x1", + "r": "0x28ad72b5af2e7ff6542e80eb49403ce83065b641795e53356e50f7d51ff53159", + "s": "0x2490e637f710ece7eb8e2990312f5d63606fb27904bb249e223a97a3510f000b", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x6553f100", + "maxPriorityFeePerGas": "0x4b571c0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3c196fbd1419cccae74506f6600e2b34daf19d17", + "gas": "0x5208", + "gasPrice": "0x3dfd2400", + "hash": "0xa50d39135be642a92e997979bf0dcd5cacbdda83c31ed2778d0069d144987373", + "input": "0x", + "nonce": "0x0", + "to": "0x4e5b2e1dc63f6b91cb6cd759936495434c7e972f", + "transactionIndex": "0xe2", + "value": "0x11af9c326f6000", + "v": "0x25", + "r": "0x503a72b247c29420f80d62e452f8cfc804f36e3c65ce22843f87ed5ad55d5224", + "s": "0x34636ef3652bce8a2893fd8b4fc496ead778e4ccb09c4ed3f9a598109d995b09", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb02c6c40a798184d5e012fbb1dc698977671f8fc", + "gas": "0x29c7a", + "gasPrice": "0x311390cc", + "hash": "0x74b7f5e5bbc7f228810c68f5257d24b2bebef5f20d05ba8a6dff28f95a184bf5", + "input": "0x2da03409000000000000000000000000a7a0965ae5d6c99ae16078f206e0022ae1e58662000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "nonce": "0x4c9a9", + "to": "0x3a5cc8689d1b0cef2c317bc5c0ad6ce88b27d597", + "transactionIndex": "0xe3", + "value": "0x0", + "v": "0x1", + "r": "0x587201dcb6c34746612daa5fe73259f0e9c36442118d06e95e33dc8ebfa213f5", + "s": "0x615f3d2930dc8638e61e00bcd240d3b8bef23a755797dcee3073a467a7888797", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x64670f12", + "maxPriorityFeePerGas": "0x619bcb0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5babe600b9fcd5fb7b66c0611bf4896d967b23a1", + "gas": "0x5cd6", + "gasPrice": "0x3dbc359b", + "hash": "0x60eae64d7c8274631d4d7dd9865b5924d5707654de9a31c40a2af0def230b2fd", + "input": "0x", + "nonce": "0x62e6b", + "to": "0x9a5a51291ee806dd58083e19f8aeb5f1fa1242fa", + "transactionIndex": "0xe4", + "value": "0x2a77811a1b83b", + "v": "0x1", + "r": "0x20064544d2af6adca4833f62b60082f9d22ed07a8227ad5a5c957fceccd1423b", + "s": "0x461d1fa412c3cfad8d9d2be324d9be38013692ed568cff6c9f4b3f8b60059f0", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x1176592e00", + "maxPriorityFeePerGas": "0x12c2617f", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5babe600b9fcd5fb7b66c0611bf4896d967b23a1", + "gas": "0x5be0", + "gasPrice": "0x3dad8225", + "hash": "0x3f92a89a12221aa0f8b255cba5e6f21fcfb3dc9e9c6626bd5f8497c587a71f16", + "input": "0x", + "nonce": "0x62e6c", + "to": "0xec7af233b61dd8327c0ff85c14d681b39ff49735", + "transactionIndex": "0xe5", + "value": "0x6a770fcfa72e04", + "v": "0x1", + "r": "0xdccdcf9c89c55e76f208224708ba515a388798b160c7584b8fa1698ddd9abb38", + "s": "0x744b5c64236f0755c3cfeb9038b22529b03b1b4e8948c76690d7a6f321db91a5", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x1176592e00", + "maxPriorityFeePerGas": "0x12b3ae09", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x7de66480fe91c19221661c7acf93b452d5e79cf6", + "gas": "0x13cb6", + "gasPrice": "0x3105928c", + "hash": "0x37758d36881f990350a4c51f65648d1ba5f96deed98cdbacee615b78e6b8b7db", + "input": "0xa9059cbb000000000000000000000000544d8cf22dfcb2341bf62718665f411f0d663e100000000000000000000000000000000000000000000000000000000000e4e1c0", + "nonce": "0x5d", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0xe6", + "value": "0x0", + "v": "0x1", + "r": "0xdbdb9730d8c0b92ad75e009c51cd2c788059b120208618dedba431b763083aa1", + "s": "0x7466dd0eb0d0c95db7d4d491b7b94847a62349fd442baca46b00067475a7eb72", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x353267a1", + "maxPriorityFeePerGas": "0x60bbe70", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", + "gas": "0x6270", + "gasPrice": "0x3bb324b0", + "hash": "0x301ca78e4d1a97210d12abf9a75cbf0b45bdee344e41f68659ddee8347bcba8e", + "input": "0x41ffa814fd85596bd33f91df52d9e8809153a612c6c880d68d2156c471ae57cb", + "nonce": "0x3ccebd", + "to": "0x6d97b808a86650193e1fee8b183fc4f56e757cb8", + "transactionIndex": "0xe7", + "value": "0x3495a5ed7a9619", + "v": "0x1", + "r": "0xfe877b88ff3b30d50e2bdd9a8c54bb4694d1ad8ef7e73e0094886fa4079dc175", + "s": "0x5ebf0b3d2decd0139be83d0ece9ed52d9e8257cb847eb951ff108fab7bc2bb49", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x44970ab0", + "maxPriorityFeePerGas": "0x10b95094", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xfb78d673191281dce2f7220c568e1bd9196873c8", + "gas": "0x5208", + "gasPrice": "0x3c56ec6d", + "hash": "0x1a1fda66058b47f0c4a1e8d0abffaca03c706690ceb067debc64c8121a8ead01", + "input": "0x", + "nonce": "0x5", + "to": "0xf4c0a7d6ea0b6be28ff3dbb25d3d39d7bd4c1a94", + "transactionIndex": "0xe8", + "value": "0x15a2d29eaea000", + "v": "0x0", + "r": "0x2821b166c66c80a3dd1b96788ff2022db6ecdca4386600f026c8042dcf94efab", + "s": "0x689ca4b901b31b9bc34ae95f47fe1abb402be52199e2e16064572b1fd46b46f7", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x4e1d4ea6", + "maxPriorityFeePerGas": "0x115d1851", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x97ffe150213cba94e296058add56061a5e9fc690", + "gas": "0x5208", + "gasPrice": "0x3b9aca00", + "hash": "0x7d7f2c263a9a11810d287866333fae70bb4421f911d143cf1450a01f84b22408", + "input": "0x", + "nonce": "0x283", + "to": "0x27ae0b4779c4e2a916af398a0184fe29829453cd", + "transactionIndex": "0xe9", + "value": "0x340aad21b3b700000", + "v": "0x26", + "r": "0x9c8be1355448633bf11826f426c9e0d9b76c0ad519cff1e9b5a36669c6665aa1", + "s": "0x2ff03ffa0682d2608e634efb9f8d232b22a8e718bbdb2d48e1efb62b7832f81d", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xea826e1a954e3de38b5d7169ee405fbb432baa20", + "gas": "0x5208", + "gasPrice": "0x3b3c2f40", + "hash": "0x6bc1eb24711dddbf9bea6eceb52d3330aba8a4d9d46c0d163b3885003523c400", + "input": "0x", + "nonce": "0x1", + "to": "0x2e154ec25d5f7ef48afb840edadcc583545aeab7", + "transactionIndex": "0xea", + "value": "0xb33083bcf1800", + "v": "0x26", + "r": "0x345ab76e9040241f6280f4516e1d974d585e66b61fab993b76141f778fe2df6e", + "s": "0x4c78704d3568def0061606514f698439f630c22f0076bb0beee54b62bf1bff70", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x40a344d1bff927f648f824783c0df4ddd60b4bfa", + "gas": "0xfa1f", + "gasPrice": "0x3047dc5c", + "hash": "0xc7ca85065f7b4e35038d7341b2dc2b4f0c1c2a72cf1e76d26b5f58fecc39a5cd", + "input": "0xa9059cbb000000000000000000000000ffdfcd396cd6d72aa4c22096c29acf0ecf1edf7b0000000000000000000000000000000000000000000000000000000000989680", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xeb", + "value": "0x0", + "v": "0x1", + "r": "0xfd552cc30811356551a80c712f35957df362650d22dd6b2a23cdd251131e17ee", + "s": "0x413ee658170f47019087ede03740fb91408afab92cea76fb1d8f073356dc127c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x39937598", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3240782a539459ec5f2f3a9e19c3197ffc4d7cc1", + "gas": "0x12c25", + "gasPrice": "0x3047dc5c", + "hash": "0xbbb41630def508130ffc7e21af5902bc57eac6c1b2078e6d7f3c2e06aa144528", + "input": "0xa9059cbb0000000000000000000000001d614c296fc2af4337444c66c0e9c2043e30d575000000000000000000000000000000000000000000000000000000000098bd90", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xec", + "value": "0x0", + "v": "0x0", + "r": "0x455bb675face41f5112d20e1548e9b34c9cc6ad27db2bc38322c48d6ef4e71ee", + "s": "0x23909dea350ba735d626705840039ed5a98904899ac869bd97ab710fea974a4b", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3d0a4117", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x60841137b1ddc612e6ea4f5b358c91ba6159d529", + "gas": "0x14820", + "gasPrice": "0x3047dc5c", + "hash": "0xe8170b052c73edfd70d7d7e2a8818e9152701fadcc578dc6679ca7954a0f6075", + "input": "0xa9059cbb0000000000000000000000002a500f79c651759f12e67fedb7748ef2449590cf0000000000000000000000000000000000000000000000000000011c1aac2c0d", + "nonce": "0x5f7", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xed", + "value": "0x0", + "v": "0x0", + "r": "0xccc1a4b33c0735b4bed4adb97c9bb1e27d5285cfda5c35f69ebb96bd70fd3b84", + "s": "0xce55da88e94aa34336705e694a38a60420959fb72b5f78d895edec493de69a3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x411953e6", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8e01d5b0c9fabf40e7913d3747245003d7395344", + "gas": "0x493e0", + "gasPrice": "0x30efb51c", + "hash": "0xe34eac65396bbb328b3c19c0e0a009efe5e8519ad508a079de3039304870fafc", + "input": "0xa9059cbb0000000000000000000000002d2efdd00db5351002c2d9fed1d5c48dba978aed0000000000000000000000000000000000000000000000000000000644424ec0", + "nonce": "0x241", + "to": "0xac51066d7bec65dc4589368da368b212745d63e8", + "transactionIndex": "0xee", + "value": "0x0", + "v": "0x0", + "r": "0x81307bdcc42301dde4ba9f57fb24b2e8a4db5a4348d2b1886c9f355bce7746a0", + "s": "0x201feffdcf8d9c3a865c2267a01c5c8ef91cf90dfdd89edb028e90ae00992228", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x746a528800", + "maxPriorityFeePerGas": "0x5f5e100", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x38f6d5fb32f970fe60924b282704899411126336", + "gas": "0x186a0", + "gasPrice": "0x397863c7", + "hash": "0x61d89a4ce2f794c69b2f5a1f88fb4ef749691b82bd77e05a5cd6abf028a92431", + "input": "0x", + "nonce": "0x23334", + "to": "0xa96a2a9127f6c168df4588eb0447ffe480879da6", + "transactionIndex": "0xef", + "value": "0x1277f1cd8a2c00", + "v": "0x26", + "r": "0xa903a40fe778be868edeb037dc9c4b133ef2c8dff6d643a08ace703e3ddaf0e1", + "s": "0x1c2194f690065a31a45b0985b16afe81b86fa371a86a9d08f810f516000f679", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0c269d339b8d795bb9e42abb48c26560dbb25ea7", + "gas": "0x6e733", + "gasPrice": "0x2bb7d4f0", + "hash": "0xe2367b3ea749d156e020e2b74c74f1fe9849527be4fa804e62203397f1404d7b", + "input": "0x00a5047fc66500c84a76ad7e9c93437bfc5ac33e2ddae96c84f4ccc916acf792538f1293b286b540906a2a1f573d6fb3f13d689ff844b4ce37794d79a7ff1c9f8f72aa9304c8b593d555f12ef6589cc3a579a250c697051d1c6296c24ae3bcef39aca743861d9a81b0000000000000008145e3a5ffb430000000000000097449d5c7dc0eec6023000000000000097449d5c7dc0eeb00000000000d26718969144dce3e0120701100000000000d26718969144dce3d000000000000015b57c0799a61a72300c418ba13afecda9beb75de5c56bbaf696b880a5a50dd00000000000000008267fab1d949b0", + "nonce": "0x229c", + "to": "0x0eae044f00b0af300500f090ea00027097d03000", + "transactionIndex": "0xf0", + "value": "0x0", + "v": "0x1", + "r": "0xe071ebba5235577741f43ff3dad4099b038bddcf0e9a2c332e93f8462a8a8041", + "s": "0x3a27a4c1cc121ed5b421019d7f3b6b13e559b4d1b1b9bed91e6e12409addbe5d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2eb1349a", + "maxPriorityFeePerGas": "0xbe00d4", + "accessList": [ + { + "address": "0x5ba42facdbc4aeae6befcc567fd62e9242fc69ad", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x92fc18e4313457f92ea4e4a0ede165127b44e7453fb4ab86fc272a7b00342bd6", + "0x609d0718fd54704574dad7ab71221534c39a496e9d44b963a09c499af4f67393", + "0x0000000000000000000000000000000000000000000000000000000000000009", + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x0000000000000000000000000000000000000000000000000000000000000002", + "0x000000000000000000000000000000000000000000000000000000000000000a" + ] + }, + { + "address": "0xeef417e1d5cc832e619ae18d2f140de2999dd4fb", + "storageKeys": [ + "0x00000000000000000000000000000000000000000000000000000000000000fb", + "0x77ce31c34b99d2c4249e1066b5252bd186b67b60442bbb77688fbcd07b3048cd", + "0x0000000000000000000000000000000000000000000000000000000000000168", + "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc", + "0x000000000000000000000000000000000000000000000000000000000000012d" + ] + }, + { + "address": "0xde1b3ccfc45e3f5bff7f43516f2cd43364d883e4", + "storageKeys": [ + "0x101a21987cc732be70bc549cc0a3ec5a79b6fb8cd8df5a86c631648f6cfd0954", + "0x101a21987cc732be70bc549cc0a3ec5a79b6fb8cd8df5a86c631648f6cfd0958", + "0x101a21987cc732be70bc549cc0a3ec5a79b6fb8cd8df5a86c631648f6cfd0959", + "0x101a21987cc732be70bc549cc0a3ec5a79b6fb8cd8df5a86c631648f6cfd0955", + "0x101a21987cc732be70bc549cc0a3ec5a79b6fb8cd8df5a86c631648f6cfd0956", + "0x101a21987cc732be70bc549cc0a3ec5a79b6fb8cd8df5a86c631648f6cfd0957", + "0x0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "storageKeys": [ + "0x5d069f7732d74fb157ea6f4b6d3c251b1dbb2bdcd7c1739824a888af215af129", + "0xeb5c0d1caca9f466320aff28af8034a933728f53c1267dd4292b10919328808f", + "0x6cd8613c9e4478e7f6cf0fa310952f79741672fefc00c71d5fd3e76b38030d9e", + "0x4ff67fda221a98123b7e72ad3111244aafe9ba0e5dbe99ec5d034a56572982f1" + ] + }, + { + "address": "0x52ae12abe5d8bd778bd5397f99ca900624cfadd4", + "storageKeys": [ + "0xd2a7b5b83c07b6760039cbccd0ca2f18d89b23c34a5d5e4463285f2a3e2468ff", + "0x44a5b8b1e63f53ad70167c41a4041b0b6b5f14adc886eec519dc90e1b14375a8" + ] + }, + { + "address": "0x649765821d9f64198c905ec0b2b037a4a52bc373", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000012d", + "0x00000000000000000000000000000000000000000000000000000000000000fb", + "0x0e16af96bba0b4c6c66ef01d25ed3b05d810afa78f7fba0c8fd7ff71343bf43c", + "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc" + ] + }, + { + "address": "0xf3b685d24f84b6eeeeee334250cf73ade1f10144", + "storageKeys": [] + }, + { + "address": "0xba13afecda9beb75de5c56bbaf696b880a5a50dd", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000007", + "0x0000000000000000000000000000000000000000000000000000000000000009", + "0x000000000000000000000000000000000000000000000000000000000000000a", + "0x000000000000000000000000000000000000000000000000000000000000000c" + ] + }, + { + "address": "0x2f14750b0d267be47dcd30a134796c2e4b1638a3", + "storageKeys": [] + }, + { + "address": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000004", + "0x91a53ac3284b061268583fd7dbb2c864f67e1d9db552db372ca33ad56284686a", + "0x45a15041e23f29460d6e573e292974f7f191653bf2874ef3c0c624a76b3d371d" + ] + }, + { + "address": "0xc697051d1c6296c24ae3bcef39aca743861d9a81", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000005", + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0xd0bcf4df132c65dad73803c5e5e1c826f151a3342680034a8a4c8e5f8eb0c13e", + "0xf30461caaa083a45531ebcbde3d502f8c27fe2e24fbf2f1091d55ecfd9e26dd2", + "0xf30461caaa083a45531ebcbde3d502f8c27fe2e24fbf2f1091d55ecfd9e26dd1", + "0xd0bcf4df132c65dad73803c5e5e1c826f151a3342680034a8a4c8e5f8eb0c13c", + "0xf30461caaa083a45531ebcbde3d502f8c27fe2e24fbf2f1091d55ecfd9e26dcf", + "0xd0bcf4df132c65dad73803c5e5e1c826f151a3342680034a8a4c8e5f8eb0c13f", + "0x0000000000000000000000000000000000000000000000000000000000000007" + ] + }, + { + "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "storageKeys": [ + "0x2784f1c75246f8f7ce09b9e7130d45ea120a62f8a723fd2aace4aa4f1ef068b4", + "0x6e5c4fa282107c17fd17db887be099a5ed00262c172ee198589d454bad44cb09", + "0x0f4b1ecc85a3fabb655037be319ea8e8fb36980e896d305f395bd494345578f4", + "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103", + "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc", + "0x62215fc70b2bdb1758356f6d0b31991d86b31b22557f5244357435e108c337b3" + ] + }, + { + "address": "0x5d4aa78b08bc7c530e21bf7447988b1be7991322", + "storageKeys": [] + }, + { + "address": "0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000003", + "0x22730f368963cc26ff54b0eef1d46cc754a63854f8aa86c830cbe283481d242f", + "0x0000000000000000000000000000000000000000000000000000000000000002", + "0xb60d239ff9659f468f86510b3362e39665434128808acc7ec01162d3cdd1cd06" + ] + }, + { + "address": "0x6c84f4ccc916acf792538f1293b286b540906a2a", + "storageKeys": [ + "0x0000000000000000000000000000000000000000000000000000000000000006", + "0x0000000000000000000000000000000000000000000000000000000000000003" + ] + }, + { + "address": "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c", + "storageKeys": [ + "0x000000000000000000000000000000000000000000000000000000000000000a", + "0x1b64d77e266b799540e627f0566ee1fcfd4eaaa16f9a94ae0349f9892b4a8f01", + "0x344386adfa824bc612078e6b9bbdcea36002bb075fd2e94795775aaa9e834e83", + "0x8154b03a4a132ca3ebe2ce22153d7e832c91ee0b5de5a8529f7ca571e2216db4", + "0xa2ec7dae024e0af13b5dc03ce7649cfa81cf29ad636c69879468d2248af0e7a6" + ] + } + ] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x12b849eb4e87c5d2c04df62925be9e063c58e5cb", + "gas": "0x5208", + "gasPrice": "0x38af599c", + "hash": "0xc1ba74159bac33a1eedcaed7c8729be920600584d4f824fad85f8a1ad9d1adb0", + "input": "0x", + "nonce": "0x7", + "to": "0xc586eb972d0f9723d1f3f770280c33fe58bf9586", + "transactionIndex": "0xf1", + "value": "0x2b942a3a8dfaa56", + "v": "0x1", + "r": "0x78142506fe742c0c47a1a3d8cddb2bfc6cdb5ef8e01904b25906b600fbd01629", + "s": "0x38572d4f038a9a6b2f592e0d92a373c4d0940a5fff7ced08d3e9252e2b4d5d4d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3d014e61", + "maxPriorityFeePerGas": "0xdb58580", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x14bf7f4855a4152afbf68920f1b19e3453ad1843", + "gas": "0x10a1f", + "gasPrice": "0x30efb51c", + "hash": "0x3b9bb1a890ad23e16e5acbbbf8ea873266134dacbc2f4da43d3ff19655f8d3a7", + "input": "0xd0e30db0", + "nonce": "0x34", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "transactionIndex": "0xf2", + "value": "0x4064976a8dd0000", + "v": "0x0", + "r": "0xd8186e462b9ac7f3238643fa5fde1e15118172e9457802946a7d3d7999a53551", + "s": "0x858b139e0b6f5d75a69eef652b1d9c6a211e0fe496219cff068a770d02518d5", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3b9aca00", + "maxPriorityFeePerGas": "0x5f5e100", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x71e98a56acf9a64734613b4c36fcc3510b231f70", + "gas": "0xf4240", + "gasPrice": "0x2cb521da", + "hash": "0xc04abd7156b499202fb7fb890cc7645dc6afa812906f772d4f1fd218020694b6", + "input": "0xb6f9de950000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000071e98a56acf9a64734613b4c36fcc3510b231f700000000000000000000000000000000000000000000000000000000068f2770b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a37f4d2dc3d3c136b68fcf52be3afa09d4dfc38d", + "nonce": "0x0", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionIndex": "0xf3", + "value": "0x6c7a916cdcb1007", + "v": "0x1", + "r": "0xd53ac3dc25ffbc24f4b169d48fbee95a9feca3a95bfa70af4423377c1d537ed9", + "s": "0x7be01379e42a233fac0d6cb3b15304736e1ebb82281407c76e54ac7e4dac27cf", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3925058f", + "maxPriorityFeePerGas": "0x1bb4dbe", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x947419714403405f30e36816f940562c12083b69", + "gas": "0xcce1", + "gasPrice": "0x2faf45dc", + "hash": "0xdb14d1b7ad848d92500d1f34ed2f24a44ab8767564af32d24a82a27c9f5d033f", + "input": "0x42842e0e000000000000000000000000947419714403405f30e36816f940562c12083b69000000000000000000000000f2bb16099795a425f8e17e7a80f09fc5f9f87d3500000000000000000000000000000000000000000000000000000000000015c8", + "nonce": "0x80", + "to": "0xb6a37b5d14d502c3ab0ae6f3a0e058bc9517786e", + "transactionIndex": "0xf4", + "value": "0x0", + "v": "0x1", + "r": "0x6c54218d1d12f0d1756060f4dd1366b668d6ea3294445d208e3d50b122b9e2ab", + "s": "0x47b762062fb1ee044f319d4b803d1eb19c2fe032e9237aadcb1d6e78c21314f8", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x6553f100", + "maxPriorityFeePerGas": "0x4b571c0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x74275758ae689ae394231e6c953374a3f2f84c9a", + "gas": "0x5208", + "gasPrice": "0x354db792", + "hash": "0xfef6a30ae869a0202cf583f6f7cb4ab7ad0a04aacfe983c23a1233fe618e3e40", + "input": "0x", + "nonce": "0x0", + "to": "0x0c8aa5263afde3c43a0fe88aed2b10ade922e666", + "transactionIndex": "0xf5", + "value": "0x4b183089a3bf70", + "v": "0x26", + "r": "0x4e25a733407a52363f1d6790c1efc42e592f1398f17ddfdb8b1b1c0d552dab3d", + "s": "0x6f92e7386e6a77d6568f4e7bd06ea9f01c542d3a376ed99955e349bd56a6843a", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5cd4ec3eaef750987610f8e3f85a7c8ebbcc4d2f", + "gas": "0x5208", + "gasPrice": "0x325ef97e", + "hash": "0xc7b35decba2ffdf53186c0cbc11c54549ac421fcbdf5455530b2531212cde7dd", + "input": "0x", + "nonce": "0x710d", + "to": "0x7fa1e69708b3fadf74fc923763e6b17c73cc5e43", + "transactionIndex": "0xf6", + "value": "0x3683de686800", + "v": "0x26", + "r": "0x64cd810a68939a03494ec79c696ebe0a8e4b67a6a31a07e0de0e41375dcc07a5", + "s": "0x2ad090c9b89660f94a7ce1a34617d473f2c039ec58dd7c013794c7d826963e11", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb6d0a973712867ac9082cd01283d2f63bc3f2d6c", + "gas": "0x10373", + "gasPrice": "0x2faf45dc", + "hash": "0xaa1d2f0a7530ca5da6f0b064158792b93f3eae5be6ac06793b8df6645743c325", + "input": "0x095ea7b300000000000000000000000040aa958dd87fc8305b97f2ba922cddca374bcd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x11", + "to": "0x58d97b57bb95320f9a05dc918aef65434969c2b2", + "transactionIndex": "0xf7", + "value": "0x0", + "v": "0x1", + "r": "0x8f4602e9415bf4a7859dc884c82be31ab73fc58ed24e4dad1425cfe515209220", + "s": "0x78186310b1e266249476c8b0979ec38e88eaa12857073a245e35ac6ced30a5b6", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x6553f100", + "maxPriorityFeePerGas": "0x4b571c0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8c7e8e7a6eacea9ac36a85704457b791390c5695", + "gas": "0x10ec7", + "gasPrice": "0x2e7ddb00", + "hash": "0x04f96896bb5f4cceb635890836e4870edcccca3d75baa52813a8dfec3ff39f15", + "input": "0xa9059cbb0000000000000000000000006875a5a1b5bb6596797f966cf01674bb008a189d00000000000000000000000000000000000000000000000000000000df9222ed", + "nonce": "0x2", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0xf8", + "value": "0x0", + "v": "0x1", + "r": "0x601b4c179449815f33f0f499711fde474f417adea22aa7f44b4a93775410448b", + "s": "0x49006bb01a5ea1588fa7fd33dfb860534710340a299de4e6f96478fdcb0096c2", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2e7ddb00", + "maxPriorityFeePerGas": "0x5f5e100", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3362980bb75640f3fa299be630049ed475f3595a", + "gas": "0x5208", + "gasPrice": "0x31969b0a", + "hash": "0xf5316c0bc513e37522d0436b3e56506f74077076addeb591016e058888fd92c4", + "input": "0x", + "nonce": "0x11f09", + "to": "0xb5bede55a1cf94f5722524b467ad233be7fe3439", + "transactionIndex": "0xf9", + "value": "0xfe3ca5e0c60", + "v": "0x25", + "r": "0xaa5ab9ce62a925b8aefb51fb2b11a38519c0e5a0bf9267cec199745c466cc058", + "s": "0x7cbe9caa4b52d83a4cdc9777a714441002c6e56dc29b027443c6d274cdeb182f", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x42f5afaefc5727335d9d9e5acf4614c723e8f8c0", + "gas": "0x5208", + "gasPrice": "0x31969b0a", + "hash": "0x55d9c33eddaadaa3419b575108407b0ec298fb87ef9450807de231696fe98bbe", + "input": "0x", + "nonce": "0x12163", + "to": "0x11513d8643542cdbe3f792abe0ab5bab9c022562", + "transactionIndex": "0xfa", + "value": "0xfe3ca5e0d58", + "v": "0x25", + "r": "0x1c4264d12a39e252f84910b3ed206a8170f8d86f5c8ed060c8e2402c86bc6d69", + "s": "0x1e7525035cc9afeab66818396625ca2a75562aa942f5b6cf1d596fb6ac7966c8", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0993bb0b06eb90dfc01a15b07a3015cbfd88bdf2", + "gas": "0x5208", + "gasPrice": "0x31969b0a", + "hash": "0x16969cdccae10241a49f895edc17f33770a26dc47f53234764c3c96420846d47", + "input": "0x", + "nonce": "0x11f7f", + "to": "0x2d745325f76af1bfbd762814105f1d2532fe57f8", + "transactionIndex": "0xfb", + "value": "0xfe3ca5e0d58", + "v": "0x26", + "r": "0xe6426ab6a490481c78e70f3ac3a4d96c2e606c49f0c8c6d6b671267810562e83", + "s": "0x7cd55f1f4c46ecebe7551c11024b0ce77084feb9f033acd8a286ab3e35efe269", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x032c0e8292a9d3be9caeece80b809ec6e62d671b", + "gas": "0x5208", + "gasPrice": "0x31969b0a", + "hash": "0xde3d6b904c4e355cabc66aa58ca0e50265afa562f897372ac5c84d3ca17b2272", + "input": "0x", + "nonce": "0x11edc", + "to": "0x6d850e450cdf9e272f2e18d7f8eec2a25949f319", + "transactionIndex": "0xfc", + "value": "0xfe3ca5e0d55", + "v": "0x25", + "r": "0x54570613332be8b3fb3e65746675f10abe25330bf3d37444d026eef5d26ec30a", + "s": "0x4d25d5f39f04bdc47824afaf7754bb005fe92cde76234516649d6debd8560084", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1367a850998ccdcfd518dc9f64a60f9353c5474c", + "gas": "0x5208", + "gasPrice": "0x31969b0a", + "hash": "0x35d67f73df9c918a38463811d41c2b9832d756d1144d50304fce347eb5a4ef77", + "input": "0x", + "nonce": "0x3f77c", + "to": "0x069d1eb8bb1b5822ac527c1097b66f7c7dd14034", + "transactionIndex": "0xfd", + "value": "0xfe3ca5e0c5f", + "v": "0x26", + "r": "0xb460b48f0f7782dbb0612ed75555c236bf44320eb4384719d07cf88166db49f3", + "s": "0x511118da94d04231a7cf1e6099d2622af5c31543e86b7d70723067bba6067ffe", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6911d34a39b06c091c3253221c6b5786f9e3f92a", + "gas": "0x5208", + "gasPrice": "0x31969b0a", + "hash": "0xfe809f22aecc59970731e95abd1c202d664cb4a9547169f233c1deb1a6848b17", + "input": "0x", + "nonce": "0x35e5c", + "to": "0xac871e01012370e74650c1b96f25ed9b64ad7ca2", + "transactionIndex": "0xfe", + "value": "0xfe3ca5e0c59", + "v": "0x26", + "r": "0xf7a4242763b77478b8584134183597945435ba482fbc80448fcb52c19fa3493", + "s": "0x44f1acd8e6f653b10d4cd668996e50be8db1b6fc302b800d8c64203a0f5ae222", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xae744c1e95761229e372818b38f19d3311dcf3f2", + "gas": "0x5208", + "gasPrice": "0x31969b0a", + "hash": "0xd6e225a76e960dda48064423b51217ed12ce29b2f00a9075b2237475d0f12fb2", + "input": "0x", + "nonce": "0x11fd1", + "to": "0x2d481195e91caf4954747bbb24ed380f022a5d74", + "transactionIndex": "0xff", + "value": "0xfe3ca5e0c5f", + "v": "0x25", + "r": "0xe09f2372b98c03b64260385eb4843c716eeeb68ff384904248cb4b88bbeb481f", + "s": "0x3ade9308399b4ee7258dcd26f99782eeed80c2641f4a5a3b1048ada93f442a11", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x4493bf1d13eb5c84bebb705d2260af9adb96e72f", + "gas": "0x5208", + "gasPrice": "0x30efb51c", + "hash": "0x9a79106c0b8a3ec1cbe3b16e34abfde663b51075a1e40be4a172ec19f88c2827", + "input": "0x", + "nonce": "0x111", + "to": "0x14947cb0f0f95b3ec6160eb5f3e30093aec54029", + "transactionIndex": "0x100", + "value": "0x3eef7c17f06920", + "v": "0x0", + "r": "0x2026781aafeccc4bec533387dead95699e6ea3cf7538f36f29fb2f822984d7aa", + "s": "0x639698e85b47271fe9c86783480b3360863c3e4830d9bb4e1dbeb54551bfa160", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3b0a0598", + "maxPriorityFeePerGas": "0x5f5e100", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1b9ea541bb1a9bd4610a36e2a1fb7ed82bd34774", + "gas": "0x5208", + "gasPrice": "0x30e072dc", + "hash": "0x778924a35c8a8420cc555a956a1d224f4b380ef31d86acd9664d7b9752bf733a", + "input": "0x", + "nonce": "0xe6c", + "to": "0x676d60c2cf5e6e09541d66f05e755c7891bd7a2c", + "transactionIndex": "0x101", + "value": "0x4af5ba0de8c96", + "v": "0x1", + "r": "0x2e5a19d01d947481a21a8e28990d253460abe40415be2eed85899672be1c680f", + "s": "0x4a4b8c1e7cddf155da87455ce9e64a8cfd7c72ca378314170444c94d05bb96e2", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x353267a1", + "maxPriorityFeePerGas": "0x5e69ec0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xeaee919c7abbe330acb5ccccd390d853852eaa20", + "gas": "0x5208", + "gasPrice": "0x30e072dc", + "hash": "0x0d4c6f3806dce0703456296a5f9c3ce7c1cfc194b0eb30f739e7b905062ba57f", + "input": "0x", + "nonce": "0x7", + "to": "0xda6a749c2d52552e4aa59e0afbe45f8a3698daaf", + "transactionIndex": "0x102", + "value": "0x59fbae8adf000", + "v": "0x1", + "r": "0x5792dc9beb281d360382d489b570ad0aaa1c74860361a1aefb4dd886bdd45f84", + "s": "0x2c11e2d192408f65c492de8c8668ad41411c68577e3d232ca5312b64f6c582f4", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x350d47f1", + "maxPriorityFeePerGas": "0x5e69ec0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa31102bba9484c20e6b5560728b0f5733b17d5b5", + "gas": "0x5208", + "gasPrice": "0x30d91b20", + "hash": "0x68f9c268c045a7347d305bb7ae03f87fb727adf16a1ad6281b85daafc9fb4fc8", + "input": "0x", + "nonce": "0x0", + "to": "0x368435f34da1de6ebf4666e31164e1c127a4d0d1", + "transactionIndex": "0x103", + "value": "0x11", + "v": "0x26", + "r": "0xbd641e77f85c3ac5d2829074b2d44e77a246372a2aac74fea2e16974ea688f86", + "s": "0x3e615bb0c7c5b3bceddddee73947f4c90ed9bb6fbee8159024942888ad80c2a6", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc2f05f324a1a566c075990a8af678f78e229b51d", + "gas": "0x5208", + "gasPrice": "0x30d91b20", + "hash": "0x3e1acda084834bccff450795ef3f46b4c826e85053146d872801a50304828daf", + "input": "0x", + "nonce": "0x0", + "to": "0xdbca6194d2065a429ecfbc2b91530c42ad1cd635", + "transactionIndex": "0x104", + "value": "0x1e4", + "v": "0x25", + "r": "0xc51d16680c2a9a04bc54dfffb8b3bbfc8a3423a5cf20d89b360bb9fb8141cc34", + "s": "0x433f99b07ca47be0d5ea34771c4b8ad7cbb184ae7f99132dde5847c93966485a", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbef7b9eb379994533380da013285d9bf7253b11c", + "gas": "0x5208", + "gasPrice": "0x30d91b20", + "hash": "0x9ff7774d4fda99a3bbd2930bca08192b28c92cf3d2df5c6426b80a69a951edc8", + "input": "0x", + "nonce": "0x0", + "to": "0x44524c6876aabbf743fb349e3f16367fc20f4f8d", + "transactionIndex": "0x105", + "value": "0x3", + "v": "0x25", + "r": "0xcaf206ba45187c4861e9c30a2db11371df27a10c24e950532d6f8e269377092a", + "s": "0x3cdc0568964645d765a07264ce571ba1fd32ded65e2c8c01a789f1ce592bed24", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x54ca9fecafbfef97a2d8ec912afdbcd24a2848bf", + "gas": "0x5208", + "gasPrice": "0x30d91b20", + "hash": "0x613808a9f121fcd501571a723f54ef30ff0c727c77405bea8ea8cbee2db6203c", + "input": "0x", + "nonce": "0x0", + "to": "0x3a7cc83ee3f3092c4119776cf80e677045d53f2e", + "transactionIndex": "0x106", + "value": "0x14", + "v": "0x26", + "r": "0x425ba4db7d071456c481d34e4ce7c4acb56aac59a2b107d5bac3f85b46e86716", + "s": "0x44ef7a1ab913bb0ce4cb7a88b75ac3f6f858b5349926a84a8f388bb04ca677e9", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x4452d645c021ae6901b3d37212fce018ab5e4f8d", + "gas": "0x5208", + "gasPrice": "0x30d91b20", + "hash": "0x5d1a152c858aebe02091b4e5f7de20cc09b65b347b680fe0779cd5890ff30691", + "input": "0x", + "nonce": "0x0", + "to": "0xbef70bfe4bcfe84c318ddcdcf9c86f57c446b11c", + "transactionIndex": "0x107", + "value": "0x3", + "v": "0x26", + "r": "0x309f7cf9e322e0bf1c44bcf28e107e638f6896b2da7c0bb794c43ee2cc0c0cb1", + "s": "0x629b210ab495b0d80a49b5653920a32da93faac96e1113f63b806ac2043e8fb7", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9959d8c1984289e29af995e49e6ad1126b0dd35d", + "gas": "0x5208", + "gasPrice": "0x30d91b20", + "hash": "0x4e46a82b431ab060c7c944805a584f788dfa8e9c9eeaec4739c9a847424067ac", + "input": "0x", + "nonce": "0x0", + "to": "0x8c17ac35aa84973ed968650f16b4e31e6f42d660", + "transactionIndex": "0x108", + "value": "0x105", + "v": "0x26", + "r": "0x535eb3706842ee5fa638bb85b6b6d0d73f3e1e91f3e86bd3a14142ed6ac5f219", + "s": "0x1355ffd7ed47a4dc1d2155d1aa0cf7f35aa79fdaf98ddaf018e76e1106f42ff5", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x31a04f0f367a059ebbb035ad01284f45639aea83", + "gas": "0x5208", + "gasPrice": "0x30d91b20", + "hash": "0x400f1d38337e7b6ee168f27d895f6ed30de65d26921b39846bab0335964dc21f", + "input": "0x", + "nonce": "0x0", + "to": "0x1ae77fb126bc1cca493ed84b047cf7bcb1e793e0", + "transactionIndex": "0x109", + "value": "0x2", + "v": "0x26", + "r": "0x2125cc0c76562ea1d7bd7306074f90cea0fa33abda104b8507c6a7ed5dadba04", + "s": "0x29e22b2e98ed2675b31892ca70341708854f54569358f659730432ad80c759df", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa9bd318a4ca1747e6068d100e18711b529386e29", + "gas": "0xc350", + "gasPrice": "0x30571e9c", + "hash": "0x56b2056b46e7d3ce419e6106edcaea6a83d9957672e7ea714d2dd257278c889d", + "input": "0x", + "nonce": "0x2a327", + "to": "0x8ef479fca448fa414e4a3fd5eb0db0f1d1d170f3", + "transactionIndex": "0x10a", + "value": "0x1c929ec7a70bff", + "v": "0x0", + "r": "0xcff8719f686cd6fe6aea5965fc91cdcd264ac0267f93ba06a50b9afa9abef438", + "s": "0x1fd0abbc0545548041eae09233220ea3b2da7a9ab89d0946454a82d1c59b5111", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xe8990a4600", + "maxPriorityFeePerGas": "0x55d4a80", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0e9e39190df7a2d38872736910cddfa519e419ca", + "gas": "0x5208", + "gasPrice": "0x3047dc5c", + "hash": "0xe4aadb71df779afb8cbe4369ad86c97a1c267e0359ee2b169706496e35940e15", + "input": "0x", + "nonce": "0x971f3", + "to": "0xe38a7df87d75dee99a7904ac0787ec767d28d3b9", + "transactionIndex": "0x10b", + "value": "0x23d8cd31c8a000", + "v": "0x1", + "r": "0x3f3a14a6e5e02c368b096039a64469972be5b06856688bff060838c9de6bba8b", + "s": "0x8b518fdaa76ea3f15c0b9c9f40c6fcf01943c294a087b671eb3b59602c5ad02", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x411953e6", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa7ceed38c2b0dd44937a0bf62be8787486ecb5d1", + "gas": "0x5208", + "gasPrice": "0x3047dc5c", + "hash": "0xcbb9b034095f0e55d4df2d9235b404161a858391207883ee4875013f17108ee1", + "input": "0x", + "nonce": "0x9748a", + "to": "0xdd21a367410530c323215bf18ca5e2922c3e30bf", + "transactionIndex": "0x10c", + "value": "0x6b66065b8f6000", + "v": "0x1", + "r": "0xdb1ae45bf7924b824f8d757716097ca26cf7000540ff6f3f8cdc8abccd16fbf8", + "s": "0x4c40db497f50acb4936d6aeeef2f46745b736b50ec024dd74f3758309d05f1e", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x411953e6", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa7ceed38c2b0dd44937a0bf62be8787486ecb5d1", + "gas": "0x5208", + "gasPrice": "0x3047dc5c", + "hash": "0xc7a42963ad48b15384cab45735adacd94bf721e80dc04b6c3d7b0fa09b300d50", + "input": "0x", + "nonce": "0x9748b", + "to": "0xbbfc657c0a265a227558a51220b0e9ad25e1103f", + "transactionIndex": "0x10d", + "value": "0x8daea611a48000", + "v": "0x0", + "r": "0xa0d7a7a9b4c2ce462a726ba1052c372a7c2fc3d0e2e9d48c9b896da0884dc52f", + "s": "0x337d5265c29492e665ef4550ec66546b9e43a6285a909bf9eacfdbacc7518993", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x411953e6", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0e9e39190df7a2d38872736910cddfa519e419ca", + "gas": "0x5208", + "gasPrice": "0x3047dc5c", + "hash": "0xaecb00c13b0637a26860127a2a6a8dff4acd3925032c64e62714819274b8d00a", + "input": "0x", + "nonce": "0x971f4", + "to": "0x493917be3b46b6586996b3f2da248429ff90213b", + "transactionIndex": "0x10e", + "value": "0x16cef4bb754000", + "v": "0x1", + "r": "0x5d6969e79236ca00533cdad44715b290e3bd55978a6947bd5ae82feea55bbc58", + "s": "0x164d75d7f70e000d35a5ad44575eb19041d1f66c3c1a369abc3cb23947bfa40", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3f5cc375", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x8db04879e2dcaa4e28fe3caf2cef6221d010baba", + "gas": "0x5208", + "gasPrice": "0x3047dc5c", + "hash": "0x3e463ae43ef3e6f916f2e4931c8c7b382f81edad4756d0d9965a2ac202037ffe", + "input": "0x", + "nonce": "0xbf", + "to": "0xd96fceef10948459bb2c80c0a00353ab620a1ffa", + "transactionIndex": "0x10f", + "value": "0x90986f325bc000", + "v": "0x0", + "r": "0x12a45ad0f16967a458bdb9b9d35dabcf0c80c64d5d5fa46be51cec091172b9c5", + "s": "0x626cc0b2063f616056894772e87e94e2d8a2fa11cd6e0441a853089fc9064ab8", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3a834a3d", + "maxPriorityFeePerGas": "0x54e0840", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x686ca84771cf36d9f9831df786b3fdb017970483", + "gas": "0x5a3c", + "gasPrice": "0x2faf45dc", + "hash": "0xfbdf8fbcb5d91ae905cf52b415f1086bae54c50a3069f997f09a01743b2fa50a", + "input": "0x", + "nonce": "0x11", + "to": "0xd787c5689c4b7025f6bc20a7fcb40265e9a0dc34", + "transactionIndex": "0x110", + "value": "0x35c1e958128fe8", + "v": "0x1", + "r": "0x35b807a315962982e62017866018e1098657d87a03226ccdeeade07b5ebd0cb9", + "s": "0x35533cedd3e85b3e84463eb3de172bc8ba4eefd92f411fad6f724cb00409cc8d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x6553f100", + "maxPriorityFeePerGas": "0x4b571c0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0d0e749a9b067b3d3fd9c59f92e96f0c127beb18", + "gas": "0x5a3c", + "gasPrice": "0x2faf45dc", + "hash": "0x3ed3d2fe2507ce54960f7487ef6b6ec6848f9e258d3234a3628ae31e3537f60f", + "input": "0x", + "nonce": "0xc", + "to": "0xc8cd7ce54a6ba2c57c49dc2247dbca03cfac69f0", + "transactionIndex": "0x111", + "value": "0x1599ba503c000", + "v": "0x1", + "r": "0x14960d4994ddd168509e00bc95ace52ceb61c49f2b3e1da25c156057c90485a", + "s": "0x2a3487b35c9cdbacbe0ee4a73f398e3c6d3acad73db08f3b67eeddde61ca73c4", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x6553f100", + "maxPriorityFeePerGas": "0x4b571c0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb029d84e6b86738bfb754fffe906225fdc80aa65", + "gas": "0x5208", + "gasPrice": "0x2faf0800", + "hash": "0xdd9abe73f2c55557cb65b27b8f8d770f323c742a8966696d5263591319c545ba", + "input": "0x", + "nonce": "0x29", + "to": "0xbae4078ecb449f0c306696899d565de5bc6e32e4", + "transactionIndex": "0x112", + "value": "0x4bc5b3f7c5000", + "v": "0x1", + "r": "0x478dc705705d8157903476b2bb20d47e7f435d712d44dfbdd733c21796b72513", + "s": "0x2890860ff2ef7f84d2009c7ca079c5c58bf0bb6d7a9732af1cf02184bacca230", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2faf0800", + "maxPriorityFeePerGas": "0x1dcd6500", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb029d84e6b86738bfb754fffe906225fdc80aa65", + "gas": "0x5208", + "gasPrice": "0x2faf0800", + "hash": "0x58b43c1dee4299f5fe222b6331192157a805ea3ce62d439ae831b62859d26548", + "input": "0x", + "nonce": "0x2a", + "to": "0x7169a467a1987a0ff4e55c05761759412d304734", + "transactionIndex": "0x113", + "value": "0x4bc5b3f7c5000", + "v": "0x1", + "r": "0x6e8e2b81344c102d934af39368fcc98dd24b914d4ef2897cff432fc99ab091e4", + "s": "0x27f42ac66e49d368e3deb2cc8ff4e7cb94ec9d2dac0a68e73e04a4e3a8a5e339", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2faf0800", + "maxPriorityFeePerGas": "0x1dcd6500", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x52873cf3ad661e58eeab785920b535e7ce064842", + "gas": "0x5208", + "gasPrice": "0x2f3a19c1", + "hash": "0x264ae10006f206d5f1c4873fc1c66222faeb01933863071000e958c12ea3b979", + "input": "0x", + "nonce": "0xfd5a", + "to": "0x7cadf1ca95125783dcf9c70f3b9377a3a0239350", + "transactionIndex": "0x114", + "value": "0x214d634b1545", + "v": "0x26", + "r": "0xa5036faee44654946a80632f761de7115a06af6032410a07f4f390de9b5f0131", + "s": "0x6c2de38db25367e2724ae967f108fd412341fcc49e2ccf080367773687b55b0d", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x38d012ec393419beba2f1bdb74d3ad1e0b964d5f", + "gas": "0x11170", + "gasPrice": "0x2caac8c0", + "hash": "0x7f06650a6cf677caad380a4aa1b5cb1547e5319111c16574edba9d48f33502c6", + "input": "0x095ea7b3000000000000000000000000a8c5c4d877279c282725a5d8480de6db5ccf693e0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x115", + "value": "0x0", + "v": "0x25", + "r": "0x9f648832ccc2edd94b1accfe7acf803abed9a4d0b21de663a2b24cbde6bfcb06", + "s": "0x59c08e0b2e4722f0b99bd9d4001702bd74b4be6da14400210f7adf9483079df6", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3ca3f51af45bdf6f89b97c6e740a10255967dac8", + "gas": "0x1a547", + "gasPrice": "0x2bbc39bc", + "hash": "0x16686ce8a0f5703eea139eb4d90b88cbea64367177cbd96eca0cb6e26ea00006", + "input": "0x07ed23790000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a190000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a1900000000000000000000000003ca3f51af45bdf6f89b97c6e740a10255967dac8000000000000000000000000000000000000000000000000000fc284bc394000000000000000000000000000000000000000000000000000000fb12b898ba40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000006200003c4121c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200042e1a7d4d0000000000000000000000000000000000000000000000000000000000000000e021111111125421ca6dc452d289314280a0f8842a650000000000000000000fc284bc3940004a82836d", + "nonce": "0xb4", + "to": "0x111111125421ca6dc452d289314280a0f8842a65", + "transactionIndex": "0x116", + "value": "0x0", + "v": "0x1", + "r": "0xb07afdfaef6ade6e80be4d008d7f085853ab96948e9b531c9288b0a7762c87a7", + "s": "0xb75bf917c541ada69553f1d30071d1ec7501107a8d45797fad8668200273c5", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x72ce3cea", + "maxPriorityFeePerGas": "0xc265a0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x6ffc5848c46319e7c6d48f56ca2152b213d4535f", + "gas": "0xe0963", + "gasPrice": "0x2b0d44ac", + "hash": "0xc998bd12aeab6002346537dc6032c462a4a4544e0be8b6862fed5d2d850022e4", + "input": "0xbc127b88000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000d0dc98e000000000000000000000000b2617246d0c6c0087f18703d576831899ca94f010000000000000000000000005e18824bb0e73bb9bd78e7b2d38a3289bccdee1d0000000000000000000000000000000000000000000000000000000000000180000000000000000000000000c38e4e6a15593f908255214653d3d947ca1c23380000000000000000000000000000000000000000000000000000000000000920000000000000000000000000000000000000000000000000000000000d0dc98e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000764224bb30f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000d0dc98e00000000000000000000000040aa958dd87fc8305b97f2ba922cddca374bcd7f0000000000000000000000006088d94c5a40cecd3ae2d4e0710ca687b91c61d000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000068403b87e5f000000000000000000000000000000000000000000000000000000000001b5510000000000000000000000008a7b6ae8968d632d8eb2f8a1e6f8bf57d564371d000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000b2617246d0c6c0087f18703d576831899ca94f01000000000000000000000000000000000000000000000000000000000d0dc98e00000000000000000000000000000000000000000000003eb435c5a7ecfb2cbb0000000000000000000000000000000000000000000000000000000068f285110000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000006600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000d0dc98e000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000010000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb500000000000000000000000000000000000000000000000000000000000000010000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000000000000000000000000000000000000000000100000000000000000000271088e6a0c2ddd26feeb64f039a2c41296fcb3f56400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000001000000000000000000000000031f1ad10547b8deb43a36e5491c06a93812023a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000b36ec83d844c0579ec2493f10b2087e96bb654600000000000000000000000000000000000000000000000000000000000000001800000000000000000002710b36ec83d844c0579ec2493f10b2087e96bb65460000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000524488c3591000000000000000000000000000000000000000000000000000000000d0dc98e00000000000000000000000000000000000000000000000000000000000000800000000000000000000000006ffc5848c46319e7c6d48f56ca2152b213d4535f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047201000000040d00fcafd2369475d99554e7bb54cb37ce5379799b0501e2f05e38581ed5477e47c560a227ac1c9027d45bc295c1459819c41754c53cb7023d47604000b3bbebcb4c00011d7e4b4944ed747c11be1c132282c4baa583b34bfba62c28e1da9f432184c7926c121ca7dc56e09c28969ca03aab1dcfb5fd78b21e9b71ae5ce81e40323d162b0102d868fc5b8c7b1e5e59c5702d7a0296025fb6f0fb9a17fefcf44ce52b2884677e540942f960758a39eed4c1f3a947e7a372c4efb880f2fc68e7dda5f5cec1437e0003157f14e2c16368f3210af80e5ba24a7d8a22a437ba607096f2f768f678dc8e252469ceea416026a9366c5dcf51b6bb5ae98087e6f653500091c22ece6d964346010630e0747f6b62c9a99b6fcaa521b522d0b91afc770a5dc58bd56c71d8760a71cd4dd8a393be734d37038127a0eb9ab71c46045be194ebda6c29d93a1fd40c7f490107b76b99b0b8fcf04084a94393d10a84ba7ce42208a0b110d23c56e67347fc63d337fb6af37132b0210b0cb4f261e4281726a38b90a33dd700bec161dd85f1880b01086069b389bffbf5a15e0ea9f778369f3a7e77399b1ef4c1411fe9a5bfbb9506967060f3e93cc20d72d4afe58b1e513c47d85a48b18bc65abd3cce16786244147a000ac8617c02e0feee3074cbae603253f6f4ef73ed981fed03089fba6e876dd304e24941fe930c46dea825a420c8b334894ca66508298a2d5644cb90477ee58187c0000b6c14169c364e02fb900b73c14dd13b4997ae3bb7dcc366667fc0267e7798a8113ee016daef3c9831f57b2a79aaeb01684c3f789ef1116d0e97246b99b02a2eee000c21dd060e4e695c0ff48a101d3fad7cb701e39bdaecc512bf59d5c7ac8ecf0c5302857fe1b9fce014cdcf78b0e58449fbe4ee6639db9131f250d5a7c53fb21f60010d48526344253c3fb3160b39de9748b7741146bc56d4793910a1737488a6ce728f73379d6c383bd4745cc7b801457fa848498c5d4689dd26144dc59e43ab9c69eb011026d336e8ca073c25ceee14541d87957297646974d06c0feb766033b4a30c098c39cc7a2b69541d819518d0d64d270d1e29ec1f4bf95bb281b5c99df03da07c340011f6a343742b94a46d38a8eced8a8301e5440b7d341711e589a00d413bf449560973eef753feab434b9b3275427286f751905534a95557fc24818fb0d013b2c3ff0068f276db00000000000134cdc6b2623f36d60ae820e95b60f764e81ec2cd3b57b77e3f8e25ddd43ac373000000000023a64500011891776805794428d93516f7712a5ee2e6d72484140fa79282f854979d07606600040000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d000000000000000000000000329b2c3900b5f98441b033880b0cd940678f70630002000000000000000000000000b2617246d0c6c0087f18703d576831899ca94f0100000035bd4d0e7400000000000000000000000068f27a99000000000000000000000000ab28e2d6e4713dc0f6f1addf74abc3d2313445cc00030000000000000000000000006ffc5848c46319e7c6d48f56ca2152b213d4535f000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1bcc8", + "to": "0x8a7b6ae8968d632d8eb2f8a1e6f8bf57d564371d", + "transactionIndex": "0x117", + "value": "0x0", + "v": "0x1", + "r": "0xe3ed7c9b0c5726c0fb2de36314f716a99febf39b5981b9e8b2a3bdbbe6c1d701", + "s": "0x174165fc5af298295175150eeb54dcaf66b82c1ec6d83f45cdf9d6c9b8396f69", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5e60c2f2", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0ae8db154151e87c0ba0b0351fef428b31abcb9b", + "gas": "0x19004", + "gasPrice": "0x2b926a9c", + "hash": "0xc2ebef3fb3a1c3647d71e280a5050ed31aacbb6b5974535a1d5279e4907d2efa", + "input": "0x1cff79cd0000000000000000000000003376d7d055f5d7b83b0f03c886011b1dbafef27600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000064f5537ede00000000000000000000000045804880de22913dafe09f4980848ece6ecbaf78000000000000000000000000a69babef1ca67a37ffaf7a485dfff3382056e78c000000000000000000000000000000000000000000000000f293df359620800000000000000000000000000000000000000000000000000000000000", + "nonce": "0x6456", + "to": "0xfa103c21ea2df71dfb92b0652f8b1d795e51cdef", + "transactionIndex": "0x118", + "value": "0x0", + "v": "0x1", + "r": "0xf283c0f4108f9b4bbcf89e4afb2667757a50fcad2d4ed183e8c5ea69181a51a2", + "s": "0x7b20708c4610966e9d3f0b082774da1a95fae4d9500920ac5d059cfe2da8147d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2b926a9c", + "maxPriorityFeePerGas": "0x989680", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb1efe8fed411f119db56728dd21949d79b760145", + "gas": "0xf22d", + "gasPrice": "0x2b82ea80", + "hash": "0xe78800a1239cca6da2f7783a4ca5415c269288831b7c7535753ac387a5979f57", + "input": "0x095ea7b30000000000000000000000001111111254eeb25477b68fb85ed929f73a960582000000000000000000000000000000000000000000000000000000000073a423", + "nonce": "0x0", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x119", + "value": "0x0", + "v": "0x0", + "r": "0x9fbdf2a93cb028951b92a50d21327fb7e5d6c992534bc9dd52a332ed73abd5ea", + "s": "0x6d7c3ba4eb4d3ad4e2b3cd2bdfd54fd907b2e788e6f9dde3d43423d81bc57024", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2b82ea80", + "maxPriorityFeePerGas": "0x5f5e100", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9442aecde361dff1cdda2822b5a3fc2441d45692", + "gas": "0x6ad32", + "gasPrice": "0x2b0d44ac", + "hash": "0x60fafdf399e7139225c081b66d78a731ef35c5969b58dd6e927b32369c990b26", + "input": "0xcc956f3f0000000000000000000000000000000000000000000000000000000000000112", + "nonce": "0x16ac", + "to": "0x4d32c8ff2facc771ec7efc70d6a8468bc30c26bf", + "transactionIndex": "0x11a", + "value": "0x0", + "v": "0x1", + "r": "0x9b9efc00f2151e02bd9c20240c72fd4da6149704c4a4545bdbd24ff5fbed1a4b", + "s": "0x442ceb42f0e8927d9619d6816c1b37fb3243aa8ad2578a3ee4e454caac87de40", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5eab0252", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbb318a1ab8e46dfd93b3b0bca3d0ebf7d00187b9", + "gas": "0x55034", + "gasPrice": "0x2b0d44ac", + "hash": "0x5df96953edd3162aa56ebd808270c3d2e95b203348c0d1244659d49711d5e3f0", + "input": "0xe9cae9d200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f29301000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000041905560b99f1dc7ce823477ad647156e47cb02e2d5cd064c3af9b450ca1b8714e38c7c36dadf2dfa90842e78b4cfe334f0fa07356a7737762738bb68f242019af1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000bb318a1ab8e46dfd93b3b0bca3d0ebf7d00187b9000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a219439258ca9da29e9cc4ce5596924745e12b93000000000000000000000000000000000000000000000000000000034d45f22f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000e70800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000bb318a1ab8e46dfd93b3b0bca3d0ebf7d00187b9000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000024b1895200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000bb318a1ab8e46dfd93b3b0bca3d0ebf7d00187b9000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000201eba5cc46d216ce6dc03f6a759e8e766e956ae00000000000000000000000000000000000000000000000000000000059023f1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1b5c", + "to": "0x15a7ca97d1ed168fb34a4055cefa2e2f9bdb6c75", + "transactionIndex": "0x11b", + "value": "0x0", + "v": "0x0", + "r": "0x4a5a23e3981405c0ac770fe23c6f35ab7221cddc73f609814e33c7af8bd0ca2a", + "s": "0xb96d30f6dd68338ae95293e0859fb93befaa4bab289e5fcbd4b0f9ea1261811", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x38a83b97", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa8da06619f2d7211f9625b57f37016f42a4bf105", + "gas": "0x34554", + "gasPrice": "0x2b18589c", + "hash": "0x3937ae8b52c9896d6eb7b3e7035ca0e50ca0acd15a8a468e339c5c22c02d3fac", + "input": "0x0193b9fc00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000004147710a64401b300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000068f27df100000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000284733214a35367b72fa41640e6fa5c56937a00334d60998ab423c9776960434a29977fd5da00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a8da06619f2d7211f9625b57f37016f42a4bf10500000000000000000000000000000000000000000000000004147710a64401b30000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f6a756d7065722e65786368616e67650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a307830303030303030303030303030303030303030303030303030303030303030303030303030303030000000000000000000000000000000000000000000000000000000000000000000005c57cf61e473ae865e733a3a23fbb7618b4621f60000000000000000000000005c57cf61e473ae865e733a3a23fbb7618b4621f6000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004147710a64401b300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000043ccfd60b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041cb4dc9e6ba835e90b02f1fe187e7c45fe5db3f3c8250e25eb0163d62c09e67c1308bcb157dc8827920e0e95bfbc4925716f8db6cba3d39ff593b9acb60cb9ac11b00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x97", + "to": "0x89c6340b1a1f4b25d36cd8b063d49045caf3f818", + "transactionIndex": "0x11c", + "value": "0x0", + "v": "0x0", + "r": "0xacfc1b87c3b34aeeffcc5e1d1d41dad2080dcff9e5f961b92160c759c5aa8f43", + "s": "0x67419bf720adddbd85b399eb9d875fd9a9ac5cacb7488291f9d94d97c12a669c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3b3c2f40", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2bc6795b3906c36308f7b085a2f854c10a6831d6", + "gas": "0x35b91", + "gasPrice": "0x2b18589c", + "hash": "0xd8e09c377772e96c0b936529c0c9ad6300bc81071980f0413749772599963c64", + "input": "0x12ff148d00000000000000000000000036d884a00c1100dc7b728c760200f7ad3e46e64e00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d39be0c100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f27942000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000b9ce92a9c0c0000000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000023a5b64aa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x15", + "to": "0xff7c8f518e6f1435957ed3d3e0692c94676dae7a", + "transactionIndex": "0x11d", + "value": "0x0", + "v": "0x0", + "r": "0xc0f512017ce6931c8038a472561041a9f23a6bdbab1b177c94c636d0aa928fa7", + "s": "0x77b4d267416c44cdccd76fea324ef5e68c658f766ca8e786c7788cdf06052f2c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3b83e6a0", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd312535f0104a45ebd16cd29756fe9e6f8fe633c", + "gas": "0x27f21", + "gasPrice": "0x2b20b53c", + "hash": "0xe6cc9a06d4c993d5d593c9cf2d509819d736726140f8734c62d77c2d3c2ac8de", + "input": "0x8aaa8f3b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000005d3f0a3f6cbb32ea6aa37988c974717a7bac5485000000000000000000000000872561ceeaef55036b3a1550a287fae49816c867000000000000000000000000195204d7147379f0b96e5e26297f71877f3eec79000000000000000000000000872561ceeaef55036b3a1550a287fae49816c8670000000000000000000000005d3f0a3f6cbb32ea6aa37988c974717a7bac5485000000000000000000000000872561ceeaef55036b3a1550a287fae49816c867000000000000000000000000872561ceeaef55036b3a1550a287fae49816c867000000000000000000000000e17dd242f8b1b5dc7aecc1cd7533875eb908c4f0000000000000000000000000872561ceeaef55036b3a1550a287fae49816c8670000000000000000000000005d3f0a3f6cbb32ea6aa37988c974717a7bac5485000000000000000000000000872561ceeaef55036b3a1550a287fae49816c867000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000003ffc8d4fe4b5e4dce81c4c78033f513b366342b50000000000000000000000004efe8616662873f8573ceed77294e60898082a40000000000000000000000000dbd3981e58a123160f4ac484da826f382073d7c2000000000000000000000000c515bc1fc6c888eb41e613a97f9110681441fc74000000000000000000000000207e1074858a7e78f17002075739ed2745dbaece000000000000000000000000ae753767b5310dc501ec112b44812eda83934b5a000000000000000000000000e62afc435835af589fbc5ca99715a1d5a6f50ca900000000000000000000000072320a85970dd36fb8c1834410d5f673a4b9d293000000000000000000000000e42275fa4b827ae9e4ab7b15ac571deffb9cb4b90000000000000000000000005623b873813b2f96416cefd09d6a27cc5c938385000000000000000000000000945a0bc85bdab4caac32d31e2f1eee435b31fa9f000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000005dc7f76e63c814e9d49e4c7385e819ddad92f3e40000000000000000000000006aaac0dc5d911e5aba73e2536dbec602b0c60785000000000000000000000000ee9df80624cd7a6a2d2c7d5c50340b19f6b3ca110000000000000000000000002ccbda168913581c47fcd75145dca5206fa23a28000000000000000000000000f50546d7ab718b51007ede0d99abd23fb1b9e222000000000000000000000000bc0aa0556184416b82cd6aea4c4f5123608d7c110000000000000000000000005ef4c3f75f821a90887651e90f031230d253755b0000000000000000000000006aa08972ec57de5e5fc91d05e0b4eb113d6b7cb1000000000000000000000000e59ede75fdea00912c8ca5cc09cdaa6e938cdc0a000000000000000000000000a88ff56279bb98aa9b3dd0721f8aea35eeb47647000000000000000000000000383e9ce4164e0ac5471ddc3ecc935bd87109c0a5000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000014d94e5a6c38a4a8c0000000000000000000000000000000000000000000000000000000000989680000000000000000000000000000000000000000000000006bd2cc52b48e0be2300000000000000000000000000000000000000000000000000000000932649c000000000000000000000000000000000000000000000006df826d36208cdacb200000000000000000000000000000000000000000000000000000004a817c80000000000000000000000000000000000000000000000000000000048a4a6300000000000000000000000000000000000000000000000000000000000ee6b28000000000000000000000000000000000000000000000000000000001a37472880000000000000000000000000000000000000000000000003df3c40f58c515abb0000000000000000000000000000000000000000000000000000000005f5e100", + "nonce": "0x8cae", + "to": "0x58c0da3b30766903a9513bc4d1a9be0499b3b75c", + "transactionIndex": "0x11e", + "value": "0x0", + "v": "0x1", + "r": "0xd170f1f55cb67357cc8ddaf0640b08583208ee2b021c2693e2c71739ca216dd3", + "s": "0x7dcf3aa8cfef1bd225fb0d8d72a81724a02e76226ffb2a64a69d286b11cffaeb", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x8d91246b", + "maxPriorityFeePerGas": "0x26e120", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x604d23a2ebb002df6fdc77b82da716222ca43b8b", + "gas": "0x32b9e", + "gasPrice": "0x2b20df2c", + "hash": "0xdf220e66f2b13e132c2d1844c8f5c74dc204261e6b966faa8e5a259bdd751274", + "input": "0xa000000000000000000000000000000060594a405d53811d3bc4766596efd80fd545a2700000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000021e76df575366d5ddf000000000000000000000000000000000000000000000000024a1eab99ba698c0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "nonce": "0x1b9fb", + "to": "0xfbd4cdb413e45a52e2c8312f670e9ce67e794c37", + "transactionIndex": "0x11f", + "value": "0x16816a5", + "v": "0x1", + "r": "0xf8802f115fcb8941dff6dd12f496892a62e5019d731285d98c0a106b7b96c35", + "s": "0x140b44f2410ba241ab654fbcbc0350f0d3100735077341a1ec75d0b13bebaaa2", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2b20df2c", + "maxPriorityFeePerGas": "0x270b10", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5bdf85216ec1e38d6458c870992a69e38e03f7ef", + "gas": "0x30d40", + "gasPrice": "0x2ba5db2c", + "hash": "0xece0df80f81d15d6cc154da649eb78ae9e7440feddf4e1f9e980cec90aca99f9", + "input": "0x", + "nonce": "0x7d49a", + "to": "0xac6af70c5b4d15cf38bcf7434ba635093f4030b9", + "transactionIndex": "0x120", + "value": "0xc252d9f7c300", + "v": "0x0", + "r": "0x262c76a0011f4b2907a029649663a4e3df6733106961556f38d0e32a48010981", + "s": "0x4a3b8df436edabfbb7bc177ed7f83f3a9b4ada003501b01f6bd2fa82acc07de3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x42c50e58a", + "maxPriorityFeePerGas": "0xac0710", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1ab4973a48dc892cd9971ece8e01dcc7688f8f23", + "gas": "0x30d40", + "gasPrice": "0x2ba5db2c", + "hash": "0x4f607c61f67f39f2c9578448bb9ed56b3098418fe5ff317286c6bea5ff1a58e7", + "input": "0x", + "nonce": "0x20849b", + "to": "0x6bdb1971539ba42d937b2526fa75623a988f6af6", + "transactionIndex": "0x121", + "value": "0x4c4528628680", + "v": "0x0", + "r": "0xa93fca48acea53bd27a5ef1d6f08e150cee99b90890d54f2022138fad3248c12", + "s": "0x7a4cb809f984ce7ade3b5c3d60892824d0bfc3bded56ca836a749fdb92be1311", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x42c50e58a", + "maxPriorityFeePerGas": "0xac0710", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1ab4973a48dc892cd9971ece8e01dcc7688f8f23", + "gas": "0x30d40", + "gasPrice": "0x2ba5db2c", + "hash": "0xe6809bba18d516855a6dff49313df444938ca324789829354d8ce4ff53554e63", + "input": "0x", + "nonce": "0x20849c", + "to": "0xfb414867f03beeecf721175cb5023cd65d8a7d3a", + "transactionIndex": "0x122", + "value": "0x3feeb73d1540", + "v": "0x0", + "r": "0x2246ec6f2b1845992c2e58417db6afe0240caac4c96bc7ff793d31f1c1ef0060", + "s": "0x5f282e7345a2dbf74f02598ebc4e8e56c83623170ac3afeab1f830e07591fc33", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x42c50e58a", + "maxPriorityFeePerGas": "0xac0710", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5bdf85216ec1e38d6458c870992a69e38e03f7ef", + "gas": "0x30d40", + "gasPrice": "0x2ba5db2c", + "hash": "0x3fee164dca374c7da049636939932b010a4f9931484788cf9668e2ba68039b0a", + "input": "0x", + "nonce": "0x7d49b", + "to": "0x566b30470d7ad97419a48900dc869bd7148736b8", + "transactionIndex": "0x123", + "value": "0x81f71463f3c0", + "v": "0x0", + "r": "0x909c2263a97a85ba61f52fc3c0cd54e2fc5a3d560a46e24b9e56cccd63fcff59", + "s": "0x3f32eb94d8e7943fcdae6207e439476de3bdc06aef760e571867986d165bf793", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x42c50e58a", + "maxPriorityFeePerGas": "0xac0710", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1ab4973a48dc892cd9971ece8e01dcc7688f8f23", + "gas": "0x30d40", + "gasPrice": "0x2ba5db2c", + "hash": "0x0cdebf1be3eb585694ce002bd6e4a082e0ccfda31c298c84199afccd73c0a1c6", + "input": "0x", + "nonce": "0x20849d", + "to": "0x3f6cfd9479a6189dc7856d49579c074743fe07ab", + "transactionIndex": "0x124", + "value": "0x5b7828cbb2cd6c00", + "v": "0x0", + "r": "0x20970734443bd4467598f52880333e5c53444e3b2b0cbbd0ca553da3773980a3", + "s": "0x7b0f431767262d3f0ad1730cc978c914683d2f5808e6d9eb2957a08c69afb7a", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x42c50e58a", + "maxPriorityFeePerGas": "0xac0710", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1ab4973a48dc892cd9971ece8e01dcc7688f8f23", + "gas": "0x30d40", + "gasPrice": "0x2ba5db2c", + "hash": "0xc02b683955450304bea6657c2ae7e5bf9e0a496f91b086448ab17ea5fc6b4f5b", + "input": "0xa9059cbb0000000000000000000000007d145bfa39a8059dfa037841babbbf51c41b46aa00000000000000000000000000000000000000000000000000000000a56fe653", + "nonce": "0x20849e", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x125", + "value": "0x0", + "v": "0x0", + "r": "0xe17d5315e97013267d1831209884db98d9329d87202eaca200e12edfd19d2932", + "s": "0xf41af7f66a805b9dfad37a5571dff728f0706520e4d06eb9714747c86bc6fa2", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x42c50e58a", + "maxPriorityFeePerGas": "0xac0710", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1ab4973a48dc892cd9971ece8e01dcc7688f8f23", + "gas": "0x30d40", + "gasPrice": "0x2ba5db2c", + "hash": "0x6c055910abea6d2055684f298391f910167dc72ed4730a2f22fb007c4f85dec4", + "input": "0xa9059cbb000000000000000000000000a4106837c5eb34174b6e71560460d036d952cb9d00000000000000000000000000000000000000000000000000000000298b5de7", + "nonce": "0x20849f", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x126", + "value": "0x0", + "v": "0x1", + "r": "0xc387e5a6f3d35d7911445053a19836ea1bcf6463053cc3d412891c1af857dded", + "s": "0x189ec355ad1cc2e184a3fd7a8026e4a98e142357d6a7443445bfabb997228380", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x42c50e58a", + "maxPriorityFeePerGas": "0xac0710", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5410385356d29c19aa2dafb53ec44f05a0950537", + "gas": "0x35866", + "gasPrice": "0x2b0d44ac", + "hash": "0xcb16517f724d98ec7b494217eb46ae4eca3fc85cbcce2cd375ab9b573ee26f4a", + "input": "0xe4269fc4000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000007735940000000000000000000000000000000000000000000000000000000000773594000000000000000000000000000000000000000000000000000000000068f27945000000000000000000000000000000000000000000000000000000000000001caffd9b06ec697a8bd5fb44f91cc139e77854430b32a2ac0d407396f2548cf5cc54cc4adae6b127978e88338524c26a4d1b5255d0c119c2dc962c93e3d4fa9e3a000000000000000000000000c38e4e6a15593f908255214653d3d947ca1c2338000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001e48e8d142b000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000773594000000000000000000000000005410385356d29c19aa2dafb53ec44f05a0950537000000000000000000000000fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb900000000000000000000000000000000000000000000000000000000770eba43000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013c100000000000000000000000000000000000000000000000000000000000cb75f0000000000000000000000000000000000000000000000000000000068f27b9c000000000000000000000000ab033296c694b4890e49a0a7ffe01cfd212619c000000000000000000000000000000000000000000000000000000000000000170000000000000000000000000e59bec273184dbaab3123d7ca0df72f24c79f0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002aa12d573a230bf768957e69e5e53dc6fd6ad36b9be5e98b7aec3bfac10cc657c00000000000000000000000000000000000000000000000000000000", + "nonce": "0xc", + "to": "0x337685fdab40d39bd02028545a4ffa7d287cc3e2", + "transactionIndex": "0x127", + "value": "0x0", + "v": "0x1", + "r": "0x37de0a64cd2aee9b796b1075565a78271f3d20080a9ee7a1a66f01c51aa09c58", + "s": "0x68db23d2ad0eb2f7d3da0681c312e5e56fde77b5e076b6c6af4307d977856bb6", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2f985f9a", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x814ecced94fd1ffd49fe72978346bd13802c6c5d", + "gas": "0x2420a", + "gasPrice": "0x2b18589c", + "hash": "0xe3b1594df0a601d37d54d1ccc947da14d0be5f55e2fb0b0dc049c446efcace12", + "input": "0x5e15c74900000000000000000000000000000000000000000000000000000000000071a4", + "nonce": "0x8c", + "to": "0x48c11b86807627af70a34662d4865cf854251663", + "transactionIndex": "0x128", + "value": "0x0", + "v": "0x0", + "r": "0xf88d1c6ce8518ac54c8b61f88ff924838839cb715682295d375b1ec5a7f3671", + "s": "0x6ab861ace1e17aa11a3f0fe24556d0fc2bacfb576b5bb7e225f9852211abf3d4", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3b83e6a0", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x7ac06e1e8fe2d4243bad5fdbe624b5a712863908", + "gas": "0x22416", + "gasPrice": "0x2b18589c", + "hash": "0x6c744182b86575a42e45fe533b39c65799bf07017d6ade418edb367ad9863f35", + "input": "0x9dd1947300000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000046", + "nonce": "0x18c", + "to": "0xb226c52eb411326cdb54824a88abafdaaff16d3d", + "transactionIndex": "0x129", + "value": "0x0", + "v": "0x1", + "r": "0xebfdd5e702dd4ab258400051028fa4d1618ea8945bc1c62c13192f85d89683f0", + "s": "0x1c04f15dadb45f871eb2c21a1f01b1ad1e2b7db88b5f224eb3392f2024fa0713", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3b83e6a0", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x5f2956d4acc68fc53e99d34a5b84774fff451b28", + "gas": "0x1e5a9", + "gasPrice": "0x2b0d44ac", + "hash": "0x75d99a108f4c927809b77368b953f216f44b2ae6374a6c6b5006931c70a7fa88", + "input": "0xa97c61d60000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000136c63702d636c69656e742d7a6b646361702d33000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000200001000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087f4b8e87b04b1d262fa24c5a7364794eb5fcbda714997af07f77ca92be495f31dfacd3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087f4cb6a5dfe95fd93010380bc9ee572b3fe43d3265427f47412ab1fd47e7d88ea12b29000000000000000000000000000000000000000000000000186f55321a1d32000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000186f27d6d67aa6000000000000000000186f27d6d67aa600000000000000000000013a52453c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004170aa8684766f8bdb9f6169de82166f5693366d5e43997e25d3e1d44cd1324acf787e506e5cf85fd7645755f0f71574fcba8ab27b3d2ace630b916210fca26fe00000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1e33", + "to": "0xee50fafc11baad66d1898d712409866844a8f644", + "transactionIndex": "0x12a", + "value": "0x0", + "v": "0x0", + "r": "0xa2dddd940690fdf2e5b3e3d1a23d1ce70d7bd2fe04c498f0325232653595c131", + "s": "0x72b529183596efc1ed89ea77121fc553412c5c5f7eb5a3135b5a72b2f4026d2c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5e60c2f2", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x28e66a529bbda3b02ef0f1952af5a0ac785aced5", + "gas": "0x32d22", + "gasPrice": "0x2b0d44ac", + "hash": "0xa6221e157b918025eb87e11c5ba07d705049db815f076d866cdea7b41b359723", + "input": "0x07ed23790000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a190000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000005141b82f5ffda4c6fe1e372978f1c5427640a19000000000000000000000000028e66a529bbda3b02ef0f1952af5a0ac785aced5000000000000000000000000000000000000000000000000005c5edcbc290000000000000000000000000000000000000000000000000000000002cc54d571230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000005160000000000000000000000000000000000000000000004f80004ca00004e00a0744c8c0900000000000000000000000000000000000000004a183b7ed67b9e14b3f45abfb2cf44ed22c29e5400000000000000000000000000000000000000000000000000005e96630e8000416066a9893cc07d91d95644aedd05d03f95e1dba8af02e424856bc30000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000380000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003060b0e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede540000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c8bb5270910000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000718477c471b335ee0ca29b9f4b95edd26d2ede54000000000000000000000000111111125421ca6dc452d289314280a0f8842a6500000000000000000000000000000000000000000000000000000000000000000020d6bdbf78718477c471b335ee0ca29b9f4b95edd26d2ede54111111125421ca6dc452d289314280a0f8842a65000000000000000000006963f2b1", + "nonce": "0x280", + "to": "0x111111125421ca6dc452d289314280a0f8842a65", + "transactionIndex": "0x12b", + "value": "0x5c5edcbc290000", + "v": "0x0", + "r": "0xa85fd13146dd7f0a79f99d09af44c94784d794c7e117c75ffafc2af30f78e815", + "s": "0x27dccedafd2bf390732d5b7e0af830f37675541aa63b7975caf09b42b3afc4cf", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5eab0252", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa8bf26cd76d980975820374df98c55433649f0a3", + "gas": "0x2a2a9", + "gasPrice": "0x2b0d44ac", + "hash": "0x9a2e771dde0d6852360f6a7fadb6a85f1c9acf60375cbbd11ddab26db6db4944", + "input": "0xea598cb000000000000000000000000000000000000000000000012616360d7677f2bd67", + "nonce": "0x151", + "to": "0x3f69bb14860f7f3348ac8a5f0d445322143f7fee", + "transactionIndex": "0x12c", + "value": "0x0", + "v": "0x1", + "r": "0x22a0d534fadaa1ce888c0d86d48b9b98264cf9e6d8f718f3709c540250435260", + "s": "0x6be26aac84d4127c65cfddc03b6590e64cd7b9634c4562ea6a8d142b04a8b85f", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2e859fee", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc6a56642fba23141ba7cdcae4e5cb37b4135188a", + "gas": "0x1ab15", + "gasPrice": "0x2b0d44ac", + "hash": "0x3032fb35fb0443ec329db63e7193e307d86a84814bc27f5378de4ee25883c14a", + "input": "0xe8c8f3f9000000000000000000000000c6a56642fba23141ba7cdcae4e5cb37b4135188a000000000000000000000000000000000000000000000000000000004506bef0", + "nonce": "0x3", + "to": "0x3b4d794a66304f130a4db8f2551b0070dfcf5ca7", + "transactionIndex": "0x12d", + "value": "0x0", + "v": "0x0", + "r": "0x43a2bf82522b55dba2bfc92dc17d80a1a8394aaa62b2a7773be40514e2827fe6", + "s": "0x41a79183fee201e8e6603e04cb5e549cf3415af07b1e6bae57aa160000e89807", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x38d4c804", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x21a31ee1afc51d94c2efccaa2092ad1028285549", + "gas": "0x35d14", + "gasPrice": "0x2b18589c", + "hash": "0x97a74cbbafc4a5dad9f1db97ab9a2391881531937b8b692573a1a3a8acbb68c0", + "input": "0xa9059cbb000000000000000000000000592e4d85eaf04159da39bd274a892fddacd501160000000000000000000000000000000000000000000000000000000001c02690", + "nonce": "0xc8c281", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x12e", + "value": "0x0", + "v": "0x1", + "r": "0xe19ef0abda25df75a8d9c02a1cd1ea8f4933e0db969f3afd6610e88e863dc0ff", + "s": "0x6c3b29ca3fcf1fc5f5695b4d3f9d42233033d671aed2d5a4603bcbdbbcd8428f", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x1daf979b00", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x148c5b29cea37000b8b8fe0e48382d18b1cf522c", + "gas": "0x1759d", + "gasPrice": "0x2b0d44ac", + "hash": "0x3cf339ec5bfae24ee16cad945e170980adb9df15da20014ff3922621cd0e4a6c", + "input": "0x8993b5f80000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000028600000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000cbb7c0000ab88b473b1f5afd9ef808440eed33bf00000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001478c3f2483e3bbd87f8498179ac754e77b15e42aa000000000000000000000000", + "nonce": "0x25d", + "to": "0xf6680ea3b480ca2b72d96ea13ccaf2cfd8e6908c", + "transactionIndex": "0x12f", + "value": "0x0", + "v": "0x0", + "r": "0x29266601a3af2a60f25bb1ac24c44ff6e553f2377fc6f480ce187db6063978df", + "s": "0x55fc7db3edfba3326317023844cf7fd03f3882764f2b8faaee0d0ff3eae741b3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5e60c2f2", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x292867f711a7e648a0de6fc01258e03bb48356b8", + "gas": "0x13f10", + "gasPrice": "0x2b18589c", + "hash": "0xe7319e5640482b53e06a2257a17a93a1975769a0df84be507ccc6f10dd6366fc", + "input": "0xd7a08473000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000020c8de500000000000000000000000000000000000000000000000000000000068f260bd000000000000000000000000000000000000000000000000000000000000001b8daf36090ed92f56cb263dea2ab1bc88fda244e440dbe4b8172c55bb300dec16434950d8aac4985cd771fcccbf1746cf60aa2a2a81169398a9bf92987f996c1000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000304ae328590000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002002620b8636225cda2c7c7c9cf487ccb7e6f291861b11767546249c7bdcd831e9c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000292867f711a7e648a0de6fc01258e03bb48356b80000000000000000000000000000000000000000000000000000000020c8de50000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000572656c6179000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6a756d7065722e65786368616e676500000000000000000000000000000000005c9d83c0b853a478727309676f44e868af7fdc6603c26ec90a9a67230dd24330000000000000000000000000292867f711a7e648a0de6fc01258e03bb48356b8000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e58310000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004131c422e2cc51a25598ab7420524a82e10260154826d933ad89f698d6db1e1af406d3a2f286d5f97f507872bd0343f4e018c814b1c8f8cb6ffad37068930ba15b1c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x63", + "to": "0x89c6340b1a1f4b25d36cd8b063d49045caf3f818", + "transactionIndex": "0x130", + "value": "0x0", + "v": "0x1", + "r": "0xa17b63ecd57c9f64fb36b21082b9955cda1325c693469ae9ebe7d8ba1faad270", + "s": "0x5b6a52984e058e06a4b2b0b207c5a0aeed26914f6af311e9eff1d76c1efb05b3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x35d5bd00", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2915047af5c1403102fe8b7db1fb4c71cadadb22", + "gas": "0x186a0", + "gasPrice": "0x2b1b65dc", + "hash": "0xa92116267a6d1ad668f0c6d6682d3610ea8b0e00d479f0917be8a13b3ea068eb", + "input": "0xa9059cbb00000000000000000000000093072b62721451efe9e2424bc99a369f7e0bea020000000000000000000000000000000000000000000000001d3a1ec5a6812400", + "nonce": "0xa", + "to": "0xb23d80f5fefcddaa212212f028021b41ded428cf", + "transactionIndex": "0x131", + "value": "0x0", + "v": "0x0", + "r": "0xe6c8adbf7e631196decfd9071184fceec8bcaf5390b362d81c20cb095c9eab6c", + "s": "0x2d6db9d5dfd2a8a5bb1671e50a152a2b44a9e61f94336295ed9678bb2397c73d", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x48c6fb40", + "maxPriorityFeePerGas": "0x2191c0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xdb92e6eddfbe56ea158b32de3e4b8947216cc437", + "gas": "0x14820", + "gasPrice": "0x2b15997d", + "hash": "0x08ba417e89809f77666f8a9bad33631d14524c32078dfb171a623da753ce698a", + "input": "0xa9059cbb0000000000000000000000007a7a0749a544913b9d2ee9a7bfc31cde90a0d19d0000000000000000000000000000000000000000000000000000000ba43b7400", + "nonce": "0x2a9", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x132", + "value": "0x0", + "v": "0x0", + "r": "0x1aba8317e607ce45b95408d8e063e0005c04499e6a601b8419680459a5c07cd4", + "s": "0x16775c2fe670ea2257806a31a21dda560dff986f5e4e17a073c87942b20242d5", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x336e0254", + "maxPriorityFeePerGas": "0x1bc561", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x886ff5cfc9075373a165c3e1c80d53d0838aa673", + "gas": "0x14ecd", + "gasPrice": "0x2b0d44ac", + "hash": "0xd8aa25ce586b32c3672be2647a87e750c4a9eefadeb335917a2851ffe742b5e9", + "input": "0x2e7ba6ef0000000000000000000000000000000000000000000000000000000000000793000000000000000000000000886ff5cfc9075373a165c3e1c80d53d0838aa67300000000000000000000000000000000000000000000000000000000000070da0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c978a577a9a21e3efd3baee9c5f5410a3c6bc7ff4c3dd2032c90f336309764854e9e3403aab503dd3ef25ae386e7ce31097cdce52099a8a31d6bad95903e9766be8e430a96bf37f44661e547af50527b796df695a84b51f0096488a8c938a470b697e7565a300a3e29a473cf2d73782baa901ee8f0ec4b3d5e8681c532c63b8cbed6ef6b75b177a1ef8a8d7eb0ac862840424a56afea6088da6b049a8153fd79762c6853b1eeccb7cd900148f993846187b93bfa9b41e3e0fcd58594405f49701595b4014bd01f3807bec50e2a9e394d911031d9b40b731e5934c2da7482cd26ab10af4745c9a9359d6e09dcf953fe581e628217f336beacfd2b43f3073c57ab8ed10d9d424284d66c4eff4179642b632cb00b510f197bc22e5160933f57af1f656e09e229d0c0f0f57c7dd4e954904c91e762e4068343ee38139d8be55fc65eff1f07ff81948cb22c6062e449b1923b893372d5d92e6e0edeb4bbf795528b8b3e3e2a2170e61bf686a5b53272dc8cd70ef2854bcc9307a62570db3dd2a3a3820", + "nonce": "0x7", + "to": "0xd8295b9e6b2d87c3eb4dae97614c8e907a14f5e1", + "transactionIndex": "0x133", + "value": "0x0", + "v": "0x1", + "r": "0x5db84a0c0bd90bc9e73207800962b56672305ea1407342472db2401851bb06a4", + "s": "0x3da611a980b8b393a03745a75903a21f9f8fa33b6bff8d0f74d2ab5569d00a09", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5eab0252", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x0fc5186f980e0b3ee1fe522e737ebcea5d7fe9d0", + "gas": "0x1c18a", + "gasPrice": "0x2b19df3c", + "hash": "0x7ae337d50d58e4095f134e719b23cc275f009dbf828b7f681e5b6f3618b3382d", + "input": "0xa9059cbb0000000000000000000000006b2236b701e6eded549f0b0738e711999d828948000000000000000000000000000000000000000000000000000000174876e800", + "nonce": "0x3f2", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x134", + "value": "0x0", + "v": "0x0", + "r": "0xc4f2c5c866810001fe1242d9fada4ee447073b9679b3b427fce8ec813a35509a", + "s": "0x285be2f80835cc35af7475821c656bdde6777b96c0fe12500985812c53c77116", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2ff5e13f", + "maxPriorityFeePerGas": "0x200b20", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xc1da33e8d60daf4f93a52357a57a076f44c45759", + "gas": "0x14820", + "gasPrice": "0x2b18589c", + "hash": "0xaa53e13c0261389fb601ed1979a20f10b4f5dee9cb9c1697b7cf4442a3b5a0dc", + "input": "0xa9059cbb000000000000000000000000abd8ff59ac244e998d06716fbecade7496853b03000000000000000000000000000000000000000000000000000000000d2b53ba", + "nonce": "0x29be9", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x135", + "value": "0x0", + "v": "0x1", + "r": "0x2a98062f629d229baa37fc53a794dddf5e46984743052091bc9b1a7deeac481", + "s": "0x85ce025200c90c5ebcadbe7e7d2f571c1e65ef7c81a7cef6fe3547a5275d71c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3a2d3fb5", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9696f59e4d72e237be84ffd425dcad154bf96976", + "gas": "0x35d14", + "gasPrice": "0x2b18589c", + "hash": "0x291ef2511b18afc1b9661cc94f10ce7c52e5068307b78474654a839b0551fc80", + "input": "0xa9059cbb000000000000000000000000a3d94158e99cc68217568bbae049ed1b7ed13f4700000000000000000000000000000000000000000000000000000000055b208a", + "nonce": "0x7f6e0e", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x136", + "value": "0x0", + "v": "0x0", + "r": "0x62954f464992509d0e93e9b9a13afcb14ac9492c7fe4e8565e5ded3e9debe8b6", + "s": "0x5e66cc300233af7ed828fa48701bc118534a04ffb94d554d822799bdf562a646", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x1daf979b00", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9696f59e4d72e237be84ffd425dcad154bf96976", + "gas": "0x35d14", + "gasPrice": "0x2b18589c", + "hash": "0x9577f2a2faa4fe731f9f411c16e8420bf86b38baec8493146fe3ed6b29fd8879", + "input": "0xa9059cbb0000000000000000000000003391203553cfc003e50ead217bf6ce7747c2244d00000000000000000000000000000000000000000000000000000006fc09bb60", + "nonce": "0x7f6e0f", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x137", + "value": "0x0", + "v": "0x1", + "r": "0x516cf67100c443dcc540debf81fb134e067542cbd2c089c4a15840b407cc037a", + "s": "0x6d441b916190b16c5b74a28e1d6631398058f12e80e708e3c47b74187ae33c95", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x1daf979b00", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x58c42647eb2cee1686c3ca596e31dd69a8c993d1", + "gas": "0x14820", + "gasPrice": "0x2b18589c", + "hash": "0x3aaf6191edae8f72c394ab14b92aa813d2fdcc09d156f20faa70c6613878dddd", + "input": "0xa9059cbb000000000000000000000000da8b353fbde44caaecd315d290ea4840e86a2ea40000000000000000000000000000000000000000000000000000000073bfacfb", + "nonce": "0x630a", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x138", + "value": "0x0", + "v": "0x1", + "r": "0xbc985724e06c4961050c2bd9e328527ac3c30df86208296227e59430e7016a7a", + "s": "0x23faf134a7b47fa9b4bce6aedfb71cd19c6c816ec0163e2c06741ca7122ac4b6", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x58c42647eb2cee1686c3ca596e31dd69a8c993d1", + "gas": "0x14820", + "gasPrice": "0x2b18589c", + "hash": "0xfc3a248418b2b14ffd33e05611c17dc110108eb98937398654e9627ae7009b1c", + "input": "0xa9059cbb000000000000000000000000da8b353fbde44caaecd315d290ea4840e86a2ea400000000000000000000000000000000000000000000000000000000848f9149", + "nonce": "0x630b", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x139", + "value": "0x0", + "v": "0x1", + "r": "0x1d387c3746301133c6e49a64c3d8dbdf2bde744eb0e6a67fa6d2e6a242c6f1ce", + "s": "0x3b772f642af3671647472ebbcfdf839e9285bc181e5e4de6d207c3cc6cef82bd", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3a2d3fb5", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xae8cbb7e810f59fd0dd939b2b6623756d91b174a", + "gas": "0xec25", + "gasPrice": "0x2b16fcf4", + "hash": "0x7d53876fa011c9fe90b71c96a95a511fd1224e059f9420825687d1942f114ed5", + "input": "0xa9059cbb0000000000000000000000002cff890f0378a11913b6129b2e97417a2c3026800000000000000000000000000000000000000000000000000000000689d4919d", + "nonce": "0x14fd", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x13a", + "value": "0x0", + "v": "0x1", + "r": "0xc41300024273fab008bbbd56de897f621292635def66c64e6f350e7d5ade4980", + "s": "0x7c40e3751a607a4d9f57b28f8a95792c8ef78231cf587de62dc2bdff21b79787", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5f2706ec", + "maxPriorityFeePerGas": "0x1d28d8", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x9c702b81d1ebde37fa75abe628cd524648a8a4ab", + "gas": "0x14820", + "gasPrice": "0x2b19df3c", + "hash": "0x8c932c318e40cff68d29a479f3ea96a3f430f13f9f7a937de55e4d86d2ca7d86", + "input": "0xa9059cbb000000000000000000000000df0955ae93f72d656223acf8b83c951f654521a000000000000000000000000000000000000000000000000000000006ce51c870", + "nonce": "0x34", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x13b", + "value": "0x0", + "v": "0x1", + "r": "0xf86b9c75e2516a9e11c6e6b28c827fe7390eb310a6ead71c201f6c488f1e6fb7", + "s": "0x7b789d7e33521eb44fec32fdc8dcca61e95e99e440b3cf3409245afe71e17c36", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3c8649b8", + "maxPriorityFeePerGas": "0x200b20", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x176e6608cb2d0fdfb5b6f0a8aa7bf8bb7b125cd5", + "gas": "0x14820", + "gasPrice": "0x2b18589c", + "hash": "0x932e54cbde917a6915a2383c88f0a0d010a66d4d6c5677ce0bb1ffae7c6badd7", + "input": "0xa9059cbb000000000000000000000000359beaf5667fadcd62ed0ae832ee526b57e98e8f0000000000000000000000000000000000000000000000000000000003938700", + "nonce": "0x2", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x13c", + "value": "0x0", + "v": "0x0", + "r": "0x54a8fd3921ef1e61ba2f852d6e83395cd260480b61d23dfa78de45830646c18", + "s": "0x5b03ca9b086c2498ad1d0d113f5736852d3d3106389bc3ca36209ad6dfd234ab", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2239eccb0d91c0c648b36b967bb1ef38c5b2b13d", + "gas": "0x186a0", + "gasPrice": "0x2b0d44ac", + "hash": "0x7640eeb9c1c253e1f356721aee7daa5b3d38279b03847090c3275ad080af90f0", + "input": "0xa9059cbb00000000000000000000000015308a3c7965e3040678bf0c3e523f2a353f529d0000000000000000000000000000000000000000000000000000000005a995c0", + "nonce": "0x10b03", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x13d", + "value": "0x0", + "v": "0x1", + "r": "0x6631c77ca6a872f55e160c9b7100e9d840c47567fea8d2f2445e4ecdc2dbb545", + "s": "0x49abfb327aa5cfb3e79cd7e74caf5d46b19955c2c7c43ee29d59ecf10e234bfa", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5e60c2f2", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x187fe1a8b76c60b85c00a2819152ff00ff642386", + "gas": "0x186a0", + "gasPrice": "0x2b18589c", + "hash": "0xe69b509f3d099c581c610c928b30564128df771717fb106ca0b7c906e47d8520", + "input": "0xa9059cbb00000000000000000000000080787af194c33b74a811f5e5c549316269d7ee1a000000000000000000000000000000000000000000000689a684d33a25f3dc00", + "nonce": "0x9b21", + "to": "0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66", + "transactionIndex": "0x13e", + "value": "0x0", + "v": "0x0", + "r": "0xc7bcd013fc69a1b71d93b70374311c5e9c60e9dc3e884bf4d933d885fc87349c", + "s": "0x5a35c43d5735d3a9845824165319a2eae11006891a5c1adaa2aafb1dc6010b3f", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x77359400", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x4b5f834ede79c52bd33d952c719a0b641a0310ea", + "gas": "0x186a0", + "gasPrice": "0x2b18589c", + "hash": "0x7485fd7df3e8d5a9bc873c451304a0ac02ad07107d464ba0482ccda92e2b07aa", + "input": "0xa9059cbb00000000000000000000000080787af194c33b74a811f5e5c549316269d7ee1a0000000000000000000000000000000000000000000000549b98c03ed2e65000", + "nonce": "0x4f5a", + "to": "0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66", + "transactionIndex": "0x13f", + "value": "0x0", + "v": "0x0", + "r": "0x61f9812ca4b8e690b37106fa4e73150bdb74cb7f138d7423e8f1eed7113b8e35", + "s": "0x4e557d4f64b7e5742b4a77e63bc03457cbad1bae3c97155c546c7c4f5371fb99", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x77359400", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xe25a377ed4d688169e15fab1d6dc783b16e250e7", + "gas": "0xd843", + "gasPrice": "0x2b0d44ac", + "hash": "0xf63e779f44fc5729582c3f86452e275b8d67ca6c19e8a5f72f35a460f68c1c8a", + "input": "0xe00af4a7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "nonce": "0x2d92", + "to": "0xe36c55a5cc0022d7fae46ad7505003b958da4d78", + "transactionIndex": "0x140", + "value": "0x0", + "v": "0x0", + "r": "0x56c6e512bde84e352760d97dc2ad99b15209f1a88289b253609ddb815accac3d", + "s": "0x7e97a6a7ed5945b984588168cbdf5e5faf5a20e079a953df1d38d4377130ee6a", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5e60c2f2", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x535d38808a328a102486e171e91097e2ce5c96b4", + "gas": "0x14820", + "gasPrice": "0x2b0f30dc", + "hash": "0xa42120399ee2093bec0bc541a052ca59873b243e399219f5b55e4c45d9ae6341", + "input": "0xa9059cbb000000000000000000000000307576dd4f73f91bb8c4a2edb762938e8e067d310000000000000000000000000000000000000000000000000000000001a2a508", + "nonce": "0x2", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionIndex": "0x141", + "value": "0x0", + "v": "0x0", + "r": "0xee4c8177a9ffd2ea3d66e394d6df583ffa417957cb6d21733765fa39c7d0b22f", + "s": "0x4041bc9f6f84331c31c3801657342d6ec7367bff50bb37edb93d53020bdc6da6", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be0a866", + "maxPriorityFeePerGas": "0x155cc0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x24b960aa7d032bcb0bf94984c170f31bcaa1dd27", + "gas": "0x14820", + "gasPrice": "0x2b0f30dc", + "hash": "0x80333baec7214c68a10934a5993692c51e54bff17e181ef4f3e2148327d31c09", + "input": "0xa9059cbb00000000000000000000000039db0277eb428ea84953f71ae59bd5fcefa42efe0000000000000000000000000000000000000000000000000000000165a0bc00", + "nonce": "0xa", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x142", + "value": "0x0", + "v": "0x0", + "r": "0xe5df72c00bf5bd03d81611b8b51843f2a631358139b2771f4fd98a0d1fbfcecd", + "s": "0x135a17a7b20e8970872c2d31b6191f827ffaae96bbbec6adcf995579a3afbef0", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be0a866", + "maxPriorityFeePerGas": "0x155cc0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xe096d51e5b2b2978a622c4233728dacea0c4284f", + "gas": "0x9822", + "gasPrice": "0x2b0d44ac", + "hash": "0xc8b9855a7ab908f053736a0fa1dd8c1ac393e8aedcdfa96d705ae8da12dfd8e2", + "input": "0x095ea7b3000000000000000000000000a2754543f69dc036764bbfad16d2a74f5cd156670000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x2b2", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": "0x143", + "value": "0x0", + "v": "0x0", + "r": "0xe141b6045c684860abe9fe07788cce2e4282fc7c9da9db803e59063e88ba5e66", + "s": "0x3d407ddc645bcc76c3010d9416792acaa5b370d0e6a7565163a58fcddad12881", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2e859fee", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x19ba5a267a010641db721c4a4ed69708c3183cdb", + "gas": "0x5324", + "gasPrice": "0x2b18589c", + "hash": "0x7cf65117467eabd32b28f8cb92aee1d006c05b0058858c4fd9bbd286dcbdffab", + "input": "0x", + "nonce": "0x0", + "to": "0xd8c0f946c55245017ca17338b5ecbcead7f55a5a", + "transactionIndex": "0x144", + "value": "0x1bc159f2136a68a8", + "v": "0x1", + "r": "0x128b25594641ac9d07e7badbf3c0ac06ac05827cd3845a39490088d18a49acbd", + "s": "0x763e5e4d1c06a6fd55605888cc298d99a5820529a2fc9563c2d4d76312f3", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x72ad5a130f45ee1d4eb249f6b463b899d0be6df3", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0xdc354281ebecb444f2258b680238c85aed034527f54345bfe06c7a80d970af6e", + "input": "0x", + "nonce": "0x1", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x145", + "value": "0x15ded82000822", + "v": "0x1", + "r": "0x6e28f321517924cdf459f9e78317fac895ef5e96767e2c103146906288a4d99a", + "s": "0x7bb1f42454e9a9925cd2788018eeea56ca7b91a702006dbf9150e8515459452a", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xb87d600f972b79e67c7c1cc8e8c3d1bc10793662", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0xcb2113b5b4b0f39423f5503fd0fcee6ce8b2fbc79884391fc10863937c212854", + "input": "0x", + "nonce": "0x1", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x146", + "value": "0x15e9fccec3e50", + "v": "0x0", + "r": "0x11a505e6e73b7dd710736e29ab414b6abba482d58216e85a0853972b97f5a757", + "s": "0x1b158088b5a0ff2cff87d879ea2862f8d7eb029fe07589a92a6d0849714a85db", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xf04c16268e739fb1d3bab3425936a2e1e4ca9db8", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0xc2f984f368579a7fc56ecc280ddc731e872005d7eff7fdc59cec7e321b1e10ec", + "input": "0x", + "nonce": "0x1", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x147", + "value": "0xd9515005ca20", + "v": "0x1", + "r": "0xd7fd886375e6c05743c346a1777be44b0fe674277c687dc43cb7a5bc9bc6e514", + "s": "0x7f5e5905f8db34c54750c40eb3e666514a32627193723122df3e5a256337cfb0", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x4f98af7ad0b1fa3b9deb24a6d89a83fa8f79ccb4", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0xc2526a9ff4b8e37eccb4eea37b8a7fef1b5f42f18c67490c54cf19b5a7fb3a1a", + "input": "0x", + "nonce": "0xe", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x148", + "value": "0x1f1ba5fc9a98a", + "v": "0x1", + "r": "0xe6ce5468b69bb526c48afbdc6f012ca717a29a3fc08c57cf8932fe76beedaa5a", + "s": "0x770a5e7c7b81c04f4747960378daf0646f2e03b8ea9b98399711aba1f029d8fe", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2409dc7039fc1d545487eaf869b68307a82b4887", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0xaa2665af3eeecb32da61cbdf4e5a28ca6c2ad67739010b86dda6fb460c6ccaf8", + "input": "0x", + "nonce": "0xb", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x149", + "value": "0x3140aece344ab", + "v": "0x0", + "r": "0xd47defff707263fd8d9a7637d1e3a2f2e0ed5e2818cf7e6a193272bc449d0653", + "s": "0x653176b0e71431401f9d370f7b21e85114b7284988dfe35ccf80bbf44bc2331c", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa602d4a8850240f4780588eebf6c6cab2c3388ba", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0x8482c8bf42edc335b33500800c07ba7970c8a48ba9b72ef950af795f4bdf7d18", + "input": "0x", + "nonce": "0x1", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x14a", + "value": "0xa82a34983500", + "v": "0x0", + "r": "0xea1946ac4a8afcf328a6ca7c586e38c65a22520151eb6c202959df367ed86f5e", + "s": "0xed434b485e5af3e0f4d54897d3e302c6d45690bf65810b2f052e8b44a466417", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xad3cf908f93b3c044d502b06a3a63d738dc50dfd", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0x74db3a0c9485efd33441395dc5da139e870dd2a3737bd8b149b5800a3aa0357c", + "input": "0x", + "nonce": "0x2c", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x14b", + "value": "0xb48fff7a0db0", + "v": "0x0", + "r": "0xfaa06c39f4df9ef32d6b0eb8ed0d9577746809c32933731bec2044c791f9a165", + "s": "0x52d63d253f21d1f0489e6ff3ed5696fb9b133a4de7236be1f2fdff71c557f5b5", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3c65386bc520a100a38a0603721de3967ed40a85", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0x5230ce4e2a17bb923e27a0e59af2d6d147ddabc5b38f161a5ce910fdf4ab436e", + "input": "0x", + "nonce": "0x92", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x14c", + "value": "0x2299fef65a0e3", + "v": "0x0", + "r": "0x8391cf04760b109cc085a5daf8a8c08465d6b0c396e2898c503d94f29d9e7373", + "s": "0x5bf624c576635c44f980aeefee0a5ecc7fe243429df4cbf63aa8f463b90ce830", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x4976a4a02f38326660d17bf34b431dc6e2eb2327", + "gas": "0x32918", + "gasPrice": "0x2b18589c", + "hash": "0x4d3c1bd14b4301cdf4986da1a19a418e9dcdcd9d2d0664a8980305f884641c6b", + "input": "0x", + "nonce": "0x51437c", + "to": "0x5f6be61a38e19b3153a7b429bbed52ed79cbeb6c", + "transactionIndex": "0x14d", + "value": "0x155387923bb2800", + "v": "0x1", + "r": "0x48d621f100f6f6b005c31f01b99861ac4182707eeabf337fb229e43fd82abf2d", + "s": "0x47d09667b139c2333a126b9933385012648c5c2cfca58e7a72dab4ac7309fca5", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x1daf979b00", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xa7a0a400e636875503e736de61817ee385c9a405", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0x444fa9990dd4505a44f9e0f30b58a611838e84b931b1492569b8041a8f85be01", + "input": "0x", + "nonce": "0x1", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x14e", + "value": "0xfe0187f89ae3", + "v": "0x0", + "r": "0xe412696b32f8d1ff7860bfad612e54fea8163653bc5b1a1e261414e35fd08a2f", + "s": "0x189232079254d31206542b5c4ffc4a472ef0fa472d4970b2e2b350289cf773ab", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x2f9d50c372e1dce85dd40a4c9d89916ab39d3d11", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0x2b82616fddc9a3d984f5ee17b795277b7e51941454a6361d3c6c8a0d579a52c1", + "input": "0x", + "nonce": "0x2", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x14f", + "value": "0x1eebc66835d8d", + "v": "0x1", + "r": "0x74150e07135852858f92e1b02935ee514f34370317e4fb3164e0b4aa0ab5387b", + "s": "0xd5f69048f4a14cdccc1db0a620bf8befe27d0920c88d500fed79bf90a071e96", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x1d6aa27d40afa6fc6d8ae44284e40b1a15cb0977", + "gas": "0x5208", + "gasPrice": "0x2b18589c", + "hash": "0x01df65c612c2f6be68ebf1709ef0d3473451ed3e2c1287e63ae21580a45e2349", + "input": "0x", + "nonce": "0x1", + "to": "0x6f903af4eb31cc56454c92ce08abda51ddc02784", + "transactionIndex": "0x150", + "value": "0x2467e5e1358c2", + "v": "0x0", + "r": "0xeebec5a5a00e25b35e48f43e7cdf64b007648b6c82a5b344b985e6c75df3a913", + "s": "0x405c1169d7dddc4f43796bba492ebdb07e600d0f67abfa4d4407f18c9785eb20", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3be9d026", + "maxPriorityFeePerGas": "0x1e8480", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xee38a2c8777d2362baa57376392e76c4f4cfdfd9", + "gas": "0x8252", + "gasPrice": "0x2b0d44ac", + "hash": "0x0bcb1f1e3b1bbe9fb1b7e59ec48dc614e8c44215289db763253720687e09ba61", + "input": "0xaefc6fb3952d799e640699ab2c44c7765450e2f90132f7e03e2a1b96ae8135b6", + "nonce": "0xc", + "to": "0xa5f565650890fba1824ee0f21ebbbf660a179934", + "transactionIndex": "0x151", + "value": "0x26487eb1c69dc7", + "v": "0x1", + "r": "0xce1ff850b38a5e1b7642f4311c5e7bf92e2736ad1f7fa60ab4a8b9c2f8189250", + "s": "0x216ef79d2530e35858e0b44cd4db72bf0a693f9847d19b6e9a8fbe02fe5f1aef", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x38a83b97", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xbfbf3bff649d51761159f73db8519f7196995425", + "gas": "0x5208", + "gasPrice": "0x2b16fcf4", + "hash": "0xeb79bf1670dbb66da35f2cc83ca9bbe5a19b39e4a7f60382cd78d73fd5c562a0", + "input": "0x", + "nonce": "0x0", + "to": "0x016606acc6b0cfe537acc221e3bf1bb44b4049ee", + "transactionIndex": "0x152", + "value": "0x4c4ba1ba262ac", + "v": "0x0", + "r": "0xf16ece04646f59e990971bde7274a79668e3d3a9324a8682a1dad62b4a0145b8", + "s": "0x729b111d9efb787844297e803c4b96893f17ba31ff3ab2d193c2d18cddc527ce", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5610d110", + "maxPriorityFeePerGas": "0x1d28d8", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x941b7682d02a7c230a684f829ac88999c8a335fe", + "gas": "0x5208", + "gasPrice": "0x2b16fcf4", + "hash": "0xe70e2976b5d14431aca74869a2b3ff45f8cd1bc996127a03a22252613a42a061", + "input": "0x", + "nonce": "0x0", + "to": "0x2cff890f0378a11913b6129b2e97417a2c302680", + "transactionIndex": "0x153", + "value": "0x27147114878000", + "v": "0x1", + "r": "0x4b4b4ea0ced5436dce697b5469f97e935f91d1bc081133006185bc11ff6beafb", + "s": "0x4b46dbb9cdff5240becf4e3e312e3c74c7391244d261884dfbb3c8eba94851ca", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x5f2706ec", + "maxPriorityFeePerGas": "0x1d28d8", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x3161dcb17c7beaf05f23cdd6b8655ef6e9d4d26c", + "gas": "0x6e7c", + "gasPrice": "0x2b0d44ac", + "hash": "0x953c68f74a0c999a9a99f078972082bce85ded89e0e902472ef76c7f36e01090", + "input": "0xd0e30db0", + "nonce": "0x8d1", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "transactionIndex": "0x154", + "value": "0x9541b1004dc000", + "v": "0x0", + "r": "0x8d4e73aedf7707af916d8856e5f9027169879486d7c8c87bb00e4ed9fe1d5841", + "s": "0x382138137c25d300cbf6b9619fcb078e16306097e1106463a6fddf9613f61bfe", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2e859fee", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x4e5b2e1dc63f6b91cb6cd759936495434c7e972f", + "gas": "0x5208", + "gasPrice": "0x2b0f3654", + "hash": "0x723452246eb62d087f44cd68eb29d5eb06df60d97da88a11722b3b1059d69dc6", + "input": "0x", + "nonce": "0x12d906", + "to": "0x34e184f1fcbc3f5d2dcca141377669c0e0baafc8", + "transactionIndex": "0x155", + "value": "0x4a495592c4b00", + "v": "0x1", + "r": "0x2079ab63dbf1e0c53fa3740a6acaf7b4b905a335d2b1ba1ffbde4b9ef4a315c0", + "s": "0x1352a43e49273f2ec2a709d7106634f6222af183f4781f50d28320aed301d2c8", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3e128638", + "maxPriorityFeePerGas": "0x156238", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd1492a8031b0c37c1034c7fbb57d8d5638eac527", + "gas": "0x5208", + "gasPrice": "0x2b0d44ac", + "hash": "0xf7545521022412519dac5fe0db660d73fb7ca1f2a341edeabb316a317944f287", + "input": "0x", + "nonce": "0x1", + "to": "0xbea9f7fd27f4ee20066f18def0bc586ec221055a", + "transactionIndex": "0x156", + "value": "0x14d0fc8aa0b0c180", + "v": "0x1", + "r": "0xe25c58fc433162b5673c2518cf4742aea7386347cea959d65985ad767a562440", + "s": "0x75f29aa348d84826b2b57b8c5dde3f1a0867b6475cf4027e4f7507d3aaa1e7bc", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x432193d0", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x264bd8291fae1d75db2c5f573b07faa6715997b5", + "gas": "0x7a120", + "gasPrice": "0x2b0d44ac", + "hash": "0x1f7c39f1f6238e0f52134f59d68fa1ffdfe6212bef9143d6a4183c3d377d8fc8", + "input": "0x", + "nonce": "0x3d7256", + "to": "0xd407c5ddd8c42c1895b1ac867842453e36ce95f6", + "transactionIndex": "0x157", + "value": "0x2fe2a6d0be9400", + "v": "0x0", + "r": "0x1bdbd405e6fdbad1fb194a37c7e2838b94a66789ae8f6bf30771fd77e42b4ba9", + "s": "0x13e8fef2f2aa28d1fb3e055fbbf45f21e98d390c5acf226dad7b513a16f290cf", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3a5e8c5d", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x520bb1eac51803ece00e75f3c457df50444474b0", + "gas": "0x5208", + "gasPrice": "0x2b0d44ac", + "hash": "0x6bbdac24ed0e8597dfe12b3e4527f7ce222bc00ba018381633128b94e45b8c31", + "input": "0x", + "nonce": "0x3a", + "to": "0x4945ce2d1b5bd904cac839b7fdabafd19cab982b", + "transactionIndex": "0x158", + "value": "0x46b58872e276d48", + "v": "0x0", + "r": "0x731d23eadeb2b3ca6831a5df34d2ff5c64201052cc028ab408546b72f32b0a09", + "s": "0x5c69c7eaa27a90da594a975b302dd2c2e673c333c2fe8faa6f6f1f631948651f", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3b322ba9", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xd40e9c8ce75615c91e6d3c56f9a16c65a6bd3b35", + "gas": "0x5208", + "gasPrice": "0x2b0d44ac", + "hash": "0x314e9f7b7ab41f2d10f28d1773108fd93472aa065594397710358164356d35f1", + "input": "0x", + "nonce": "0x18993", + "to": "0xfbe6ffe1c556053d4f52033204034599c000995b", + "transactionIndex": "0x159", + "value": "0x295d9c50fa5000", + "v": "0x0", + "r": "0xd05b712c6b9e552e990b8739bc10af1210d24c8df9d788838e8ead9a02831ed4", + "s": "0x70a6a77607fb7cf11777f61afe95e21385e5736ca54abfde7ae2edb1e7598fde", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0xb7b58162", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x264bd8291fae1d75db2c5f573b07faa6715997b5", + "gas": "0x7a120", + "gasPrice": "0x2b0d44ac", + "hash": "0xcf361b10a2fe344615628ce125477463200110f410d511147c5a2a1037a8a720", + "input": "0x", + "nonce": "0x3d7257", + "to": "0x5711d6f3490d8420a5963c1c01250e3724ad0ed5", + "transactionIndex": "0x15a", + "value": "0xb6f649a2294ac00", + "v": "0x0", + "r": "0xaa0d4ccd9e57e032bbaba6a506807c35364a90dfb3e667c50be850d9d28023c", + "s": "0x21297ce3e0492cbee3b4a245ba8ae573523209cb240e37027ac0eeb1d05d34b7", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3a5e8c5d", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x92164cd938aff4d97ea2111dc24720dc77bdf226", + "gas": "0x523f", + "gasPrice": "0x2b0d44ac", + "hash": "0xf60ad8d43049df8ae6fa36eabe1b09ef46c52b2a096147def5ce05ca708891ab", + "input": "0x", + "nonce": "0xa176", + "to": "0x2fb074fa59c9294c71246825c1c9a0c7782d41a4", + "transactionIndex": "0x15b", + "value": "0x5e7178376de716da", + "v": "0x0", + "r": "0x1e3c6f4c14948f71661c77fd6bf3ce10f61c00eca54da40a37de7206c545d9d7", + "s": "0x3f88508e3805356370d010fd2b698e9c95e9ee1b9567f4b9fb41cc2412ce3fed", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x3b03c40d", + "maxPriorityFeePerGas": "0x137090", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x4f15818dc2ae5fa84d519d88cb2caae9cd18ee6d", + "gas": "0x7530", + "gasPrice": "0x2b091845", + "hash": "0x7cd6d34d11ea491e3819711aac0fbb8d2b6f5481bc4a41474d269e3bf6df6b1f", + "input": "0x", + "nonce": "0xb8ee", + "to": "0xe472c177fd927372aef2af349797a576ee0a3abb", + "transactionIndex": "0x15c", + "value": "0x471937c29692400", + "v": "0x26", + "r": "0xbb1557bb5be0dd2daa51b922f86d778a7cf6c5c715b069deaf8654fba63eda5a", + "s": "0x77061d7963686cc5cb2399efb510f6c60779e3a47bd32d5de1685965969538fe", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0x17ac1517c30d5cd7f065cb28c4703431bb69d47d", + "gas": "0x32918", + "gasPrice": "0x2fb7669a", + "hash": "0x1f9f429fdce5c0e1b1bc187005cf97ed44ff2192b73d97d4dacb841fd329b424", + "input": "0x", + "nonce": "0x6d46", + "to": "0xc7908bd7819873b470015d5bb868ae68b937eb51", + "transactionIndex": "0x15d", + "value": "0x1c6bf52634000", + "v": "0x25", + "r": "0x2f90b58d1c352c7ff8b455e030a227254bc9a301853c9f4e43323cf6910f872c", + "s": "0x58f278b2efcd5cd80fd2ac3f2505d29a56dedb5c6b0f408fd71458d37b8bfe98", + "type": "0x0", + "chainId": "0x1" + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xe700812d7079b27f37bacc92d7e27c390b129c17", + "gas": "0xc567", + "gasPrice": "0x2af9d41c", + "hash": "0xd18d603eb0f1d37219e6077d07fc0fe64400c73f7c26ccb839b86e677c008927", + "input": "0xe87af67ead20d91723c39664987407263ebeaaf9382d6fbf949be873ccc6f33b865d8597", + "nonce": "0x58", + "to": "0xa5f565650890fba1824ee0f21ebbbf660a179934", + "transactionIndex": "0x15e", + "value": "0x10c93aee58041f", + "v": "0x1", + "r": "0x5439af13eaed296a177ee0602e3297d3355ca51d401629cf408efe55635557e", + "s": "0x7ae509c8f92a4689f45ce52891a801a5b53dd649015c19a45ffa417979140ac1", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x1bc1696ba", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xdadb0d80178819f2319190d340ce9a924f783711", + "gas": "0x5208", + "gasPrice": "0x2af9d41c", + "hash": "0x32cbcce750f82b486ba67fd3babc2407b19405457e3eb1abdb2ead337e99206e", + "input": "0x", + "nonce": "0x1830a7", + "to": "0x03e8482c2bbf8247361b1d6000f138d9f9ca9cd7", + "transactionIndex": "0x15f", + "value": "0x2a29855c72c57", + "v": "0x1", + "r": "0x47f56b9315cdd6dd8cc00135041b2de5f8de69633a70054760ce154f66e95e6", + "s": "0x540c4f0090b081a0d0dd9fdefbabbe84a0127c7a008e9ee97b0f7dfa6dd98ab8", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2af9d41c", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xdadb0d80178819f2319190d340ce9a924f783711", + "gas": "0x5208", + "gasPrice": "0x2af9d41c", + "hash": "0xd1618b6ff4fe0f9c97c1447fe4908d62bea66faf1a0a89cfb1776f4f7729ef2a", + "input": "0x", + "nonce": "0x1830a8", + "to": "0xb423b53d9076b325c0248d62ef74b11adc211020", + "transactionIndex": "0x160", + "value": "0x9a86e6469348c", + "v": "0x1", + "r": "0x322f12b1d8f0a6c7f55a9e975e3a34e83054fa3cb68f0b120586153a00ce4463", + "s": "0x20d3d1485cd2728d46e823ba1926bfb203841313ff34063c36b896b25046498", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2af9d41c", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + }, + { + "blockHash": "0x7bf1564f65804cf38d895690a70fce73068397e5fe99caa68da18121c1d289a3", + "blockNumber": "0x16816a5", + "from": "0xdadb0d80178819f2319190d340ce9a924f783711", + "gas": "0x5208", + "gasPrice": "0x2af9d41c", + "hash": "0xb9f3a45ed2bff1f3daa24bc112a31085816f6fa0d1b781bf16075cec7fc6b130", + "input": "0x", + "nonce": "0x1830a9", + "to": "0x396e52f7ee3f3b3094ba9de35932f0b10ebee54e", + "transactionIndex": "0x161", + "value": "0x7ec1d2ba958c52", + "v": "0x1", + "r": "0xa329b13ab2c0e470b8bb7a97ad3846e8a0cbb447ddb996ad9df56bbb67566e81", + "s": "0x66ba4d6c85071dcf02d054ce4c026bac82aec13ef422f9c574f1b30cb0410060", + "type": "0x2", + "chainId": "0x1", + "maxFeePerGas": "0x2af9d41c", + "maxPriorityFeePerGas": "0x0", + "accessList": [] + } + ], + "uncles": [], + "withdrawals": [ + { + "index": "0x6427d3b", + "validatorIndex": "0xa902c", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x1164294" + }, + { + "index": "0x6427d3c", + "validatorIndex": "0xa902d", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x1176863" + }, + { + "index": "0x6427d3d", + "validatorIndex": "0xa902e", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x1176550" + }, + { + "index": "0x6427d3e", + "validatorIndex": "0xa902f", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x3dfd893" + }, + { + "index": "0x6427d3f", + "validatorIndex": "0xa9030", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x116fcf8" + }, + { + "index": "0x6427d40", + "validatorIndex": "0xa9031", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x11765f8" + }, + { + "index": "0x6427d41", + "validatorIndex": "0xa9032", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x116b833" + }, + { + "index": "0x6427d42", + "validatorIndex": "0xa9033", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x117f504" + }, + { + "index": "0x6427d43", + "validatorIndex": "0xa9034", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x116558e" + }, + { + "index": "0x6427d44", + "validatorIndex": "0xa9035", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x11514be" + }, + { + "index": "0x6427d45", + "validatorIndex": "0xa9036", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x116edd8" + }, + { + "index": "0x6427d46", + "validatorIndex": "0xa9037", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x117b846" + }, + { + "index": "0x6427d47", + "validatorIndex": "0xa9038", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x1178b39" + }, + { + "index": "0x6427d48", + "validatorIndex": "0xa9039", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x1180f27" + }, + { + "index": "0x6427d49", + "validatorIndex": "0xa903a", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x1179321" + }, + { + "index": "0x6427d4a", + "validatorIndex": "0xa903b", + "address": "0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f", + "amount": "0x1179eae" + } + ] +}` + +const gasPriceJSON = `0x2b0d44ac` + +const maxPriorityFeePerGasJSON = `0x137090` + +const feeHistoryJSON = `{ + "OldestBlock": 23597734, + "Reward": [ + [ + 0, + 1470000, + 2000000, + 2000000, + 17784696, + 89000000, + 100000000, + 487559784, + 677925000, + 779534374, + 989424836, + 1000000000, + 1000000000, + 1456512406, + 1500000000, + 1908906452, + 2000000000, + 3598511791, + 5000000000, + 17199598080, + 17199598080 + ], + [ + 0, + 0, + 0, + 0, + 7, + 50000000, + 89000000, + 372213197, + 470726510, + 737660850, + 879158629, + 1000000001, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 1809000000, + 2000000000, + 2000000000, + 4196092556, + 19066473708 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 11400000, + 79000000, + 100000000, + 210020524, + 395666299, + 395666299, + 395666299, + 395666299, + 760666579, + 920225741, + 1000000001, + 1280476989, + 1500000000, + 1704864884, + 2225690945, + 4695666299, + 9737420294 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 7100000, + 79000000, + 99433648, + 217134580, + 372213197, + 757685064, + 944460896, + 1190317223, + 1416691344, + 1500000000, + 1500000000, + 1500000000, + 1512546605, + 1585471690, + 2000000000, + 3000000000, + 14649668651 + ], + [ + 0, + 100000, + 2000000, + 2059997, + 50000000, + 89000000, + 107211582, + 395666299, + 687991198, + 799617559, + 1000000000, + 1000000000, + 1443919797, + 1465000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 2000000000, + 3208044972, + 36203485721 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 10000016, + 50000000, + 100000000, + 100000000, + 224506907, + 399605394, + 710152682, + 1000000000, + 1000000000, + 1157606628, + 1476904084, + 1500000000, + 1500000000, + 1559068748, + 2000000000, + 3519797542, + 11710152682 + ], + [ + 0, + 1400000, + 2000000, + 50000000, + 50000000, + 79000000, + 100000000, + 443725329, + 736261229, + 907791888, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1647000000, + 2000000000, + 2000000000, + 3208492681, + 13435319341 + ], + [ + 0, + 2000000, + 50000000, + 89000000, + 100000000, + 100000000, + 213577552, + 264180141, + 674800391, + 799617559, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1610000000, + 2000000000, + 7221937509, + 24672525095, + 24672525095, + 41198889965 + ], + [ + 0, + 100000, + 2000000, + 2000000, + 2000000, + 13400006, + 77161003, + 100000000, + 157788767, + 167653063, + 676481087, + 688676377, + 732495828, + 1000000000, + 1476426788, + 1500000000, + 1500000000, + 1608216850, + 2000000000, + 3411203979, + 10020000000 + ], + [ + 100000, + 1470000, + 1680000, + 2000000, + 2100000, + 2800000, + 15780555, + 15780555, + 50000000, + 54600749, + 100000000, + 344232118, + 724533237, + 810055975, + 1000000000, + 1000000000, + 1112555779, + 1541869677, + 2000000000, + 3000000000, + 10010000000 + ], + [ + 0, + 1400000, + 2000000, + 2800000, + 10000000, + 10000000, + 14592348, + 14592348, + 97436775, + 100000000, + 240657360, + 302465452, + 706021019, + 1000000000, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 2000000000, + 4652121669, + 14225914649 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 50000000, + 55000000, + 94000000, + 302465452, + 458444108, + 700000000, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1601472324, + 2000000000, + 316880813467 + ], + [ + 0, + 0, + 0, + 100000, + 1400000, + 2000000, + 10000008, + 79000000, + 100000000, + 115000000, + 219514496, + 684851802, + 706021019, + 979441288, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 10010000000 + ], + [ + 0, + 1400000, + 1820000, + 2000000, + 2000000, + 2100000, + 2800000, + 50000000, + 89000000, + 117286212, + 317966970, + 632069173, + 702631301, + 1000000000, + 1337657306, + 1500000000, + 1601000000, + 1829000000, + 2028000000, + 3577887402, + 29679186000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2800000, + 50000000, + 100000000, + 100000000, + 240657360, + 680796947, + 702077335, + 1000000000, + 1000000001, + 1412042038, + 1500000000, + 1500000000, + 1601000000, + 2000000000, + 2825839162, + 3000000000, + 14284521766 + ], + [ + 0, + 1400000, + 2000000, + 2800000, + 94250662, + 100000000, + 317966970, + 676481087, + 706021019, + 1000000000, + 1000000001, + 1094000000, + 1404154670, + 1433489017, + 1500000000, + 1601000000, + 1829000000, + 2000000000, + 2000000000, + 3000000000, + 17905272841 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 11400000, + 100000000, + 100000000, + 224249629, + 224249629, + 224249629, + 224249629, + 678370706, + 1000000000, + 1210215280, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 3000000000, + 10020000000 + ], + [ + 0, + 1400000, + 1540000, + 2000000, + 2450000, + 50000000, + 89000000, + 128026628, + 164094275, + 257887073, + 635415117, + 706021019, + 948804915, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1616287965, + 2000000000, + 3000000000, + 193854155177 + ], + [ + 0, + 1400000, + 1540000, + 2000000, + 10000000, + 79000000, + 142413470, + 294000000, + 647911760, + 678632101, + 746527667, + 1000000000, + 1438392476, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 1792000000, + 2000000000, + 3000000000, + 25251305101 + ], + [ + 0, + 1400000, + 1820000, + 2000000, + 13888354, + 13888354, + 13888354, + 79000000, + 89000000, + 152881793, + 492761686, + 635415117, + 702077335, + 850000000, + 1438392476, + 1500000000, + 1522164792, + 1601000000, + 2000000000, + 4013563071, + 17350968955 + ], + [ + 0, + 1400000, + 1540000, + 4503634, + 4503634, + 16991988, + 100000000, + 591528691, + 690495765, + 704479072, + 1000000000, + 1000000001, + 1094000000, + 1500000000, + 1536592307, + 1829000000, + 2000000000, + 3223842562, + 42701059900, + 42701059900, + 53313996585 + ], + [ + 0, + 1400000, + 1540000, + 2800000, + 100000000, + 400000000, + 400000000, + 426805705, + 677549002, + 1000000000, + 1042481874, + 1329952466, + 1500000000, + 1522164792, + 1522164792, + 1522164792, + 1670215162, + 1829000000, + 2607672071, + 3000000000, + 12804007982 + ], + [ + 0, + 0, + 0, + 100000000, + 100000000, + 537970905, + 800700000, + 984531367, + 1000000000, + 1000000000, + 1000000000, + 1500000000, + 1620000000, + 2000000000, + 3000000000, + 6517333059, + 161683259966, + 161683259966, + 161683259966, + 161683259966, + 176156985372 + ], + [ + 0, + 0, + 0, + 0, + 452184480, + 537970905, + 537970905, + 702077335, + 1000000000, + 1000000000, + 1200000000, + 1476328866, + 1500000000, + 1700000000, + 2000000000, + 2000000000, + 2239052267, + 2462772556, + 3000000000, + 9261118579, + 94823345785 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 1686844859, + 1829000000, + 2000000000, + 2096121024, + 3492473196, + 4280481369, + 15911051748, + 48885667978, + 239272636866 + ], + [ + 0, + 0, + 1820000, + 15597975, + 79000000, + 100000000, + 152751210, + 179620191, + 211097230, + 224249629, + 298243823, + 537970905, + 562709952, + 760730303, + 1000000000, + 1000000000, + 1000000000, + 1225842709, + 1500000000, + 2000000000, + 37148110550 + ], + [ + 0, + 0, + 160000, + 760491635, + 1000000000, + 1451227419, + 1500000000, + 2000000000, + 2843356133, + 3978330086, + 4987617322, + 5568314582, + 9441019512, + 20948622737, + 28810772865, + 37242745903, + 62784539748, + 100031271538, + 142075651392, + 598033652642, + 1331929854036 + ], + [ + 0, + 13888354, + 13888354, + 100000000, + 155241083, + 360402852, + 596243256, + 642321403, + 899121911, + 1000000000, + 1010000000, + 1200000000, + 1500000000, + 1500000000, + 1658967091, + 2000000000, + 2082007596, + 3541138811, + 6385130330, + 15098327258, + 15098327258 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 100000, + 59181853, + 89000000, + 100000000, + 608301513, + 1000000000, + 1000000002, + 1200000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 3000000000, + 4201245764, + 10010000000 + ], + [ + 0, + 1400000, + 1400000, + 1470000, + 1820000, + 2000000, + 2000000, + 6400000, + 13888354, + 79000000, + 100000000, + 100000000, + 120724556, + 298243823, + 539620914, + 1000000000, + 1401372281, + 1600000000, + 2000000000, + 3000000000, + 14473916676 + ], + [ + 0, + 0, + 1400000, + 11400000, + 100000000, + 100000000, + 109700000, + 205857269, + 298243823, + 754088978, + 1000000000, + 1000000000, + 1401372281, + 1500000000, + 2000000000, + 2000000000, + 3000000000, + 3000000000, + 3133849782, + 4870141769, + 41547068062 + ], + [ + 0, + 0, + 1400000, + 2000000, + 7563532, + 7563532, + 79000000, + 100000000, + 147110907, + 293187052, + 555387965, + 591121931, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2235793018, + 3000000000, + 4313824319, + 70674519295 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2800000, + 89000000, + 100000000, + 137186807, + 340391693, + 591596334, + 773666667, + 954257872, + 1000000001, + 1120702833, + 1500000000, + 1500000000, + 1500000000, + 1813911410, + 2000000000, + 3000000000, + 10010000000 + ], + [ + 0, + 1400000, + 1680000, + 2000000, + 2000000, + 2000000, + 50000000, + 89000000, + 147110907, + 451032133, + 550009943, + 620027900, + 620027900, + 620027900, + 1023000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 10010000000 + ], + [ + 0, + 60886004, + 79000000, + 100000000, + 500000000, + 644197400, + 728716389, + 829575378, + 1000000000, + 1000000000, + 1052849914, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1875112224, + 2000000000, + 2082007596, + 4313824319, + 7450330397, + 81772943966 + ], + [ + 0, + 1400000, + 1400000, + 1680000, + 2000000, + 2800000, + 70000000, + 100000000, + 204546933, + 478586333, + 541165777, + 741711327, + 1000000000, + 1000000000, + 1052849914, + 1500000000, + 1592000000, + 2000000000, + 2958654208, + 4686872949, + 93793851980 + ], + [ + 0, + 1400000, + 1680000, + 2000000, + 2100000, + 100000000, + 420007029, + 721894034, + 829575378, + 829575378, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1712459009, + 2000000000, + 2037779157, + 4046901684, + 4686872949, + 21194909087, + 408581813331 + ], + [ + 0, + 1400000, + 1540000, + 2000000, + 10348149, + 94000000, + 100000000, + 100000000, + 294000000, + 500000000, + 644197400, + 773666667, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1592000000, + 1808147545, + 2000000000, + 3238209500, + 22730881635 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 83889371, + 101780000, + 456494216, + 500000000, + 644197400, + 740827010, + 1000000000, + 1000000001, + 1227996333, + 1288394800, + 1500000000, + 1592000000, + 1592000000, + 1805642890, + 2958000000, + 6799862175 + ], + [ + 0, + 0, + 1400000, + 1540000, + 2000000, + 4317639, + 62352380, + 100000000, + 233183783, + 454500000, + 773666667, + 893078053, + 1316785582, + 1500000000, + 1500000000, + 1592000000, + 2000000000, + 2000000000, + 2500000000, + 3511065765, + 29971483084 + ], + [ + 0, + 1400000, + 79000000, + 306681621, + 437531901, + 613363243, + 644197400, + 773666667, + 851951062, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1592000000, + 1723675601, + 2000000000, + 2000000000, + 2935000000, + 14751071463, + 53613767756 + ], + [ + 0, + 1395747, + 6860000, + 78265498, + 156251524, + 624726098, + 773666667, + 1000000001, + 1574111301, + 1592000000, + 1717996770, + 2000000000, + 2000000000, + 2000000000, + 3980931943, + 30391130428, + 37494350870, + 37494350870, + 37494350870, + 37494350870, + 101467782363 + ], + [ + 0, + 0, + 7054223, + 89000000, + 100000000, + 100000000, + 282110481, + 644197400, + 773666667, + 868640046, + 1000000000, + 1000000001, + 1000000001, + 1400000000, + 1500000000, + 1607280548, + 1904620699, + 2000000000, + 2189826123, + 4456250511, + 11786541699 + ], + [ + 0, + 1, + 1400000, + 1400000, + 1820000, + 2000000, + 2000000, + 2400000, + 4317639, + 79000000, + 93555870, + 146380815, + 271822881, + 754088978, + 795808020, + 1000000000, + 1000000001, + 1500000000, + 2000000000, + 2000000000, + 12155301349 + ], + [ + 0, + 1400000, + 2000000, + 6224074, + 93555870, + 100000000, + 100000000, + 410497901, + 794360131, + 882881595, + 882881595, + 882881595, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 1564630159, + 2000000000, + 2000000000, + 5793600682, + 34713284661 + ], + [ + 0, + 0, + 0, + 1400000, + 1680000, + 4317639, + 50000000, + 89000000, + 294919268, + 431148049, + 550345808, + 795808020, + 1000000000, + 1000000000, + 1400000000, + 1500000000, + 1612037974, + 2000000000, + 2058238425, + 3479279920, + 152770205785 + ], + [ + 0, + 1400000, + 79000000, + 79000000, + 100000000, + 100000000, + 100000000, + 100000000, + 172509635, + 400000000, + 1000000000, + 1000000001, + 1200000000, + 1500000000, + 1500000000, + 1718000000, + 1839822210, + 4281759960, + 9238245524, + 21933968846, + 44861735125 + ], + [ + 0, + 0, + 1400000, + 1680000, + 1820000, + 2000000, + 2000000, + 2800000, + 14000000, + 79000000, + 100000000, + 230000000, + 794360131, + 1000000000, + 1000000000, + 1500000000, + 2000000000, + 4760368651, + 26365895992, + 26365895992, + 41375942470 + ], + [ + 0, + 0, + 1400000, + 1680000, + 1680000, + 2000000, + 50000000, + 79000000, + 93238070, + 100000000, + 179739594, + 558183162, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1656636250, + 2000000000, + 3000000000, + 4938624244, + 109637247286 + ], + [ + 0, + 0, + 0, + 0, + 1400000, + 1400000, + 2000000, + 47777935, + 89000000, + 93555870, + 355100519, + 505904096, + 764332301, + 1000000001, + 1119503779, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3028741209, + 8214917561 + ], + [ + 0, + 0, + 50000000, + 98000000, + 355100519, + 696637535, + 791770092, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1600000000, + 1656636250, + 1656636250, + 2000000000, + 2811626008, + 3775724138, + 7078766252, + 21936610142 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1680000, + 2000000, + 2000000, + 5600000, + 79000000, + 100000000, + 264688731, + 712878285, + 1000000000, + 1200000000, + 1500000000, + 1656636250, + 1717515576, + 2000000000, + 2000000000, + 5965109678, + 58724104847 + ], + [ + 0, + 979999, + 1400000, + 1400000, + 1680000, + 1680000, + 1680000, + 45483986, + 47687935, + 79000000, + 100000000, + 164602391, + 480000000, + 735678050, + 1000000000, + 1106886257, + 1425756570, + 1656000000, + 1718000000, + 2990483986, + 10010000000 + ], + [ + 0, + 1400000, + 1540000, + 1680000, + 2000000, + 11400000, + 50000000, + 72308103, + 89000000, + 100000000, + 151400000, + 420147042, + 500000000, + 1000000000, + 1000000000, + 1370000000, + 1590744623, + 1612000000, + 1718000000, + 3484096225, + 65388253571 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1470000, + 1680000, + 1680000, + 1680000, + 2800000, + 50000000, + 64542470, + 89000000, + 100000000, + 213448124, + 304392041, + 500000000, + 592583203, + 1284400439, + 2000000000, + 2797685252, + 23430271639 + ], + [ + 0, + 1400000, + 1540000, + 1680000, + 2000000, + 41197594, + 89000000, + 106068363, + 299048716, + 750931687, + 1000000000, + 1000000000, + 1072980395, + 1500000000, + 1500000000, + 1590744623, + 1656636250, + 2000000000, + 3000000000, + 16000000000, + 23201116564 + ], + [ + 0, + 1400000, + 1400000, + 1540000, + 1764189, + 34820739, + 89000000, + 100000000, + 159673580, + 416924401, + 500000000, + 1000000000, + 1000000000, + 1441345632, + 1500000000, + 1500000000, + 1500000000, + 1612000000, + 2000000000, + 5000000000, + 66401638697 + ], + [ + 0, + 752000, + 1400000, + 1543000, + 1750000, + 89000000, + 100000000, + 100000000, + 144960734, + 361884179, + 500000000, + 808417775, + 1000000000, + 1371790888, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1700000000, + 2760472889, + 29163283153 + ], + [ + 0, + 0, + 1680000, + 1680000, + 2000000, + 2100000, + 50000000, + 89000000, + 100000000, + 330454615, + 500000000, + 1000000000, + 1000000000, + 1335648972, + 1500000000, + 1500000000, + 1590744623, + 2000000000, + 3969647461, + 6045076300, + 222959902210 + ], + [ + 0, + 1400000, + 1680000, + 11400000, + 64542470, + 79000000, + 89000000, + 209021418, + 550000000, + 550776136, + 1000000000, + 1000000001, + 1365795757, + 1475815515, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 23530666601 + ], + [ + 0, + 100000, + 100000, + 550776136, + 1000000000, + 1400000000, + 1500000000, + 1500000000, + 1500000000, + 1535038220, + 2000000000, + 3449445378, + 14332040555, + 45578370133, + 48996353703, + 48996353703, + 48996353703, + 48996353703, + 48996353703, + 48996353703, + 77276689785 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1680000, + 2000000, + 10000000, + 50000000, + 64542470, + 79000000, + 89000000, + 100000000, + 262606632, + 500000000, + 1000000000, + 1101552272, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 6642983643 + ], + [ + 0, + 1400000, + 1400000, + 1680000, + 2100000, + 32946857, + 99000000, + 100000000, + 140582084, + 140582084, + 286066175, + 409181109, + 500000000, + 550776136, + 976300000, + 1000000000, + 1094000000, + 1500000000, + 2000000000, + 3000000000, + 18500282335 + ], + [ + 0, + 1400000, + 1400000, + 20000000, + 20000000, + 79000000, + 89000000, + 100000000, + 141296606, + 390085695, + 500000000, + 550776136, + 1000000000, + 1018871335, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2983152567, + 8384115117, + 107226001785 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1680000, + 2000000, + 4200000, + 89000000, + 100000000, + 270228050, + 500000000, + 520298088, + 771582738, + 1000000000, + 1366019602, + 1500000000, + 1500000000, + 2000000000, + 7070254446, + 27718859780, + 27718859780 + ], + [ + 0, + 1680000, + 1680000, + 2000000, + 3259344, + 89000000, + 100000000, + 190589635, + 294000000, + 500000000, + 998600000, + 1000000000, + 1000000000, + 1387925519, + 1500000000, + 2000000000, + 5000000000, + 47306810401, + 47306810401, + 47306810401, + 47306810401 + ], + [ + 0, + 87280095, + 89000000, + 100000000, + 100000000, + 424960526, + 500000000, + 500000000, + 500000000, + 775013235, + 1000000000, + 1488839624, + 1500000000, + 1500000000, + 1500000000, + 1982082094, + 2000000000, + 2000000000, + 2331124159, + 5284248921, + 10020000000 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1680000, + 1680000, + 2000000, + 32901947, + 75312035, + 89000000, + 250878202, + 500000000, + 815493831, + 1000000000, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3613613743, + 15627877949 + ], + [ + 0, + 0, + 1400000, + 1820000, + 2000000, + 50000000, + 100000001, + 100000001, + 100000001, + 100000001, + 500000000, + 583146892, + 583146892, + 824615000, + 1094000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 4148735950, + 10020000000 + ], + [ + 0, + 1400000, + 2679672, + 100000000, + 282961339, + 282961339, + 282961339, + 282961339, + 295658955, + 550800000, + 624913033, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2320762561, + 3676887039, + 21194570667, + 21194570667 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2100000, + 2947639, + 89000000, + 120000000, + 216110885, + 216110885, + 407195484, + 454017395, + 583146892, + 649895640, + 1000000000, + 1000000000, + 1500000000, + 1600000000, + 2000000000, + 3012149546, + 10020000000 + ], + [ + 0, + 400, + 1400000, + 1680000, + 2000000, + 2000000, + 50000000, + 100000000, + 144330013, + 475905326, + 575000000, + 652062066, + 1000000000, + 1000000000, + 1497037349, + 1500000000, + 1500000000, + 1500000000, + 2179097330, + 5000000000, + 21996789254 + ], + [ + 0, + 160000, + 100000000, + 102127267, + 250878202, + 617262707, + 1000000001, + 1364248469, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2852063702, + 4678048846, + 14345310455, + 100761452061, + 100761452061, + 100761452061, + 100761452061, + 100761452061, + 100761452061 + ], + [ + 0, + 0, + 0, + 260878202, + 500000000, + 500000000, + 550800000, + 706695939, + 843786383, + 1000000000, + 1000000000, + 1047989329, + 1344536284, + 1402876263, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2510973413, + 5000000000, + 50593827229 + ], + [ + 0, + 400, + 1820000, + 2000000, + 2000000, + 50000000, + 79000000, + 89000000, + 94000000, + 122175268, + 300000000, + 500000000, + 660872488, + 1000000000, + 1397978666, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2262637573, + 11350894970 + ], + [ + 0, + 89000000, + 297779795, + 395038026, + 500000000, + 575000000, + 600000000, + 895570276, + 1000000000, + 1000000001, + 1305387017, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 3044332738, + 7980001967, + 20375046344, + 46887271303, + 511532847943 + ], + [ + 0, + 0, + 0, + 0, + 0, + 246971987, + 494674640, + 697560658, + 975871512, + 1000000001, + 1084998743, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1602808955, + 2000000000, + 4188585763, + 5000000000, + 11256096009 + ], + [ + 0, + 1400000, + 1680000, + 2000000, + 2000000, + 2100000, + 2100000, + 2100000, + 2100000, + 10000000, + 76144742, + 79000000, + 89000000, + 100000000, + 122175268, + 500000000, + 936054727, + 1400000000, + 1500000000, + 2000000000, + 14293319646 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1680000, + 2000000, + 2000000, + 2100000, + 50000000, + 79000000, + 100000000, + 100000000, + 205727070, + 345314928, + 829959150, + 1000000000, + 1000000000, + 1331799963, + 1500000000, + 2000000000, + 9000000000 + ], + [ + 0, + 1680000, + 2000000, + 2100000, + 50000000, + 60309388, + 100000000, + 100000000, + 100000000, + 145779905, + 581135666, + 769959150, + 1000000000, + 1000000000, + 1000000001, + 1400000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000, + 9073229056 + ], + [ + 0, + 0, + 1400000, + 1945325, + 2100000, + 37243022, + 60500000, + 89000000, + 130450782, + 500000000, + 745756591, + 1000000000, + 1000000000, + 1000000001, + 1385926470, + 1500000000, + 1500000000, + 2000000000, + 2053921738, + 3319970124, + 27572579458 + ], + [ + 0, + 0, + 0, + 1680000, + 25684725, + 89000000, + 122175268, + 541963990, + 905977336, + 1000000000, + 1094000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1620343044, + 2612666682, + 5270309403, + 8368195814, + 23830971931, + 373755005869 + ], + [ + 0, + 0, + 24093730, + 79000000, + 100000000, + 122175268, + 413335174, + 500000000, + 739801805, + 829025616, + 1000000000, + 1123502726, + 1400000000, + 1500000000, + 1600000000, + 1630124299, + 2000000000, + 2000000000, + 3000000000, + 5673933991, + 24631138883 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 11400000, + 16292945, + 89000000, + 100000000, + 100000001, + 100000001, + 126622572, + 305458421, + 690415327, + 756139368, + 1000000000, + 1305000000, + 1500000000, + 1500000000, + 1500000000, + 1989673889, + 12180673889 + ], + [ + 0, + 1400000, + 1750000, + 2100000, + 79000000, + 89000000, + 100000000, + 269175603, + 550000000, + 745756591, + 940745371, + 1000000000, + 1267633605, + 1500000000, + 1500000000, + 1500000000, + 1847281818, + 2000000000, + 5000000000, + 10098799876, + 34525725160 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2100000, + 28253197, + 78028457, + 100000000, + 284132611, + 862912196, + 885824391, + 1000000000, + 1081857177, + 1500000000, + 1500000000, + 1500000000, + 1658051232, + 2000000000, + 2692986165, + 14336076301 + ], + [ + 0, + 1820000, + 2000000, + 44519080, + 79000000, + 89000000, + 89000000, + 100000000, + 100000000, + 110000000, + 146168577, + 294000000, + 808006765, + 865456161, + 1000000000, + 1121147537, + 1600000000, + 1600000000, + 2000000000, + 2511147537, + 27121147537 + ], + [ + 0, + 1400000, + 1750000, + 1820000, + 2000000, + 16292945, + 89000000, + 126622572, + 414130722, + 862912196, + 862912196, + 1000000000, + 1434750214, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1847281818, + 4341537669, + 26976476512 + ], + [ + 0, + 0, + 1911000, + 2000000, + 2000000, + 50505000, + 89000000, + 100000000, + 571023397, + 829025616, + 1000000000, + 1243300913, + 1434750214, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3684382934, + 3684382934, + 23111559570, + 23111559570 + ], + [ + 0, + 1750000, + 2000000, + 2800000, + 79000000, + 89000000, + 100000000, + 100000000, + 341310198, + 696588092, + 745756591, + 992349025, + 1000000000, + 1000000001, + 1471179805, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 85947929529 + ], + [ + 0, + 1400000, + 2000000, + 7770529, + 50000000, + 89000000, + 100000001, + 100000001, + 100000001, + 213029356, + 365970440, + 759749155, + 829025616, + 1000000000, + 1249710359, + 1436926718, + 1500000000, + 1500000000, + 1658051232, + 2000000000, + 9289331868 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2100000, + 79000000, + 89000000, + 166744281, + 684705205, + 726300000, + 829025616, + 862912196, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000, + 12996100201, + 41033216581, + 201576330964 + ], + [ + 0, + 40316617, + 79000000, + 79000000, + 148001362, + 325448175, + 688011355, + 829025616, + 829025616, + 877911750, + 1000000000, + 1436926718, + 1473486182, + 1500000000, + 1500000000, + 1500000000, + 1516922138, + 1600000000, + 2295240936, + 5000000000, + 10010000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 2800000, + 56220272, + 89000000, + 138273502, + 500000000, + 794710609, + 1000000000, + 1000000000, + 1439620243, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 17439278299 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 57743469, + 89000000, + 153727302, + 327779352, + 365970440, + 419976231, + 711502684, + 730561393, + 829025616, + 1000000000, + 1000000000, + 1439620243, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1302476, + 1400000, + 2000000, + 2000000, + 7534958, + 26050000, + 89000000, + 311627670, + 500000000, + 745756591, + 829025616, + 1000000000, + 1372699923, + 1438474425, + 1500000000, + 1500000000, + 1500000000, + 1520353895, + 3713536240, + 18088710563 + ], + [ + 0, + 0, + 1540000, + 2000000, + 2800000, + 50505000, + 89000000, + 89000000, + 352165958, + 352165958, + 711502684, + 829025616, + 829025616, + 1000000000, + 1000000001, + 1470050152, + 1500000000, + 1600000000, + 2000000000, + 4705345932, + 24942241627 + ], + [ + 0, + 160000, + 1680000, + 2000000, + 2000000, + 2450000, + 79000000, + 100000000, + 381268547, + 617916159, + 813246300, + 1000000000, + 1000978265, + 1403881680, + 1500000000, + 1500000000, + 1500000000, + 1601236915, + 2000000000, + 3000000000, + 10080944476 + ], + [ + 0, + 2000000, + 2000000, + 30000000, + 79000000, + 100000001, + 100000001, + 100000001, + 100000001, + 156165443, + 588205916, + 818025787, + 829025616, + 829025616, + 902694503, + 1000000000, + 1244800341, + 2000000000, + 2000000000, + 13047977155, + 14361915257 + ], + [ + 0, + 1400000, + 1820000, + 10100000, + 20000000, + 50000000, + 89000000, + 89000000, + 162455497, + 690808121, + 723230465, + 885500000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1840866564, + 2759140095, + 10010000000 + ], + [ + 0, + 1400000, + 2000000, + 2100000, + 50000000, + 94000000, + 100000000, + 302557527, + 634381953, + 727035836, + 829025616, + 1000000000, + 1000000000, + 1000000000, + 1155680081, + 1486717135, + 1500000000, + 1658051232, + 2000000000, + 2935220124, + 17542848819 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 20000000, + 80083664, + 89000000, + 100000000, + 580083664, + 707079350, + 776128040, + 829025616, + 996154129, + 1408249019, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 9896334711 + ], + [ + 0, + 1400000, + 2000000, + 2450000, + 20000000, + 60591000, + 87965170, + 100000000, + 129413989, + 129413989, + 292861959, + 495281384, + 704820245, + 829025616, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1595002479, + 2000000000, + 19896001288 + ], + [ + 0, + 0, + 1540000, + 2000000, + 2000000, + 2000000, + 21590706, + 79000000, + 100000000, + 147342480, + 588205916, + 739665385, + 1000000000, + 1000000000, + 1303822306, + 1470050152, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 16302674884 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2450000, + 20000000, + 79000000, + 100000000, + 264944370, + 588205916, + 719516557, + 735423859, + 829025616, + 1000000000, + 1362897433, + 1500000000, + 1500000000, + 1500000000, + 1658051232, + 2370713446, + 10020000000 + ], + [ + 0, + 252003, + 1400000, + 1540000, + 2000000, + 2100000, + 12617101, + 20000000, + 58420318, + 159957698, + 300000000, + 300000000, + 300000000, + 676436803, + 829025616, + 1000000000, + 1221000000, + 1221000000, + 1500000000, + 2201400000, + 107390100526 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1, + 1327534677, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1528863484, + 1768214919, + 2000000000, + 4196345123, + 6768177463, + 27557678673 + ], + [ + 0, + 0, + 1400000, + 1680000, + 2000000, + 2000000, + 2450000, + 50000000, + 79000000, + 89000000, + 164070725, + 364973075, + 645017083, + 723230465, + 907355968, + 1000000000, + 1217388869, + 1500000000, + 1500000000, + 2873850015, + 115809414281 + ], + [ + 0, + 1400001, + 10000000, + 94000000, + 100000001, + 100000001, + 100000001, + 300000000, + 300000000, + 300000000, + 300000000, + 300000000, + 300000000, + 404331447, + 697771151, + 1000000000, + 1491000000, + 1500000000, + 1500000000, + 2000000000, + 20474714457 + ], + [ + 0, + 0, + 1, + 1400001, + 2000000, + 2000000, + 50000000, + 79000000, + 94000000, + 100000000, + 300000000, + 465693109, + 664216897, + 1000000000, + 1048082241, + 1234011486, + 1500000000, + 1500000000, + 2000000000, + 3634552019, + 66157288112 + ], + [ + 0, + 1, + 1400000, + 2000000, + 2450000, + 50000000, + 89000000, + 188146795, + 300000000, + 588205916, + 1000000000, + 1000000000, + 1000000000, + 1000000003, + 1491000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 10020000000 + ], + [ + 0, + 1400000, + 2000000, + 51848741, + 100000000, + 135997987, + 280159266, + 394685960, + 500000000, + 624913033, + 728028432, + 1000000000, + 1000000000, + 1288774753, + 1500000000, + 1500000000, + 1947790934, + 2316151586, + 6886958877, + 6886958877, + 10020000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2400000, + 19405285, + 21855285, + 69488949, + 79000000, + 100000000, + 172179635, + 500000000, + 642101841, + 829025616, + 1000000000, + 1022892232, + 1495166526, + 1500000000, + 2000000000, + 2519488949, + 10010000000 + ], + [ + 0, + 1400000, + 1680000, + 2000000, + 2000000, + 2400000, + 22619781, + 46639414, + 50000000, + 100000000, + 210000000, + 474996547, + 624573078, + 685203340, + 1000000000, + 1282835633, + 1500000000, + 1500000000, + 2000000000, + 2471079644, + 77624273078 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 50000000, + 67626322, + 89000000, + 140513498, + 446574824, + 573549823, + 990093628, + 1000000000, + 1020000000, + 1500000000, + 1500000000, + 1500000000, + 1589268359, + 3000000000, + 16458046117 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 28048125, + 79000000, + 100000000, + 292706940, + 528709314, + 573549823, + 786666572, + 1000000000, + 1280047785, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 7664182206 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1771000, + 29104718, + 83579917, + 117850944, + 500000000, + 528709314, + 685203340, + 1000000003, + 1057418628, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1870934933, + 2359175972, + 8233762113, + 47246629736 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1820000, + 2000000, + 45227430, + 90937645, + 100000000, + 136664567, + 191964926, + 468843559, + 723676512, + 1000000000, + 1467159725, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000, + 46170126289 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1400000, + 2000000, + 11400000, + 79000000, + 79000000, + 168526849, + 408533423, + 528709314, + 741678754, + 1000000000, + 1303295622, + 1500000000, + 1500000000, + 1500000000, + 1687232696, + 3344758289, + 10020000000 + ], + [ + 1400000, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 22881556, + 79000000, + 79000000, + 89000000, + 100000000, + 130000000, + 226106235, + 245617334, + 509424412, + 512470929, + 528709314, + 1095641016, + 2000000000, + 5000000000, + 10010000000 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 2100000, + 14812185, + 72745579, + 100000000, + 171937609, + 196005699, + 210284766, + 288460227, + 446574824, + 528709314, + 1000000000, + 1001400000, + 1415797391, + 1500000000, + 1500000000, + 2748551099, + 50773044472 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 50000000, + 79000000, + 89000000, + 191964926, + 390139830, + 670139830, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2076012915, + 3000000000, + 8773524716, + 21326029041 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1785699, + 2800000, + 36487227, + 89000000, + 100000001, + 100000001, + 100000001, + 100000001, + 454124202, + 770660805, + 1000000000, + 1177883504, + 1500000000, + 1500000000, + 1680993249, + 2000000000, + 12855897076 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 30000000, + 30000000, + 30000000, + 50000000, + 89000000, + 167116919, + 500000000, + 528709314, + 1000000000, + 1057418628, + 1275453713, + 1500000000, + 2000000000, + 2265486022, + 14113880354 + ], + [ + 0, + 1400000, + 2000000, + 11066753, + 79000000, + 79000000, + 100000000, + 100000000, + 329094315, + 528709314, + 559582842, + 922920368, + 1000000000, + 1000000000, + 1282099586, + 1500000000, + 1515000000, + 2000000000, + 2000000000, + 3000000000, + 18147173448 + ], + [ + 0, + 1400000, + 1400000, + 1400001, + 2100000, + 28077448, + 79000000, + 84000000, + 100000000, + 163416974, + 406680089, + 528709314, + 763416974, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 42705933954 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 10000000, + 100000000, + 100000000, + 406680089, + 528709314, + 643520268, + 1000000000, + 1000000001, + 1000000001, + 1337778677, + 1500000000, + 1500000000, + 1500000000, + 1651554147, + 2000000000, + 3109037167, + 10000000000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 2100000, + 79000000, + 89000000, + 300000000, + 500000000, + 1000000000, + 1057418628, + 1261639456, + 1500000000, + 1500000000, + 1567913144, + 2000000000, + 3548142178, + 11531886257 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 5958507, + 79000000, + 100000001, + 100000001, + 100000001, + 406680089, + 742669655, + 1384159224, + 1500000000, + 1500000000, + 2018777901, + 16708358795, + 57194879605 + ], + [ + 0, + 0, + 0, + 0, + 1500000000, + 1500000000, + 2669413678, + 3000000000, + 5690523700, + 8189069423, + 10000000077, + 10492811665, + 10561581674, + 14008712147, + 18117968525, + 25849608890, + 30083227565, + 51139447990, + 169020514543, + 294623989325, + 391466015565 + ], + [ + 0, + 0, + 3007989, + 89000000, + 100000000, + 303220000, + 528709314, + 528709314, + 736081549, + 1000000000, + 1000000000, + 1251405066, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1912668618, + 2000000000, + 3420000022, + 5293783373, + 167772161292 + ], + [ + 0, + 0, + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2240000, + 20000000, + 79000000, + 89000000, + 210933138, + 270709166, + 795040038, + 1000000000, + 1275727540, + 1500000000, + 2000000000, + 5501745700, + 446067850085, + 446067850085 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 10000000, + 50000000, + 100000000, + 200000000, + 320000000, + 666588293, + 1000000000, + 1000000000, + 1094000000, + 1446759329, + 1500000000, + 2000000000, + 2210216471, + 3623317367, + 4996050586, + 27693880074 + ], + [ + 1400000, + 2000000, + 2000000, + 33877618, + 79000000, + 89000000, + 100000000, + 245617334, + 321080000, + 321080000, + 321080000, + 321080000, + 518456808, + 544500000, + 745756591, + 1000000000, + 1475694515, + 1500000000, + 3000000000, + 3232786802, + 42726357698 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 6050000, + 6050000, + 6050000, + 20000000, + 20000000, + 79000000, + 89000000, + 200000000, + 454728460, + 792595240, + 1000000001, + 1013017001, + 1227666730, + 1500000000, + 1617000000, + 2189000000, + 10020000000 + ], + [ + 0, + 1, + 1400000, + 2000000, + 2000000, + 4075000, + 30000000, + 89000000, + 321080000, + 345091102, + 620696483, + 1000000000, + 1000000000, + 1000000000, + 1282337568, + 1500000000, + 1500000000, + 1912668618, + 2950614319, + 4029379870, + 35230702542 + ], + [ + 0, + 1400000, + 2000000, + 6050000, + 50000000, + 89000000, + 100000001, + 100000001, + 100000001, + 151400000, + 321080000, + 521916074, + 843088034, + 1000000000, + 1198713024, + 1500000000, + 1610000000, + 1813811073, + 2000000000, + 3244238062, + 10063177567 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 11400000, + 89000000, + 89000000, + 321506366, + 417907022, + 527002621, + 713800955, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2458376789, + 3000000000, + 5000000000, + 16709714430 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 4075000, + 27084164, + 61361368, + 99541333, + 100000000, + 321080000, + 600000000, + 620696483, + 724199031, + 1000000000, + 1000000000, + 1156366980, + 1500000000, + 1617000000, + 2458376789, + 2723899031, + 10020000000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 4075000, + 89000000, + 94000000, + 135313262, + 323702910, + 323702910, + 527002621, + 600000000, + 753797434, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2328911174, + 10010000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 8518826, + 12015000, + 12825000, + 89000000, + 196535276, + 208099410, + 527002621, + 1000000000, + 1000000000, + 1099080612, + 1380957205, + 1500000000, + 1500000000, + 2000000000, + 3163474182, + 10020000000 + ], + [ + 0, + 0, + 89000000, + 100000000, + 208099410, + 263040902, + 500000000, + 547376319, + 690000000, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1754976230, + 2586830329, + 14901789023, + 14901789023, + 14901789023, + 20839767897 + ], + [ + 0, + 0, + 60353010, + 79000000, + 100000000, + 100000001, + 100000001, + 100000001, + 239314322, + 336797332, + 527002621, + 620696483, + 1000000001, + 1060353010, + 1185389201, + 1447259709, + 1500000000, + 2000000000, + 3000000000, + 3827357704, + 10360811724 + ], + [ + 0, + 0, + 0, + 1400000, + 1680000, + 2000000, + 2000000, + 2644688, + 4075000, + 7000000, + 27361373, + 100000000, + 252166865, + 600000000, + 724199031, + 1000000000, + 1200000000, + 1500000000, + 1500000000, + 1977682280, + 66747962065 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 3037500, + 12361026, + 89000000, + 89000000, + 106800000, + 300000000, + 500000000, + 620696483, + 729495084, + 938263848, + 1000000000, + 1200000000, + 1317503488, + 1500000000, + 1500000000, + 3000000000, + 10010000000 + ], + [ + 0, + 83067523, + 100000000, + 330273963, + 531760988, + 834802267, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 5000000000, + 11790824253, + 45384168182 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2100000, + 4075000, + 11400000, + 70725463, + 89000000, + 100000000, + 111813971, + 300000000, + 605446026, + 1000000000, + 1149463796, + 1361604650, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 20000000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 3556250, + 3556250, + 10000000, + 69846268, + 79000000, + 90000000, + 300000000, + 497338494, + 600000000, + 1000000001, + 1400000000, + 1500000000, + 1500000000, + 3245783874, + 1050351312571, + 1050351312571 + ], + [ + 0, + 89000000, + 128586067, + 214610409, + 600000000, + 1000000000, + 1000000000, + 1000000001, + 1200000000, + 1241833634, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 4455596782, + 20533543807 + ], + [ + 0, + 0, + 1400000, + 1470000, + 1820000, + 2000000, + 2000000, + 2000000, + 3556250, + 3556250, + 27361373, + 79000000, + 103500000, + 157054371, + 330386751, + 500000000, + 953259829, + 1386767441, + 1386767441, + 2077318679, + 10020000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 10000000, + 22396267, + 50000000, + 100000000, + 125075360, + 227779697, + 406045638, + 669054091, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 1600000000, + 3000000000, + 10101753578 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 10000000, + 79000000, + 100000000, + 211210121, + 464526730, + 511297994, + 850000000, + 1000000000, + 1094000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 5000000000, + 10020000000 + ], + [ + 0, + 1680000, + 2000000, + 2723846, + 79000000, + 100000000, + 500000000, + 587992693, + 1000000000, + 1000000000, + 1000000000, + 1010000000, + 1500000000, + 1500000000, + 1604635654, + 2000000000, + 4200746002, + 60043461843, + 60043461843, + 60043461843, + 60043461843 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1200000000, + 1320604190, + 1331297542, + 1500000000, + 1500000000, + 1500000000, + 1839534961, + 2000000000, + 2000000000, + 2515769740, + 2708627413, + 4619761685, + 6073734054, + 19478853428, + 50003882032, + 549293755617 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 20000000, + 79000000, + 100000000, + 100263662, + 195562147, + 195562147, + 195562147, + 195562147, + 195562147, + 355411979, + 562209221, + 886191019, + 1000000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 3037500, + 23250000, + 89000000, + 94000000, + 334234900, + 400452752, + 562209221, + 739082855, + 1000000000, + 1000000001, + 1287698580, + 1500000000, + 1500000000, + 1600000000, + 3265744418, + 28397583552 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 50000000, + 89000000, + 89000000, + 107194342, + 224896469, + 324006121, + 400452752, + 739082855, + 1000000000, + 1000000001, + 1178367770, + 1500000000, + 1500000000, + 1500000000, + 1971083617, + 3585808788, + 10020000000 + ], + [ + 0, + 0, + 752000, + 1400000, + 2000000, + 2400000, + 10000000, + 29050000, + 79000000, + 100000000, + 248560245, + 400452752, + 763949561, + 1000000000, + 1000000000, + 1117683833, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 45738936566 + ], + [ + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 2100000, + 10000000, + 33250000, + 33250000, + 33250000, + 89000000, + 100000000, + 163461642, + 163461642, + 195562147, + 285844282, + 719596974, + 1400000000, + 2000000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 214292961, + 353750370, + 511297994, + 683329245, + 1000000000, + 1000000000, + 1321587276, + 1493965981, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 22096434811, + 93709238000 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 2090068, + 17582081, + 50000000, + 79000000, + 89000000, + 100000000, + 113941901, + 406045638, + 562209221, + 632036458, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 2000000000, + 28128200258 + ], + [ + 0, + 100000, + 1400000, + 1820000, + 2000000, + 17810000, + 89000000, + 100000000, + 189489974, + 511297994, + 562209221, + 764856014, + 1000000000, + 1000000001, + 1493868450, + 1500000000, + 1500000000, + 1500000000, + 1698655885, + 2000000000, + 10840126810 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2090068, + 50000000, + 79000000, + 100000000, + 135790723, + 174113046, + 357600000, + 500000000, + 500000000, + 804180595, + 1000000000, + 1150037052, + 1500000000, + 1500000000, + 1615799331, + 2978724452, + 19380780411 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 2100000, + 47098021, + 79000000, + 100572309, + 357600000, + 500000000, + 1000000000, + 1000000000, + 1320446755, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 6168373569, + 67619561700 + ], + [ + 1400000, + 1400000, + 2000000, + 2090068, + 79000000, + 79000000, + 79714695, + 89000000, + 89000000, + 103877612, + 103877612, + 103877612, + 357600000, + 500000000, + 500000000, + 1010695548, + 1500000000, + 2000000000, + 2010695548, + 3000000000, + 24332340723 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 20000000, + 20000000, + 52737904, + 100000000, + 116755347, + 398277867, + 597211335, + 739082855, + 1000000000, + 1000000000, + 1209535430, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 4201294439, + 28884922354 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1400000, + 2000000, + 2000000, + 2100000, + 67953014, + 89000000, + 100000000, + 357600000, + 500000000, + 597211335, + 1000000000, + 1078216929, + 1358777135, + 1500000000, + 1500000000, + 2000000000, + 28681431490 + ], + [ + 0, + 100, + 1680000, + 1820000, + 2000000, + 10000000, + 50000000, + 50000000, + 79000000, + 100000000, + 303459065, + 500000000, + 1000000000, + 1208474094, + 1493000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 13769465631 + ], + [ + 0, + 1400000, + 1680000, + 2000000, + 2000000, + 2000000, + 50000000, + 90000000, + 266936594, + 266936594, + 357600000, + 500000000, + 1000000000, + 1000000000, + 1290886985, + 1500000000, + 1500000000, + 1500000000, + 3000000000, + 3000000000, + 25057660659 + ], + [ + 0, + 286729, + 1400000, + 1400000, + 1680000, + 2000000, + 14000000, + 50000000, + 79000000, + 89000000, + 200000000, + 269607989, + 500000000, + 500000000, + 666728277, + 1143395490, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 10020000000 + ], + [ + 0, + 79000000, + 100000000, + 200000000, + 228958697, + 312852860, + 325444382, + 500000000, + 552782680, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2766668653, + 5000000000, + 11788186174, + 27436273035 + ], + [ + 0, + 1400000, + 1764000, + 2000000, + 2000000, + 2000000, + 3360000, + 22500000, + 55000001, + 79000000, + 89000000, + 100000000, + 165514438, + 200120061, + 288762632, + 371694555, + 500000000, + 500000000, + 685190794, + 1112268656, + 10010000000 + ], + [ + 0, + 0, + 2, + 1400000, + 1680000, + 7743535, + 50000000, + 89000000, + 100000000, + 285076630, + 393360000, + 715000000, + 1000000000, + 1214807905, + 1482090838, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 6841227996, + 84973532932 + ], + [ + 0, + 0, + 0, + 1680000, + 1680000, + 2000000, + 5295761, + 89000000, + 175761738, + 421756369, + 1000000000, + 1000000000, + 1325018530, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3249235054, + 92714625126 + ], + [ + 0, + 10000000, + 50000000, + 79000000, + 89000000, + 143000000, + 253125297, + 393360000, + 500000000, + 648854976, + 962920720, + 1000000000, + 1000000000, + 1000000001, + 1150000000, + 1214000000, + 1491000000, + 1500000000, + 2000000000, + 2000000000, + 36174989943 + ], + [ + 0, + 0, + 1, + 89000000, + 277345065, + 307880211, + 500000000, + 672452198, + 966191224, + 1000000000, + 1174724277, + 1174724277, + 1174724277, + 1500000000, + 1500000000, + 1500000000, + 1520984773, + 2000000000, + 3369793669, + 5466129702, + 19704264147 + ], + [ + 0, + 1400000, + 1400000, + 1680000, + 1680000, + 2000000, + 2800000, + 59307721, + 89000000, + 184864684, + 200000000, + 200000000, + 294000000, + 500000000, + 521574478, + 1000000000, + 1000000001, + 1234398250, + 1753486508, + 5000000000, + 34539667398 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 10000000, + 55000000, + 89000000, + 100000000, + 241167893, + 393360000, + 500000000, + 701243493, + 1000000000, + 1214000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 59080863206 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 50000000, + 89000000, + 140297003, + 296487595, + 631540496, + 724000999, + 935800000, + 935800000, + 962920720, + 1000000000, + 1000000001, + 1246495276, + 1500000000, + 1500000000, + 4543060120, + 28579430183 + ], + [ + 0, + 0, + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 20000000, + 89000000, + 89000000, + 110000000, + 140297003, + 500000000, + 816255665, + 935800000, + 992545555, + 1000000000, + 1121438374, + 1500000000, + 2151475890, + 43137475890 + ], + [ + 1400000, + 1400000, + 1820000, + 1820000, + 1820000, + 2000000, + 2100000, + 79000000, + 89000000, + 393360000, + 500000000, + 832601149, + 1000000000, + 1000000000, + 1001400000, + 1029290035, + 1400000000, + 2000000000, + 2226396459, + 5000000000, + 13212396459 + ], + [ + 0, + 0, + 1400000, + 100000000, + 300713354, + 363329029, + 482207534, + 566198619, + 983181947, + 1000000000, + 1000000001, + 1150000000, + 1500000000, + 1500000000, + 1851824556, + 2413645550, + 4326469361, + 5050545140, + 8555913661, + 22019645804, + 74825527805 + ], + [ + 0, + 0, + 0, + 1400000, + 2000000, + 2800000, + 50000000, + 79000000, + 99681991, + 142457231, + 168838749, + 401266835, + 691001199, + 927843121, + 1000000000, + 1410000000, + 1500000000, + 1500000000, + 1500000000, + 3000000000, + 10922740824 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 10000000, + 10000000, + 79000000, + 100000000, + 200000000, + 434976333, + 634252235, + 884200575, + 1000000000, + 1000000000, + 1410000000, + 1736967028, + 10020000000 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 79000000, + 79000000, + 100000000, + 100000000, + 168838749, + 229995468, + 399805400, + 771996281, + 1000000000, + 1000000001, + 1093176238, + 1500000000, + 1768401150, + 2272152649, + 4925616054, + 88082271390 + ], + [ + 0, + 1400000, + 1680000, + 2000000, + 50000000, + 79000000, + 90850000, + 168838749, + 254253583, + 300000000, + 502266243, + 945860711, + 1000000000, + 1000000000, + 1000000001, + 1469000000, + 1500000000, + 1500000000, + 1888575144, + 3084167076, + 28109929894 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 2000000, + 4108141, + 79000000, + 100000000, + 146881898, + 432696000, + 511219531, + 828098428, + 1000000000, + 1000000001, + 1094000000, + 1296747171, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 8902312, + 50000000, + 69285688, + 194865827, + 268310536, + 268310536, + 268310536, + 400000000, + 813876607, + 1000000000, + 1192278661, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10544955360 + ], + [ + 0, + 0, + 0, + 1400000, + 1400000, + 2000000, + 2090757, + 79000000, + 94000000, + 200000000, + 294000000, + 500000000, + 813876607, + 992823795, + 1223146362, + 1500000000, + 1500000000, + 1500000000, + 1999599999, + 2000000000, + 8252648051 + ], + [ + 0, + 80000, + 1400000, + 2000000, + 48896369, + 90000000, + 100000001, + 226420708, + 268310536, + 298263998, + 500529913, + 813876607, + 900555619, + 1000000000, + 1204180784, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 100000, + 1400000, + 2000000, + 50000000, + 79000000, + 89000000, + 100000000, + 281155268, + 500529913, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1609496831, + 3000000000, + 11320062643 + ], + [ + 0, + 1400000, + 1400000, + 10000000, + 36958039, + 79000000, + 89000000, + 177963780, + 288206090, + 432866495, + 500000000, + 813876607, + 966700792, + 1000000000, + 1119076281, + 1500000000, + 1500000000, + 2000000000, + 5288206090, + 18522117284, + 37650301322 + ], + [ + 0, + 0, + 0, + 1400000, + 1400000, + 1820000, + 2000000, + 2000000, + 59000000, + 177963780, + 418803424, + 500000000, + 713094228, + 974931253, + 1017381562, + 1220147947, + 1500000000, + 1500000000, + 2000000000, + 2366363053, + 38140139967 + ], + [ + 0, + 45429421, + 79000000, + 100000000, + 100000000, + 261218054, + 267879640, + 346424072, + 443749714, + 557457827, + 820987518, + 969332304, + 1000000000, + 1000000000, + 1000000000, + 1094000000, + 1412006672, + 1500000000, + 1500000000, + 3000000000, + 57326785305 + ], + [ + 0, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 283379286, + 565893133, + 820987518, + 1000000001, + 1200000000, + 1500000000, + 1631548958, + 10663261705 + ], + [ + 0, + 1400000, + 1400000, + 1910000, + 2000000, + 2000000, + 10000000, + 79000000, + 89000000, + 100000000, + 258735551, + 294000000, + 495386422, + 820987518, + 1000000000, + 1000000000, + 1000000001, + 1337211413, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 0, + 1400000, + 2000000, + 2000000, + 11400000, + 89000000, + 100000000, + 200000000, + 288800000, + 357928265, + 500000000, + 907371584, + 957695446, + 1000000000, + 1454664255, + 1500000000, + 1500000000, + 2000000000, + 18179597704 + ], + [ + 0, + 1400000, + 1470000, + 2000000, + 2000000, + 11400000, + 37870748, + 37870748, + 79000000, + 94000000, + 100000000, + 307265790, + 601073752, + 1000000000, + 1000000000, + 1000000000, + 1346793667, + 1500000000, + 1500000000, + 2000000000, + 31525811397 + ], + [ + 0, + 30000000, + 79000000, + 100000000, + 100000000, + 151400000, + 200000000, + 208872410, + 426965420, + 500000000, + 641651560, + 898597301, + 1000000000, + 1178493154, + 1231646982, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 1470000, + 1470000, + 1820000, + 2000000, + 2000000, + 10000000, + 22794617, + 79000000, + 100000000, + 173276619, + 500000000, + 1000000000, + 1000000000, + 1154500272, + 1346000000, + 1500000000, + 2000000000, + 2248945071, + 17532700295 + ], + [ + 0, + 1400000, + 1470000, + 2000000, + 2000000, + 14000000, + 79000000, + 100000000, + 288800000, + 434938303, + 500000000, + 500000000, + 1000000000, + 1000000000, + 1154500272, + 1346000000, + 1346000000, + 1405960850, + 1500000000, + 2531075967, + 23256607742 + ], + [ + 0, + 0, + 124400, + 1820000, + 2000000, + 2100000, + 79000000, + 89000000, + 115000000, + 328075608, + 500000000, + 625000000, + 1000000000, + 1000000000, + 1000124400, + 1341135385, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 11698670216 + ], + [ + 0, + 1400000, + 2000000, + 2595682, + 73466625, + 99000000, + 100000000, + 120000000, + 236033062, + 328674367, + 379623228, + 500000000, + 575000000, + 1000000000, + 1000000000, + 1328674367, + 1500000000, + 1500000000, + 1601207112, + 3000000000, + 43027669137 + ], + [ + 0, + 2000000, + 2063174, + 10000000, + 79000000, + 100000000, + 100000000, + 100000000, + 233197367, + 368330312, + 500000000, + 500000000, + 668906972, + 1000000001, + 1205896926, + 1346793667, + 1500000000, + 2000000000, + 2000000000, + 2521837126, + 10010000000 + ], + [ + 0, + 2, + 1400000, + 1400000, + 1654924, + 2000000, + 2000000, + 2000000, + 22650576, + 79000000, + 89000000, + 100000000, + 100000000, + 484996926, + 575000000, + 1000000000, + 1072786500, + 1500000000, + 1500000000, + 2000000000, + 13383061609 + ], + [ + 0, + 18824388, + 67317727, + 89000000, + 100000000, + 165216646, + 249747067, + 249747067, + 385254635, + 419824388, + 500000000, + 500000000, + 500000000, + 1000000000, + 1000000000, + 1360150457, + 1500000000, + 2000000000, + 3039649793, + 4781972287, + 43419824388 + ], + [ + 0, + 0, + 0, + 0, + 0, + 994080254, + 1000000000, + 1000000000, + 1102229533, + 1191326451, + 1217395280, + 1222021725, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1694509417, + 2000000000, + 11246577149 + ], + [ + 0, + 1400000, + 1400000, + 1470000, + 2000000, + 2000000, + 2000000, + 2000000, + 25000000, + 50000000, + 83899631, + 100000000, + 110976737, + 279265814, + 500000000, + 644498072, + 1000000001, + 1222021725, + 1500000000, + 1755282640, + 42441119028 + ], + [ + 1400000, + 2000000, + 2000000, + 2000000, + 2400000, + 79000000, + 115700000, + 160949535, + 210864564, + 283046998, + 373306752, + 567088472, + 570620577, + 575631475, + 1000000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 2596239038, + 43375631475 + ], + [ + 0, + 1, + 2000000, + 2000000, + 78067290, + 89000000, + 100000000, + 267856363, + 496491678, + 500000000, + 1000000000, + 1000000001, + 1225584881, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 9810106568, + 31792288683 + ], + [ + 0, + 1400000, + 1820000, + 2000000, + 2000000, + 2100000, + 67317727, + 89000000, + 100000000, + 110000000, + 345824544, + 500000000, + 554307229, + 1000000000, + 1000000000, + 1000000000, + 1229032792, + 1500000000, + 1500000000, + 2454354438, + 43454354438 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1470000, + 2400000, + 83899631, + 189820609, + 500000000, + 564912463, + 1000000000, + 1000000001, + 1304042987, + 1500000000, + 1500000000, + 1500000000, + 1705804247, + 2000000000, + 3000000000, + 6030715068 + ], + [ + 0, + 0, + 4876101, + 456182223, + 872332054, + 1000000000, + 1000000001, + 1000000001, + 1115519027, + 1325080315, + 1500000000, + 1500000000, + 1500000000, + 1542278199, + 1617000000, + 2520870329, + 4837259639, + 8516311475, + 10758872516, + 32658533638, + 90257676637 + ], + [ + 0, + 0, + 50000000, + 50000000, + 89000000, + 100000000, + 115290185, + 162552746, + 388210979, + 476468183, + 500000000, + 595332780, + 595978358, + 979836034, + 1000000000, + 1200000000, + 1500000000, + 1500000000, + 1641000000, + 4220505437, + 8595332780 + ], + [ + 0, + 752000, + 20000000, + 20000000, + 218622680, + 277661746, + 373306752, + 485936012, + 564912463, + 564912463, + 703566736, + 1000000001, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 6195087427, + 6195087427, + 71147952337 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 14000000, + 79000000, + 89000000, + 100644567, + 200000000, + 500000000, + 595332780, + 1000000000, + 1335229995, + 1500000000, + 1500000000, + 2000000000, + 11031442551 + ], + [ + 0, + 0, + 1, + 1400000, + 1470000, + 2000000, + 2800000, + 50000000, + 82256276, + 89000000, + 263183750, + 406348468, + 564912463, + 617862131, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 24834921319 + ], + [ + 0, + 289185, + 1400000, + 1470000, + 1820000, + 22000000, + 86664201, + 100000000, + 175522177, + 378413500, + 554307229, + 820896455, + 1000000000, + 1000000000, + 1100000000, + 1284459493, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10523918604 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 1680000, + 10000000, + 100000000, + 302661313, + 556435242, + 767955853, + 1000000000, + 1346872587, + 1500000000, + 1500000000, + 2000000000, + 30459615119 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1470000, + 2000000, + 50000000, + 79000000, + 89000000, + 200000000, + 229943538, + 256387186, + 466725145, + 770192440, + 1000000000, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 21486763551 + ], + [ + 0, + 0, + 79000000, + 110000000, + 229943538, + 249570715, + 317230354, + 349979229, + 507398389, + 805388384, + 899546690, + 1000000000, + 1000000003, + 1225577191, + 1500000000, + 1500000000, + 1500000000, + 1877979229, + 2000000000, + 5000000000, + 38511979980 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 2000000, + 50139343, + 84544537, + 100000000, + 164027713, + 233757147, + 465794301, + 508139236, + 556435242, + 556435242, + 1000000000, + 1122848657, + 1500000000, + 1500000000, + 8433123766 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 1820000, + 2100000, + 89000000, + 179210009, + 200000000, + 200000000, + 399034873, + 562834594, + 1000000000, + 1000000000, + 1249368109, + 1500000000, + 1891540106, + 3716973317, + 112153405265 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 1470000, + 1470000, + 10000000, + 79000000, + 103552557, + 272669186, + 567416701, + 1000000000, + 1112870484, + 1224304723, + 1500000000, + 1537235928, + 28773158505 + ], + [ + 0, + 1400000, + 1400000, + 1435000, + 1435000, + 1435000, + 1470000, + 2100000, + 10000000, + 89000000, + 100000000, + 200000000, + 500000000, + 500000000, + 571026649, + 1000000000, + 1260417542, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 1680000, + 7000000, + 79000000, + 89000000, + 100000000, + 108344463, + 298106586, + 687730176, + 855291390, + 1000000000, + 1000000000, + 1000000000, + 1022593861, + 1297324122, + 1500000000, + 1500000000, + 2000000000, + 2297842683, + 12340166675 + ], + [ + 0, + 89000000, + 100000000, + 115000000, + 176370515, + 258683536, + 420581943, + 494035918, + 566965527, + 983585099, + 1176370515, + 1185404643, + 1341579778, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3693161571, + 25587382865, + 25587382865 + ], + [ + 0, + 45200000, + 89000000, + 364725897, + 500000000, + 764393644, + 764393644, + 903427150, + 963747856, + 1000000004, + 1072544818, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1528787288, + 1974108287, + 3000000000, + 10010000000 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1400000, + 1540000, + 2100000, + 11400000, + 47769228, + 50000000, + 82800000, + 100000000, + 268896286, + 483246400, + 1000000000, + 1072544818, + 1500000000, + 1500000000, + 1500000000, + 1922519243, + 32311037137 + ], + [ + 0, + 1400000, + 1400000, + 1540000, + 1680000, + 2000000, + 10100000, + 79000000, + 89000000, + 100000000, + 151400000, + 500000000, + 882356432, + 1000000000, + 1000000000, + 1109955681, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 7706644189 + ], + [ + 0, + 1400000, + 1452500, + 1470000, + 2000000, + 4146345, + 45922996, + 99000000, + 100000000, + 120000000, + 214111584, + 500000000, + 667681345, + 1000000000, + 1000000000, + 1100000000, + 1500000000, + 1500000000, + 1600000000, + 3336994773, + 13205893405 + ], + [ + 0, + 1400000, + 1557500, + 2000000, + 10000000, + 14000000, + 69564405, + 100000000, + 136290103, + 292261689, + 500000000, + 744934599, + 764393644, + 986758627, + 1231613685, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 10010000000 + ], + [ + 0, + 1400000, + 1470000, + 1771000, + 2000000, + 10000000, + 31731643, + 79000000, + 89000000, + 226089194, + 236115467, + 426740212, + 567829517, + 939620939, + 1335000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1470000, + 1680000, + 1680000, + 1680000, + 1680000, + 2000000, + 17017648, + 68521600, + 100000000, + 157675844, + 317217648, + 547399879, + 593972785, + 1110315388, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 9245934895, + 10010000000 + ], + [ + 0, + 1400000, + 1540000, + 10000000, + 10000000, + 11400000, + 89000000, + 100000000, + 260785686, + 272962845, + 500000000, + 870371549, + 1000000000, + 1000000000, + 1000000004, + 1370496291, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 13488724823 + ], + [ + 0, + 1400000, + 1540000, + 1680000, + 2100000, + 59000000, + 99000000, + 100000000, + 236115467, + 500000000, + 567650353, + 1000000000, + 1000000000, + 1007038258, + 1232000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000, + 12873920441, + 31929782317 + ], + [ + 0, + 1400000, + 1470000, + 1820000, + 2800000, + 79000000, + 89000000, + 100000000, + 100000000, + 274392082, + 347737734, + 500000000, + 500000000, + 925477648, + 1000000000, + 1100000000, + 1233783744, + 1500000000, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 1540000, + 2000000, + 14000000, + 79000000, + 87804345, + 87804345, + 100000000, + 167074226, + 399898394, + 467894684, + 500000000, + 1000000000, + 1000000001, + 1413720104, + 1500000000, + 1500000000, + 1500000000, + 1999600000, + 3400816852, + 14654021049 + ], + [ + 0, + 1540000, + 1680000, + 1680000, + 1680000, + 2000000, + 14000000, + 79000000, + 89000000, + 399898394, + 429306159, + 450000000, + 500000000, + 707878767, + 1000000000, + 1000000000, + 1231613685, + 1500000000, + 1500000000, + 2000000000, + 78411233389 + ], + [ + 0, + 1400000, + 1680000, + 2000000, + 30000000, + 76764088, + 89000000, + 156999449, + 366752916, + 450000000, + 500000000, + 500000000, + 517902762, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1325275181, + 1500000000, + 1682015914, + 34428487017 + ], + [ + 0, + 1820000, + 2000000, + 2000000, + 2000000, + 50000000, + 59843123, + 59843123, + 79000000, + 100000000, + 100000000, + 375985155, + 469676512, + 824074519, + 1000000000, + 1271163405, + 1453000000, + 1500000000, + 1500000000, + 2000000000, + 259405986582 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2100000, + 79000000, + 100000000, + 105899968, + 292803874, + 450000000, + 500000000, + 606562501, + 1000000000, + 1000000001, + 1110729023, + 1333000000, + 1449000000, + 1500000000, + 2000000000, + 3587958106, + 10020000000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2100000, + 50000000, + 89000000, + 89000000, + 100000000, + 100000000, + 115000000, + 345824544, + 467894684, + 500000000, + 500000000, + 1000000000, + 1283502288, + 1449000000, + 3000000000, + 10010000000 + ], + [ + 0, + 1680000, + 2000000, + 2310000, + 9584742, + 75041794, + 100000000, + 159556472, + 177185074, + 450000000, + 536560627, + 926608367, + 1000000000, + 1000000000, + 1148000000, + 1333000000, + 1500000000, + 1500000000, + 1725000000, + 6000000000, + 51347979559 + ], + [ + 0, + 2000000, + 2000000, + 50000000, + 79000000, + 100000000, + 139869912, + 220633590, + 298026513, + 368987715, + 449606610, + 450000000, + 500000000, + 536708185, + 1000000000, + 1164563062, + 1292501872, + 1500000000, + 1600000000, + 2982965850, + 24781119221 + ], + [ + 0, + 2000000, + 2000000, + 11400000, + 62293931, + 89000000, + 173052187, + 418792512, + 500000000, + 500000000, + 913919271, + 1000000000, + 1000000000, + 1000000001, + 1292501872, + 1500000000, + 1520365030, + 2000000000, + 3057887321, + 10010000000, + 13500073179 + ], + [ + 0, + 0, + 0, + 0, + 2000000, + 2804053, + 79000000, + 91586692, + 94000000, + 151957309, + 207390038, + 373777271, + 500000000, + 1000000000, + 1000000000, + 1181972328, + 1500000000, + 1500000000, + 1642062699, + 4605608552, + 141756030711 + ], + [ + 0, + 2000000, + 2000000, + 2400000, + 50000000, + 79000000, + 79000000, + 100000000, + 177113889, + 177113889, + 420431117, + 500000000, + 600025952, + 975377144, + 1080046713, + 1197128042, + 1500000000, + 1500000000, + 1600000000, + 3000000000, + 33507403151 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2100000, + 45677863, + 89000000, + 100000000, + 100000000, + 441495309, + 555549350, + 875009045, + 1000000000, + 1186023288, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3555549350, + 36409711796 + ], + [ + 0, + 1540000, + 2000000, + 3979203, + 7000000, + 79000000, + 89000000, + 173391234, + 413211496, + 536560627, + 820928266, + 1000666667, + 1374071737, + 1500000000, + 1500000000, + 1500000000, + 1616691083, + 1999599999, + 2000000000, + 2000000000, + 10582955519 + ], + [ + 0, + 1400000, + 2000000, + 2804053, + 60000000, + 79000000, + 79000000, + 100000000, + 123673866, + 294000000, + 450000000, + 567916481, + 1000000000, + 1000000000, + 1225270807, + 1500000000, + 1568480840, + 2000000000, + 2000000000, + 3205848672, + 30188882184 + ], + [ + 0, + 0, + 100000, + 1470000, + 2000000, + 2000000, + 2000000, + 2800000, + 50000000, + 79000000, + 100000000, + 144014448, + 453528011, + 567916481, + 606545791, + 819493127, + 1225270807, + 1500000000, + 1600000000, + 2500000000, + 30606301553 + ], + [ + 0, + 1, + 1820000, + 2000000, + 12936887, + 79000000, + 225315339, + 536560627, + 565632205, + 617838440, + 617838440, + 617838440, + 993631545, + 993631545, + 1000000000, + 1129015644, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 15729314261 + ], + [ + 0, + 0, + 1400000, + 2000000, + 3032835, + 16787377, + 79000000, + 89000000, + 100000000, + 144014448, + 429168805, + 536560627, + 558614413, + 1000000000, + 1073121254, + 1500000000, + 1500000000, + 1500000000, + 1775859080, + 2121326634, + 8681038975 + ], + [ + 0, + 1400000, + 2000000, + 50000000, + 96274070, + 100000000, + 100000000, + 105227382, + 263183750, + 429168805, + 500000000, + 710514206, + 1144636980, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2130000000, + 10020000000 + ], + [ + 0, + 9968443, + 79000000, + 100000000, + 200000000, + 200000000, + 200000000, + 365111404, + 500000000, + 918945764, + 1000000000, + 1000000000, + 1144062417, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 3112845789, + 3137209379, + 5551483423, + 21822090477 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2087933, + 30274463, + 99000000, + 100000000, + 144991657, + 200000000, + 200000000, + 200000000, + 200000000, + 499155899, + 762363741, + 1000000001, + 1500000000, + 1500000000, + 2000000000, + 25000000000 + ], + [ + 0, + 1400000, + 2000000, + 2800000, + 66887814, + 89000000, + 89000000, + 120000000, + 200000000, + 428340246, + 600690355, + 1189611426, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2429740246, + 19581808951 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2100000, + 6860000, + 13709740, + 79000000, + 100000000, + 263183750, + 500000000, + 605123422, + 836096982, + 1000000000, + 1000000004, + 1365436032, + 1500000000, + 1716659337, + 2000000000, + 5000000000, + 96199134843 + ], + [ + 0, + 79000000, + 1000000001, + 1125720000, + 1255405646, + 1359394738, + 1465059735, + 1500000000, + 1600000000, + 1826930622, + 2000000000, + 2380625800, + 3118109916, + 3118109916, + 4575565804, + 4677568051, + 5000000000, + 6281150080, + 8840907424, + 57627818742, + 73873730060 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2100000, + 50000000, + 89000000, + 89000000, + 100000000, + 100000000, + 300000000, + 500000000, + 550345177, + 1000000000, + 1000000000, + 1382533356, + 1500000000, + 1567572903, + 2500000000, + 5453065927, + 16303764127 + ], + [ + 0, + 1400000, + 2000000, + 2100000, + 54587583, + 79000000, + 100000000, + 305278692, + 525241625, + 546910844, + 581315087, + 864114412, + 1000000000, + 1049902544, + 1500000000, + 1500000000, + 2300000000, + 14207229438, + 14207229438, + 14207229438, + 24066924061 + ], + [ + 0, + 0, + 0, + 89000000, + 89000000, + 127887534, + 127887534, + 297909238, + 297909238, + 690793908, + 1000000004, + 1524748984, + 2407295018, + 21394148241, + 21394148241, + 21394148241, + 21394148241, + 21394148241, + 21394148241, + 21394148241, + 21394148241 + ], + [ + 1400000, + 1400000, + 2000000, + 2000000, + 2800000, + 11400000, + 79000000, + 79000000, + 89000000, + 100000000, + 100000000, + 250316254, + 258200000, + 495031318, + 546910844, + 575031318, + 830091341, + 1000000000, + 1211178187, + 1594104982, + 10020000000 + ], + [ + 0, + 2000000, + 50000000, + 55756825, + 71992941, + 95947747, + 213968829, + 379043423, + 500000000, + 546910844, + 687378356, + 1000000000, + 1000000000, + 1005000000, + 1382533356, + 1500000000, + 1500000000, + 1600000000, + 1826000000, + 5000000000, + 13130000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 6860000, + 50000000, + 89000000, + 100000000, + 204841003, + 204841003, + 215839261, + 417086012, + 625000000, + 1000000000, + 1500000000, + 1500000000, + 1712000000, + 2000000000, + 2300000000, + 3968192239, + 28791927319 + ], + [ + 0, + 0, + 0, + 0, + 0, + 45477427, + 110000000, + 135952935, + 225987148, + 266694082, + 319490445, + 1000000000, + 1000000000, + 1000000000, + 1500000000, + 1600000000, + 2000000000, + 2399737050, + 3398799359, + 6128866218, + 775636393441 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000000, + 2000000000, + 2147195509, + 2836893996, + 3000000000, + 3167119132, + 3406826042, + 3968192239, + 4140932895, + 5000000000, + 5887582978, + 12817157400, + 21934862332, + 311861319742 + ], + [ + 0, + 0, + 0, + 0, + 0, + 707682685, + 1449745954, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 2103597172, + 3406826042, + 7925001402, + 22939407850, + 91133152560, + 160965253003 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 37147090, + 89000000, + 100000000, + 110000000, + 235623562, + 319490445, + 516906542, + 550884846, + 680843662, + 1000000000, + 1000000000, + 1019000000, + 1519210849, + 2000000000, + 10020000000 + ], + [ + 0, + 1, + 1400000, + 1540000, + 2000000, + 2000000, + 2000000, + 2000000, + 7979999, + 50000000, + 100000000, + 100000000, + 234472982, + 473844631, + 896436031, + 1000000000, + 1000000001, + 1500000000, + 2000000000, + 2000000000, + 96123934492 + ], + [ + 0, + 0, + 1, + 1400000, + 2000000, + 2000000, + 79000000, + 101771280, + 174578356, + 186855035, + 294000000, + 803808307, + 975400000, + 1000000001, + 1500000000, + 2000000000, + 2000000000, + 2000000000, + 2000000000, + 3049853211, + 18916060795 + ], + [ + 0, + 0, + 1400000, + 2000000, + 11400000, + 29580659, + 79000000, + 89000000, + 89000000, + 115000000, + 202759015, + 394944987, + 577627152, + 892483906, + 1000000000, + 1000000000, + 1500000000, + 2000000000, + 2000000000, + 2364415209, + 10760458490 + ], + [ + 0, + 0, + 2000000, + 10000000, + 79000000, + 79000000, + 89000000, + 89000000, + 100000000, + 100885640, + 168172418, + 168172418, + 236931990, + 338100000, + 753282229, + 1000000000, + 1500000000, + 2000000000, + 2000000000, + 4971228141, + 67845405796 + ], + [ + 0, + 0, + 0, + 1235000, + 1400000, + 2000000, + 14000000, + 89000000, + 100000000, + 240588344, + 546241338, + 1000000000, + 1000000000, + 1404165475, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2220000000, + 4730017029 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 50000000, + 100000000, + 101602700, + 179855367, + 485410599, + 500000000, + 591140187, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1867215512, + 2000000000, + 2000000000, + 3691843650, + 110095374130 + ], + [ + 0, + 2000000, + 2000000, + 72200000, + 79000000, + 100000000, + 100000000, + 172891617, + 234373407, + 357206878, + 508984164, + 628177539, + 1000000000, + 1000000000, + 1000000001, + 1019000000, + 1500000000, + 1500000000, + 2000000000, + 4940522571, + 10020000000 + ], + [ + 1400000, + 1400000, + 1400000, + 2000000, + 2000000, + 5813660, + 7000000, + 33994319, + 34560000, + 89000000, + 100000000, + 195562147, + 294000000, + 508984164, + 508984164, + 508984164, + 508984164, + 896897566, + 1500000000, + 2000000000, + 8000000000 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 10000000, + 89000000, + 100000000, + 215253573, + 500000000, + 1000000000, + 1000000000, + 1273511124, + 1500000000, + 1500000000, + 1500000000, + 1509279747, + 2720056686, + 31562158510 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 10000000, + 50000000, + 73845067, + 89000000, + 100000000, + 147132909, + 344982463, + 500000000, + 500000000, + 633731011, + 1000000000, + 1260067220, + 1500000000, + 1500000000, + 1600000000, + 43245016929 + ], + [ + 0, + 1400000, + 1470000, + 2000000, + 2000000, + 37150374, + 79000000, + 100000000, + 254351620, + 400393206, + 500000000, + 701859348, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2200000000, + 112874066873 + ], + [ + 0, + 0, + 1, + 100000000, + 175847695, + 175847695, + 351425934, + 500000000, + 966392323, + 1000000000, + 1094000000, + 1247834997, + 1500000000, + 1500000000, + 1759824229, + 2000000000, + 3103395555, + 4193988114, + 14001347278, + 27644050064, + 284333868521 + ], + [ + 0, + 20000000, + 20000000, + 20000000, + 89000000, + 500000000, + 500000000, + 574340339, + 832572459, + 1000000000, + 1000000004, + 1329323705, + 1500000000, + 2000000000, + 2000000000, + 2500000000, + 5000000000, + 6419790045, + 6419790045, + 17928820895, + 97693231874 + ], + [ + 0, + 0, + 1, + 1820000, + 19750000, + 50000000, + 79000000, + 94000000, + 100000000, + 255719654, + 433049354, + 521039105, + 1000000000, + 1000000000, + 1155334095, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 11972006995 + ], + [ + 1400000, + 1750000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 10000000, + 10000000, + 10000000, + 79000000, + 79000000, + 100000000, + 136291049, + 500000000, + 793446263, + 1000000000, + 2000000000, + 2000000000, + 43142656174 + ], + [ + 1, + 1470000, + 2000000, + 2000000, + 50000000, + 57719539, + 79000000, + 79000000, + 89000000, + 288124755, + 498006757, + 736062555, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1964321199, + 2000000000, + 2686897172, + 4280249143, + 23273897172 + ], + [ + 0, + 2000000, + 42433934, + 79000000, + 100000000, + 272610282, + 477632174, + 711849820, + 938943252, + 1000000000, + 1000000000, + 1000000001, + 1388420038, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 2000000000, + 5000000000, + 43388420038 + ], + [ + 0, + 1400000, + 1470000, + 2000000, + 2000000, + 2000000, + 10000000, + 19359529, + 72990000, + 89000000, + 119359529, + 414506635, + 594718480, + 981581592, + 1045000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2712562022, + 10020000000 + ], + [ + 0, + 597326954, + 597326954, + 597326954, + 597326954, + 597326954, + 597326954, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1150592799, + 1150592799, + 1500000000, + 2000000000, + 5000000000, + 31870239176, + 31870239176, + 31870239176, + 31870239176 + ], + [ + 0, + 0, + 1400000, + 1680000, + 2000000, + 10000000, + 11962500, + 50000000, + 79000000, + 89000000, + 122531329, + 406969910, + 543699034, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 61802802248 + ], + [ + 0, + 2000000, + 2000000, + 2000000, + 2800000, + 7000000, + 14000000, + 135286966, + 178355503, + 487159934, + 577780352, + 1000000000, + 1000000000, + 1000977029, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 1600000000, + 2000000000, + 28254789338 + ], + [ + 0, + 20000000, + 89000000, + 99000000, + 179855367, + 284999897, + 292357862, + 506543466, + 577780352, + 597326954, + 779335224, + 876276549, + 1000000000, + 1291712284, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 4298064255, + 22937651017, + 69315360706 + ], + [ + 0, + 0, + 316760, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 2800000, + 54305696, + 100000000, + 140257005, + 345263558, + 574640407, + 1000000000, + 1176264816, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 13974987484 + ], + [ + 0, + 1750000, + 2000000, + 2000000, + 2800000, + 50000000, + 89000000, + 100000000, + 183241899, + 372411726, + 488406531, + 500000000, + 681902899, + 1000000000, + 1016457316, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 25669219610, + 25669219610 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 11275000, + 30769615, + 79000000, + 89000000, + 100000000, + 171010129, + 500000000, + 1000000000, + 1000000000, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 1964000000, + 43321381207 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 10000000, + 44471054, + 89000000, + 100000000, + 418201008, + 497700025, + 561667511, + 1000000000, + 1000000000, + 1168001879, + 1500000000, + 1500000000, + 1600000000, + 4324529488, + 21747615450, + 43318177517 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2100000, + 50000000, + 50000000, + 50000000, + 66180446, + 89336494, + 115000000, + 385467000, + 497700025, + 619850159, + 1000000000, + 1467161775, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 102000000000 + ], + [ + 0, + 1400000, + 2000000, + 2100000, + 50000000, + 84431321, + 100000000, + 200000000, + 317760374, + 501013332, + 1000000000, + 1402800000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 43296417823 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 3388000, + 79000000, + 100000000, + 204081711, + 322492539, + 494341697, + 500000000, + 551210243, + 1000000000, + 1094000000, + 1500000000, + 1500000000, + 2000000000, + 12820765130 + ], + [ + 0, + 2050000, + 11620000, + 42725869, + 42725869, + 42725869, + 42725869, + 42725869, + 42725869, + 42725869, + 42725869, + 42725869, + 42725869, + 42725869, + 42725869, + 89000000, + 391360195, + 1000000000, + 1500000000, + 1500000000, + 10010000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2450000, + 42725869, + 50000000, + 79000000, + 92550605, + 100000000, + 245617334, + 391360195, + 767011850, + 1000000000, + 1162818242, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 3000000000, + 43092550605 + ], + [ + 0, + 1400000, + 1400000, + 1820000, + 2000000, + 2000000, + 2000000, + 79000000, + 82800000, + 89000000, + 237743395, + 500000000, + 1000000000, + 1000000000, + 1049097167, + 1131358323, + 1500000000, + 1500000000, + 1500000000, + 2073748850, + 32959068104 + ], + [ + 0, + 2000000, + 2000000, + 10000000, + 11025000, + 79000000, + 79000000, + 79000000, + 89000000, + 100000000, + 192534114, + 204081711, + 245617334, + 376982745, + 910165028, + 1000000000, + 1500000000, + 1906204801, + 2000000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 11400000, + 79000000, + 100000000, + 170615844, + 221414231, + 328699380, + 490972052, + 552089882, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 47953643085 + ], + [ + 0, + 0, + 2000000, + 2000000, + 9635374, + 50000000, + 132067604, + 294000000, + 328699380, + 500000000, + 821792495, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2209067604, + 10010000000 + ], + [ + 0, + 1680000, + 2000000, + 5422074, + 50000000, + 100000000, + 182688969, + 191971472, + 237743395, + 474230815, + 527991389, + 1000000000, + 1000000000, + 1090789510, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 2500000000, + 3935004039, + 16736155522 + ], + [ + 0, + 1400000, + 2000000, + 10000000, + 79000000, + 100000000, + 270179067, + 491488864, + 500000000, + 1000000000, + 1090789510, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 6000000000, + 10010000000 + ], + [ + 0, + 0, + 2000000, + 19089267, + 19089267, + 51271043, + 79000000, + 109338753, + 200000000, + 281700000, + 607190097, + 990600000, + 1254647852, + 1500000000, + 1500000000, + 1500000000, + 1900051769, + 2000000000, + 4287826627, + 15761757477, + 107986368185 + ], + [ + 0, + 0, + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 2100000, + 31944928, + 89000000, + 100000000, + 155544876, + 216309615, + 747584821, + 914329046, + 1179106556, + 1500000000, + 1500000000, + 2000000000, + 5000000000, + 10710465097 + ], + [ + 0, + 2100000, + 31944928, + 89000000, + 112435834, + 369020140, + 500000000, + 747584821, + 1000000000, + 1000000001, + 1282905351, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2166048068, + 5000000000, + 79327378590 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 3345024, + 11399999, + 50493794, + 89000000, + 100000000, + 328699380, + 607190097, + 893717983, + 1000000000, + 1001400000, + 1257775110, + 1500000000, + 1500000000, + 1699001727, + 2000000000, + 4591076575, + 10020000000 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 10330187, + 79000000, + 110000000, + 338699380, + 698268612, + 984347909, + 1000000000, + 1000000001, + 1411519728, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3256584489, + 62086423749 + ], + [ + 0, + 348290, + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 14000000, + 43174025, + 89000000, + 225751651, + 286958410, + 500000000, + 680939108, + 868234953, + 881050785, + 1000000000, + 1259964325, + 2000000000, + 4000000000, + 4901463749227 + ], + [ + 0, + 0, + 100000000, + 496746585, + 543849360, + 747584821, + 956775094, + 1000000000, + 1000000000, + 1000000004, + 1259964325, + 1367636287, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 2000000000, + 8218956035 + ], + [ + 1400000, + 1820000, + 1820000, + 1820000, + 2000000, + 2000000, + 2000000, + 2000000, + 2200000, + 11202989, + 16059495, + 16059495, + 68602750, + 100000000, + 100000000, + 259614399, + 548759024, + 930058502, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 0, + 1400000, + 2000000, + 2000000, + 46987843, + 100000000, + 106358458, + 494297862, + 608013040, + 1000000000, + 1000000000, + 1000000001, + 1218701044, + 1418112780, + 1500000000, + 1500000000, + 1641000000, + 2200000000, + 10020000000 + ], + [ + 0, + 0, + 5000, + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 11499188, + 100000000, + 130000000, + 500000000, + 607726900, + 1000000000, + 1140515082, + 1458878775, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 16000000000 + ], + [ + 0, + 0, + 1400000, + 2000000, + 89000000, + 99666795, + 112281036, + 225751651, + 494365736, + 607190097, + 741245203, + 1000000000, + 1095895624, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10000000000, + 41227624734 + ], + [ + 0, + 0, + 0, + 0, + 0, + 2840290042, + 3000000000, + 4000000000, + 5000000000, + 5361626249, + 6090881817, + 8107967026, + 12279130779, + 15057772479, + 18217816751, + 23265157456, + 40861603224, + 59037450568, + 112330204018, + 140751931007, + 488052746048 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 11400000, + 79000000, + 100000000, + 166942950, + 200000000, + 267335418, + 500000000, + 1000000000, + 1126764600, + 1500000000, + 1500000000, + 1500000000, + 1962833241, + 2044927768, + 15524476664 + ], + [ + 0, + 0, + 221414231, + 500093409, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1000000002, + 1200000000, + 1500000000, + 1600000000, + 2000000000, + 2978921245, + 5140874936, + 14734956935, + 115091124740, + 115091124740, + 115091124740, + 115091124740, + 124806168848 + ], + [ + 0, + 0, + 0, + 1400000, + 79000000, + 100000000, + 200000000, + 293146539, + 500000000, + 928609370, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1907244099, + 5158420697, + 10068534610, + 39607283982, + 39607283982 + ], + [ + 0, + 0, + 0, + 0, + 100000, + 1400000, + 2000000, + 2000000, + 2000000, + 34372771, + 50000000, + 89000000, + 110995690, + 263058431, + 420000000, + 1000000000, + 1000000000, + 1500000000, + 2000000000, + 4616715845, + 574158552682 + ], + [ + 0, + 0, + 11, + 268247328, + 785922781, + 987571890, + 1000000000, + 1000000000, + 1000000001, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1674091427, + 1907244099, + 2000000000, + 2000000000, + 2795000000, + 4742137237, + 10934020804, + 38841417908 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 11400000, + 16050000, + 79000000, + 100000000, + 162875825, + 442680000, + 1000000000, + 1200000000, + 1500000000, + 1500000000, + 1857516437, + 1907244099, + 2000000000, + 3679791846, + 12325455699 + ], + [ + 0, + 1400000, + 2000000, + 10000000, + 50000000, + 89000000, + 89000000, + 104261143, + 442680000, + 789256940, + 1000000000, + 1000000000, + 1200000000, + 1500000000, + 1500000000, + 1725000000, + 1907244099, + 2000000000, + 2555587454, + 3701184742, + 13217212725 + ], + [ + 0, + 160000, + 1470000, + 1820000, + 2000000, + 50000000, + 89000000, + 100000000, + 183404556, + 480901869, + 588367048, + 1000000000, + 1000000000, + 1395074608, + 1500000000, + 1500000000, + 1500000000, + 1956000000, + 2000000000, + 3717505948, + 10010000000 + ], + [ + 0, + 100000, + 2000000, + 2000000, + 11399999, + 50000000, + 79000000, + 90000000, + 165006397, + 500000000, + 1000000000, + 1000000000, + 1200000000, + 1203811549, + 1500000000, + 1500000000, + 1956000000, + 2000000000, + 2500000000, + 3312840279, + 10020000000 + ], + [ + 0, + 0, + 2000000, + 2000000, + 9345260, + 79000000, + 94000000, + 100000000, + 145050000, + 273874827, + 730233777, + 1000000000, + 1000000000, + 1100000000, + 1251084100, + 1500000000, + 1500000000, + 1857516437, + 2323502633, + 5701517835, + 99799979279 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 43952913, + 50000000, + 89000000, + 162875825, + 500000000, + 778995665, + 1000000000, + 1000000000, + 1000000000, + 1220690962, + 1500000000, + 1500000000, + 1857516437, + 2000000000, + 2000000000, + 3757448023, + 16568069774 + ], + [ + 0, + 100000, + 2000000, + 2000000, + 27676456, + 100000000, + 162875825, + 506383649, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1400000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 3325422149, + 4029638028, + 30451877160 + ], + [ + 0, + 1, + 1400000, + 2000000, + 2113086, + 11255033, + 50000000, + 79000000, + 162875825, + 863720165, + 1000000000, + 1000000001, + 1374000000, + 1600000000, + 1600000000, + 1857516437, + 2000000000, + 2161331069, + 3793241466, + 8000000000, + 44109549909 + ], + [ + 0, + 0, + 50000000, + 79000000, + 89000000, + 254937999, + 254937999, + 606656631, + 1000000000, + 1000000000, + 1000000001, + 1000000001, + 1214400731, + 1513379044, + 1907000000, + 2000000000, + 2288090986, + 3845599544, + 28506269180, + 28506269180, + 39933045413 + ], + [ + 0, + 0, + 0, + 10372629, + 10372629, + 31474903, + 31474903, + 79000000, + 100000000, + 223660903, + 606656631, + 1000000000, + 1000000001, + 1200000000, + 1500000000, + 1787019253, + 1857516437, + 3000000000, + 12490548098, + 12490548098, + 263517915482 + ], + [ + 0, + 20, + 1400000, + 1680000, + 2000000, + 2000000, + 2800000, + 11255033, + 31464634, + 79000000, + 109066610, + 667322294, + 1000000000, + 1000000001, + 1425894951, + 1500000000, + 1519056121, + 1857516437, + 2000000000, + 2628564697, + 72118629731 + ], + [ + 0, + 0, + 0, + 0, + 1100000000, + 1309029171, + 1500000000, + 1857000000, + 1861000000, + 1907000000, + 2000000000, + 2000000000, + 2000000000, + 2043517901, + 3295877176, + 4932648446, + 6304693237, + 12813946577, + 20746118613, + 35430992431, + 222161870628 + ], + [ + 0, + 14000000, + 20000000, + 50000000, + 64821476, + 66221476, + 79919436, + 100000000, + 212348504, + 340722602, + 630699810, + 1000000000, + 1000000000, + 1000000000, + 1031000000, + 1378347785, + 1500000000, + 1857516437, + 2130585123, + 2473632842, + 47000000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 10000000, + 11400000, + 79000000, + 100000000, + 109066610, + 355679990, + 590766866, + 903712845, + 1000000000, + 1000000003, + 1500000000, + 1500000000, + 1796340128, + 2761425837, + 30873752038, + 30873752038 + ], + [ + 0, + 50000000, + 79000000, + 100000000, + 145996164, + 434335083, + 512422448, + 828324585, + 1000000000, + 1000000000, + 1000000001, + 1279058631, + 1337611593, + 1337611593, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 2015576276, + 3000000000, + 35750403164 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2800000, + 20000000, + 50000000, + 79000000, + 100000000, + 300000000, + 828324585, + 1000000000, + 1000000001, + 1500000000, + 1519056121, + 1861000000, + 2000000000, + 2000000000, + 16175881800 + ], + [ + 0, + 20000000, + 20000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1152000000, + 1194421478, + 1423619504, + 1818589720, + 2000000000, + 2000000000, + 2000000000, + 2473933867, + 3206097285, + 6001400000, + 95211458269 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 3000000, + 48305607, + 79000000, + 89000000, + 100000000, + 110000000, + 359795960, + 630699810, + 909600640, + 1000000000, + 1152000000, + 1500000000, + 1519056121, + 2000000000, + 2839824034, + 30000000000 + ], + [ + 0, + 1400000, + 2000000, + 2100000, + 89000000, + 100000000, + 100000000, + 264151126, + 590766866, + 817275960, + 851247763, + 1000000000, + 1000000000, + 1247400495, + 1500000000, + 1500000000, + 1532604682, + 1818589720, + 1861000000, + 5000000000, + 14202289611 + ], + [ + 0, + 1400000, + 2000000, + 2800000, + 11400000, + 37597052, + 90926407, + 100000000, + 109519819, + 330000000, + 502484490, + 590766866, + 590766866, + 776372306, + 940508805, + 1000000000, + 1500000000, + 1500000000, + 1737096148, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 0, + 1400000, + 1540000, + 2000000, + 2000000, + 79000000, + 89000000, + 100000000, + 220235289, + 625913940, + 663974328, + 843855862, + 1000000000, + 1000000000, + 1000000000, + 1500000000, + 1843855862, + 2000000000, + 15884607947 + ], + [ + 0, + 0, + 127883763, + 226542134, + 238894094, + 577857164, + 786289121, + 1000000000, + 1000000000, + 1217519950, + 1366662828, + 1500000000, + 1500001947, + 1500001947, + 1536430580, + 1861000000, + 2993018161, + 7886826473, + 13012019766, + 13012019766, + 45640599406 + ], + [ + 0, + 50000000, + 93396785, + 411298521, + 422017444, + 422017444, + 510000000, + 625913940, + 793024804, + 960000000, + 1000000001, + 1283227718, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 3071382408, + 10128475070, + 24015559165, + 24015559165 + ], + [ + 0, + 0, + 0, + 38110738, + 68496635, + 88750173, + 100000000, + 104079052, + 124230839, + 124230839, + 198339323, + 393631739, + 733648894, + 1000000000, + 1095222560, + 1465308636, + 1500000000, + 1500001370, + 1900350850, + 2594230839, + 46676912046 + ], + [ + 1, + 1400000, + 1680000, + 1820000, + 1820000, + 2000000, + 2000000, + 2000000, + 2000000, + 2100000, + 11400000, + 79000000, + 79000000, + 89000000, + 89000000, + 170423191, + 502484490, + 1000000000, + 1287000000, + 1818589720, + 10020000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 50000000, + 79000000, + 100000000, + 189776916, + 321252163, + 355903470, + 622063257, + 1000000000, + 1031673038, + 1319674080, + 1465308636, + 1500000000, + 1500000000, + 1532604682, + 2000000000, + 531448883739, + 531448883739 + ], + [ + 0, + 50000000, + 79000000, + 189776916, + 426551508, + 559327488, + 667525959, + 835571232, + 1000000000, + 1000000000, + 1000000001, + 1109567294, + 1234732453, + 1500000000, + 1500000000, + 1500001170, + 2000000000, + 2782450445, + 20307049578, + 20307049578, + 20307049578 + ], + [ + 0, + 467835267, + 500000000, + 823950077, + 823950077, + 966630726, + 1000000001, + 1375138719, + 1500000000, + 1864863739, + 2000000000, + 2017590540, + 2535229060, + 6200187473, + 9283112889, + 13330897598, + 14076962822, + 35269609690, + 46842991018, + 225638873559, + 469102565761 + ], + [ + 0, + 0, + 1400000, + 4037000, + 50000000, + 74487019, + 79000000, + 89000000, + 90000000, + 100000000, + 208884529, + 608013040, + 859417858, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 236855326597 + ], + [ + 0, + 0, + 100000, + 1400000, + 2000000, + 2000000, + 2000000, + 2205000, + 11400000, + 74620685, + 100000000, + 221645669, + 500000000, + 823950077, + 1000000001, + 1500000000, + 1500000000, + 1507000000, + 1953105065, + 2000000000, + 82366903127 + ], + [ + 1400000, + 1400000, + 1680000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2100000, + 11400000, + 79000000, + 89000000, + 89000000, + 89000000, + 362887114, + 950440186, + 992665358, + 1000000000, + 1945854222, + 2000000000, + 10010000000 + ], + [ + 0, + 2000000, + 2800000, + 79000000, + 100000000, + 100000000, + 157955572, + 440422923, + 658554876, + 959173427, + 1000000000, + 1000000000, + 1028953289, + 1500000000, + 1500000000, + 1612866972, + 2000000000, + 2263271147, + 3979271147, + 11197943648, + 48337384974 + ], + [ + 0, + 1, + 50000000, + 79000000, + 100000000, + 150000000, + 498988413, + 606656631, + 662931384, + 1000000000, + 1000000000, + 1000000000, + 1000000003, + 1423322303, + 1500000000, + 1500001613, + 2000000000, + 2000000000, + 2262766541, + 2500000000, + 10020000000 + ], + [ + 0, + 1400000, + 1771000, + 2000000, + 2000000, + 5600000, + 63449320, + 80304269, + 89000000, + 106537991, + 416365358, + 574384781, + 1000000000, + 1111400869, + 1500000000, + 1500000000, + 1711000000, + 2000000000, + 2130759835, + 3090233623, + 10010000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2800000, + 50000000, + 50000000, + 89000000, + 176486877, + 477576906, + 673465337, + 1000000000, + 1000000000, + 1137020783, + 1213873150, + 1500000000, + 1500000000, + 1918276177, + 2000000000, + 2358548513, + 15000000000 + ], + [ + 0, + 1400000, + 1540000, + 1680000, + 2000000, + 10000000, + 64411234, + 89000000, + 139388458, + 366090991, + 686225473, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500001608, + 1500001608, + 1600000000, + 2000000000, + 2908953085, + 10020000000 + ], + [ + 0, + 1400000, + 1680000, + 1820000, + 2000000, + 2000000, + 27315910, + 79000000, + 89000000, + 94865173, + 188453447, + 391298525, + 737191102, + 975467267, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3493751177, + 6580548083 + ], + [ + 1, + 1470000, + 1750000, + 2000000, + 5600000, + 10000000, + 34135392, + 53760000, + 79000000, + 79000000, + 94000000, + 110000000, + 445018916, + 563420091, + 686225473, + 849703441, + 889887808, + 1012006539, + 1904531316, + 2046700577, + 10020000000 + ], + [ + 0, + 0, + 0, + 57598240, + 100000000, + 194844662, + 200323405, + 399240954, + 500000000, + 1000000000, + 1135697594, + 1294382786, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500001902, + 1641000000, + 2000000000, + 27134347233 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 5600000, + 50000000, + 89000000, + 94299360, + 100000000, + 151400000, + 496800000, + 500000000, + 665963649, + 1000000000, + 1004455807, + 1363396079, + 1500000000, + 1539529693, + 2444329783, + 10143331001 + ], + [ + 0, + 1400000, + 2000000, + 2400000, + 54380224, + 89000000, + 100000000, + 238100603, + 341822462, + 492643276, + 656085667, + 679617243, + 1000000000, + 1000000001, + 1244577782, + 1500000000, + 1500000000, + 1500000000, + 1806000000, + 3000000000, + 21771298218 + ], + [ + 0, + 1400000, + 1771000, + 2000000, + 2000000, + 2000000, + 6269136, + 67392778, + 89000000, + 100000000, + 496800000, + 607703477, + 1000000000, + 1000000000, + 1000000000, + 1012000000, + 1244577782, + 1365138433, + 1500000000, + 2000000000, + 10049802238 + ], + [ + 0, + 0, + 2000000, + 2000000, + 50000000, + 75735642, + 89000000, + 100000000, + 222493180, + 500000000, + 528300000, + 1000000000, + 1000000000, + 1000000634, + 1400000000, + 1500000000, + 1500000000, + 1500001049, + 2027194476, + 4828574545, + 32599592326 + ], + [ + 0, + 41676044, + 100000000, + 193967994, + 325566143, + 325566143, + 528300000, + 542460720, + 656085667, + 1000000000, + 1012000000, + 1104944223, + 1104944223, + 1104944223, + 1334706197, + 1457796576, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 45619979856 + ], + [ + 0, + 1400000, + 1750000, + 2000000, + 2000000, + 2000000, + 2000000, + 2100000, + 4200000, + 4200000, + 4200000, + 50000000, + 70607693, + 94000000, + 294000000, + 593656652, + 1092595965, + 1500000000, + 1500000000, + 1600000000, + 10020000000 + ], + [ + 0, + 2000000, + 3800000, + 20144679, + 79000000, + 89000000, + 100000000, + 151400000, + 300000000, + 300000000, + 484346397, + 568917133, + 1000000000, + 1218281098, + 1500000000, + 1500000000, + 1500000000, + 1539000000, + 2000000000, + 2355078384, + 10078268013 + ], + [ + 0, + 1680000, + 2000000, + 4200000, + 41220201, + 50000000, + 79000000, + 89000000, + 100000000, + 232380397, + 232380397, + 300000000, + 541390546, + 877382016, + 1000000000, + 1218281098, + 1500000000, + 1500000000, + 1500001442, + 2132416166, + 19420577389 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2800000, + 79000000, + 89000000, + 89000000, + 107791559, + 167859941, + 194466408, + 453400404, + 568489285, + 723348186, + 1000000000, + 1000000000, + 1269502500, + 1500000000, + 1500000000, + 1500000000, + 10184659572 + ], + [ + 0, + 1400000, + 1820000, + 2100000, + 45610100, + 89000000, + 100000000, + 120000000, + 223808149, + 294000000, + 300000000, + 508257607, + 627977503, + 1000000000, + 1000000000, + 1012000000, + 1500000000, + 1500000000, + 1817748239, + 3490661312, + 42699374197 + ], + [ + 0, + 1820001, + 2000000, + 2000000, + 4200000, + 79000000, + 94000000, + 232380397, + 333663584, + 500000000, + 500000000, + 600000000, + 1000000000, + 1500001953, + 1500001953, + 2000000000, + 2000000000, + 2000000000, + 28202903749, + 28202903749, + 28202903749 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2100000, + 34126060, + 94000000, + 100000000, + 100000000, + 289276484, + 345158701, + 454410933, + 500000000, + 1000000000, + 1000000000, + 1348863495, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 12813065911 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2800000, + 50000000, + 79000000, + 217047543, + 217047543, + 342238640, + 500000000, + 1000000000, + 1000000000, + 1000000000, + 1264990181, + 1500000000, + 1500000000, + 1500000000, + 2264990181, + 3775388377, + 36285682021 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 58690877, + 89000000, + 89000000, + 94000000, + 110000000, + 267237457, + 280910954, + 393685694, + 500000000, + 500000000, + 1000000000, + 1074824837, + 1500000000, + 1500000000, + 1500001432, + 2000000000, + 10329858987 + ], + [ + 0, + 1053710, + 1053710, + 1400000, + 2000000, + 2000000, + 11400000, + 34126060, + 83051372, + 100000000, + 153311405, + 278441817, + 478200000, + 500000000, + 642935503, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 0, + 2000000, + 2000000, + 34126060, + 89000000, + 99000000, + 202874510, + 345158701, + 631765609, + 1000000001, + 1388270523, + 1437000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2543541828, + 8331418312 + ], + [ + 0, + 1000000, + 2000000, + 2000000, + 2000000, + 5610841, + 50000000, + 89000000, + 100000000, + 265051416, + 351829792, + 500000000, + 630792326, + 1000000000, + 1150238822, + 1388270523, + 1500000000, + 1500000000, + 2000000000, + 3183041059, + 14773838391 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2800000, + 28502451, + 94000000, + 204552767, + 500000000, + 990609165, + 1000000000, + 1000000000, + 1307363778, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 4928696544, + 40340061559 + ], + [ + 0, + 2000000, + 2000000, + 2800000, + 79000000, + 100000000, + 174918634, + 223302701, + 395893611, + 500000000, + 500000000, + 641072041, + 1000000000, + 1288983112, + 1388270523, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10000000000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2800000, + 79000000, + 89000000, + 168217944, + 168217944, + 182134138, + 425345328, + 500000000, + 575000000, + 1000000000, + 1000000001, + 1378805403, + 1500000000, + 1500000000, + 2000000000, + 2665754484, + 45112408784 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2100000, + 2100000, + 2100000, + 2100000, + 79000000, + 153311405, + 432691311, + 529681675, + 943520832, + 1000000000, + 1327322673, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 2411959424, + 12525976560 + ], + [ + 0, + 1400000, + 2000000, + 50000000, + 89000000, + 94000000, + 173910733, + 489147127, + 500000000, + 752564615, + 906872392, + 1000000000, + 1000000001, + 1209128026, + 1500000000, + 1500000000, + 2000000000, + 2931251532, + 26679675626, + 26679675626, + 26679675626 + ], + [ + 1400000, + 1820000, + 1820000, + 2000000, + 2100000, + 79000000, + 79000000, + 89000000, + 89000000, + 153311405, + 197620256, + 378399697, + 450315486, + 500000000, + 877620256, + 942586106, + 1000000000, + 1439963884, + 2000000000, + 3044334550, + 6006116507 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 7000000, + 79000000, + 100000000, + 241305983, + 425245405, + 480877970, + 541973286, + 686618948, + 1000000000, + 1000000000, + 1065479026, + 1361171428, + 1500000000, + 1500000000, + 1677000000, + 13350026260, + 445643247826 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 2000000, + 2100000, + 20000000, + 30000000, + 89000000, + 100000000, + 227447654, + 500000000, + 714259734, + 1185000000, + 1439963884, + 1500000000, + 2144707755, + 4323733777, + 11809256079, + 11809256079, + 63774015209 + ], + [ + 0, + 1400000, + 1610000, + 2450000, + 89000000, + 100000000, + 149645644, + 348036698, + 500000000, + 652981806, + 713032231, + 1020659148, + 1305963612, + 1439963884, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 2500000000, + 10020000000 + ], + [ + 0, + 0, + 0, + 1820000, + 1820000, + 2000000, + 2541447, + 2541447, + 65044919, + 97143318, + 163853885, + 264485928, + 541973286, + 958554682, + 1000000000, + 1185000000, + 1400000000, + 1500000000, + 1500000000, + 1725656616, + 10010000000 + ], + [ + 0, + 1, + 1610000, + 1820000, + 2100000, + 2517739, + 20384000, + 50000000, + 89000000, + 100000000, + 246614594, + 500000000, + 652981806, + 1000000000, + 1389878927, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 10010000000 + ], + [ + 0, + 1400000, + 1470000, + 2000000, + 7000000, + 50000000, + 79000000, + 100000000, + 128608972, + 163853885, + 197620256, + 368785462, + 500000000, + 630856423, + 652981806, + 1000000000, + 1284631815, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 29809236, + 50000000, + 89000000, + 94000000, + 163853885, + 405284509, + 500000000, + 630856423, + 674928165, + 1000000000, + 1000000001, + 1400245042, + 1500000000, + 1500000000, + 2000000000, + 33367870795 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 2100000, + 51455955, + 89000000, + 100000000, + 203496751, + 203496751, + 363308266, + 500000000, + 943452501, + 1000000001, + 1311180950, + 1500000000, + 1500000000, + 1500000000, + 1648186567, + 21298424691 + ], + [ + 0, + 1400000, + 1400000, + 1680000, + 2000000, + 2800000, + 50000000, + 89000000, + 100000000, + 145198932, + 289579430, + 424540494, + 820408807, + 1000000000, + 1197000000, + 1400245042, + 1500000000, + 1500000000, + 1800000000, + 2800395968, + 10020000000 + ], + [ + 0, + 2000000, + 2000000, + 9074273, + 79000000, + 89000000, + 100000000, + 150000000, + 150000000, + 150000000, + 246614594, + 425601023, + 485722845, + 855140587, + 1000000000, + 1000000001, + 1278219605, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 1, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 11400000, + 47550725, + 79000000, + 89000000, + 160407325, + 268633874, + 353510445, + 445198932, + 500000000, + 500000000, + 787199488, + 787199488, + 1216717598, + 2000000000, + 10471751748 + ], + [ + 0, + 0, + 1400000, + 1680000, + 2000000, + 2000000, + 20000000, + 50000000, + 100000000, + 229633259, + 339324629, + 623827158, + 865919437, + 1000000000, + 1000000001, + 1000000001, + 1224000000, + 1500000000, + 1500000000, + 2250066966, + 33597504054 + ], + [ + 0, + 2000000, + 2000000, + 7000000, + 50000000, + 79000000, + 89000000, + 100000000, + 182705272, + 246614594, + 315904832, + 500000000, + 500000000, + 771372770, + 1000000000, + 1000000000, + 1140349594, + 1224000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 1400000, + 1470000, + 1680000, + 2000000, + 2000000, + 2000000, + 10000000, + 27000000, + 100000000, + 219019750, + 500000000, + 624780461, + 1000000000, + 1000000000, + 1000000000, + 1500000000, + 2000000000, + 3260051312, + 15013669210 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 50000000, + 79000000, + 93514879, + 274294068, + 363290557, + 500000000, + 589618933, + 1000000000, + 1197000000, + 1375702519, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1820000, + 1820000, + 2000000, + 2100000, + 79000000, + 100000000, + 148220342, + 148220342, + 148220342, + 148220342, + 148220342, + 148220342, + 148220342, + 148220342, + 148220342, + 187953159, + 500000000, + 1000000000, + 2000000000, + 20000000000 + ], + [ + 1274000, + 2000000, + 2000000, + 20438215, + 20438215, + 20438215, + 36626129, + 79000000, + 89000000, + 100000000, + 100000000, + 100000000, + 183446471, + 251800116, + 500000000, + 500000000, + 500000000, + 639160931, + 2000000000, + 3168809183, + 10010000000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 50000000, + 89000000, + 89000000, + 113317012, + 222570111, + 283127357, + 500000000, + 775709586, + 1000000000, + 1000000000, + 1000000004, + 1197000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 27258932451 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 15243643, + 100000000, + 148220342, + 200000000, + 200000000, + 343260594, + 500000000, + 690874156, + 1000000000, + 1000000000, + 1000000000, + 1400000000, + 1500000000, + 1619951012, + 2000000000, + 2500000000, + 13690874156 + ], + [ + 0, + 0, + 1400000, + 1820000, + 2000000, + 9896733, + 89000000, + 100000000, + 200000000, + 358634664, + 374466102, + 500000000, + 778323517, + 951006043, + 1000000000, + 1000000004, + 1500000000, + 1500000000, + 1999600000, + 5930282335, + 121693788632 + ], + [ + 0, + 2, + 2, + 1400000, + 1400000, + 2000000, + 2800000, + 89000000, + 126920590, + 324537289, + 500000000, + 579259003, + 951006043, + 1000000000, + 1000000000, + 1339357023, + 1497759942, + 1500000000, + 1500000000, + 1600000000, + 10010000000 + ], + [ + 0, + 1400000, + 2000000, + 2050000, + 9896733, + 20438215, + 59000000, + 89000000, + 100000000, + 200000000, + 420000000, + 500000000, + 500000000, + 562339830, + 781839302, + 1000000000, + 1000000000, + 1545836731, + 1999599999, + 2000000000, + 80000000000 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2800000, + 11025524, + 11341757, + 20438215, + 89000000, + 140251392, + 343385206, + 500000000, + 799029115, + 1000000000, + 1497759942, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2474706579, + 28662595462 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 11400000, + 79000000, + 100000000, + 100000000, + 110000000, + 251250066, + 493478178, + 882380121, + 1000000000, + 1000000000, + 1059754684, + 1476849879, + 1500000000, + 1534000000, + 2000000000, + 80000000000 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 2450000, + 2800000, + 89000000, + 285734118, + 334211212, + 500000000, + 500000000, + 1000000000, + 1272078374, + 1500000000, + 1500000000, + 1500000000, + 1759426732, + 2000000000, + 12125313274, + 104522863420 + ], + [ + 0, + 1, + 2000000, + 79000000, + 200000000, + 200000000, + 200000000, + 200000000, + 200000000, + 288980170, + 437484470, + 619941169, + 724240560, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2170049955, + 25851298175, + 34508370457 + ], + [ + 0, + 1400000, + 1820000, + 2000000, + 2000000, + 30000000, + 79000000, + 89000000, + 100000000, + 232233037, + 336863900, + 445312105, + 505654668, + 886159485, + 1000000000, + 1490000000, + 1500000000, + 1500000000, + 1500001139, + 2000000000, + 80000000000 + ], + [ + 0, + 0, + 1617000, + 2000000, + 50000000, + 99225849, + 100000000, + 200000000, + 343385206, + 421332929, + 620967032, + 1000000000, + 1420924734, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1534000000, + 1568000000, + 3000000000, + 10020000000 + ], + [ + 0, + 1400000, + 2000000, + 10000000, + 79000000, + 100000000, + 120000000, + 251250066, + 378440816, + 697514655, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000004, + 1271333118, + 1500000000, + 2000000000, + 2990103967, + 4348612380, + 10541631074 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 10721002, + 37478236, + 54037972, + 154580966, + 261512028, + 515072396, + 926300000, + 1000000000, + 1096542193, + 1284568531, + 1500000000, + 1500000000, + 2000000000, + 2019591821, + 2205710649, + 30772591821 + ], + [ + 0, + 1400000, + 1400000, + 1680000, + 6860000, + 79000000, + 100000000, + 100000000, + 176331014, + 176331014, + 326467935, + 435509141, + 515072396, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 28782254680 + ], + [ + 0, + 1400000, + 1999999, + 1999999, + 2100000, + 50000000, + 50000000, + 89000000, + 226558177, + 336863900, + 486775176, + 920716274, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1575000000, + 3000000000, + 37791157638 + ], + [ + 0, + 0, + 1680000, + 5360501, + 10355121, + 50000000, + 100000000, + 217641068, + 500000000, + 593445769, + 1000000000, + 1369555140, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 3000000000, + 14190954247, + 62062978755 + ], + [ + 0, + 1400000, + 2000000, + 10000000, + 50000000, + 89000000, + 151400000, + 196931655, + 269059550, + 369602502, + 369602502, + 596430498, + 670666937, + 1000000000, + 1200000000, + 1400000000, + 1500000000, + 1500000000, + 1608555285, + 2525027613, + 18577594467 + ], + [ + 0, + 0, + 1820000, + 2000000, + 14263024, + 55000000, + 79000000, + 89000000, + 100000000, + 100000000, + 435509141, + 596430498, + 885791676, + 1000000000, + 1234345440, + 1500000000, + 1500000000, + 1500000000, + 1527000000, + 2000000000, + 15000000000 + ], + [ + 0, + 2000000, + 10721002, + 66410397, + 79000000, + 89000000, + 100000000, + 200000000, + 326467935, + 500000000, + 596876870, + 1000000000, + 1000000000, + 1000000000, + 1150000000, + 1500000000, + 1500000000, + 2000000000, + 19686077708, + 19686077708, + 43112580149 + ], + [ + 0, + 2000000, + 79000000, + 245160753, + 245160753, + 245160753, + 245160753, + 245160753, + 245160753, + 245160753, + 245160753, + 245160753, + 245160753, + 245160753, + 245160753, + 245160753, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 13760478498 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2800000, + 50000000, + 70226156, + 70226156, + 79000000, + 198465827, + 500000000, + 596430498, + 1063257953, + 1308273312, + 1500000000, + 1500000000, + 1500000000, + 2375845194, + 40468838408 + ], + [ + 0, + 1400000, + 1400000, + 7000000, + 50000000, + 51111018, + 89000000, + 127918823, + 203514540, + 294000000, + 546172981, + 596430498, + 596430498, + 745161585, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 2882459764, + 81409714918 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2100000, + 14000000, + 50000000, + 50000000, + 50000000, + 89000000, + 331222820, + 500000000, + 596430498, + 1000000000, + 1404430618, + 1500000000, + 1500000000, + 1539261994, + 2000000000, + 5513555717, + 29344565606 + ], + [ + 0, + 1400000, + 1820000, + 1820000, + 2000000, + 29524194, + 79000000, + 100000000, + 211530060, + 435509141, + 533448448, + 679168576, + 1000000000, + 1153189101, + 1347651146, + 1500000000, + 1500000000, + 1500000000, + 1536964071, + 5000000000, + 16193328248 + ], + [ + 0, + 1400000, + 1400000, + 1820000, + 2100000, + 50000000, + 89000000, + 100000000, + 100000000, + 110000000, + 446953274, + 613465715, + 1000000000, + 1221173013, + 1285747041, + 1470000000, + 1500000000, + 1500000000, + 1500000000, + 2761251428, + 10020000000 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1400000, + 2000000, + 11400000, + 79000000, + 79000000, + 89000000, + 119208304, + 153364974, + 419100000, + 501748476, + 501748476, + 642901188, + 1000000000, + 1000000000, + 1347651146, + 1600000000, + 6082533903 + ], + [ + 0, + 1400000, + 1540000, + 1680000, + 2000000, + 7000000, + 50000000, + 100000000, + 146921995, + 446953274, + 510894318, + 686303195, + 1000000000, + 1313347224, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 3210850345, + 71482659649 + ], + [ + 0, + 1400000, + 1400000, + 1540000, + 2800000, + 55000000, + 89000000, + 100000000, + 395401165, + 500000000, + 519238448, + 656848402, + 1000000000, + 1000000000, + 1201308600, + 1500000000, + 1500000000, + 1500000000, + 1619515422, + 5000000000, + 11761562432 + ], + [ + 0, + 329014, + 1400000, + 1540000, + 2000000, + 2100000, + 50000000, + 79000000, + 89000000, + 105925061, + 133569680, + 423234430, + 510894318, + 609537625, + 609537625, + 1000000000, + 1172214745, + 1500000000, + 1500000000, + 2000000000, + 15904887903 + ], + [ + 0, + 0, + 283389, + 1820000, + 1820000, + 2000000, + 50000000, + 89000000, + 136035221, + 136035221, + 478888303, + 510894318, + 789672509, + 1000000000, + 1000000001, + 1139148737, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 6554277228 + ], + [ + 0, + 0, + 1400000, + 1540000, + 2000000, + 28776293, + 79000000, + 79000000, + 98000000, + 110000000, + 384873224, + 515834462, + 679047107, + 1000000000, + 1247032266, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 2000000000, + 291412015394 + ], + [ + 0, + 1400000, + 1400000, + 50000000, + 79000000, + 100000000, + 138202212, + 168147667, + 338876713, + 511792835, + 609537625, + 1000000000, + 1000000000, + 1000000004, + 1238419029, + 1500000000, + 1500000000, + 1539781197, + 2000000000, + 3161646205, + 10020000000 + ], + [ + 0, + 0, + 1400000, + 1540000, + 2000000, + 11400000, + 79000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 609537625, + 1100750621, + 1500000000, + 1500000000, + 2000000000, + 29276034738 + ], + [ + 0, + 0, + 1400000, + 2000000, + 10000000, + 50000000, + 79000000, + 79000000, + 204848134, + 441888929, + 454970895, + 481300501, + 609537625, + 1000000000, + 1278035459, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2200000000, + 10010000000 + ], + [ + 0, + 0, + 160000, + 1400000, + 1400000, + 2000000, + 2000000, + 10000000, + 79000000, + 94000000, + 174897265, + 300000000, + 494495068, + 983770399, + 1000000001, + 1094000000, + 1094000000, + 1500000000, + 1597812965, + 9175901080, + 31698627435 + ], + [ + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 1470000, + 2000000, + 2000000, + 11400000, + 89000000, + 125887924, + 300000000, + 315459277, + 401821735, + 523216529, + 609537625, + 609537625, + 609537625, + 1000000000, + 2000000000, + 5000000000 + ], + [ + 0, + 1400000, + 1400000, + 1750000, + 2100000, + 79000000, + 89000000, + 111138280, + 197920371, + 268954840, + 268954840, + 268954840, + 462035039, + 904714128, + 1000000000, + 1000000001, + 1219075250, + 1500000000, + 1500000000, + 2000000000, + 27901532718 + ], + [ + 0, + 0, + 0, + 400, + 1400000, + 1820000, + 3069419, + 79000000, + 90173982, + 100000000, + 251652840, + 395505855, + 500000000, + 1000000000, + 1000000000, + 1052934902, + 1312303650, + 1500000000, + 1500000000, + 2014612368, + 37000000000 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 5057105, + 89000000, + 100000000, + 100000000, + 165463673, + 251652840, + 374401225, + 500000000, + 500000000, + 836001149, + 1000000000, + 1000000000, + 1125530566, + 1500000000, + 2000000000, + 34581823475 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1680000, + 2000000, + 24926292, + 100000000, + 130944373, + 251652840, + 322078652, + 500000000, + 500000000, + 850000000, + 1000000000, + 1222000000, + 1500000000, + 1500000000, + 1643051123, + 2000000000, + 10010000000 + ], + [ + 0, + 1400000, + 1400000, + 1540000, + 2000000, + 16282809, + 100000000, + 100000000, + 129661589, + 239371719, + 251652840, + 322078652, + 500000000, + 735647596, + 1000000000, + 1040835009, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5212350145 + ], + [ + 0, + 2000000, + 2000000, + 2000000, + 2000000, + 50000000, + 100000000, + 233063690, + 233063690, + 233063690, + 233063690, + 233063690, + 233063690, + 233063690, + 233063690, + 321155491, + 633063690, + 1000000000, + 1373000000, + 1500000000, + 122967086648 + ], + [ + 0, + 1028999, + 1400000, + 1400000, + 1400000, + 1470000, + 1540000, + 2000000, + 2100000, + 79000000, + 100000000, + 173685879, + 317534406, + 440911200, + 500000000, + 1000000000, + 1208231341, + 1500000000, + 2000000000, + 3037259450, + 21940429562 + ], + [ + 0, + 1400000, + 1820000, + 2000000, + 10000000, + 46045014, + 100000000, + 163393014, + 251652840, + 500000000, + 815112269, + 1000000000, + 1072609959, + 1298777259, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 24829555688 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1470000, + 2000000, + 44114258, + 89000000, + 188646556, + 272038554, + 342812157, + 500000000, + 850981046, + 1000000000, + 1149300949, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 19409389236, + 88400869563 + ], + [ + 0, + 1400000, + 50000000, + 204667756, + 208814996, + 208814996, + 208814996, + 208814996, + 208814996, + 208814996, + 208814996, + 208814996, + 208814996, + 208814996, + 208814996, + 233063690, + 447296434, + 1096666710, + 1500000000, + 1500000000, + 22485460300 + ], + [ + 0, + 1400000, + 1470000, + 1820000, + 26643126, + 67609869, + 67609869, + 89000000, + 94000000, + 100000000, + 196804832, + 339960622, + 500000000, + 827518174, + 1000000000, + 1000000000, + 1031974980, + 1500000000, + 1500000000, + 2000000000, + 47013475344 + ], + [ + 0, + 0, + 1400000, + 1470000, + 1820000, + 1820000, + 20000000, + 79000000, + 100000000, + 100000000, + 154678271, + 338051080, + 482322444, + 500000000, + 972136105, + 1000000000, + 1500000000, + 1500000000, + 1864000000, + 2881417953, + 46914701583 + ], + [ + 0, + 0, + 0, + 1400000, + 1470000, + 30000000, + 89000000, + 100000000, + 425460391, + 500000000, + 500000000, + 500000000, + 934418533, + 1000000000, + 1242680478, + 1500000000, + 1500000000, + 1500001101, + 1600000000, + 2729834513, + 1397612215508 + ], + [ + 0, + 1281289, + 1409000, + 2000000, + 39828304, + 39828304, + 39828304, + 39828304, + 39828304, + 39828304, + 39828304, + 39828304, + 39828304, + 79000000, + 158513356, + 456013308, + 954645044, + 1000000000, + 1500000000, + 1999600000, + 10010000000 + ], + [ + 0, + 0, + 1281289, + 1409000, + 1409000, + 2562578, + 79000000, + 89000000, + 174792221, + 208814996, + 374010860, + 848548497, + 1000000000, + 1016473692, + 1482930205, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2257172739, + 10020000000 + ], + [ + 0, + 0, + 1281289, + 1400000, + 1470000, + 2000000, + 50000000, + 94000000, + 127402013, + 262425169, + 429123251, + 627145099, + 1000000000, + 1000000000, + 1001680844, + 1247751211, + 1500000000, + 1500000000, + 1692317837, + 3000000000, + 10010000000 + ], + [ + 0, + 0, + 1274000, + 1281289, + 1470000, + 1820000, + 20000000, + 79000000, + 89000000, + 130935858, + 405423729, + 500000000, + 957762778, + 1000000000, + 1021733493, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 13273693400 + ], + [ + 0, + 1274000, + 1281289, + 1470000, + 1645000, + 4252903, + 79000000, + 79000000, + 100000000, + 100000000, + 104252903, + 188934708, + 405423729, + 500000000, + 1000000000, + 1400000000, + 1500000000, + 1500000000, + 1970799918, + 2000000000, + 76949158074 + ], + [ + 0, + 0, + 18963685, + 18963685, + 18963685, + 18963685, + 18963685, + 18963685, + 18963685, + 18963685, + 18963685, + 18963685, + 79000000, + 196804832, + 500000000, + 1000000000, + 1094721247, + 1500000000, + 1500000000, + 2000000000, + 135000000000 + ], + [ + 0, + 0, + 1274000, + 1274000, + 1732500, + 2000000, + 2000000, + 35569809, + 35569809, + 100000000, + 271230920, + 400778285, + 1000000000, + 1119819081, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 2000000000, + 10166816699 + ], + [ + 0, + 0, + 1274000, + 1274000, + 1274000, + 1820000, + 2000000, + 11274000, + 100000000, + 199720853, + 267875168, + 500000000, + 837231549, + 1000000000, + 1000000004, + 1235546117, + 1500000000, + 1500000000, + 1500000000, + 2988631549, + 10010000000 + ], + [ + 0, + 0, + 0, + 1820000, + 27553356, + 89000000, + 234053466, + 345243041, + 612222550, + 1000000000, + 1000000004, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 30362960643 + ], + [ + 0, + 1274000, + 100000000, + 259932211, + 316200000, + 467420932, + 612222550, + 750637000, + 910116327, + 1000000000, + 1000000001, + 1204824955, + 1301661295, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1576184034, + 1723419647, + 2976836528, + 10020000000 + ], + [ + 0, + 1274000, + 2000000, + 18378920, + 18378920, + 18378920, + 18378920, + 18378920, + 18378920, + 18378920, + 18378920, + 18378920, + 18378920, + 50000000, + 89000000, + 100000000, + 377196420, + 1000000001, + 1500000000, + 1500000000, + 424879170410 + ], + [ + 0, + 100000, + 1274000, + 1274000, + 1755630, + 1820000, + 1911000, + 2000000, + 2000000, + 2000000, + 10000000, + 100000000, + 208062530, + 300000000, + 894245807, + 1040065906, + 1204824955, + 1500000000, + 1737000000, + 2000000000, + 52351766885 + ], + [ + 0, + 0, + 1274000, + 1820000, + 2000000, + 2000000, + 79000000, + 100000000, + 100000000, + 202396502, + 289343992, + 609600000, + 888000979, + 1000000000, + 1002956884, + 1204824955, + 1500000000, + 1500000000, + 1600000000, + 2840886114, + 6734114371 + ], + [ + 0, + 20000000, + 20000000, + 48182522, + 48182522, + 48182522, + 48182522, + 48182522, + 48182522, + 48182522, + 79000000, + 100000000, + 261492444, + 569831434, + 1000000000, + 1000000001, + 1163920206, + 1500000000, + 1500000000, + 1724537777, + 339876988310 + ], + [ + 0, + 1274000, + 1274000, + 1820000, + 1820000, + 2548000, + 19037822, + 79000000, + 93366118, + 180000000, + 289343992, + 612222550, + 1000000000, + 1113126594, + 1174294787, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 8175754856 + ], + [ + 0, + 1274000, + 1592500, + 1820000, + 2000000, + 11274000, + 60604695, + 95085551, + 100000000, + 192088960, + 414260171, + 500000000, + 609600000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2100000000, + 78872373614 + ], + [ + 0, + 0, + 0, + 1274000, + 2000000, + 50000000, + 79000000, + 100000000, + 100000000, + 138505058, + 191312351, + 414260171, + 500000000, + 883470908, + 1000000000, + 1178946767, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 14627343633 + ], + [ + 0, + 1274000, + 1401400, + 1921000, + 4732874, + 89000000, + 100000000, + 100000000, + 160487730, + 160487730, + 160487730, + 302672013, + 500000000, + 1000000000, + 1000000000, + 1000000000, + 1135869676, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1274000, + 1274000, + 2000000, + 2000000, + 30000000, + 79000000, + 100000000, + 100000000, + 119809389, + 130914696, + 160487730, + 433770074, + 821651098, + 1000000000, + 1227142330, + 1500000000, + 1500000000, + 1924828198, + 4355102576, + 14172012040 + ], + [ + 0, + 1, + 1274000, + 2000000, + 2000000, + 2548000, + 79000000, + 100000000, + 141000000, + 151274000, + 241561529, + 399322681, + 500000000, + 916916307, + 1000000000, + 1000000001, + 1213352796, + 1428179190, + 1500000000, + 2000000000, + 15000000000 + ], + [ + 0, + 0, + 1337700, + 2000000, + 7961241, + 49146675, + 49146675, + 50000000, + 89000000, + 89000000, + 100000000, + 140914696, + 217568879, + 500000000, + 500000000, + 1000000000, + 1000000000, + 1210625583, + 1500000000, + 2752391890, + 17236589974 + ], + [ + 0, + 0, + 0, + 0, + 1274000, + 1940000, + 2088953, + 79000000, + 130914696, + 277795758, + 290214014, + 500000000, + 500000000, + 1000000000, + 1363000000, + 1363000000, + 1363000000, + 1363000000, + 1876702028, + 2000000000, + 5000000000 + ], + [ + 0, + 1274000, + 1820000, + 2000000, + 9218924, + 79000000, + 130914696, + 209443917, + 337645408, + 337645408, + 337645408, + 500000000, + 976239862, + 1000000000, + 1013000186, + 1363000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1274000, + 1940000, + 2000000, + 2000000, + 79000000, + 79000000, + 89000000, + 100000000, + 200000000, + 333746116, + 500000000, + 866619832, + 1000000000, + 1000000001, + 1116693449, + 1402713368, + 1500000000, + 1500000000, + 2588284935, + 8170747704 + ], + [ + 0, + 1274000, + 2000000, + 2000000, + 86822211, + 89000000, + 94000000, + 100000000, + 179669206, + 414422318, + 500000000, + 1000000000, + 1100000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1779063522, + 2710847832, + 4754552910, + 34443540281 + ], + [ + 0, + 0, + 1940000, + 2000000, + 2000000, + 10000000, + 79000000, + 79000000, + 100000000, + 333746116, + 438481660, + 734938185, + 1000000000, + 1000000000, + 1000000001, + 1376081458, + 1500000000, + 2000000000, + 2000000000, + 8200799042, + 100056906229 + ], + [ + 0, + 0, + 1274000, + 1820000, + 2000000, + 2089699, + 12755260, + 41413673, + 44261290, + 79000000, + 100000000, + 207020224, + 268926294, + 337645408, + 529905859, + 1013892144, + 1500000000, + 1500000000, + 2000000000, + 5000000000, + 32354772131 + ], + [ + 0, + 2000000, + 2000000, + 6370000, + 79000000, + 94000000, + 150000000, + 325477104, + 500000000, + 573277939, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1262224839, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 10659610756 + ], + [ + 0, + 1274000, + 1274000, + 1940000, + 2000000, + 50000000, + 79000000, + 100000000, + 129607812, + 319807812, + 500000000, + 500000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 25000000000 + ], + [ + 0, + 1274000, + 1656200, + 1656201, + 2000000, + 2000000, + 50000000, + 60817437, + 89000000, + 89000000, + 100000000, + 293179553, + 398491586, + 500000000, + 924215703, + 1000000000, + 1000000000, + 1288947529, + 1600000000, + 2219336702, + 10069263265 + ], + [ + 0, + 2000000, + 14458025, + 14458025, + 14458025, + 14458025, + 14458025, + 14458025, + 14458025, + 14458025, + 14458025, + 14458025, + 14458025, + 14458025, + 89000000, + 100000000, + 317108395, + 639016061, + 1288947529, + 2000000000, + 24736103208 + ], + [ + 0, + 0, + 1940000, + 2000000, + 19891605, + 89000000, + 100000000, + 139797400, + 357825623, + 500000000, + 1000000000, + 1000000001, + 1295339971, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 2000000000, + 2000000000, + 3000000000, + 24600407807 + ], + [ + 0, + 1274000, + 2000000, + 7000000, + 41149824, + 94000000, + 100000000, + 208193437, + 326943537, + 500000000, + 500000000, + 1000000000, + 1000000000, + 1000000000, + 1094000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 23294590402 + ], + [ + 0, + 0, + 1274000, + 1274000, + 2000000, + 2000000, + 10000000, + 79000000, + 89000000, + 100000000, + 333104466, + 466458964, + 500000000, + 867987974, + 1150000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000 + ], + [ + 0, + 1274000, + 2000000, + 2089699, + 50000000, + 89000000, + 120000000, + 333104466, + 433320347, + 538305847, + 1000000000, + 1000000000, + 1000000001, + 1354483672, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3053469564, + 41094689641 + ], + [ + 0, + 0, + 0, + 1401400, + 2000000, + 2548000, + 14458025, + 79000000, + 79000000, + 79000000, + 100000000, + 364125547, + 500000000, + 849931339, + 1000000000, + 1156265588, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000 + ], + [ + 1274000, + 2000000, + 79000000, + 100000000, + 153917123, + 412271178, + 639544678, + 981681086, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1101000001, + 1212201001, + 1212201001, + 1469431265, + 1500000000, + 2981725370, + 5000000000, + 10667653905, + 12203103430 + ], + [ + 0, + 0, + 0, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 483829045, + 946597503, + 1174926669, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2105316765, + 103813482795, + 103813482795, + 103813482795, + 103813482795 + ], + [ + 0, + 160000, + 250000000, + 371409948, + 463883015, + 500000000, + 508079685, + 641324620, + 946597503, + 1000000000, + 1000000001, + 1200000000, + 1401400000, + 1500000000, + 1500000000, + 1500000000, + 1908603755, + 2085200000, + 4636240950, + 20996197592, + 77189538630 + ], + [ + 0, + 160000, + 2000000, + 14350050, + 79000000, + 89000000, + 100000000, + 100000000, + 100000000, + 254704387, + 353882594, + 586620893, + 1000000000, + 1000000000, + 1094000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 99000000000 + ], + [ + 0, + 1274000, + 1274000, + 2000000, + 2000000, + 2000000, + 3446000, + 10000000, + 10000000, + 10000000, + 10000000, + 44754388, + 79000000, + 230852292, + 521573797, + 1000000000, + 1000000000, + 1012000000, + 1500000000, + 1660657542, + 43938242697 + ], + [ + 0, + 15713300, + 20000000, + 20000000, + 89000000, + 100000000, + 100000000, + 143760027, + 180496407, + 317520802, + 586620893, + 905986465, + 1000000000, + 1000000000, + 1058391894, + 1500000000, + 1500000000, + 1719378803, + 2937456166, + 9977052825, + 53215051512 + ], + [ + 0, + 1274000, + 1656200, + 1656200, + 2200000, + 50000000, + 89000000, + 100000000, + 119898700, + 388252120, + 586620893, + 741627657, + 1000000000, + 1401000000, + 1450905170, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1274000, + 2000000, + 2000000, + 10000000, + 33804037, + 79000000, + 100000000, + 100000000, + 237191045, + 586620893, + 974176424, + 988137151, + 1000000000, + 1000000001, + 1465837854, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 13824334162 + ], + [ + 0, + 0, + 35000000, + 68931891, + 79000000, + 89000000, + 100000000, + 100000000, + 422733279, + 500000000, + 579420198, + 586620893, + 1000000000, + 1000000000, + 1100000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 254462067674 + ], + [ + 0, + 0, + 0, + 1401400, + 2000000, + 2000000, + 2000000, + 2000000, + 3446000, + 50000000, + 79000000, + 89000000, + 100000000, + 286427054, + 674614027, + 1000000000, + 1031392904, + 1500000000, + 1500000000, + 2000000000, + 59718574299 + ], + [ + 0, + 1911000, + 2000000, + 10000000, + 44084388, + 79000000, + 90850000, + 100000000, + 100000000, + 141000000, + 487782226, + 974176424, + 1000000000, + 1000000000, + 1000000001, + 1365533172, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 10010000000 + ], + [ + 0, + 400, + 2000000, + 8812150, + 50000000, + 79000000, + 89000000, + 89000000, + 103040057, + 374305218, + 767115987, + 974176424, + 1000000000, + 1000000000, + 1051684527, + 1439435647, + 1500000000, + 1500000000, + 1641000000, + 2000000000, + 10020000000 + ], + [ + 1274000, + 1592500, + 2000000, + 2000000, + 2000000, + 2000000, + 2548000, + 72170000, + 79000000, + 100000000, + 100000000, + 132432601, + 450000000, + 500000000, + 974176424, + 974176424, + 1634000000, + 1960876779, + 1999599999, + 2610293068, + 10010000000 + ], + [ + 0, + 0, + 0, + 1612407, + 2000000, + 50000000, + 79000000, + 100000000, + 143618922, + 187171847, + 400824344, + 545577413, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5965765160, + 35655313839, + 43861872400 + ], + [ + 0, + 11, + 1274000, + 1592500, + 2000000, + 2000000, + 2000000, + 25485449, + 79000000, + 89000000, + 105194908, + 151577206, + 500000000, + 909584437, + 1000000000, + 1149682206, + 1200000000, + 1500000000, + 1500000000, + 2000000000, + 8450131021 + ], + [ + 0, + 1274000, + 2000000, + 2000000, + 11274000, + 27042194, + 71886621, + 89000000, + 118564033, + 214579482, + 386536507, + 500000000, + 974176424, + 1000000000, + 1148682937, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1274000, + 2000000, + 6100000, + 42289759, + 79000000, + 89000000, + 99000000, + 106915576, + 157186897, + 300000000, + 465081130, + 974176424, + 1000000000, + 1077000000, + 1406915576, + 1500000000, + 1500001400, + 1600000000, + 2161828291, + 10020000000 + ], + [ + 0, + 1274000, + 2000000, + 2000000, + 10637000, + 79000000, + 89000000, + 214692893, + 391785656, + 471303791, + 502816185, + 1000000000, + 1000000000, + 1149682206, + 1275486739, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 10010000000 + ], + [ + 0, + 1274000, + 2000000, + 2000000, + 2000000, + 2000000, + 10955500, + 49357726, + 89000000, + 100000000, + 323100000, + 502816185, + 1000000000, + 1000000000, + 1065485089, + 1400716548, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 15489015240 + ], + [ + 0, + 1656200, + 2000000, + 2000000, + 8264881, + 48337395, + 79000000, + 89000000, + 113769863, + 156850597, + 386536507, + 719411439, + 831041618, + 1000000000, + 1323631677, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000 + ], + [ + 1274000, + 1470000, + 2000000, + 17377699, + 79000000, + 100000000, + 105194908, + 371565000, + 500000000, + 580312978, + 1000000000, + 1000000000, + 1000000000, + 1400000000, + 2000000000, + 2000000000, + 2000000000, + 2000000000, + 2073999200, + 3272312146, + 10472778533 + ], + [ + 0, + 1274000, + 1854800, + 9450940, + 89000000, + 100000000, + 100000000, + 181804585, + 386536507, + 502816185, + 642341031, + 1000000000, + 1000000000, + 1000000001, + 1308000000, + 1419047304, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 11, + 1401400, + 2000000, + 2000000, + 11700700, + 100000000, + 229371644, + 375990666, + 585743568, + 618306390, + 652240352, + 746712432, + 1000000000, + 1000000000, + 1308000000, + 1500000000, + 1600000000, + 5000000000, + 513755275254 + ], + [ + 0, + 1274000, + 2000000, + 9450940, + 55093159, + 89000000, + 100000000, + 100000000, + 100000000, + 100000000, + 151274000, + 519411439, + 862617401, + 1000000000, + 1000000000, + 1164449979, + 1441541017, + 1500000000, + 1500000000, + 2500000000, + 14052051299 + ], + [ + 0, + 0, + 1274000, + 2000000, + 17049565, + 50000000, + 89000000, + 174399900, + 519336013, + 625000000, + 1000000000, + 1000000003, + 1431947628, + 1500000000, + 1500000000, + 1500000000, + 1616366340, + 1642000000, + 1642000000, + 2000000000, + 5000000000 + ], + [ + 0, + 1401400, + 2000000, + 2000000, + 6370000, + 14143105, + 50000000, + 79000000, + 89000000, + 94000000, + 100000000, + 101858987, + 368508784, + 552174695, + 814365192, + 1000000000, + 1164449979, + 1388000000, + 1500000000, + 2151274000, + 10045410890 + ], + [ + 0, + 1274000, + 1854800, + 2000000, + 11274000, + 79000000, + 94000000, + 100000001, + 172495401, + 440906778, + 553179021, + 954532376, + 1000000000, + 1000000000, + 1150000000, + 1441256872, + 1500000000, + 2000000000, + 2000000000, + 5000000000, + 10336452661 + ], + [ + 1274000, + 2000000, + 2548000, + 20373804, + 79000000, + 100000000, + 100000000, + 115000000, + 151274000, + 435173107, + 553179021, + 590897093, + 1000000000, + 1307123916, + 1325469486, + 1325469486, + 1478589542, + 1562158066, + 2000000000, + 2000000000, + 10562158066 + ], + [ + 0, + 1337700, + 2000000, + 41150187, + 79000000, + 89000000, + 100000000, + 100000000, + 269033193, + 504986891, + 682217218, + 1000000000, + 1000000000, + 1144492282, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 10020000000 + ], + [ + 0, + 1274000, + 2000000, + 14143105, + 37767868, + 79000000, + 100000000, + 200000000, + 363346540, + 484807864, + 562158066, + 710728729, + 1000000000, + 1000000002, + 1200000000, + 1382098554, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 26672097507 + ], + [ + 1274000, + 2000000, + 14143105, + 25467255, + 79000000, + 100000000, + 142172187, + 200000000, + 200000000, + 376378995, + 608105025, + 710728729, + 710728729, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1353070875, + 1500000000, + 2000000000, + 3090769012 + ], + [ + 0, + 166711, + 1611610, + 14143105, + 50000000, + 79000000, + 100000000, + 159277680, + 200000000, + 400000000, + 500000000, + 699320779, + 1000000000, + 1203382915, + 1449313870, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 53737555810 + ], + [ + 0, + 1337700, + 50000000, + 89000000, + 100000000, + 100000000, + 103941411, + 200000000, + 200000000, + 200000000, + 200000000, + 200000000, + 275447040, + 473146411, + 562158066, + 1000000000, + 1000000000, + 1183716970, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 1274000, + 2000000, + 2548000, + 43883934, + 79000000, + 89000000, + 230000000, + 562158066, + 941099281, + 1000000000, + 1000000004, + 1271458425, + 1307000000, + 1430000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 28959102511 + ], + [ + 0, + 1274000, + 2000000, + 2000000, + 14140000, + 50000000, + 79000000, + 79000000, + 123559310, + 216505858, + 530043309, + 677857765, + 739435149, + 878663218, + 1000000001, + 1400000000, + 1500000000, + 1500000000, + 1500000000, + 1616139162, + 10020000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1274000, + 40835972, + 79000000, + 101316964, + 500000000, + 562158066, + 618531184, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1244209462, + 1717419737, + 3000000000, + 10010000000 + ], + [ + 0, + 1274000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 16910000, + 60175762, + 89000000, + 166010139, + 223591997, + 555849523, + 800175762, + 1000000000, + 1130758026, + 1315108790, + 1500000000, + 1500000000, + 2000000000, + 18800175762 + ], + [ + 0, + 1, + 1656200, + 2000000, + 14140000, + 54256418, + 89000000, + 100000000, + 100000000, + 100000000, + 176530353, + 200000000, + 500000000, + 562215270, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 19827314090 + ], + [ + 0, + 1274000, + 2335000, + 14140000, + 14140000, + 14140000, + 44040268, + 79000000, + 119982423, + 211594073, + 418947180, + 500000000, + 562215270, + 562215270, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 28606455034 + ], + [ + 0, + 2000000, + 29352780, + 50000000, + 89000000, + 100000000, + 100000000, + 100000000, + 130601409, + 301698045, + 481789257, + 562215270, + 739435149, + 1000000000, + 1148562005, + 1315000000, + 1500000000, + 1500000000, + 1999599999, + 2000000000, + 32729352780 + ], + [ + 0, + 0, + 0, + 1274000, + 2100000, + 12740000, + 79000000, + 100000000, + 336216122, + 560058433, + 1000000000, + 1000000000, + 1162264329, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 14494050752 + ], + [ + 0, + 0, + 0, + 1274000, + 1764000, + 2548000, + 2548000, + 10000000, + 23263950, + 79000000, + 127064722, + 200000000, + 257588478, + 418947180, + 562215270, + 712057609, + 1000000000, + 1500001781, + 1500001781, + 3057759154, + 41968658298 + ], + [ + 0, + 500000000, + 555849523, + 562215270, + 608340346, + 1000000000, + 1000000000, + 1000000000, + 1138668701, + 1146372256, + 1309913633, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1539130105, + 2000000000, + 2000000000, + 5000000000, + 15729472263, + 36155191895 + ], + [ + 0, + 1274000, + 1274000, + 2000000, + 2000000, + 10000000, + 10000000, + 38040182, + 60524893, + 67985837, + 94000000, + 100000000, + 124762288, + 166010139, + 375774781, + 500000000, + 638484389, + 1000000000, + 1500000000, + 1611853449, + 10010000000 + ], + [ + 0, + 1274000, + 1400000, + 2548000, + 10000000, + 10000000, + 50000000, + 79000000, + 100000000, + 166010139, + 477857765, + 481789257, + 656877477, + 807650998, + 1000000000, + 1500000000, + 2000000000, + 2000000000, + 2000000000, + 5000000000, + 10020000000 + ], + [ + 0, + 1274000, + 10000000, + 10000000, + 10000000, + 36049681, + 36049681, + 49711181, + 89000000, + 100000000, + 311560057, + 500000000, + 773584513, + 1000000000, + 1000000004, + 1500000000, + 1500000000, + 1500000000, + 1700000000, + 6736182769, + 30771949844 + ], + [ + 0, + 0, + 0, + 77530, + 77530, + 77530, + 1528800, + 2000000, + 2548000, + 10000000, + 64248055, + 108100000, + 502090711, + 590982321, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 2000000000, + 6230499834, + 67453736114 + ], + [ + 0, + 0, + 1274000, + 10000000, + 10000000, + 54387012, + 99000000, + 100000000, + 187743042, + 397334922, + 500000000, + 698098362, + 1000000000, + 1015000000, + 1204055987, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 10020000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1592500, + 2548000, + 73479392, + 79000000, + 79000000, + 113152391, + 302026986, + 418790162, + 750637000, + 1000000000, + 1200000000, + 1222192227, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 23415948, + 409815598, + 1000000000, + 1000000000, + 1000000000, + 1122294629, + 1214867833, + 1365450169, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1523025206, + 1523025206, + 2000000000, + 8796528960, + 110970019309 + ], + [ + 0, + 0, + 100000, + 1400000, + 10000000, + 10000000, + 10000000, + 10000000, + 58570617, + 250000000, + 480461411, + 500000000, + 603166150, + 1010000000, + 1259798222, + 1500000000, + 1900532976, + 3077195130, + 18019678165, + 18019678165, + 225942956149 + ], + [ + 0, + 0, + 357725032, + 358800000, + 358800000, + 464079235, + 558801618, + 816655346, + 1000000000, + 1172807876, + 1250204328, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1561621196, + 2071373825, + 3000000000, + 16757886797 + ], + [ + 0, + 1274000, + 1274000, + 1528800, + 2000000, + 2000000, + 2548000, + 10000000, + 44973638, + 55000000, + 64248055, + 79000000, + 89000000, + 89000000, + 100000000, + 291687241, + 480461411, + 1000000000, + 1196000000, + 1500000000, + 12833861652 + ], + [ + 0, + 1274000, + 1401400, + 2000000, + 2000000, + 10000000, + 10000000, + 12786768, + 50000000, + 79000000, + 100000000, + 215930530, + 522763153, + 1000000000, + 1085881528, + 1356352234, + 1500000000, + 1892947266, + 2000000000, + 3000000000, + 33709602612 + ], + [ + 0, + 77530, + 2000000, + 10000000, + 11270000, + 80291405, + 105873599, + 274560000, + 430500000, + 674782759, + 1000000000, + 1000000003, + 1173900797, + 1274846807, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 12726369942 + ], + [ + 0, + 188553709, + 188553709, + 188553709, + 480461411, + 1000000001, + 1000000004, + 1272435285, + 1408680956, + 1500000000, + 1500000000, + 1600000000, + 1999600000, + 2000000000, + 2000000000, + 3143966709, + 6160734039, + 37908583560, + 37908583560, + 37908583560, + 64550811101 + ], + [ + 0, + 1401400, + 2548000, + 2548000, + 11274000, + 60000000, + 89000000, + 100000000, + 217212238, + 409237809, + 500000000, + 779815262, + 1000000000, + 1000000000, + 1200000000, + 1370664249, + 1500000000, + 1500000000, + 1982546898, + 2093592633, + 53842308180 + ], + [ + 0, + 1401400, + 2548000, + 10000000, + 18416370, + 50000000, + 89000000, + 94977554, + 143553968, + 500000000, + 1000000000, + 1000000000, + 1399678814, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 1600000000, + 1840553968, + 23743553968 + ], + [ + 0, + 1337700, + 2000000, + 4308000, + 12740000, + 64248055, + 98000000, + 100000000, + 363616622, + 500000000, + 673557217, + 1000000000, + 1173900797, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 2200000000, + 18727428050 + ], + [ + 0, + 1274000, + 2000000, + 4308000, + 47082266, + 64248055, + 100000000, + 100000000, + 100000000, + 294000000, + 797082266, + 1000000000, + 1000000001, + 1407000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2645082266, + 17797082266 + ], + [ + 0, + 2000000, + 11274000, + 12740000, + 64248055, + 89000000, + 94000000, + 100000000, + 110000000, + 428594765, + 604547044, + 891191844, + 1000000000, + 1000000000, + 1465474591, + 1500000000, + 1500000000, + 1500000000, + 1545000000, + 2544535306, + 10010000000 + ], + [ + 0, + 0, + 1337700, + 2548000, + 10000000, + 79000000, + 89000000, + 100000000, + 265644844, + 603923311, + 922555957, + 1000000000, + 1000000001, + 1121436171, + 1262494876, + 1500000000, + 1500000000, + 1545000000, + 1559309411, + 2540530754, + 32804150431 + ], + [ + 0, + 0, + 2548000, + 12007000, + 64280228, + 89000000, + 181019300, + 221861530, + 221861530, + 221861530, + 221861530, + 376082759, + 673557217, + 732033692, + 1000000000, + 1201006494, + 1460887162, + 1500000000, + 1500000000, + 1600000000, + 10010000000 + ], + [ + 0, + 1274000, + 2000000, + 2548000, + 2548000, + 2548000, + 39670109, + 89000000, + 100000000, + 100000000, + 174107395, + 203981266, + 789453111, + 980004370, + 1000000000, + 1288738262, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1274000, + 1656200, + 2000000, + 39670109, + 55000000, + 73885263, + 89000000, + 100000000, + 128495469, + 255140760, + 604547044, + 846342943, + 1000000000, + 1000000004, + 1414877583, + 1500000000, + 1500000000, + 1545000000, + 2000000000, + 10010000000 + ], + [ + 0, + 1274000, + 2000000, + 50000000, + 100000000, + 118772986, + 200000000, + 200000000, + 200000000, + 200000000, + 200000000, + 200000000, + 360840058, + 528844780, + 922555957, + 1000000000, + 1122358297, + 1500000000, + 1500000000, + 1682092607, + 10020000000 + ], + [ + 0, + 1274000, + 2000000, + 2548000, + 79000000, + 89000000, + 110000000, + 174107395, + 293411874, + 472099692, + 473024100, + 793427377, + 1000000000, + 1000000000, + 1000000001, + 1427000000, + 1500000000, + 1550000000, + 1717440328, + 5000000000, + 10398170614 + ], + [ + 0, + 0, + 1528800, + 2000000, + 11274000, + 79000000, + 167011556, + 537300000, + 1000000000, + 1060000000, + 1489067494, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1614097270, + 4000000000, + 12529588435 + ], + [ + 0, + 1274000, + 2000000, + 2548000, + 2548000, + 2548000, + 50000000, + 79000000, + 100000000, + 163656825, + 236599335, + 472352267, + 543977715, + 922500000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2998477803, + 5862304096 + ], + [ + 0, + 1337700, + 2000000, + 2548000, + 17006398, + 50000000, + 50840070, + 100000000, + 200000000, + 664738897, + 719607278, + 922500000, + 1000000000, + 1034629324, + 1094000000, + 1382662309, + 1500000000, + 1500000000, + 1511972248, + 2000000000, + 10010000000 + ], + [ + 0, + 2000000, + 2000000, + 2000000, + 2548000, + 28338253, + 59529752, + 100000000, + 191731064, + 500000000, + 747477794, + 787400000, + 791906826, + 1000000000, + 1000000000, + 1382662309, + 1500000000, + 1959110139, + 2085100997, + 3413771740, + 23791906826 + ], + [ + 0, + 1274000, + 2000000, + 2000000, + 2000000, + 2000000, + 2661964, + 79000000, + 89000000, + 100000000, + 152902152, + 481453636, + 596210381, + 787400000, + 787400000, + 1000000000, + 1401400000, + 1500000000, + 2000000000, + 4401881296, + 23744808978 + ], + [ + 0, + 0, + 2000000, + 12291905, + 89000000, + 100000000, + 120936717, + 162902152, + 671696712, + 787400000, + 787400000, + 787400000, + 1000000000, + 1000000001, + 1382000000, + 1382000000, + 1400499657, + 1500000000, + 1508475470, + 2201274000, + 11113599153 + ], + [ + 0, + 0, + 1274000, + 1274000, + 1528800, + 2000000, + 2548000, + 50000000, + 79000000, + 89000000, + 100000000, + 389834659, + 577835355, + 664532192, + 719607278, + 1284578339, + 1396943831, + 1500000000, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 1274000, + 2000000, + 2548000, + 14140199, + 28027388, + 28027388, + 79000000, + 100000000, + 152902152, + 288344173, + 659088161, + 789453111, + 789453111, + 1000000000, + 1000000000, + 1284578339, + 1500000000, + 1548368491, + 2000000000, + 10020000000 + ], + [ + 0, + 1274000, + 1337700, + 2000000, + 2000000, + 2100000, + 22416639, + 50000000, + 100000000, + 491639485, + 563224218, + 1000000000, + 1000000000, + 1210690997, + 1500000000, + 1500000000, + 1999600000, + 2511074117, + 3423571857, + 17144140998, + 34116216518 + ], + [ + 0, + 1274000, + 1656200, + 2000000, + 2000000, + 2000000, + 8117707, + 50000000, + 79000000, + 100000000, + 100000000, + 398593897, + 505280652, + 563224218, + 1000000000, + 1010561304, + 1210690997, + 1500000000, + 1500000000, + 2000000000, + 11833772857 + ], + [ + 0, + 2000000, + 2000000, + 6370000, + 10000000, + 50000000, + 100000000, + 288344173, + 331595799, + 505280652, + 555169303, + 1000000000, + 1000000004, + 1345933614, + 1400000000, + 1403996435, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 29660032879 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 2063940, + 2063940, + 2063940, + 2063940, + 128581691, + 354691146, + 790074942, + 1000000000, + 1208678707, + 1809008493, + 2036736381, + 2298569867, + 2611678949, + 2891491506, + 3282754165, + 3636977706, + 4570660235, + 5510840476, + 7182546883, + 79002063940 + ], + [ + 0, + 1656200, + 7007000, + 50000000, + 89000000, + 100000000, + 148319871, + 197292949, + 200000000, + 433917082, + 505280652, + 1000000000, + 1000000000, + 1039827424, + 1455870173, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3072664721, + 55478050821 + ], + [ + 0, + 0, + 1274000, + 1274000, + 1400000, + 2000000, + 2000000, + 2000000, + 2063000, + 12740000, + 79000000, + 196308188, + 304727927, + 505280652, + 715631888, + 1000000000, + 1364147950, + 1500000000, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 0, + 2063000, + 9944000, + 9944000, + 10000000, + 60639075, + 79000000, + 89000000, + 123753217, + 469511325, + 617797613, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2200000000, + 10759588345 + ], + [ + 0, + 0, + 1274000, + 2000000, + 2548000, + 60639075, + 91105092, + 100000000, + 120000000, + 162575935, + 490502169, + 737114612, + 875659542, + 875659542, + 989469452, + 1000000000, + 1000000000, + 1376153722, + 1500000000, + 2191000000, + 10020000000 + ], + [ + 0, + 1274000, + 2000000, + 2063000, + 38530312, + 64578957, + 100000000, + 151274000, + 490502169, + 512691059, + 969720213, + 1000000000, + 1000000000, + 1097792408, + 1341947657, + 1500000000, + 1500000000, + 1500000000, + 1999600000, + 2830013099, + 10010000000 + ], + [ + 0, + 0, + 0, + 1274000, + 2000000, + 6508177, + 64926682, + 87565954, + 100000000, + 162965008, + 490502169, + 645841960, + 1000000000, + 1000000000, + 1010561304, + 1284263597, + 1500000000, + 1999889060, + 2000000000, + 2008000000, + 23764926682 + ], + [ + 1274000, + 1274000, + 1401400, + 2000000, + 79000000, + 79000000, + 89000000, + 89000000, + 123753217, + 300000000, + 583156282, + 766890657, + 1000000000, + 1000000000, + 1000000000, + 1115178245, + 1400941112, + 1511856507, + 2000000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1274000, + 25000000, + 71230070, + 87565954, + 100000000, + 110000000, + 308367328, + 511867951, + 551744549, + 1000000000, + 1000000000, + 1094000000, + 1305555412, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1274000, + 1274000, + 1274000, + 1300000, + 1911000, + 2000000, + 2000000, + 10000000, + 28284462, + 60826755, + 89000000, + 94000000, + 160204590, + 603037271, + 954423402, + 1000000000, + 1256852719, + 1500000000, + 1500000000, + 25508996263 + ], + [ + 0, + 1274000, + 1274000, + 1274000, + 2000000, + 15166437, + 73096740, + 79000000, + 89000000, + 100000000, + 119956993, + 249321329, + 420558697, + 583156282, + 699943832, + 730330067, + 1000000001, + 1380783094, + 1500000000, + 1780783094, + 10020000000 + ], + [ + 0, + 1274000, + 1401400, + 4555723, + 13445207, + 60000000, + 60000000, + 89000000, + 100000000, + 300000000, + 529182008, + 730330067, + 1000000000, + 1000000000, + 1000000000, + 1297525176, + 1500000000, + 1500000000, + 1571000000, + 2062290235, + 22459724672 + ], + [ + 0, + 1401400, + 2000000, + 2548000, + 12740000, + 79000000, + 100000000, + 127980251, + 490502169, + 529182008, + 1000000000, + 1276984244, + 1308000000, + 1500000000, + 1500000000, + 1500000000, + 1512060287, + 1571000000, + 2000000000, + 3000000000, + 15778621820 + ], + [ + 0, + 1911000, + 23410232, + 34042479, + 79000000, + 89000000, + 89000000, + 150442235, + 526674561, + 649494406, + 870044911, + 1000000000, + 1000000000, + 1276556640, + 1400000000, + 1500000000, + 1500000000, + 1569600000, + 2000000000, + 3000000000, + 46749893969 + ], + [ + 0, + 1274000, + 2000000, + 14674443, + 60826755, + 89000000, + 100000000, + 320060906, + 534328075, + 649494406, + 950498595, + 1000000001, + 1129390812, + 1266194278, + 1480472638, + 1500000000, + 1500000000, + 2000000000, + 8796661454, + 22555173007, + 75888357414 + ], + [ + 0, + 0, + 160000, + 1274000, + 1656200, + 1681679, + 6370000, + 79000000, + 94000000, + 100000000, + 158431284, + 512989726, + 869551030, + 1000000001, + 1400000000, + 1500000000, + 1999600000, + 16236715929, + 16236715929, + 16236715929, + 18859029226 + ], + [ + 0, + 0, + 0, + 1271354, + 1274000, + 2400000, + 6508000, + 33533632, + 79000000, + 136737173, + 192697687, + 267067696, + 474333912, + 893692436, + 1000000000, + 1200000000, + 1285433814, + 1500000000, + 1500000000, + 2000000000, + 21034586022 + ], + [ + 0, + 0, + 0, + 1274000, + 2000000, + 6370000, + 70428657, + 94000000, + 182195977, + 469154657, + 631520029, + 828183883, + 1000000000, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1573149733, + 2000000000, + 4114086544, + 10020000000 + ], + [ + 0, + 0, + 1274000, + 1911000, + 2000000, + 7194031, + 45893098, + 94000000, + 106606111, + 321951859, + 585908058, + 693936501, + 1000000000, + 1137012917, + 1270846349, + 1500000000, + 1500000000, + 1500000000, + 1541593595, + 2466627745, + 50156305014 + ], + [ + 0, + 0, + 0, + 1274000, + 1611610, + 1681000, + 1911000, + 2000000, + 11912679, + 50000000, + 50000000, + 79000000, + 120000000, + 531615588, + 586110415, + 1000000000, + 1021985129, + 1500000000, + 1500000000, + 2389566381, + 17618662051 + ], + [ + 0, + 1274000, + 1681679, + 9010890, + 50000000, + 50271403, + 50271403, + 94742953, + 100000000, + 100000000, + 110000000, + 158431284, + 336422615, + 642834211, + 836944753, + 1000000000, + 1245363204, + 1500000000, + 1500000000, + 2001274000, + 3804364635 + ], + [ + 0, + 160000, + 1274000, + 2000000, + 2000000, + 6370000, + 50000000, + 89000000, + 89000000, + 100000000, + 192697687, + 323711412, + 541355656, + 1000000000, + 1000000000, + 1000000001, + 1400000000, + 1500000000, + 1500000000, + 1600000000, + 12297346772 + ], + [ + 0, + 1274000, + 1274000, + 1274000, + 1681000, + 2000000, + 50000000, + 79000000, + 160669492, + 160669492, + 309592317, + 500000000, + 930737436, + 1000000000, + 1000000001, + 1273270773, + 1410000000, + 1500000000, + 1500000000, + 1576019546, + 10010000000 + ], + [ + 0, + 30000, + 1274000, + 1528799, + 2000000, + 10000000, + 79000000, + 92533648, + 110000000, + 192697687, + 309592317, + 468994686, + 511097492, + 1000000000, + 1000000000, + 1000000001, + 1129174047, + 1400000000, + 1500000000, + 2000000000, + 11859897883 + ], + [ + 0, + 1274000, + 1274000, + 1274000, + 1528799, + 2000000, + 10000000, + 21741988, + 69000000, + 79000000, + 89000000, + 110000000, + 182129752, + 300000000, + 500000000, + 1000000000, + 1245363204, + 1340000000, + 1400000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 14308242, + 50000000, + 50000000, + 79000000, + 100000000, + 100000000, + 134420752, + 195000000, + 429739422, + 601128068, + 1000000000, + 1000000001, + 1172299293, + 1407195925, + 1600000000, + 2000000000, + 2000000000, + 6016523976, + 117915032275 + ], + [ + 0, + 1274000, + 1274000, + 1274000, + 1274000, + 1401400, + 1656200, + 2000000, + 25381435, + 69000000, + 100000000, + 245795765, + 406608126, + 599560438, + 1000000000, + 1000000000, + 1152679439, + 1500000000, + 1500000000, + 1500000000, + 23936381435 + ], + [ + 0, + 1274000, + 1528000, + 1528000, + 1528000, + 10000000, + 50000000, + 89000000, + 141495699, + 154643488, + 207174264, + 309592317, + 511097492, + 566737252, + 659009348, + 1000000000, + 1000000001, + 1205645464, + 1500000000, + 2000000000, + 130929303186 + ], + [ + 0, + 1274000, + 1528000, + 1528799, + 1656200, + 2000000, + 10000000, + 79000000, + 100000000, + 192697687, + 427260288, + 934801681, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 33934801681 + ], + [ + 0, + 980979, + 1176700, + 1401400, + 2000000, + 19587367, + 79000000, + 100000000, + 100000000, + 102294462, + 330000000, + 499978756, + 929281942, + 1000000000, + 1000000000, + 1073223570, + 1174678582, + 1500000000, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 980979, + 1176700, + 1274000, + 1528000, + 1528000, + 10000000, + 24289369, + 32859192, + 69000000, + 89000000, + 108061371, + 294000000, + 502278543, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 12611194809, + 15421136347 + ], + [ + 0, + 0, + 0, + 1176700, + 1528000, + 1528000, + 2000000, + 11291640, + 12000000, + 20275784, + 50000000, + 100000000, + 207174264, + 500668840, + 692231451, + 1107000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 234635209880 + ], + [ + 0, + 980979, + 1528000, + 1528000, + 2400000, + 89000000, + 103486077, + 150000000, + 150000000, + 189114497, + 268878086, + 513766898, + 950308318, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2073027318, + 4609417833, + 19793879976, + 19793879976 + ], + [ + 0, + 980979, + 1401400, + 1401400, + 1401400, + 1401400, + 1528000, + 2090045, + 21546550, + 79614650, + 100000000, + 216848278, + 309209799, + 1000000000, + 1094000000, + 1199781022, + 1715839739, + 2000000000, + 2000000000, + 3160520392, + 18970873889 + ], + [ + 0, + 0, + 160000, + 1528000, + 1761953, + 8373836, + 28480926, + 50000000, + 90507328, + 152363425, + 207174264, + 427260288, + 974727641, + 1000000000, + 1199781022, + 1500000000, + 1500000000, + 1500000000, + 1998373836, + 12229997523, + 12229997523 + ], + [ + 0, + 25493239, + 216762111, + 513766898, + 1000000000, + 1000000001, + 1002862829, + 1094000000, + 1227684186, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1725000000, + 3930909170, + 36918964197, + 36918964197, + 36918964197, + 36918964197, + 38076712675 + ], + [ + 0, + 0, + 0, + 980979, + 1274000, + 1528000, + 1680000, + 1680000, + 2000000, + 21883684, + 38156791, + 68263881, + 89000000, + 141024648, + 238250404, + 361252833, + 513766898, + 1000000000, + 1079600271, + 1955156791, + 84269488088 + ], + [ + 0, + 0, + 0, + 50000000, + 79000000, + 100000000, + 105910660, + 105910660, + 238250404, + 317131996, + 678641410, + 988760324, + 1000000000, + 1000000001, + 1094000000, + 1500000000, + 1500000000, + 1500000000, + 1806897965, + 3000000000, + 36585643818 + ], + [ + 0, + 0, + 0, + 0, + 0, + 980979, + 980979, + 1412000, + 2207220, + 50000000, + 79000000, + 100000000, + 435567304, + 934914643, + 1000000000, + 1191774287, + 1497285147, + 1500000000, + 1500000000, + 1600000000, + 10010000000 + ], + [ + 0, + 0, + 980979, + 1412000, + 2000000, + 38156791, + 79000000, + 89000000, + 181772874, + 235900656, + 425044044, + 688739460, + 1000000001, + 1200000000, + 1359000000, + 1500000000, + 1500000000, + 2000000000, + 12122390993, + 12122390993, + 65604038367 + ], + [ + 0, + 0, + 980979, + 53509552, + 90850000, + 110938856, + 228002377, + 309600000, + 500000000, + 1000000000, + 1000000000, + 1000000001, + 1200000000, + 1497285147, + 1500000000, + 1500000000, + 1500000000, + 1500001213, + 1510916012, + 2000000000, + 10010000000 + ], + [ + 0, + 980979, + 980979, + 1401000, + 1412000, + 2000000, + 50000000, + 93457780, + 155150734, + 280393667, + 422551031, + 422551031, + 500000000, + 1000000000, + 1000000000, + 1003390389, + 1500000000, + 1500000000, + 1500000000, + 1507464500, + 10020000000 + ], + [ + 0, + 0, + 244236, + 1079000, + 1401000, + 6296310, + 79000000, + 94000000, + 100000000, + 408729749, + 500000000, + 500000000, + 771351333, + 1000000000, + 1000000001, + 1112078682, + 1439964861, + 1500000000, + 1866391889, + 3487778761, + 46832403890 + ], + [ + 0, + 0, + 0, + 0, + 100000, + 1177174, + 10290651, + 10290651, + 12160253, + 50000000, + 100000000, + 339448700, + 500000000, + 892015856, + 1000000000, + 1100000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 27942033253 + ], + [ + 0, + 980979, + 980979, + 980979, + 1471468, + 2000000, + 79000000, + 100000000, + 100000000, + 294000000, + 425044044, + 500000000, + 625000000, + 768340267, + 1000000000, + 1327523424, + 1500000000, + 1500000000, + 1507000000, + 2084770065, + 98900125193 + ], + [ + 0, + 0, + 824021, + 9022233, + 50000000, + 50000000, + 99000000, + 100000000, + 100000000, + 251619623, + 485319015, + 500000000, + 749627658, + 1000000000, + 1326514156, + 1500000000, + 1500000000, + 1646777169, + 1999600000, + 2871060922, + 6973246149 + ], + [ + 0, + 400, + 1079000, + 1275272, + 1471468, + 10876893, + 59000000, + 100000000, + 434278521, + 500000000, + 1000000000, + 1000000000, + 1327523424, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3081893989, + 50076792989 + ], + [ + 0, + 980900, + 980979, + 1177000, + 1471468, + 18576558, + 79000000, + 100000000, + 147602189, + 245985903, + 245985903, + 245985903, + 398088645, + 485319015, + 500000000, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 2000000000, + 10121298084 + ], + [ + 0, + 980979, + 980979, + 1177174, + 1401000, + 2000000, + 22295439, + 79000000, + 245985903, + 294000000, + 494767872, + 502072612, + 1098563669, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 980979, + 1177174, + 1401000, + 33473466, + 50000000, + 89000000, + 89000000, + 100000000, + 150292454, + 451269792, + 606765308, + 1000000000, + 1000000000, + 1119589699, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 5000000000 + ], + [ + 0, + 980979, + 980979, + 1401000, + 14265284, + 89000000, + 100000000, + 200000000, + 200000000, + 200000000, + 282883788, + 458700000, + 502072612, + 739778218, + 1000000001, + 1341581751, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 20000000000 + ], + [ + 0, + 980979, + 1275000, + 38775275, + 60130262, + 128414362, + 150292454, + 282883788, + 495557023, + 955266797, + 1000000000, + 1000000000, + 1158187294, + 1301219559, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1700232647, + 2567719458, + 18027829062 + ], + [ + 0, + 0, + 980979, + 980979, + 1240937, + 1585907, + 2000000, + 2000000, + 50672083, + 89000000, + 150292454, + 245985903, + 494767872, + 1000000000, + 1000000001, + 1303355341, + 1500000000, + 1500000000, + 1903000000, + 3310246211, + 14617517836 + ], + [ + 0, + 2, + 1362074, + 1471000, + 2000000, + 10000000, + 50000000, + 94094845, + 160604298, + 296118329, + 363059472, + 511615727, + 646803966, + 799237923, + 1000000000, + 1150000000, + 1449000000, + 1500000000, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 1000000000, + 1000000000, + 1000000001, + 1000000001, + 1000000001, + 1000000001, + 1012091895, + 1012091895, + 1012091895, + 1102582655, + 1200000000, + 1342000000, + 1342000000, + 2000000000, + 2000000000, + 2000000000, + 2012091895, + 3000000000, + 3000000000, + 3000000000, + 10010000000 + ], + [ + 0, + 2, + 824021, + 1471000, + 1680820, + 2000000, + 11149525, + 24855621, + 57877270, + 79000000, + 94796715, + 124855621, + 240804475, + 391537921, + 500000000, + 1000000000, + 1000000000, + 1449000000, + 1500000000, + 1869821471, + 6267447439 + ], + [ + 0, + 50000000, + 57549741, + 57549741, + 57549741, + 79000000, + 84222704, + 84222704, + 89000000, + 134528255, + 371502341, + 500000000, + 1000000000, + 1000000000, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2759537226, + 24057549741 + ], + [ + 0, + 824021, + 980979, + 1401400, + 1471468, + 2000000, + 2000000, + 2000000, + 27937431, + 89000000, + 110000000, + 200000000, + 415647314, + 513281297, + 1000000000, + 1088969031, + 1285000000, + 1500000000, + 1500000000, + 1650000000, + 32432558955 + ], + [ + 0, + 105, + 824021, + 1471000, + 2000000, + 39726218, + 79000000, + 89000000, + 100000000, + 145354344, + 260000000, + 426107314, + 500000000, + 927327696, + 1000000000, + 1124000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 906423, + 1470000, + 1585907, + 2000000, + 50000000, + 55000000, + 95883452, + 98722063, + 126500000, + 152452773, + 389305634, + 497921740, + 639467661, + 1000000000, + 1200000000, + 1311226146, + 1500000000, + 1500000000, + 2000000000, + 19472601859 + ], + [ + 0, + 824021, + 1585000, + 1700000, + 2000000, + 28171800, + 50000000, + 89000000, + 96383698, + 115857113, + 160366239, + 427871706, + 500000000, + 1000000000, + 1031491133, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 10020000000 + ], + [ + 0, + 980979, + 1362074, + 1362074, + 1648042, + 8367009, + 63091921, + 79000000, + 100000000, + 134425617, + 229314095, + 484666444, + 1000000000, + 1000000000, + 1000000000, + 1002000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 14065092729 + ], + [ + 0, + 1274000, + 1471000, + 2000000, + 20695579, + 50000000, + 79000000, + 100000000, + 100000000, + 153993321, + 240639931, + 500000000, + 531420631, + 1000000000, + 1000000000, + 1031000000, + 1500000000, + 1500000000, + 1600000000, + 2772119146, + 9089178176 + ], + [ + 0, + 824021, + 1648042, + 2000000, + 12940405, + 50000000, + 79000000, + 79000000, + 89000000, + 100000000, + 150824021, + 210564495, + 239903895, + 266496510, + 500000000, + 625000000, + 818721121, + 1020235117, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 0, + 0, + 79000000, + 1012000000, + 1012000000, + 1117744756, + 1170280822, + 1202496177, + 1242753260, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 4866505220, + 10735345150, + 16813954348, + 27079052639, + 27079052639 + ], + [ + 0, + 824021, + 1470000, + 1470000, + 1471000, + 2000000, + 2000000, + 7856805, + 33146359, + 85796407, + 94000000, + 100000000, + 150065115, + 264703924, + 480105864, + 810000000, + 1000000000, + 1285114506, + 1500000000, + 1500001237, + 22489299781 + ], + [ + 0, + 0, + 105, + 824021, + 2000000, + 22517025, + 79000000, + 100000000, + 100000000, + 234343285, + 425379453, + 500000000, + 652376190, + 1000000000, + 1020000000, + 1087955876, + 1500000000, + 1500000000, + 2068034014, + 5128303517, + 27962808678 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1468451, + 2000000, + 4927000, + 66337883, + 100000000, + 331637260, + 579930584, + 1000000000, + 1000000001, + 1202496177, + 1500000000, + 1600000000, + 3229782002, + 10225555193, + 459332892587 + ], + [ + 0, + 0, + 0, + 2000000, + 8367009, + 41816922, + 79000000, + 89000000, + 89000000, + 94000000, + 100000000, + 120000000, + 148515436, + 402591347, + 500000000, + 507839350, + 1000000000, + 1096000000, + 1500000000, + 2000000000, + 162096199146 + ], + [ + 0, + 30000, + 824021, + 1471000, + 1471000, + 1471000, + 2000000, + 2000000, + 2000000, + 89000000, + 100000000, + 215813835, + 445500000, + 573887019, + 1000000000, + 1000000000, + 1000000001, + 1449000000, + 1500000000, + 1773826039, + 90194313216 + ], + [ + 0, + 0, + 824021, + 2000000, + 50000000, + 79000000, + 89000000, + 95818307, + 100000000, + 100000000, + 100000000, + 224333296, + 313473287, + 470700000, + 1000000000, + 1146874605, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 49054607177 + ], + [ + 0, + 164804, + 1680000, + 2000000, + 50000000, + 79000000, + 100000000, + 100000000, + 100000000, + 100000000, + 115000000, + 471850541, + 542589692, + 1000000000, + 1000000000, + 1051880069, + 1099071021, + 1500000000, + 1735790290, + 2000000000, + 6562599343 + ], + [ + 100000, + 100000, + 1400000, + 1758763, + 2000000, + 2000000, + 2000000, + 3141322, + 10721002, + 14751922, + 79000000, + 98652671, + 110000000, + 202052671, + 202052671, + 1000000000, + 1020736223, + 1334633302, + 2000000000, + 6723613789, + 16286668212 + ], + [ + 0, + 1585000, + 2000000, + 32216230, + 56365625, + 70251979, + 89000000, + 100000000, + 100000000, + 113672618, + 187103470, + 371028467, + 500000000, + 575251769, + 1000000000, + 1060252398, + 1500000000, + 1500000000, + 1952000000, + 2000000000, + 90194313216 + ], + [ + 0, + 824021, + 1648042, + 2000000, + 8367009, + 28832478, + 89000000, + 89000000, + 100000000, + 100000000, + 110000000, + 189683564, + 458282974, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1624000000, + 2000000000, + 2000000000, + 10010000000 + ], + [ + 0, + 1471000, + 1870000, + 44147285, + 79000000, + 100000000, + 100000000, + 100000000, + 100000000, + 116933366, + 141614185, + 202078719, + 300000000, + 594147285, + 1000000000, + 1000000001, + 1164746569, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 824021, + 1471000, + 2000000, + 56365625, + 89000000, + 100000000, + 100000000, + 110000000, + 118220694, + 221376629, + 449336218, + 500000000, + 1000000000, + 1000000000, + 1000000000, + 1044297327, + 1445563623, + 1500000000, + 2000000000, + 11334229405 + ], + [ + 0, + 1071227, + 2000000, + 2000000, + 2000000, + 42319875, + 79000000, + 98000000, + 100000000, + 100000000, + 126500000, + 198028285, + 453027748, + 850899192, + 1000000000, + 1068353232, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 11339782000 + ], + [ + 0, + 0, + 824021, + 906423, + 1870000, + 2000000, + 18626746, + 42013477, + 100000000, + 100000000, + 100000000, + 125409428, + 220377853, + 500000000, + 1000000000, + 1071192070, + 1500000000, + 1500000000, + 1756000000, + 3000000000, + 54028837340 + ], + [ + 0, + 0, + 0, + 824021, + 2000000, + 2000000, + 20000000, + 74594749, + 79000000, + 100000000, + 100000000, + 100000000, + 141614185, + 417261894, + 625000000, + 1000000001, + 1046934260, + 1500000000, + 1500000000, + 2000000000, + 33704876458 + ], + [ + 0, + 0, + 824021, + 1648000, + 2000000, + 50000000, + 79000000, + 99809866, + 100000000, + 100000000, + 133425849, + 206657415, + 500000000, + 990667648, + 1000000000, + 1000000000, + 1000000003, + 1102038846, + 1500000000, + 2000000000, + 36380099257 + ], + [ + 0, + 0, + 824021, + 1648000, + 2000000, + 79000000, + 89000000, + 100000000, + 100000000, + 139898163, + 187413009, + 249915962, + 417261894, + 790281090, + 923633584, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 1564693933, + 43910392108 + ], + [ + 0, + 0, + 160000, + 824021, + 1236031, + 1648000, + 3354614, + 50000000, + 79000000, + 89000000, + 100000000, + 100000000, + 126500000, + 153439726, + 500000000, + 1000000000, + 1109060789, + 1500000000, + 1500000000, + 2000000000, + 39070865112 + ], + [ + 0, + 0, + 340135, + 79000000, + 96698057, + 100000000, + 100000000, + 100000000, + 110000000, + 137977754, + 314651651, + 500000000, + 500000000, + 534284882, + 1000000000, + 1080016455, + 1500000000, + 1500000000, + 1999599999, + 2000000000, + 29622607220 + ], + [ + 0, + 0, + 8240210, + 8240210, + 20786817, + 20786817, + 100000000, + 100000000, + 348883913, + 847144351, + 910392108, + 1000000000, + 1000000002, + 1126151129, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 4075130883, + 5064402640, + 50764134904 + ], + [ + 0, + 0, + 824021, + 1400000, + 1648000, + 1648000, + 2000000, + 8240210, + 26235625, + 49480035, + 79000000, + 100000000, + 100000000, + 143230686, + 249817657, + 500000000, + 550651164, + 1000000000, + 1500000000, + 2000000000, + 14158453876 + ], + [ + 0, + 0, + 824021, + 2000000, + 2000000, + 79000000, + 89000000, + 100000000, + 199155012, + 204711414, + 251254340, + 286066858, + 500000000, + 1000000000, + 1000000001, + 1047580037, + 1500000000, + 1500000000, + 2000000000, + 3786555018, + 21327403343 + ], + [ + 0, + 0, + 824021, + 1648000, + 8240210, + 50000000, + 89000000, + 100000000, + 100000000, + 121050612, + 329176523, + 412527173, + 954353086, + 1000000000, + 1017701734, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 48960371273 + ], + [ + 0, + 0, + 0, + 300934, + 906423, + 2133801, + 8240210, + 79000000, + 88133559, + 100000000, + 100000000, + 114023427, + 314651651, + 470946890, + 787921728, + 1000000000, + 1127221573, + 1500000000, + 1500000000, + 2000000000, + 16343676650 + ], + [ + 0, + 0, + 160000, + 906423, + 1648000, + 1648042, + 2827369, + 79000000, + 100000000, + 235041520, + 386492043, + 553120596, + 553120596, + 553120596, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 576466502455 + ], + [ + 824021, + 1648042, + 2000000, + 3296084, + 3296084, + 10000000, + 79000000, + 79000000, + 100000000, + 100000000, + 320076871, + 431701317, + 500000000, + 500000000, + 500000000, + 1002000000, + 2000000000, + 2000000000, + 2000000000, + 2000000000, + 5000000000 + ], + [ + 0, + 824021, + 1648000, + 1648000, + 1648000, + 2000000, + 8240210, + 60000000, + 89000000, + 142769715, + 224814148, + 500000000, + 1000000000, + 1000000001, + 1076452398, + 1500000000, + 1500000000, + 1500000000, + 1500001185, + 2000000000, + 192085926790 + ], + [ + 0, + 0, + 0, + 1046333, + 206580026, + 320076871, + 500000000, + 1000000000, + 1000000000, + 1084609453, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000, + 9633341321, + 414208730367 + ], + [ + 0, + 0, + 0, + 0, + 0, + 824021, + 1648000, + 1648000, + 5227516, + 50000000, + 79000000, + 100000000, + 100000000, + 125323582, + 633332533, + 1000000000, + 1500000000, + 1500000000, + 1600000000, + 11596712386, + 109426257501 + ], + [ + 0, + 0, + 0, + 0, + 824021, + 1135262, + 2000000, + 25000000, + 63331862, + 89000000, + 100000000, + 100000000, + 100000000, + 100000000, + 283143728, + 500000000, + 773901886, + 1010000000, + 1500000000, + 1582229662, + 5580198697 + ], + [ + 0, + 824021, + 1236031, + 1648000, + 2000000, + 10000000, + 79000000, + 97827747, + 100000000, + 100000000, + 126813750, + 264828581, + 368486460, + 571144244, + 961800137, + 1000000000, + 1145031936, + 1500000000, + 1500000000, + 2000000000, + 28195657890 + ], + [ + 0, + 824021, + 1000000, + 1648000, + 2000000, + 11985518, + 94000000, + 125453083, + 150008259, + 415668328, + 500000000, + 671471594, + 1000000000, + 1000000000, + 1000000001, + 1075306433, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 19824249330 + ], + [ + 0, + 824021, + 824021, + 906423, + 1648000, + 2420000, + 36906402, + 79000000, + 100000000, + 294000000, + 500000000, + 1000000000, + 1000000000, + 1075306433, + 1250428215, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 160000, + 824021, + 1648000, + 2000000, + 32193224, + 52290832, + 100000000, + 126813750, + 368026902, + 500000000, + 500000000, + 1000000000, + 1000000001, + 1113660195, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 824021, + 824021, + 1648000, + 1648000, + 1648042, + 8310768, + 40124723, + 74514613, + 100000000, + 183635134, + 379379029, + 839408784, + 1000000000, + 1324590666, + 1500000000, + 1950408784, + 2000000000, + 2000000000, + 56205975519 + ], + [ + 0, + 0, + 824021, + 824021, + 1236031, + 1648000, + 1648000, + 9512273, + 79000000, + 89000000, + 100000000, + 130676388, + 255181549, + 455254835, + 500000000, + 1000000000, + 1100482411, + 1115903111, + 1500000000, + 2000000000, + 18861483265 + ], + [ + 0, + 824021, + 1648000, + 1648000, + 1648000, + 79000000, + 89000000, + 93711781, + 102169401, + 248788586, + 371428678, + 500000000, + 1000000000, + 1000000000, + 1000000000, + 1191184322, + 1500000000, + 1500000000, + 1849440344, + 2200000000, + 11174702180 + ], + [ + 0, + 0, + 0, + 1648000, + 2000000, + 19235595, + 79000000, + 89000000, + 100000000, + 200000000, + 368026902, + 500000000, + 800525254, + 873821245, + 1000000000, + 1000000002, + 1191184322, + 1500000000, + 1500000000, + 2000000000, + 16000000000 + ], + [ + 0, + 0, + 0, + 824021, + 865223, + 4606182, + 18299686, + 40628158, + 50000000, + 79000000, + 100000000, + 258350285, + 329791074, + 500000000, + 1000000000, + 1089208220, + 1500000000, + 1860309737, + 2586715580, + 4390689324, + 142209693149 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1153600, + 4120105, + 79000000, + 89000000, + 104466421, + 498876960, + 572475253, + 1000000000, + 1180406829, + 1500000000, + 1500000000, + 1500000000, + 1909243999, + 1909243999, + 3000000000, + 322184098960 + ], + [ + 0, + 0, + 824021, + 1648000, + 1648000, + 12562616, + 100000000, + 200000000, + 200000000, + 200000000, + 261496496, + 490867199, + 656443578, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 12146855231 + ], + [ + 0, + 824021, + 824021, + 1236000, + 1236000, + 1648042, + 2399858, + 88141360, + 100000000, + 150000000, + 351067099, + 500000000, + 759738386, + 1000000000, + 1000000000, + 1119729989, + 1500000000, + 1500000000, + 1504704236, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 1, + 1648000, + 50000000, + 79000000, + 100000000, + 152172520, + 161057677, + 200000000, + 287666508, + 500000000, + 742857356, + 1000000000, + 1124108561, + 1245129620, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 42397445513 + ], + [ + 0, + 0, + 0, + 824021, + 1236000, + 1648000, + 2034024, + 79000000, + 90000000, + 100000000, + 280622708, + 500000000, + 1000000000, + 1000000001, + 1143920630, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 3000000000, + 16321995563 + ], + [ + 0, + 824021, + 1236000, + 1812800, + 2000000, + 79000000, + 100000000, + 100000000, + 294000000, + 316433158, + 584988417, + 1000000000, + 1000000000, + 1177253963, + 1485566679, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 9190096016 + ], + [ + 0, + 0, + 824021, + 824021, + 1236000, + 1648042, + 17122386, + 79000000, + 89000000, + 100000000, + 200000000, + 364388656, + 500000000, + 679444454, + 1000000000, + 1000000000, + 1221250718, + 1500000000, + 1500000000, + 1999000000, + 10020000000 + ], + [ + 0, + 824021, + 1579000, + 2000000, + 50000000, + 71721492, + 100000000, + 150952497, + 201855279, + 337767205, + 500000000, + 764857064, + 1000000000, + 1000000000, + 1124649862, + 1300287922, + 1500000000, + 1500000000, + 1500000000, + 1999600000, + 21445405315 + ], + [ + 0, + 0, + 1071227, + 1648000, + 50000000, + 98000000, + 122326772, + 261496496, + 573708504, + 1000000000, + 1000000000, + 1000000000, + 1265399077, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2510089899, + 6823321658 + ], + [ + 0, + 0, + 824021, + 824021, + 1648000, + 2000000, + 2000000, + 14298900, + 68296636, + 79000000, + 200000000, + 200000000, + 258486003, + 258486003, + 369000000, + 475546272, + 573708504, + 1000000000, + 2000000000, + 5000000000, + 10740200674 + ], + [ + 1153600, + 2000000, + 2000000, + 5466585, + 77192759, + 79000000, + 79000000, + 79000000, + 79641236, + 100000000, + 100000000, + 200000000, + 500000000, + 575000000, + 687096537, + 1000000000, + 1072305969, + 1622158609, + 2000000000, + 3000000000, + 10020000000 + ], + [ + 0, + 824021, + 824021, + 1236000, + 1648042, + 55818307, + 68289831, + 100000000, + 127917658, + 331510860, + 500000000, + 1000000000, + 1000000000, + 1000000000, + 1208765287, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 8982143130 + ], + [ + 0, + 0, + 824021, + 1071227, + 1071227, + 1071227, + 2000000, + 74323320, + 129582819, + 200000000, + 500000000, + 939755902, + 1000000000, + 1208765287, + 1500000000, + 1500000000, + 1500000000, + 1500001915, + 2000000000, + 2655523986, + 109880844479 + ], + [ + 0, + 824021, + 1579000, + 2000000, + 16620767, + 79000000, + 103598533, + 213849373, + 342674259, + 526258890, + 575000000, + 1000000000, + 1000000000, + 1094000000, + 1500000000, + 1500000000, + 1585777847, + 2000000000, + 2899106632, + 10020000000, + 55400586243 + ], + [ + 0, + 0, + 0, + 824021, + 1071227, + 1824021, + 1824021, + 1824021, + 46692966, + 79000000, + 192625345, + 460000000, + 598742299, + 1000000000, + 1000000004, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 12895672449 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 824022, + 1648000, + 1648000, + 20000000, + 79000000, + 89000000, + 200000000, + 500000000, + 851386509, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2672501656, + 54414541302 + ], + [ + 0, + 0, + 0, + 30000000, + 79000000, + 89000000, + 100000000, + 328993890, + 418966415, + 598299839, + 1000000000, + 1000000001, + 1170546245, + 1326575932, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3071517395, + 52828213229 + ], + [ + 749858, + 906423, + 1236031, + 2000000, + 3060339, + 79000000, + 84384174, + 100000000, + 149391974, + 500000000, + 598299839, + 598299839, + 844064653, + 1000000000, + 1000000000, + 1000000000, + 1356477765, + 1844064653, + 2000000000, + 3049901833, + 14658105171 + ], + [ + 0, + 0, + 0, + 0, + 412058, + 20000000, + 50433965, + 79000000, + 100000000, + 110000000, + 598299839, + 1000000000, + 1094000000, + 1319817920, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 3929884985, + 89593186012 + ], + [ + 0, + 217028, + 824021, + 1071227, + 1236031, + 1236031, + 1236031, + 1236031, + 2000000, + 29394922, + 60000000, + 89000000, + 115593534, + 328993890, + 598299839, + 754829212, + 1000000000, + 1134851377, + 1500000000, + 1500000000, + 18543213398 + ], + [ + 824021, + 1236031, + 2000000, + 2000000, + 50000000, + 74908050, + 79000000, + 100000000, + 107011501, + 107011501, + 107011501, + 260902631, + 395691878, + 598299839, + 787569898, + 1000000000, + 1130272644, + 1250000000, + 1999599999, + 2355576267, + 10020000000 + ], + [ + 0, + 100000, + 824021, + 1648000, + 5343941, + 60000000, + 89000000, + 94729820, + 100000000, + 115119176, + 138652505, + 193549502, + 341194160, + 550284673, + 686786087, + 1000000000, + 1173574517, + 1500000000, + 1500000000, + 1600000000, + 18854875707 + ], + [ + 0, + 0, + 824021, + 988825, + 2000000, + 26741685, + 79000000, + 89000000, + 100000000, + 100000000, + 114594832, + 296977281, + 488223096, + 543717450, + 832056262, + 1000000000, + 1202044227, + 1500000000, + 2000000000, + 5976472490, + 25640436350 + ], + [ + 0, + 824021, + 1071227, + 2000000, + 8240210, + 79000000, + 100000000, + 100000000, + 159371082, + 290394970, + 408227560, + 654704502, + 1000000000, + 1099558844, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1763103267, + 2153921199, + 43763103267 + ], + [ + 0, + 0, + 0, + 0, + 824021, + 824021, + 1648042, + 10824021, + 50000000, + 60000000, + 110000000, + 130611076, + 220818692, + 500000000, + 676979902, + 1000000000, + 1237720754, + 1500000000, + 1500000000, + 1524150664, + 11129184814 + ], + [ + 0, + 0, + 824021, + 1236031, + 1325000, + 2000000, + 25908919, + 79000000, + 89000000, + 100000000, + 294000000, + 1000000000, + 1000000000, + 1000000000, + 1209259698, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 53733818190 + ], + [ + 0, + 576814, + 824021, + 988800, + 1071000, + 1236031, + 1427013, + 24591156, + 68394283, + 100000000, + 142045606, + 189689673, + 308348444, + 500000000, + 1000000000, + 1094336590, + 2000000000, + 2373153393, + 3737394059, + 21208514849, + 21208514849 + ], + [ + 0, + 0, + 0, + 988800, + 1293292, + 10572139, + 57917748, + 79000000, + 89000000, + 136132077, + 304782734, + 500000000, + 809265945, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1600000000, + 2406120597, + 4288058876, + 335753152857 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 500000000, + 1000000000, + 1119138862, + 1202044227, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 3027707927, + 11102135876, + 71738266876 + ], + [ + 0, + 0, + 0, + 0, + 0, + 20000000, + 79000000, + 334591361, + 395691878, + 395691878, + 500000000, + 500000000, + 571546318, + 895779750, + 1000000001, + 1223277720, + 1500000000, + 2000000000, + 3790439131, + 28127823264, + 176106182405 + ], + [ + 0, + 0, + 824021, + 824021, + 1071228, + 2000000, + 65740409, + 100000000, + 140984206, + 200000000, + 255248502, + 350500144, + 575000000, + 841973244, + 1000000000, + 1329480835, + 1500000000, + 2000000000, + 2000000000, + 4305547486, + 65732025486 + ], + [ + 0, + 0, + 0, + 5, + 988800, + 1325000, + 8240210, + 37928520, + 50000000, + 79000000, + 100000000, + 100000000, + 220281892, + 338698236, + 1000000000, + 1045497864, + 1500000000, + 1500000000, + 1500000000, + 2177827589, + 18967936170 + ], + [ + 0, + 23739156, + 50000000, + 100000000, + 120000000, + 200000000, + 200000000, + 200000000, + 200000000, + 200000000, + 200000000, + 344980863, + 644670111, + 1000000000, + 1000000000, + 1088052816, + 1500000000, + 1500000000, + 2000000000, + 3329433883, + 67644670111 + ], + [ + 0, + 824021, + 824021, + 824021, + 988800, + 1071227, + 2000000, + 69141324, + 94512068, + 135017241, + 200000000, + 330578383, + 745431438, + 1000000000, + 1000000001, + 1401400000, + 1500000000, + 1797000000, + 2000000000, + 2544787072, + 67583045249 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 906423, + 10824021, + 55998464, + 94512068, + 135532988, + 210848616, + 516629314, + 1000000000, + 1000000001, + 1500000000, + 2000000000, + 2000000000, + 20020000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000001, + 1267099468, + 1500000000, + 1797000000, + 1877682405, + 20155609447, + 76794925921, + 76794925921, + 76794925921, + 76794925921, + 76794925921, + 76794925921, + 76794925921, + 223798918738 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 79000000, + 100000000, + 150726371, + 241624627, + 413769809, + 1000000000, + 1000000000, + 1195791669, + 1332682286, + 1500000000, + 1525799672, + 2000000000, + 8231835291, + 692978435254 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1178163028, + 1428000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1858558512, + 2000000000, + 2123134000, + 3479131910, + 8853063304, + 30672876196, + 67440779740 + ], + [ + 749858, + 1071227, + 1648042, + 2000000, + 2000000, + 10824021, + 22397184, + 79000000, + 79000000, + 91983703, + 100000000, + 141624627, + 200000000, + 230000000, + 258337068, + 405715959, + 500000000, + 1000000000, + 1000000000, + 1226808268, + 20020000000 + ], + [ + 0, + 0, + 0, + 824021, + 2000000, + 50000000, + 56447476, + 100000000, + 100000000, + 230000000, + 468386969, + 610000000, + 1000000000, + 1136503971, + 1428000000, + 1500000000, + 1500000000, + 1500001420, + 1899740276, + 5000000000, + 80425261634 + ], + [ + 0, + 0, + 0, + 0, + 824021, + 63324478, + 100000000, + 200000000, + 601938135, + 845705903, + 1000000000, + 1000000001, + 1226808268, + 1500000000, + 1500000000, + 1650001467, + 1797000000, + 1885164019, + 2335924565, + 8279713262, + 67279713262 + ], + [ + 0, + 824021, + 824021, + 824021, + 1119510, + 2000000, + 2000000, + 56410607, + 79000000, + 100000000, + 175542760, + 312612833, + 407219489, + 1000000000, + 1352174134, + 1500000000, + 1500000000, + 1797000000, + 2000000000, + 3000000000, + 20160384249 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1087708, + 57813754, + 285542760, + 857869286, + 1000000000, + 1000000000, + 1000000001, + 1344024886, + 1500000000, + 1500000000, + 2137126620, + 3362089232, + 4504763422, + 8896619596, + 810918262857 + ], + [ + 0, + 0, + 0, + 20000000, + 79000000, + 100000000, + 149281551, + 232465576, + 293033330, + 402190942, + 450094307, + 468386969, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 2779750189, + 6296951305, + 178089191013, + 178089191013 + ], + [ + 0, + 0, + 0, + 0, + 1, + 79000000, + 450094307, + 450094307, + 627475101, + 1000000000, + 1000000000, + 1184719611, + 1500000000, + 1500000000, + 1500000000, + 1542878425, + 2000000000, + 3950547037, + 4537723220, + 10020000000, + 72954725904 + ], + [ + 0, + 0, + 1, + 824021, + 1359635, + 1414020, + 1414020, + 2000000, + 2000000, + 12405191, + 61763347, + 79000000, + 89000000, + 127584192, + 249875780, + 432304861, + 1000000000, + 1328527083, + 2000000000, + 4621582072, + 13439414234 + ], + [ + 0, + 0, + 824021, + 1087708, + 2000000, + 8240210, + 35937150, + 89000000, + 100000000, + 119796002, + 279678546, + 354407333, + 771588512, + 1000000000, + 1194354695, + 1500000000, + 1500000000, + 1600000000, + 1797000000, + 5456113883, + 66947154303 + ], + [ + 0, + 0, + 0, + 0, + 2000000, + 120000000, + 1000000000, + 1000000001, + 1129065133, + 1144750000, + 5651161489, + 12000000000, + 34160671571, + 122499396650, + 122499396650, + 122499396650, + 122499396650, + 122499396650, + 122499396650, + 178158368199, + 739550254042 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 5183581, + 89000000, + 130760802, + 315472409, + 461849811, + 814632549, + 1000000000, + 1000000000, + 1000000001, + 1404175664, + 1500000000, + 1500000000, + 1912557664, + 3329393549, + 206631777823 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8727103091, + 9000000000, + 13075468718, + 13075468718, + 15264912672, + 18849747060, + 26586380176, + 37298512029, + 49743790567, + 80629667811, + 92096232940, + 302822196803 + ], + [ + 1, + 1368577, + 2000000, + 2175416, + 19437042, + 79000000, + 205284569, + 298864587, + 500000000, + 886328156, + 1000000000, + 1000000000, + 1000000001, + 1000000001, + 1033822149, + 1469431265, + 2000000000, + 2097781014, + 2217642001, + 3907083625, + 21736729756 + ], + [ + 0, + 0, + 0, + 0, + 160000, + 311601325, + 311601325, + 311601325, + 311601325, + 1000000000, + 1000000001, + 1500000000, + 1579000000, + 2199748483, + 3000000000, + 4952996367, + 6786516428, + 8880861619, + 10437636707, + 23822424097, + 342313833422 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1498918, + 11303407, + 79000000, + 89000000, + 104483774, + 430866591, + 1000000000, + 1000000000, + 1000000000, + 1500000000, + 2138709234, + 9000000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 6786516428, + 7888394361, + 8424931840, + 9000000000, + 10000000000, + 11362885389, + 38206128885, + 49061023694, + 102536971539, + 225056774705 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 180801212, + 287279628, + 885198786, + 1000000000, + 1094000000, + 1236602568, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 3000000000, + 4535605284, + 5000000000, + 9000000000, + 267528212845 + ], + [ + 0, + 980482351, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1079380082, + 1196558783, + 1419868596, + 1500000000, + 1500000000, + 1513000000, + 1565921829, + 2000000000, + 2000000000, + 2000000000, + 2000000000, + 3000000000, + 4792000000, + 8878569393, + 55559907288 + ], + [ + 0, + 0, + 232465576, + 266381122, + 320842488, + 450499731, + 501955111, + 551821194, + 611163656, + 941163656, + 1000000000, + 1288134207, + 1288134207, + 1500000000, + 1500000000, + 1830886530, + 2000000000, + 3000000000, + 5000000000, + 9000000000, + 159558642466 + ], + [ + 0, + 50000000, + 66550000, + 110584165, + 200000000, + 502000000, + 806528303, + 1000000000, + 1139810849, + 1313859989, + 1500000000, + 1500000000, + 1500000000, + 1999600000, + 2000000000, + 2914089866, + 3000000000, + 5000000000, + 7000000000, + 9665053755, + 66489700983 + ], + [ + 0, + 2000000, + 5183581, + 9330445, + 19437042, + 50000000, + 79000000, + 79000000, + 100000000, + 100000000, + 130000000, + 167218543, + 218984796, + 343986083, + 777518862, + 1000000000, + 1500000000, + 2000000000, + 2146000000, + 5000000000, + 66466295072 + ], + [ + 0, + 100000, + 1196478, + 1532496, + 2000000, + 5183581, + 77569840, + 100000000, + 100000000, + 100000000, + 100000000, + 328795182, + 987673168, + 1380664459, + 1437599192, + 1500000000, + 2000000000, + 2000000000, + 2000000000, + 3000000000, + 32000000000 + ], + [ + 0, + 551821194, + 819000000, + 1000000001, + 1140143062, + 1294075826, + 1500000000, + 1500000000, + 1500000000, + 1567696711, + 2000000000, + 2000000000, + 2000000000, + 2000000000, + 4372144952, + 4535000000, + 4535000000, + 5000000000, + 8196059394, + 9858954304, + 111000000000 + ], + [ + 0, + 1305250, + 2000000, + 20000000, + 79000000, + 89000000, + 114350804, + 199677604, + 287200000, + 410000000, + 516951107, + 945614301, + 1000000000, + 1000000000, + 1119000000, + 1500000000, + 1600000000, + 2000000000, + 2212613003, + 5000000000, + 123000000000 + ], + [ + 0, + 0, + 0, + 0, + 10877080, + 79000000, + 89000000, + 287200000, + 539559966, + 948031890, + 1202067496, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 2000000000, + 2212613003, + 5000000000, + 9605355310, + 12029330238, + 30111403791 + ], + [ + 0, + 0, + 2000000, + 2000000, + 2000000, + 5183581, + 14140204, + 25917905, + 79000000, + 100000000, + 206695193, + 516951107, + 977462798, + 1062341946, + 1500000000, + 1500000000, + 1910000000, + 2000000000, + 2340046039, + 5000000000, + 66062341946 + ], + [ + 0, + 0, + 2000000, + 10877080, + 11300000, + 50000000, + 160877080, + 301310811, + 569545577, + 789803721, + 1000000000, + 1400000000, + 1500000000, + 1500000000, + 1910000000, + 1999599999, + 2000000000, + 2035586403, + 4896302471, + 7228206133, + 25904833258 + ], + [ + 2000000, + 2000000, + 5183581, + 5183581, + 10367162, + 79000000, + 79000000, + 79000000, + 100000000, + 300000000, + 300000000, + 300000000, + 300000000, + 340000000, + 569545577, + 877439048, + 2000000000, + 2000000000, + 2546826935, + 2827514655, + 20040000000 + ], + [ + 0, + 2000000, + 4120105, + 10877080, + 79000000, + 100000000, + 139979388, + 430874459, + 531803900, + 1000000000, + 1323477153, + 1500000000, + 1500000000, + 1710000000, + 1999888659, + 2000000000, + 2000000000, + 2035586403, + 4579515506, + 9931110892, + 111000000000 + ], + [ + 0, + 0, + 0, + 5183581, + 5183581, + 100000000, + 143260209, + 231443828, + 375887526, + 516951107, + 1000000000, + 1000000001, + 1486656695, + 1500000000, + 1500000000, + 1500000000, + 1717795856, + 1910000000, + 2000000000, + 2405735459, + 20020000000 + ], + [ + 0, + 0, + 2000000, + 2000000, + 5183581, + 10367162, + 75215018, + 85107062, + 460935996, + 615654504, + 1000000000, + 1400000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1810467696, + 2000000000, + 2000000000, + 5000000000, + 85247876485 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 10622121, + 79000000, + 100000000, + 569545577, + 1000000000, + 1000000000, + 1342440365, + 1342440365, + 1500000000, + 1634977144, + 2000000000, + 3256686566, + 8019891786, + 65748070226 + ], + [ + 0, + 5183581, + 24933581, + 100000000, + 369000000, + 668913779, + 1000000000, + 1000000000, + 1482963816, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1531082497, + 2000000000, + 2000000000, + 5000000000, + 6164915801, + 41601501561 + ], + [ + 0, + 2000000, + 2000000, + 4000000, + 5183000, + 5183581, + 24933581, + 79000000, + 100000000, + 206695193, + 625510119, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1816798827, + 1910000000, + 2000000000, + 2114957817, + 5000000000, + 41711275797 + ], + [ + 0, + 5183000, + 10367162, + 79000000, + 89000000, + 100000000, + 100000000, + 164695389, + 235335850, + 429761257, + 429761257, + 632076694, + 1000000000, + 1274453654, + 1500000000, + 1500000000, + 1810467696, + 1910000000, + 4099999999, + 5000000000, + 20020000000 + ], + [ + 0, + 2000000, + 5183581, + 7775000, + 67169029, + 113718198, + 260196342, + 456466415, + 561255197, + 1000000000, + 1000000000, + 1000000000, + 1108516708, + 1500000000, + 1500000000, + 1600000000, + 1810467696, + 1910000000, + 3054529760, + 5000000000, + 20020000000 + ], + [ + 0, + 0, + 2600001, + 5183000, + 11300000, + 11300000, + 11300000, + 50000000, + 50000000, + 100000000, + 356466415, + 500000000, + 1000000000, + 1094000000, + 1500000000, + 1500408141, + 1717000000, + 1810467696, + 2000000000, + 3000000000, + 20040000000 + ], + [ + 0, + 1, + 2000000, + 2600000, + 29919547, + 79000000, + 89000000, + 124901225, + 460071816, + 723521336, + 1000000000, + 1000000000, + 1464997341, + 1500000000, + 1500000000, + 1578062733, + 1600000000, + 1820945526, + 2000000000, + 5000000000, + 20020000000 + ], + [ + 2000000, + 2000000, + 3000000, + 43876712, + 79000000, + 79000000, + 100000000, + 355612953, + 391725411, + 565389722, + 820654644, + 1000000000, + 1000000000, + 1000000000, + 1150000000, + 1400000000, + 1757996809, + 2000000000, + 2000000000, + 6000000000, + 20040000000 + ], + [ + 0, + 0, + 3628000, + 5183581, + 25574246, + 25574246, + 25574246, + 25574246, + 79000000, + 234886127, + 657539796, + 1000000000, + 1126966955, + 1456772500, + 1500000000, + 1500000000, + 1745867563, + 2000000000, + 4180766166, + 20000000000, + 41000000000 + ], + [ + 0, + 2000000, + 3628000, + 5183000, + 20908026, + 42592564, + 79000000, + 105004143, + 200000000, + 320248257, + 320248257, + 356466415, + 648478682, + 1000000000, + 1200000000, + 1500000000, + 1757996809, + 2000000000, + 3184171564, + 5000000000, + 20020000000 + ], + [ + 0, + 5183000, + 5183000, + 20877080, + 90842100, + 100000000, + 158539794, + 173641421, + 356466415, + 738748804, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1521479720, + 1757996809, + 2000000000, + 3000000000, + 7000000000, + 13119687065 + ], + [ + 0, + 488645, + 2020001, + 5183000, + 11300000, + 100000000, + 100000000, + 144798307, + 356466415, + 428979044, + 657539796, + 859177803, + 1000000000, + 1033000000, + 1500000000, + 1500000000, + 1578000000, + 1940689015, + 3573300872, + 5000000000, + 55000000000 + ], + [ + 0, + 2000000, + 2000000, + 5183000, + 25574246, + 50000000, + 79000000, + 91282330, + 100000000, + 371970249, + 672089110, + 996764925, + 1000000000, + 1000000000, + 1200000000, + 1447241611, + 1500000000, + 1600000000, + 1757996809, + 2000000000, + 44000000000 + ], + [ + 0, + 79000000, + 279309588, + 436279363, + 436279363, + 500000000, + 702068956, + 790598354, + 909957308, + 1000000000, + 1000000000, + 1185669689, + 1500000000, + 1500000000, + 1500000000, + 1632914131, + 2000000000, + 2000000000, + 5000000000, + 9648667944, + 15000000000 + ], + [ + 0, + 2000000, + 4000000, + 7911368, + 20000000, + 27746896, + 79000000, + 89000000, + 320248257, + 672089110, + 1000000000, + 1000000000, + 1359000000, + 1500000000, + 1500000000, + 1500000000, + 1578000000, + 1999600000, + 2000000000, + 5000000000, + 38000000000 + ], + [ + 0, + 2000000, + 3905899, + 5183000, + 11300000, + 25574246, + 79000000, + 281442525, + 382945030, + 794963148, + 1000000000, + 1000000000, + 1457965195, + 1500000000, + 1500000000, + 1500000000, + 1578000000, + 1757996809, + 2000000000, + 5788118667, + 16000000000 + ], + [ + 0, + 2000000, + 11300000, + 25574246, + 100000000, + 100000000, + 110000000, + 500000000, + 998888671, + 1000000000, + 1000000000, + 1176000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1757996809, + 2000000000, + 2899656284, + 12496409925 + ], + [ + 0, + 11300000, + 74602843, + 100000000, + 320248257, + 776577697, + 1000000000, + 1000000000, + 1000000001, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1826793932, + 2000000000, + 2000000000, + 3000000000, + 9640562740, + 28836949991, + 41455547873 + ], + [ + 0, + 2000000, + 3905899, + 12000000, + 89000000, + 118630721, + 242074914, + 657539796, + 998888671, + 1000000001, + 1193282352, + 1193282352, + 1500000000, + 1500000000, + 1500000000, + 1578000000, + 2000000000, + 2000000000, + 5000000000, + 31242657275, + 71265766999 + ], + [ + 0, + 2000000, + 2600000, + 2600000, + 25574246, + 50000000, + 100000000, + 113681116, + 500000000, + 699287095, + 972012237, + 1000000000, + 1350000000, + 1407984705, + 1500000000, + 1578000000, + 1600000000, + 1949448669, + 2000000000, + 6015607948, + 96399958782 + ], + [ + 0, + 2000000, + 3000000, + 20000000, + 34240291, + 50166936, + 89000000, + 100000000, + 180102060, + 356466415, + 672089110, + 1000000000, + 1000000000, + 1100000000, + 1500000000, + 1500000000, + 1500000000, + 1725000000, + 1823764270, + 6000000000, + 76503714809 + ], + [ + 0, + 2000000, + 3905899, + 25574246, + 50000000, + 79000000, + 100000000, + 158912480, + 712485372, + 972012237, + 1000000000, + 1000000000, + 1173000000, + 1500000000, + 1500000000, + 1500000000, + 1549073756, + 1595329156, + 1758000000, + 3000000000, + 10020000000 + ], + [ + 0, + 2000000, + 3905899, + 5183000, + 29907268, + 50000000, + 125781042, + 416400000, + 843859654, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1118749549, + 1310673191, + 1500000000, + 1529850981, + 1600000000, + 2000000000, + 2000000000, + 41529850981 + ], + [ + 0, + 2000000, + 3905000, + 3905899, + 3905899, + 5183000, + 47874560, + 79000000, + 94000000, + 154177959, + 672089110, + 1000000000, + 1093230403, + 1500000000, + 1500000000, + 1600000000, + 1670000000, + 1670000000, + 1950261533, + 2380635558, + 15548063186 + ], + [ + 0, + 0, + 2000000, + 2000000, + 3905000, + 4000000, + 50000000, + 79000000, + 100000000, + 672089110, + 1000000000, + 1000000000, + 1093230403, + 1376960402, + 1500000000, + 1500000000, + 1500000000, + 1574000000, + 1864450870, + 2000000000, + 36191052967 + ], + [ + 0, + 2200000, + 6612968, + 50000000, + 89000000, + 90000000, + 100000000, + 429970694, + 672089110, + 855993745, + 1000000000, + 1000000000, + 1014000000, + 1500000000, + 1500000000, + 1529850981, + 1591474455, + 2000000000, + 3890564948, + 5000000000, + 31591474455 + ], + [ + 0, + 2000000, + 3905000, + 5183000, + 50000000, + 100000000, + 100000000, + 100000000, + 100000000, + 334207259, + 400000000, + 778173654, + 986006119, + 1000000000, + 1000000000, + 1399588376, + 1500000000, + 1549073756, + 1600000000, + 2000000000, + 15000000000 + ], + [ + 0, + 0, + 3039842, + 3628000, + 5183000, + 79000000, + 100000000, + 400000000, + 400000000, + 400000000, + 498957540, + 955940114, + 1000000000, + 1000000000, + 1000000000, + 1481174632, + 1500000000, + 1500000000, + 1695217558, + 2000000000, + 67330000000 + ], + [ + 0, + 0, + 2000000, + 3628000, + 4000000, + 32073779, + 79000000, + 100000000, + 261755373, + 643792414, + 778173654, + 986006119, + 1000000000, + 1330690483, + 1500000000, + 1500000000, + 1529850981, + 1827131350, + 2000000000, + 3000000000, + 18791254772 + ], + [ + 0, + 3039000, + 3628000, + 3905000, + 50000000, + 79000000, + 94000000, + 188839477, + 401749446, + 600000000, + 714209330, + 934417822, + 1000000000, + 1500000000, + 1500000000, + 1610000000, + 1610000000, + 1610000000, + 1886011912, + 2000000000, + 29815297506 + ], + [ + 0, + 2000000, + 2000000, + 3039842, + 4000000, + 50000000, + 64535773, + 100000000, + 103095545, + 386092426, + 400000000, + 545021847, + 731480070, + 902858257, + 1000000000, + 1319960027, + 1500000000, + 1736828912, + 2000000000, + 2366166213, + 11296960182 + ], + [ + 0, + 3039000, + 3628000, + 4000000, + 50000000, + 84505509, + 100000000, + 193339035, + 478765859, + 600000000, + 672089110, + 869687262, + 1000000000, + 1000000000, + 1000000000, + 1003253466, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 41841978019 + ], + [ + 0, + 2000000, + 10000000, + 19299647, + 50000000, + 89000000, + 158001099, + 207723425, + 400000000, + 400000000, + 502040935, + 672089110, + 1000000000, + 1000000000, + 1009094699, + 1500000000, + 1500000000, + 1736912089, + 3629054076, + 5000000000, + 10497742779 + ], + [ + 0, + 2200000, + 3039842, + 32073779, + 79000000, + 100000000, + 100000000, + 128554533, + 332369730, + 613287192, + 686501811, + 913750600, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1642868377, + 2000000000, + 2275182580, + 30954164668 + ], + [ + 0, + 2200000, + 32073779, + 100000000, + 115867472, + 152391766, + 158697005, + 343196116, + 672089110, + 1000000000, + 1307083533, + 1344178220, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1675209432, + 2000000000, + 5000000000, + 7005415597 + ], + [ + 0, + 2000000, + 2000000, + 3419000, + 4000000, + 21127834, + 32073779, + 79000000, + 89000000, + 100000000, + 339864690, + 594271373, + 714209330, + 714209330, + 917837858, + 1334258660, + 1424169843, + 1824386099, + 2995182299, + 4000000000, + 100000000000 + ], + [ + 1685745, + 2000000, + 2100000, + 3628000, + 10000000, + 50000000, + 55000001, + 79789353, + 100000000, + 162000000, + 200000000, + 200000000, + 245617334, + 390844394, + 672089110, + 926967135, + 1000000000, + 1214585160, + 1683066516, + 2000000000, + 10020000000 + ], + [ + 0, + 2000000, + 3039000, + 3628000, + 20000000, + 47036607, + 55000001, + 89000000, + 110790214, + 300000000, + 500000000, + 672089110, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1632348069, + 1736000000, + 2102235479, + 130744352629 + ], + [ + 0, + 2000000, + 3628000, + 20000000, + 21127834, + 60000000, + 94000000, + 100000000, + 191089256, + 354318229, + 574392394, + 760035009, + 1000000000, + 1330037631, + 1406203896, + 1500000000, + 1500000000, + 1500000000, + 1758148581, + 5000000000, + 26665559308 + ], + [ + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 3000000, + 21127834, + 79000000, + 89000000, + 89000000, + 100000000, + 100000000, + 278517309, + 500000000, + 686501811, + 686501811, + 704084466, + 1403081486, + 1576000000, + 2000000000, + 10010000000 + ], + [ + 0, + 2000000, + 3039000, + 12000000, + 50000000, + 100000000, + 159206428, + 302387706, + 443920699, + 488126444, + 644733981, + 660551253, + 1000000000, + 1000000001, + 1194869874, + 1480308988, + 1500000000, + 1500000000, + 1600000000, + 2010000000, + 13883275690 + ], + [ + 0, + 0, + 2000000, + 2000000, + 3419000, + 5052487, + 35563917, + 100000000, + 100000000, + 115232776, + 300462047, + 600000000, + 1000000000, + 1022156585, + 1500000000, + 1500000000, + 1517802987, + 2000000000, + 2000000000, + 2000000000, + 69345024346 + ], + [ + 0, + 0, + 2000000, + 2500000, + 3000000, + 21127834, + 71022971, + 100000000, + 138362912, + 292387706, + 500000000, + 672089110, + 1000000000, + 1000000000, + 1000000001, + 1350817254, + 1500000000, + 1978252293, + 2000000000, + 2987264020, + 60000000000 + ], + [ + 0, + 2000000, + 2000000, + 2000000, + 10000000, + 89000000, + 100000000, + 100000000, + 116081370, + 500000000, + 648864315, + 773080748, + 1000000000, + 1333362160, + 1500000000, + 1500000000, + 1500000000, + 1989000000, + 2000000000, + 4000000000, + 177858315476 + ], + [ + 0, + 1, + 2000000, + 3279340, + 10000000, + 31916888, + 100000000, + 100000000, + 100000000, + 142791210, + 344460464, + 534605413, + 1000000000, + 1000000001, + 1285382421, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 22031916888 + ], + [ + 0, + 2000000, + 3000000, + 16912405, + 85567855, + 120495502, + 120495502, + 344460464, + 344460464, + 500000000, + 575000000, + 1000000000, + 1000000001, + 1307083533, + 1500000000, + 1500000000, + 1500000000, + 1873000000, + 2211815470, + 3290267855, + 7085267855 + ], + [ + 0, + 2000000, + 2000000, + 3000000, + 3419000, + 79000000, + 100000000, + 100000000, + 100599187, + 500000000, + 620497432, + 800297258, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1517000000, + 1767370619, + 2000000000, + 2500000000, + 10020000000 + ], + [ + 0, + 2000000, + 2100000, + 3000000, + 22451645, + 100000000, + 104097330, + 492578463, + 526366219, + 656646662, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1712000000, + 2020917830, + 3104097330, + 42202696517 + ], + [ + 0, + 2000000, + 2000000, + 2000000, + 2600000, + 5052487, + 79000000, + 89000000, + 176000942, + 344460464, + 500000000, + 620497432, + 1000000000, + 1000000001, + 1423772405, + 1500000000, + 1509000000, + 1655281917, + 2000000000, + 2000000000, + 14176000942 + ], + [ + 0, + 1575256, + 2000000, + 2000000, + 2600000, + 3000000, + 14789483, + 50000000, + 100000000, + 102641127, + 492578463, + 621981466, + 1000000000, + 1443594407, + 1450000000, + 1500000000, + 1500000000, + 1553199481, + 2000000000, + 4942761863, + 15000000000 + ], + [ + 0, + 2000000, + 3000000, + 31916888, + 92697553, + 111595771, + 344460464, + 510246798, + 783922767, + 1000000000, + 1000000000, + 1182337109, + 1459473802, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 4317861956, + 10500000000 + ], + [ + 0, + 2000000, + 3000000, + 3000000, + 3419000, + 50000000, + 71204488, + 89000000, + 100000000, + 100000000, + 129002714, + 270536911, + 344460464, + 621553481, + 1000000000, + 1490107285, + 1500000000, + 1500000000, + 1700706618, + 3383596010, + 82367790711 + ], + [ + 0, + 50000000, + 137396780, + 375607152, + 500000000, + 656646662, + 809458116, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1094000000, + 1473689987, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 6183425742, + 10837616224, + 37975987892 + ], + [ + 0, + 0, + 1575256, + 2600000, + 3000000, + 3000000, + 5318766, + 50000000, + 79000000, + 142967234, + 439866754, + 610262499, + 699807181, + 805044050, + 812686487, + 1000000000, + 1124350622, + 1498528356, + 1500000000, + 2000000000, + 21456351882 + ], + [ + 0, + 2000000, + 2000000, + 3000000, + 3039000, + 13030478, + 94000000, + 100000000, + 194152951, + 621330829, + 800297258, + 1000000000, + 1000000001, + 1402196484, + 1499010728, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 7458263559, + 24256901433 + ], + [ + 2000000, + 2000000, + 2000000, + 2000000, + 2200000, + 50000000, + 263040426, + 425986850, + 593157845, + 593157845, + 593157845, + 706439104, + 808649229, + 838186104, + 1000000000, + 1000000000, + 1150000001, + 2000000000, + 2000000000, + 2513459732, + 10010000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 2100000, + 3000000, + 10000000, + 25012954, + 120431110, + 360377585, + 593157845, + 845850673, + 1094000000, + 1397955042, + 1500000000, + 1500000000, + 1500000000, + 1638725300, + 3358466183, + 42658466183 + ], + [ + 0, + 0, + 85809311, + 99383990, + 228169225, + 593157845, + 593157845, + 827506523, + 862712497, + 1000000000, + 1000000001, + 1375168673, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1700876402, + 2000000000, + 2673402306, + 22673402306 + ], + [ + 0, + 2000000, + 2000000, + 2000000, + 2100000, + 3000000, + 3039000, + 11016233, + 50000000, + 81537039, + 89000000, + 125748498, + 200000000, + 612027577, + 1000000000, + 1232811719, + 1397865278, + 1500000000, + 1600000000, + 2000000000, + 41985852606 + ], + [ + 0, + 0, + 0, + 2000000, + 2000000, + 2100000, + 3039000, + 17561156, + 82000000, + 122922806, + 207752192, + 593157845, + 840153730, + 1000000000, + 1206207451, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2128703226, + 17471507838 + ], + [ + 0, + 0, + 0, + 2100000, + 17069048, + 50000000, + 110000000, + 128800657, + 360377585, + 593157845, + 593157845, + 919999999, + 1000000000, + 1315678733, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2820000000, + 4692466737, + 7314569859 + ], + [ + 0, + 2000000, + 2000000, + 2100000, + 12000000, + 79000000, + 89000000, + 142447169, + 234969769, + 566973010, + 727882890, + 1000000000, + 1390670689, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1824103629, + 10020000000 + ], + [ + 0, + 0, + 2000000, + 2000000, + 2000000, + 2100000, + 50000000, + 79000000, + 100000000, + 200889010, + 518232180, + 601950609, + 1000000000, + 1000000003, + 1378493938, + 1500000000, + 1500000000, + 1970284163, + 2000000000, + 3011614418, + 53942913179 + ], + [ + 0, + 1470000, + 2000000, + 2100000, + 2200000, + 2808026, + 79000000, + 91662534, + 485337877, + 577309908, + 1000000000, + 1000000000, + 1281444140, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1568256183, + 2000000000, + 2000000000, + 23734451134 + ], + [ + 0, + 2000000, + 2000000, + 2100000, + 2931852, + 10000000, + 53950586, + 53950586, + 79000000, + 98360584, + 129459701, + 312464842, + 500000000, + 593157845, + 616791211, + 961418714, + 1500000000, + 2000000000, + 5000000000, + 19760949038, + 60338433931 + ], + [ + 0, + 2000000, + 2100000, + 10000000, + 50000000, + 89000000, + 100000000, + 149543127, + 252692957, + 395061839, + 616791211, + 856235300, + 1000000000, + 1373765265, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10608139348 + ], + [ + 0, + 2000000, + 2000000, + 2000000, + 2100000, + 9676700, + 50000000, + 89000000, + 100000000, + 291286528, + 593157845, + 679344927, + 1000000000, + 1305350919, + 1407956977, + 1500000000, + 1500000000, + 1859000000, + 2000000000, + 2000000000, + 10108989863 + ], + [ + 0, + 2000000, + 2100000, + 2600000, + 2822518, + 11846370, + 50000000, + 79000000, + 100000000, + 129459701, + 294000000, + 616791211, + 1000000000, + 1000000000, + 1400000000, + 1500000000, + 1500000000, + 1500000000, + 1580910479, + 3299506486, + 11973721199 + ], + [ + 0, + 2000000, + 2100000, + 2565926, + 3000000, + 11846370, + 11846370, + 11846370, + 11846370, + 89000000, + 100000000, + 129459701, + 294000000, + 294000000, + 669696754, + 1000000000, + 1295141066, + 1500000000, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 0, + 0, + 1890307, + 2100000, + 10000000, + 79000000, + 94000000, + 100000000, + 117840096, + 117840096, + 178900000, + 300000000, + 851781873, + 1000000000, + 1210628810, + 1652325173, + 4204202997, + 5000000000, + 10020000000 + ], + [ + 0, + 1575256, + 1575256, + 2000000, + 2100000, + 3150512, + 79000000, + 100000000, + 100000000, + 100000000, + 120000000, + 346681751, + 836222909, + 851781873, + 1000000000, + 1365208762, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 11404968432 + ], + [ + 0, + 1575256, + 2723959, + 50000000, + 89000000, + 117840096, + 120000000, + 120000000, + 120000000, + 129400000, + 303874434, + 970000000, + 1000000000, + 1000000000, + 1284931948, + 1284931948, + 1310623997, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1575256, + 4872157, + 79000000, + 100000000, + 113440239, + 294493782, + 303874434, + 1000000000, + 1000000000, + 1000000001, + 1370629280, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3108017914, + 42566800344 + ], + [ + 1654018, + 2047832, + 2047832, + 7684934, + 50000000, + 100000000, + 100000000, + 138000000, + 836222909, + 836222909, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1306162325, + 1500000000, + 1600000000, + 2000000000, + 2000000000, + 3114127592, + 10020000000 + ], + [ + 0, + 2000000, + 2362000, + 25681624, + 89275080, + 100000000, + 121738745, + 298584049, + 555017231, + 882174555, + 882174555, + 1000000000, + 1168787109, + 1334899487, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500001693, + 2233370900, + 10010000000 + ], + [ + 0, + 1575256, + 1575256, + 1575256, + 2000000, + 2723000, + 89000000, + 100000000, + 210082432, + 434273878, + 593157845, + 594271624, + 594271624, + 612115570, + 882174555, + 1000000000, + 1297839072, + 1500000000, + 1500000000, + 2000000000, + 20000000000 + ], + [ + 0, + 1575256, + 1575256, + 1575256, + 1575256, + 2000000, + 3000000, + 60805678, + 89000000, + 239704780, + 300000000, + 300000000, + 495024153, + 991788694, + 1000000000, + 1220286119, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 42665084656 + ], + [ + 0, + 0, + 0, + 2000000, + 2184636, + 3150000, + 16912405, + 50000000, + 89000000, + 300000000, + 500000000, + 570055398, + 991788694, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1941261576, + 2200000000, + 5000000000, + 27736835308 + ], + [ + 0, + 0, + 0, + 2000000, + 2047832, + 2948857, + 72852343, + 245723854, + 575000000, + 835014551, + 1000000000, + 1000000000, + 1041979808, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1606083873, + 2000000000, + 2137912119, + 9705594464 + ], + [ + 0, + 0, + 1470000, + 2205000, + 11470000, + 87207899, + 100000000, + 100000000, + 110000000, + 171768010, + 300000000, + 300000000, + 550000000, + 817832309, + 1000000000, + 1290700326, + 1500000000, + 1500000000, + 1531827585, + 1586000000, + 10020000000 + ], + [ + 0, + 0, + 0, + 1911000, + 1911000, + 2100000, + 2100000, + 50000000, + 89000000, + 100000000, + 202900000, + 317300697, + 593157845, + 1000000000, + 1075000000, + 1474833196, + 1500000000, + 1500000000, + 1568100057, + 2716646996, + 10020000000 + ], + [ + 0, + 0, + 1543500, + 2047000, + 16899348, + 61164261, + 79000000, + 108805609, + 108805609, + 108805609, + 110000000, + 300000000, + 607927056, + 940876962, + 1102000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 5000000000, + 12276857677 + ], + [ + 0, + 0, + 324588, + 1575256, + 2000000, + 2362000, + 30000000, + 100000000, + 112385628, + 300000000, + 699167497, + 1000000000, + 1000000000, + 1000000000, + 1075000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2875127749, + 24186287918 + ], + [ + 0, + 100000, + 2000000, + 2000000, + 50000000, + 79000000, + 79000000, + 94000000, + 121499728, + 225202220, + 300000000, + 500000000, + 593157845, + 1000000000, + 1000000000, + 1083617045, + 1500000000, + 1500000000, + 1500000000, + 1641000000, + 5000000000 + ], + [ + 0, + 100000, + 100000, + 1543000, + 2000000, + 4922329, + 38395732, + 67392244, + 100000000, + 110000000, + 300000000, + 409539800, + 575000000, + 952300999, + 1356000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2423269619, + 15436479335 + ], + [ + 0, + 1470000, + 1543000, + 2100000, + 15901257, + 79000000, + 100000000, + 166667731, + 300000000, + 468588157, + 503363713, + 1000000000, + 1045000394, + 1393000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2585345494, + 42912581831 + ], + [ + 0, + 1, + 1470000, + 1575000, + 2100000, + 79000000, + 100000000, + 100000000, + 178977665, + 500000000, + 766142727, + 1000000000, + 1330000000, + 1421458565, + 1421458565, + 1500000000, + 1500000000, + 1500000000, + 1666246982, + 2569344907, + 10020000000 + ], + [ + 0, + 300000000, + 500000000, + 881064136, + 1000000000, + 1000000000, + 1330000000, + 1362947470, + 1390269183, + 1500000000, + 1500000000, + 1516841990, + 2000000000, + 2000000000, + 2011940188, + 2809992111, + 3143962381, + 5000000000, + 11492976012, + 27293809378, + 65278317092 + ], + [ + 0, + 0, + 0, + 1380236, + 1543500, + 2100000, + 10000000, + 50000000, + 79000000, + 79000000, + 79000000, + 89000000, + 100000000, + 104527097, + 193415266, + 346140036, + 690915852, + 1104527097, + 1500000000, + 2000000000, + 43104527097 + ], + [ + 0, + 1470000, + 1575000, + 2000000, + 2100000, + 10000000, + 50000000, + 86370177, + 100000000, + 160354464, + 198509512, + 303991090, + 671225425, + 1000000000, + 1056000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10702847582 + ], + [ + 0, + 0, + 100000, + 100000, + 2100000, + 2100000, + 2100000, + 2100000, + 10000000, + 10000000, + 94847145, + 194961852, + 500000000, + 680866080, + 1000000000, + 1000000000, + 1500000000, + 2000000000, + 4592581347, + 56224944524, + 56224944524 + ], + [ + 0, + 1470000, + 2000000, + 2100000, + 2100000, + 7350000, + 89000000, + 94847145, + 100000000, + 194961852, + 456928706, + 500000000, + 503363713, + 1000000000, + 1000000000, + 1447822354, + 1500000000, + 1541295239, + 2000000000, + 2674322081, + 9800000000 + ], + [ + 0, + 79000000, + 89000001, + 198509512, + 283787054, + 500000000, + 654676853, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1097000000, + 1330000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 3000000000, + 5000000000, + 55229264123 + ], + [ + 0, + 0, + 1543500, + 2000000, + 2100000, + 8494027, + 11470000, + 89000000, + 103021124, + 251029901, + 500000000, + 654676853, + 1000000000, + 1094000000, + 1500000000, + 1500000000, + 2000000000, + 2626839836, + 90754791384, + 90754791384, + 94906112482 + ], + [ + 0, + 0, + 1470000, + 2100000, + 79000000, + 89000000, + 228053474, + 500000000, + 630102730, + 1035430804, + 1043338381, + 1200000000, + 1432000000, + 1718677971, + 2000000000, + 2558949516, + 2558949516, + 21086665900, + 35122194737, + 35122194737, + 35122194737 + ], + [ + 0, + 0, + 0, + 0, + 20000000, + 20000000, + 196633919, + 196633919, + 332400000, + 456928706, + 543026705, + 757657433, + 1000000001, + 1043338381, + 1500000000, + 1500000000, + 1500001746, + 1954328598, + 2000000000, + 2947870447, + 72230449336 + ], + [ + 0, + 0, + 1470000, + 1575000, + 2000000, + 2100000, + 37479179, + 79000000, + 87451085, + 100000000, + 332400000, + 500000000, + 655310419, + 1000000000, + 1130124906, + 1500000000, + 1500000000, + 1500000000, + 1616285297, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 79000000, + 89000000, + 100000000, + 218216285, + 247331742, + 503363713, + 676893425, + 787280786, + 1000000000, + 1000000000, + 1000000000, + 1246227573, + 1480749547, + 1500000000, + 2000000000, + 3000000000, + 3093808745, + 28697369956, + 55000000000 + ], + [ + 0, + 1, + 1617000, + 2000000, + 2202066, + 49522311, + 79000000, + 85296356, + 89000000, + 100000000, + 101984172, + 426476049, + 500000000, + 646055952, + 1000000000, + 1000000000, + 1094000000, + 1500000000, + 2000000000, + 2000000000, + 13767879213 + ], + [ + 0, + 1911000, + 2000000, + 2000000, + 2000000, + 2000000, + 11470000, + 20000000, + 48197640, + 89000000, + 89000000, + 120000000, + 242008478, + 543026705, + 683753017, + 1000000000, + 1337438652, + 1500000000, + 2000000000, + 2000000000, + 10010000000 + ], + [ + 0, + 1470000, + 2000000, + 14700000, + 93859199, + 100000000, + 218096294, + 541715857, + 639879706, + 844240975, + 1000000000, + 1000000000, + 1474786771, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500001746, + 2000000000, + 2816077787, + 86114342216 + ], + [ + 0, + 0, + 1470000, + 2940000, + 41551408, + 79000000, + 89000000, + 160243462, + 238939554, + 324900000, + 332400000, + 564916476, + 844240975, + 1000000000, + 1094000000, + 1210000000, + 1409780149, + 1500000000, + 1500000000, + 2000000000, + 61248197293 + ], + [ + 0, + 1470000, + 1470000, + 2000000, + 2000000, + 30125062, + 79000000, + 89000000, + 244338954, + 444300000, + 593571538, + 620485289, + 676893425, + 1000000000, + 1000000000, + 1010084358, + 1500000000, + 1500000000, + 1990043654, + 2399138310, + 10020000000 + ], + [ + 0, + 1470000, + 2000000, + 2940000, + 50000000, + 89000000, + 100000000, + 205630616, + 456048664, + 512609837, + 613440769, + 735276628, + 1000000000, + 1061386441, + 1098530424, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 2604840472, + 55000000000 + ], + [ + 0, + 1470000, + 2000000, + 10000000, + 79000000, + 89000000, + 100000000, + 252845909, + 526629795, + 619524150, + 1000000000, + 1000000000, + 1153722081, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2495162461, + 10020000000 + ], + [ + 0, + 0, + 1470000, + 1470000, + 2000000, + 2000000, + 8214704, + 50000000, + 100000000, + 178438690, + 526458445, + 619524150, + 619524150, + 698338384, + 1000000000, + 1215835780, + 1500000000, + 1500000000, + 1650000000, + 2000000000, + 6291152597 + ], + [ + 0, + 1470000, + 1470000, + 2000000, + 2000000, + 22723012, + 50000000, + 79000000, + 89000000, + 215743653, + 250677280, + 593571538, + 615985597, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2647454767, + 10600766819 + ], + [ + 0, + 1470000, + 2000000, + 5402810, + 26913091, + 65227737, + 89000000, + 100000000, + 156609353, + 332138757, + 615985597, + 717172947, + 1000000000, + 1000000000, + 1426508896, + 1500000000, + 1500000000, + 1653000000, + 2000000000, + 3388484956, + 10682228290 + ], + [ + 0, + 1400000, + 2000000, + 2166144, + 14557578, + 50000000, + 79000000, + 100000000, + 288278872, + 604491460, + 608837936, + 977458008, + 1000000000, + 1000000001, + 1210458914, + 1439899068, + 1500000000, + 1500000000, + 1600000000, + 2059735711, + 18507109575 + ], + [ + 0, + 1470000, + 2000000, + 2323215, + 13905741, + 26189124, + 89000000, + 187559171, + 608837936, + 829644098, + 1000000000, + 1000000001, + 1000000001, + 1357909379, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1650000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1470000, + 2000000, + 2000000, + 2000000, + 2000000, + 20735334, + 50000000, + 89000000, + 436999999, + 576741388, + 614631243, + 935592207, + 1000000000, + 1081201117, + 1338959693, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 1470000, + 1617000, + 1911000, + 2000000, + 50000000, + 92198547, + 135844826, + 255183460, + 600391852, + 614631243, + 616331163, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1915654104, + 2000000000, + 10020000000 + ], + [ + 0, + 1543500, + 2000000, + 13031088, + 79000000, + 79181600, + 100000000, + 200000000, + 200000000, + 200000000, + 200000000, + 200000000, + 576741388, + 835791352, + 1000000000, + 1378925569, + 1500000000, + 1500000000, + 2000000000, + 2271174023, + 25632293052 + ], + [ + 0, + 0, + 1470000, + 2093516, + 50000000, + 89000000, + 100000000, + 200000000, + 448423598, + 540632598, + 680391355, + 1000000000, + 1130884906, + 1340000000, + 1448723598, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 2000000000, + 20000000000 + ], + [ + 0, + 1470000, + 2000000, + 50000000, + 84898251, + 100000000, + 200000000, + 406358309, + 470697966, + 540632598, + 608837936, + 1000000000, + 1101796511, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 6099813762 + ], + [ + 0, + 0, + 0, + 1543500, + 2000000, + 2000000, + 10308723, + 50000000, + 79000000, + 100000000, + 100000000, + 500000000, + 614631243, + 1000000000, + 1000000001, + 1381346009, + 1451570059, + 1500000000, + 1500000000, + 2000000000, + 10000000000 + ], + [ + 0, + 927171, + 2000000, + 10000000, + 36832996, + 50000000, + 87022286, + 100000000, + 100000000, + 100000000, + 200000000, + 332400000, + 700163626, + 1000000000, + 1400000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 11831096156, + 25406388347 + ], + [ + 0, + 1470000, + 2000000, + 2000000, + 50000000, + 79000000, + 100000000, + 205872208, + 309612063, + 316696109, + 600391852, + 1000000000, + 1000000000, + 1000000000, + 1422175127, + 1461506204, + 1500000000, + 1500000000, + 1933032398, + 2500000000, + 10020000000 + ], + [ + 0, + 100000, + 1400000, + 2000000, + 30950617, + 79000000, + 94847145, + 100000000, + 110000000, + 200000000, + 368000000, + 596469081, + 1000000000, + 1000000000, + 1000000000, + 1000000004, + 1000000004, + 1500000000, + 1500000000, + 2000000000, + 10967930105 + ], + [ + 0, + 2000000, + 2000000, + 2800000, + 33891806, + 79000000, + 100000000, + 100000000, + 143779585, + 216535202, + 440400000, + 545476961, + 600391852, + 1000000000, + 1387000000, + 1453426797, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 11149832720 + ], + [ + 0, + 0, + 100000, + 2000000, + 2000000, + 6689311, + 11400000, + 43620217, + 79000000, + 100000000, + 375445958, + 579469081, + 833333333, + 1000000001, + 1381000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 10020000000 + ], + [ + 0, + 0, + 160000, + 1400000, + 2000000, + 2000000, + 2800000, + 35498536, + 50000000, + 87458731, + 111110000, + 253899622, + 375445958, + 506460000, + 736966566, + 1054752281, + 1416051383, + 1500000000, + 1500001933, + 2500000000, + 6204574347 + ], + [ + 0, + 1400000, + 2000000, + 2166037, + 14000000, + 35362401, + 79000000, + 79000000, + 94000000, + 122221000, + 233059623, + 341758370, + 556904053, + 1000000000, + 1372000000, + 1500000000, + 1500000000, + 2000000000, + 14094287936, + 22028350190, + 22028350190 + ], + [ + 0, + 0, + 824021, + 1400000, + 2000000, + 2800000, + 11848665, + 136016935, + 227354566, + 234102620, + 253630267, + 556904053, + 1000000000, + 1000000000, + 1247094288, + 1416051383, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 129015133, + 253630267, + 406021919, + 545022273, + 708858399, + 1000000000, + 1156291151, + 1380527087, + 1380527087, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 13208647923, + 1288486002238 + ], + [ + 0, + 1, + 1400000, + 1400000, + 2000000, + 2000000, + 6689311, + 32919096, + 79000000, + 89000000, + 94000000, + 126457481, + 291674807, + 506460000, + 1000000000, + 1007000000, + 1391583310, + 1500000000, + 1500000000, + 3000000000, + 60529818405 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 2702564, + 72609789, + 94000000, + 220070412, + 287053432, + 506460000, + 971659302, + 1000000000, + 1000000000, + 1000000000, + 1337609803, + 1500000000, + 1500000000, + 2000000000, + 2366846689, + 22867510186 + ], + [ + 0, + 1, + 2000000, + 2000000, + 32469751, + 79000000, + 100000000, + 101771280, + 191203121, + 191203121, + 379631321, + 533194730, + 726296195, + 1000000000, + 1000000004, + 1422000000, + 1500000000, + 1500000000, + 1500000000, + 3718710680, + 91760685478 + ], + [ + 0, + 160000, + 1400000, + 1540000, + 2000000, + 2000000, + 20000000, + 43620775, + 79000000, + 79000000, + 100000000, + 384781799, + 594027396, + 1000000000, + 1017623407, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 5000000000, + 15000000000 + ], + [ + 0, + 0, + 20000000, + 52500000, + 100000000, + 112700000, + 152541969, + 200000000, + 282254383, + 379631321, + 524006067, + 708752504, + 1000000000, + 1040046288, + 1193807971, + 1309000000, + 1500000000, + 1500000000, + 2000000000, + 4051116793, + 31957743122 + ], + [ + 0, + 0, + 0, + 0, + 1400000, + 1400000, + 1400000, + 1820000, + 1837000, + 2000000, + 2090015, + 63589812, + 89000000, + 359366818, + 506460000, + 748718955, + 1154953104, + 1352388511, + 1500000000, + 1748718955, + 4784718955 + ], + [ + 0, + 1400000, + 1470000, + 2000000, + 20000000, + 20000000, + 50000000, + 71995892, + 79000000, + 100000000, + 100000000, + 171995892, + 182716473, + 297025113, + 496061693, + 626340522, + 1278346666, + 1386419105, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 45931638, + 79000000, + 94000000, + 108776535, + 187925244, + 415276782, + 572803302, + 1000000000, + 1000000000, + 1394718221, + 1500000000, + 1500000000, + 1500000000, + 2200000000, + 20120713809 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2090015, + 50000000, + 89000000, + 100000000, + 227253106, + 549760079, + 761022325, + 1000000000, + 1000000000, + 1000000001, + 1442624828, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2090015, + 10000000, + 32823798, + 79000000, + 100000000, + 187925244, + 289035336, + 491189559, + 661654324, + 1000000000, + 1028380245, + 1309000000, + 1500000000, + 1500000000, + 1500000000, + 10010000000 + ], + [ + 0, + 79000000, + 89000000, + 206717768, + 368000000, + 444411646, + 623852275, + 964847666, + 1000000000, + 1000000000, + 1258123730, + 1309000000, + 1500000000, + 1500000000, + 2000000000, + 6019718854, + 21821096168, + 21821096168, + 21821096168, + 21821096168, + 21821096168 + ], + [ + 0, + 37405039, + 757972017, + 757972017, + 944194100, + 1000000000, + 1000000000, + 1000000004, + 1258000000, + 1422190150, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2755493102, + 3349222449, + 6891471943, + 14123200759, + 24423682984, + 272434541160 + ], + [ + 0, + 824021, + 1400000, + 1500000, + 2000000, + 2000000, + 2090015, + 12090015, + 79000000, + 89000000, + 89000000, + 100000000, + 112440703, + 187925244, + 347372663, + 572803302, + 1000000000, + 1000000000, + 1885234265, + 3147534173, + 10010000000 + ], + [ + 0, + 0, + 0, + 824021, + 1400000, + 2000000, + 2562601, + 30000000, + 89000000, + 100000000, + 150940146, + 288742222, + 492034773, + 854025153, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1968310860, + 2219027308, + 229924326780 + ], + [ + 0, + 0, + 0, + 1400000, + 1400000, + 2000000, + 5125202, + 79000000, + 99259589, + 100000000, + 142349263, + 426520995, + 812419384, + 899419162, + 1000000000, + 1258123730, + 1500000000, + 2000000000, + 5000000000, + 5105966367, + 14712203763 + ], + [ + 0, + 0, + 0, + 0, + 1400000, + 2000000, + 2000000, + 9078572, + 100000000, + 226084833, + 476836690, + 725438977, + 1000000000, + 1416871264, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3064684367, + 141882929171 + ], + [ + 0, + 0, + 0, + 1400000, + 1400000, + 1400000, + 1400000, + 2000000, + 30000000, + 79000000, + 100000000, + 100000000, + 218276050, + 476836690, + 717700870, + 1000000000, + 1500000000, + 1500000000, + 1822999255, + 2294520212, + 25692299206 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2100000, + 79000000, + 100000000, + 236259677, + 398898224, + 503226355, + 1000000000, + 1000000000, + 1000000000, + 1400000000, + 1500000000, + 1500000000, + 1500000000, + 1602165054, + 2000000000, + 3000000000, + 19705138554 + ], + [ + 0, + 1400000, + 1400000, + 1820000, + 2000000, + 36713492, + 89000000, + 110000000, + 142349263, + 216279194, + 438681248, + 503226355, + 730151387, + 1000000000, + 1387495470, + 1500000000, + 1500000000, + 1500000000, + 1750749266, + 2000000000, + 11353147925 + ], + [ + 0, + 1, + 1400000, + 1400000, + 2000000, + 6420328, + 79000000, + 100000000, + 289574798, + 438681248, + 503226355, + 744352106, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 25856459, + 32428476, + 50000000, + 100000000, + 224298013, + 461259998, + 505872841, + 782428476, + 1000000001, + 1295124264, + 1500000000, + 1500000000, + 1500000000, + 1512426721, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 1400000, + 1470000, + 2100000, + 50000000, + 100000000, + 100000000, + 100000000, + 300682218, + 503226355, + 558067246, + 995939337, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1592677277, + 2000000000, + 4110591648, + 67776967813 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 2100000, + 44895846, + 100000000, + 120000000, + 503226355, + 820370314, + 1000000000, + 1000000000, + 1144347000, + 1500000000, + 1500000000, + 1500001928, + 2000000000, + 3000000000, + 5829044053, + 23800057206 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 6420328, + 79302971, + 86350865, + 114956767, + 178977665, + 448681248, + 505961168, + 750749266, + 833800000, + 1000000000, + 1030645765, + 1303532230, + 1500000000, + 1500000000, + 1500000000, + 1650000000, + 6184961976 + ], + [ + 0, + 50000000, + 100000000, + 153563409, + 222534024, + 431573440, + 438681248, + 503226355, + 774131653, + 820370314, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1618497623, + 2607606149, + 4526705725, + 6604731175, + 6604731175, + 67851983182 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2904065, + 6420328, + 50000000, + 89000000, + 100000000, + 350095347, + 392437999, + 503051772, + 612572280, + 1000000000, + 1463897282, + 1500000000, + 1500000000, + 2000000000, + 25234969507 + ], + [ + 0, + 1400000, + 2000000, + 2100000, + 40786617, + 79000000, + 95397159, + 100000000, + 156326299, + 156326299, + 156326299, + 222534024, + 284338493, + 658163567, + 764430106, + 782428476, + 1000000000, + 1500000000, + 2000000000, + 2123333359, + 14225463089 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 14382859, + 89000000, + 100000000, + 169603715, + 202992160, + 443700000, + 636705486, + 1000000000, + 1000000000, + 1000000000, + 1320653920, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 67972720472 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2800000, + 50000000, + 79000000, + 89000000, + 100000000, + 112121338, + 226465126, + 294000000, + 505961168, + 667241157, + 1000000000, + 1000000004, + 1500000000, + 1500000000, + 1500000000, + 1940615716, + 10020000000 + ], + [ + 1400000, + 2000000, + 4476270, + 10000000, + 43762799, + 79000000, + 100000000, + 112121338, + 246553223, + 308958870, + 500000000, + 503226355, + 503226355, + 503226355, + 503226355, + 503226355, + 732211309, + 982978515, + 1000000000, + 2000000000, + 43982978515 + ], + [ + 0, + 1400000, + 1540000, + 2000000, + 30102384, + 66201721, + 79000000, + 89000000, + 100000000, + 141469741, + 288307503, + 657378147, + 1000000000, + 1000000001, + 1268519135, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 68066201721 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 6420328, + 79000000, + 100000000, + 103902148, + 402614317, + 482701990, + 495270603, + 500000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1999816899, + 2000000000, + 2000000000, + 23999816899 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2100000, + 21152821, + 28780969, + 89000000, + 95165791, + 100000000, + 454156481, + 519456769, + 1000000000, + 1000000000, + 1000000000, + 1093582690, + 1500000000, + 1500000000, + 1600000000, + 2145599194, + 34093582690 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1470000, + 2000000, + 16153036, + 79924414, + 100000000, + 100000000, + 165571266, + 426836021, + 503226355, + 555107289, + 1000000001, + 1500000000, + 1600000000, + 2000000000, + 3065412956, + 102471182264 + ], + [ + 0, + 0, + 2000000, + 2000000, + 3739017, + 11300000, + 25000000, + 60873911, + 89000000, + 100000000, + 100000000, + 294000000, + 454156481, + 500000000, + 1000000000, + 1130153198, + 1500000000, + 1500000000, + 2000000000, + 2091068520, + 68042452426 + ], + [ + 0, + 1400000, + 2000000, + 4494229, + 50000000, + 89000000, + 100000000, + 100000000, + 100000000, + 172837846, + 218162083, + 449227524, + 505676171, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 68067424995 + ], + [ + 0, + 108608, + 1400000, + 2000000, + 2000000, + 30328632, + 81232885, + 100000000, + 317276871, + 488928571, + 503226355, + 534774988, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 10010000000 + ], + [ + 0, + 2000000, + 4112918, + 24473504, + 24473504, + 24473504, + 24473504, + 24473504, + 24473504, + 24473504, + 24473504, + 24473504, + 60000000, + 91981637, + 110000000, + 487580786, + 1000000000, + 1168090006, + 1500000000, + 2000000000, + 28976061625 + ], + [ + 0, + 50000000, + 79000000, + 100000000, + 208859983, + 360694219, + 399140152, + 476381550, + 503226355, + 579268872, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1061995548, + 1500000000, + 1500000000, + 1500000000, + 1666648357, + 4127902153, + 68029902153 + ], + [ + 0, + 0, + 160000, + 1400000, + 1470000, + 2000000, + 2100000, + 36899846, + 72963158, + 89000000, + 100000000, + 100000000, + 204271124, + 500000000, + 1000000000, + 1113000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 31072963158 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 1470000, + 2000000, + 2000000, + 50000000, + 89000000, + 89000000, + 253758582, + 500000000, + 1000000000, + 1000000001, + 1125734809, + 1500000000, + 1748059668, + 2500000000, + 11060592784 + ], + [ + 0, + 50000000, + 80980785, + 100000000, + 100000000, + 209949444, + 253758582, + 381991339, + 500000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1065443846, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 68080980785 + ], + [ + 0, + 1400000, + 1400000, + 1470000, + 2000000, + 2000000, + 2583761, + 7000000, + 24473504, + 50000000, + 61868335, + 100000000, + 110194227, + 500000000, + 1000000000, + 1000000000, + 1361000000, + 1500000000, + 1564031493, + 2362070548, + 10020000000 + ], + [ + 0, + 1400000, + 1648000, + 14473498, + 26246225, + 50000000, + 89000000, + 100000000, + 297706927, + 500000000, + 625000000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1669587777, + 1987000000, + 2000000000, + 2000000000, + 68147182908 + ], + [ + 160000, + 1395747, + 1400000, + 1400000, + 2000000, + 2791494, + 14106260, + 14106260, + 14106260, + 14106260, + 24473504, + 79000000, + 89000000, + 100000000, + 231857235, + 500000000, + 718750000, + 1500000000, + 2000000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 1395747, + 1400000, + 2000000, + 3546651, + 8283268, + 27528375, + 50000000, + 89894463, + 163463536, + 207136381, + 338091317, + 500000000, + 1000000000, + 1228309062, + 1500000000, + 1500000000, + 1600000000, + 2500000000, + 68179248016 + ], + [ + 0, + 1400000, + 1540000, + 2800000, + 50000000, + 52735881, + 86821709, + 100000000, + 205265234, + 278257286, + 471443963, + 500000000, + 977845976, + 1000000000, + 1146548594, + 1361000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1470000, + 32345024, + 83615198, + 100000000, + 108083009, + 108083009, + 283059431, + 500000000, + 571443963, + 1000000000, + 1000000000, + 1228309062, + 1500000000, + 1500000000, + 2000000000, + 2160594164, + 68143059431 + ], + [ + 0, + 1400000, + 1820000, + 24473504, + 30000000, + 59000000, + 97756000, + 100000000, + 374961075, + 1000000000, + 1000000004, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500001868, + 2000000000, + 10020000000 + ], + [ + 0, + 1, + 1400000, + 2100000, + 50000000, + 79000000, + 100000000, + 120000000, + 363705881, + 431785526, + 431785526, + 500000000, + 1000000000, + 1000000004, + 1207042493, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2129386014, + 50697033309 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1400000, + 1470000, + 2000000, + 13777709, + 24473504, + 89000000, + 160788656, + 431785526, + 469939875, + 500000000, + 1000000000, + 1146548594, + 1500000000, + 1500000000, + 1500000000, + 2132408901, + 68123411251 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 41303782, + 50000000, + 100000000, + 124540383, + 184906954, + 218410979, + 466875818, + 522899406, + 625000000, + 1000000000, + 1088365030, + 1500000000, + 1500000000, + 1814600941, + 2100000000, + 14472251867 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 79000000, + 100000000, + 100000000, + 163463536, + 200000000, + 376917829, + 500000000, + 609952671, + 1000000000, + 1000000000, + 1000000000, + 2000000000, + 2000000000, + 2000000000, + 2516177284, + 1258151411529 + ], + [ + 0, + 1461302, + 2000000, + 14123112, + 31337855, + 81991264, + 100000000, + 112561005, + 200000000, + 200000000, + 200000000, + 438723394, + 543295549, + 1000000000, + 1044998870, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3088854024, + 68191624806 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1400000, + 1470000, + 2000000, + 16734154, + 100000000, + 100000000, + 160788656, + 250000000, + 340672232, + 833485914, + 1000000000, + 1000000000, + 1401241648, + 1500000000, + 1600000000, + 2000000000, + 7001400000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2800000, + 23157106, + 50000000, + 69000000, + 82454519, + 110000000, + 144662916, + 218410979, + 286835239, + 500000000, + 1000000000, + 1094000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1028999, + 1400000, + 2000000, + 2791000, + 7907571, + 10161782, + 50000000, + 82454519, + 100000000, + 100000000, + 200000000, + 363900000, + 687414098, + 1000000000, + 1099006157, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 68189914727 + ], + [ + 0, + 0, + 108265, + 1400000, + 1400000, + 2000000, + 7907571, + 50000000, + 90000000, + 100000000, + 160788656, + 230841686, + 500000000, + 1000000000, + 1000000001, + 1212150594, + 1500000000, + 1500000000, + 1500000000, + 2200000000, + 5000000000 + ], + [ + 0, + 100, + 1470000, + 2000000, + 2395500, + 56517541, + 100000000, + 100000000, + 115000000, + 200000000, + 398249891, + 500000000, + 610410906, + 1000000000, + 1000000004, + 1500000000, + 1500000000, + 1500000000, + 2167458210, + 3770003275, + 68181021982 + ], + [ + 0, + 1400000, + 1401000, + 2000000, + 2200000, + 33146495, + 50000000, + 89000000, + 100000000, + 188858612, + 301438910, + 500000000, + 1000000001, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 1470000, + 1470000, + 1820000, + 2000000, + 2197750, + 2317300, + 79000000, + 100000000, + 192898024, + 301438910, + 501000000, + 1000000000, + 1260188033, + 1260188033, + 1500000000, + 1500000000, + 2000000000, + 2158958117, + 10020000000 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1470000, + 2000000, + 2100000, + 17418715, + 50000000, + 89000000, + 100000000, + 100000000, + 241525750, + 500000000, + 1000000000, + 1000000001, + 1181133186, + 1500000000, + 1500000000, + 2000000000, + 68207643521 + ], + [ + 0, + 1400000, + 1470000, + 2000000, + 19225969, + 79000000, + 100000000, + 198832090, + 389466808, + 1000000000, + 1000000000, + 1000000000, + 1254834988, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1835578294, + 3000000000, + 14198832090 + ], + [ + 0, + 1470000, + 2297750, + 30000000, + 50000000, + 94000000, + 100000000, + 189276563, + 297776047, + 411377080, + 500000000, + 900000000, + 1000000000, + 1000000000, + 1000000000, + 1024969264, + 1254834988, + 1500000000, + 1835429237, + 2168780344, + 68198683033 + ], + [ + 0, + 0, + 0, + 0, + 1400000, + 1400000, + 1470000, + 2000000, + 2297750, + 50000000, + 80256791, + 89000000, + 100000000, + 198832090, + 500000000, + 1094000000, + 1500000000, + 1500000000, + 2173185835, + 4478851431, + 68203493530 + ], + [ + 0, + 0, + 1400000, + 1540000, + 2000000, + 28420037, + 89000000, + 100000000, + 189490410, + 418867387, + 443839126, + 500000000, + 665729498, + 1000000000, + 1000000000, + 1000000000, + 1145198174, + 1500000000, + 1500000000, + 2145733582, + 60326935220 + ], + [ + 0, + 1400000, + 1400000, + 1470000, + 2000000, + 2528530, + 10856381, + 79000000, + 97622975, + 200000000, + 411954734, + 1000000000, + 1000000000, + 1004412426, + 1191991101, + 1500000000, + 1500000000, + 1715578988, + 2000000000, + 10010000000, + 30000000000 + ], + [ + 0, + 1400000, + 1470000, + 2000000, + 6040108, + 32127335, + 46791523, + 79000000, + 100000000, + 100000000, + 202607862, + 291883452, + 426774055, + 500000000, + 704382050, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 2000000000, + 68228196354 + ], + [ + 1400000, + 1400000, + 2011517, + 2011517, + 2011517, + 2011517, + 2011517, + 2100000, + 19368708, + 79000000, + 79000000, + 80256791, + 100000000, + 195312429, + 443839126, + 867431913, + 1500000000, + 2000000000, + 2000000000, + 3000000000, + 21295042216 + ], + [ + 0, + 1680000, + 2000000, + 2000000, + 8806338, + 40043722, + 50000000, + 65604389, + 85052401, + 94000000, + 141707852, + 313131091, + 771271461, + 1016270872, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1400000, + 1400000, + 2000000, + 2000000, + 36265273, + 50000000, + 82513404, + 100000000, + 150000000, + 160263402, + 202607862, + 497749408, + 986934044, + 1123913783, + 1500000000, + 2000000000, + 68197749408 + ], + [ + 0, + 1400000, + 2011517, + 14011816, + 35872028, + 79000000, + 100000000, + 150000000, + 173173297, + 173173297, + 173173297, + 229699374, + 468756487, + 1000000000, + 1191661560, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1986698224, + 5000000000 + ], + [ + 0, + 1400000, + 1470000, + 5483192, + 50000000, + 69640402, + 69640402, + 79000000, + 83264351, + 94000000, + 129224767, + 177402919, + 500000000, + 1000000000, + 1005483191, + 1097477806, + 1500000000, + 1500000000, + 2000000000, + 3005483192, + 12353600898 + ], + [ + 0, + 1400000, + 1509615, + 2000000, + 2000000, + 5592807, + 79000000, + 79000000, + 79000000, + 98000000, + 127843350, + 127843350, + 139103007, + 173049294, + 208649696, + 415789775, + 415789775, + 1000000000, + 2000000000, + 2172949294, + 10020000000 + ], + [ + 0, + 1, + 12623594, + 91411041, + 100000000, + 148608482, + 253836395, + 443839126, + 500000000, + 1000000000, + 1000000000, + 1082805358, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2251411041, + 5000000000, + 7860789818, + 68251411041 + ], + [ + 0, + 10000000, + 55000000, + 79000000, + 89000000, + 94674370, + 100000000, + 156090723, + 244774370, + 634689950, + 1000000000, + 1000000000, + 1250322029, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 68244674370 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1509615, + 2000000, + 4025812, + 28408522, + 50000000, + 79000000, + 100000000, + 129224767, + 284588320, + 284588320, + 300000000, + 525172438, + 1000000000, + 1000000001, + 1500001559, + 3000000000, + 11276858169 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 10000000, + 79000000, + 89000000, + 100000000, + 126493309, + 146865488, + 429072423, + 660000000, + 1000000000, + 1000000000, + 1202653516, + 1500000000, + 1500000000, + 2000000000, + 13305762636 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 1820000, + 4840734, + 7423223, + 14000000, + 50000000, + 79000000, + 100000000, + 200000000, + 364808079, + 531480433, + 914200000, + 1000000000, + 1000000001, + 1134886135, + 1500000000, + 2000000000, + 68145403710 + ], + [ + 0, + 0, + 1540000, + 2000000, + 11400000, + 20000000, + 100000000, + 172839678, + 261113975, + 397947992, + 667947992, + 1000000000, + 1000000001, + 1166629523, + 1500000000, + 1500000000, + 1500000000, + 2158339286, + 5000000000, + 14819195828, + 47233307422 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 30000000, + 294000000, + 500000000, + 853874678, + 1025914262, + 1036840522, + 1036840522, + 1036840522, + 1036840522, + 1068172707, + 1085235765, + 1500000000, + 1500000000, + 1500000000, + 5141882098 + ], + [ + 0, + 0, + 14000000, + 100000000, + 267358363, + 500000000, + 1066508089, + 1500000000, + 1501184083, + 1501184083, + 1510351187, + 1515462292, + 1524420711, + 1534479290, + 1545670954, + 1568939148, + 1578290127, + 1601637984, + 1612696514, + 3000000000, + 13264371434 + ], + [ + 0, + 0, + 0, + 1820000, + 2000000, + 11400000, + 50000000, + 79000000, + 89000000, + 126493309, + 399110138, + 628561426, + 925147570, + 1000000000, + 1000000000, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 2962173007, + 11894807858 + ], + [ + 0, + 0, + 5000, + 2000000, + 2000000, + 2800000, + 50000000, + 54792773, + 79000000, + 89000000, + 100000000, + 126493309, + 404071113, + 667947992, + 991264032, + 1102715546, + 1500000000, + 1500000000, + 1515000000, + 2000000000, + 68091658261 + ], + [ + 0, + 171573, + 1400000, + 1540000, + 2000000, + 2000000, + 4528000, + 21151538, + 89000000, + 99830198, + 129224767, + 379477757, + 403780921, + 991264032, + 1000000000, + 1000000000, + 1400000000, + 1500000000, + 2000000000, + 2000000000, + 68079477757 + ], + [ + 0, + 1400000, + 2000000, + 2800000, + 63971510, + 66615363, + 79000000, + 100000000, + 100000000, + 145503709, + 368670468, + 500000000, + 686141350, + 1000000000, + 1000000001, + 1233613638, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 17150016, + 90000000, + 100000000, + 105554273, + 185420484, + 400989374, + 500000000, + 506287233, + 1000000000, + 1000000000, + 1084420484, + 1199980758, + 1500000000, + 1500000000, + 1518000000, + 2000000000, + 10010000000 + ], + [ + 0, + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 38378123, + 67465974, + 67465974, + 90000000, + 117915768, + 164724346, + 274176478, + 500000000, + 659314617, + 1000000000, + 1500000000, + 1500000000, + 1510000000, + 2000000000, + 68128636384 + ], + [ + 0, + 0, + 1400000, + 1400000, + 2000000, + 32001332, + 79000000, + 89000000, + 102302768, + 117680492, + 308957884, + 345614391, + 479249988, + 500000000, + 1000000000, + 1000000001, + 1132214378, + 1500000000, + 1500000000, + 1600000000, + 99116964580 + ], + [ + 0, + 1400000, + 1400000, + 1400000, + 2000000, + 2000000, + 10000000, + 17424305, + 50000000, + 89000000, + 117254145, + 206437437, + 308957884, + 457214168, + 642814168, + 1000000000, + 1175390716, + 1500000000, + 1500000000, + 2000000000, + 12069227732 + ], + [ + 0, + 1400000, + 1400000, + 1820000, + 2000000, + 2000000, + 2000000, + 2000000, + 50000000, + 100000000, + 100000000, + 148301559, + 203533849, + 397165144, + 500000000, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1785047763, + 7148301559 + ], + [ + 0, + 0, + 400, + 1400000, + 1470000, + 2000000, + 2435000, + 10000000, + 79000000, + 167993584, + 167993584, + 167993584, + 193238338, + 370521220, + 500000000, + 1000000000, + 1085450679, + 1500000000, + 1500000000, + 1510000000, + 10020000000 + ], + [ + 0, + 0, + 1, + 1470000, + 2000000, + 2000000, + 50000000, + 85400641, + 111814214, + 204993218, + 457603528, + 500000000, + 1000000000, + 1000000000, + 1093239616, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 3019622881, + 10010000000 + ], + [ + 1400000, + 1977434, + 2000000, + 2000000, + 2000000, + 2000000, + 2800000, + 15180191, + 79000000, + 79000000, + 90692227, + 100000000, + 120242068, + 173285170, + 208261683, + 500000000, + 1137232541, + 1898000000, + 2000000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 1400000, + 2000000, + 7000000, + 50000000, + 81734689, + 100000000, + 111983712, + 170529168, + 490500518, + 548328273, + 1000000000, + 1000000000, + 1094000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 19248328273 + ], + [ + 0, + 0, + 0, + 1400000, + 1540000, + 2000000, + 11400000, + 79000000, + 100000000, + 204970348, + 378750925, + 560499456, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1123070807, + 1500000000, + 1500000000, + 1841716552, + 18312121226 + ], + [ + 0, + 1400000, + 20000000, + 21369683, + 22080241, + 79000000, + 276380658, + 276380658, + 276380658, + 276380658, + 276380658, + 500000000, + 905870283, + 1062000000, + 1062000000, + 1500000000, + 1500000000, + 1531346360, + 4728871632, + 4728871632, + 11300912702 + ], + [ + 0, + 0, + 0, + 921150754, + 1000000000, + 1000000000, + 1000000000, + 1062000000, + 1096173007, + 1123070807, + 1145785181, + 1500000000, + 1500000000, + 2000000000, + 2333437303, + 3340862388, + 7787973475, + 14300549529, + 29795430630, + 75309404260, + 393290574013 + ], + [ + 0, + 0, + 0, + 1, + 2000000, + 2000000, + 2000000, + 77367172, + 94000000, + 272346835, + 379745979, + 500000000, + 506233161, + 869669074, + 1000000004, + 1282457429, + 1500000000, + 1500000000, + 2000000000, + 8933137852, + 14276809770 + ], + [ + 0, + 0, + 1400000, + 1400000, + 1470000, + 2000000, + 2000000, + 5796106, + 30000000, + 59913291, + 79000000, + 100000000, + 209889171, + 316648644, + 379745979, + 561292391, + 831944979, + 1000000000, + 1500000000, + 1841000000, + 79273305461 + ], + [ + 0, + 0, + 0, + 2000000, + 2000000, + 2000000, + 2800000, + 53623908, + 79000000, + 89000000, + 100528259, + 185007092, + 347718354, + 998596101, + 1000000000, + 1000000001, + 1500000000, + 1500000000, + 1500001380, + 2000000000, + 19860550459 + ], + [ + 0, + 160000, + 2000000, + 2800000, + 15352543, + 79000000, + 94002193, + 127711266, + 127711266, + 176099824, + 200000000, + 200000000, + 250000000, + 573305461, + 1000000000, + 1000000001, + 1081599290, + 1500000000, + 1500000000, + 1841000000, + 4000000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 59000000, + 90093886, + 200000000, + 200000000, + 272738716, + 1000000000, + 1000000000, + 1000000000, + 1325331698, + 1500000000, + 1500000000, + 1600000000, + 18761253004 + ], + [ + 1400000, + 1540000, + 2000000, + 2000000, + 2100000, + 5465917, + 79000000, + 79000000, + 89000000, + 89000000, + 89000000, + 100000000, + 132172004, + 200000000, + 500000000, + 500000000, + 500000000, + 500000000, + 1132172004, + 2000000000, + 11132172004 + ], + [ + 0, + 100000, + 1750000, + 2000000, + 26981802, + 79000000, + 89000000, + 94000000, + 100000000, + 111087826, + 176858476, + 200000000, + 500000000, + 1000000000, + 1094000000, + 1191837697, + 1282000000, + 1500000000, + 1500000000, + 1500000000, + 5000000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 2800000, + 79000000, + 100000000, + 100000000, + 173682799, + 200000000, + 200000000, + 373794497, + 500000000, + 508243275, + 1000000000, + 1000000000, + 1000000000, + 1000000001, + 1500000000, + 2500000000, + 10020000000 + ], + [ + 0, + 1400000, + 2000000, + 2000000, + 15831767, + 19752620, + 79000000, + 100000000, + 200000000, + 295522622, + 337015310, + 337015310, + 337015310, + 500000000, + 1000000000, + 1000000001, + 1124317529, + 1500000000, + 1500000000, + 2000000000, + 14226595895 + ], + [ + 0, + 0, + 2000000, + 2000000, + 2090007, + 14000000, + 50000000, + 89000000, + 100000000, + 101072233, + 226268128, + 500000000, + 500000000, + 1000000000, + 1000000000, + 1000000000, + 1452285170, + 1500000000, + 1814463744, + 3000000000, + 10020000000 + ], + [ + 0, + 0, + 0, + 1400000, + 1820000, + 2000000, + 2095003, + 10000000, + 68025747, + 79000000, + 100000000, + 306790737, + 500000000, + 500000000, + 811238736, + 1000000001, + 1124317529, + 1500000000, + 1500000000, + 2000000000, + 6482081046 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 29150412, + 79000000, + 100000000, + 100760358, + 100760358, + 110000000, + 223507081, + 291368377, + 500000000, + 784255200, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 0, + 0, + 2000000, + 2005292, + 21373393, + 50000000, + 64694545, + 79000000, + 89000000, + 231985030, + 500000000, + 850622780, + 1000000000, + 1008756008, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 1400000, + 2000000, + 2000000, + 2000000, + 4908354, + 10000000, + 12731156, + 37612164, + 79000000, + 100000000, + 194656688, + 200000000, + 438430009, + 500000000, + 1000000000, + 1000000000, + 1069000000, + 2000000000, + 2000000000, + 2000000000, + 10010000000 + ], + [ + 0, + 0, + 2, + 2000000, + 2095003, + 8114857, + 42065005, + 50000000, + 79000000, + 100000000, + 121075584, + 160764902, + 247305466, + 429997678, + 429997678, + 507786971, + 1000000000, + 1073071470, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 2100000, + 33706674, + 79000000, + 89000000, + 100000000, + 135855440, + 175554318, + 258574802, + 374945703, + 518997638, + 558574802, + 724502470, + 724502470, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 10010000000 + ], + [ + 1400000, + 1400000, + 2000000, + 2000000, + 2000000, + 2097500, + 64382233, + 79000000, + 90000000, + 100000000, + 100000000, + 121075584, + 247274516, + 476941715, + 647274516, + 1400000000, + 1500000000, + 2000000000, + 2000000000, + 2000000000, + 3000000000 + ], + [ + 0, + 710000, + 2000000, + 2000000, + 20539985, + 76765470, + 99000000, + 121075584, + 233903391, + 322639986, + 500000000, + 878116176, + 1000000000, + 1069000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10173116087, + 10173116087, + 12675157182 + ], + [ + 0, + 0, + 20000000, + 20000000, + 36917034, + 50000000, + 89000000, + 108671348, + 194656688, + 344948876, + 381996147, + 398467394, + 500000000, + 800079368, + 1000000000, + 1000000000, + 1101980699, + 1500000000, + 2000000000, + 2100000000, + 47031327156 + ], + [ + 0, + 0, + 0, + 1400000, + 1400000, + 79000000, + 81737826, + 93002348, + 96440628, + 100000000, + 210876266, + 321722060, + 407082554, + 1000000000, + 1000000000, + 1000000004, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 0, + 27971403, + 45386012, + 50000000, + 79000000, + 100000000, + 258135595, + 450952001, + 500000000, + 944775844, + 1000000000, + 1000000001, + 1068268072, + 1500000000, + 1500000000, + 1600000000, + 2466602850, + 2607504612, + 10010000000 + ], + [ + 0, + 0, + 0, + 1400000, + 1400000, + 1820001, + 2000000, + 2097500, + 13763401, + 86367439, + 96547541, + 120000000, + 374945703, + 487503737, + 622624037, + 1000000000, + 1500000000, + 1500000000, + 2000000000, + 2312368993, + 203827614212 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2800000, + 53990000, + 79000000, + 79000000, + 100000000, + 100000000, + 100818347, + 413719436, + 524086294, + 1000000000, + 1000000000, + 1260000000, + 1500000000, + 1500000000, + 1973859440, + 9858966101, + 131202958928 + ], + [ + 0, + 0, + 1400000, + 2097500, + 20000000, + 50000000, + 79000000, + 81752799, + 100000000, + 186427886, + 186427886, + 186427886, + 209460412, + 405894322, + 764087824, + 1000000000, + 1140556859, + 1500000000, + 1600000000, + 2000000000, + 10020000000 + ], + [ + 0, + 1400000, + 1820001, + 11400000, + 79000000, + 100000000, + 107156445, + 185275192, + 340722420, + 550456858, + 700000000, + 1000000000, + 1061102866, + 1400000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 1600000000, + 2000000000, + 79213633059 + ], + [ + 0, + 100000, + 1820001, + 2000000, + 8050111, + 25560409, + 29733056, + 79000000, + 89000000, + 100000000, + 126758799, + 214392069, + 333051216, + 374945703, + 582888685, + 1145306215, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000 + ], + [ + 0, + 1400000, + 1820001, + 2000000, + 2800000, + 22147539, + 23687231, + 79000000, + 96547541, + 100000000, + 126758799, + 242088222, + 450900000, + 542088222, + 956254713, + 1000000004, + 1500000000, + 1500000000, + 1500001466, + 2000000000, + 50000000000 + ], + [ + 0, + 1400000, + 1400000, + 1750000, + 2000000, + 14145443, + 33815921, + 50000000, + 71400000, + 89000000, + 100000000, + 209159682, + 398987626, + 610141813, + 1000000000, + 1167000000, + 1500000000, + 1500000000, + 2000000000, + 3158271635, + 30000000000 + ], + [ + 0, + 0, + 1400000, + 1820001, + 5920711, + 50000000, + 59000000, + 94000000, + 107507449, + 126758799, + 248152766, + 336231595, + 336231595, + 336231595, + 573195106, + 1000000000, + 1244000427, + 1500000000, + 1500000000, + 2000000000, + 41000000000 + ], + [ + 1400000, + 2000000, + 10100000, + 27971403, + 79000000, + 96547541, + 100000000, + 190862962, + 285375681, + 316155092, + 354448310, + 478785151, + 524086294, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1900884114, + 2000000000, + 3082648901, + 10010000000 + ], + [ + 100000, + 100000, + 1400000, + 2000000, + 4889562, + 16574451, + 22147539, + 38827562, + 63391638, + 79000000, + 89000000, + 100000000, + 100818347, + 126758799, + 236385666, + 285375681, + 326129548, + 424538384, + 1500000000, + 2000000000, + 3000000000 + ], + [ + 0, + 0, + 1400000, + 2000000, + 22147539, + 52018624, + 85512662, + 151339325, + 266043239, + 428624871, + 687678752, + 1000000000, + 1000000000, + 1112488807, + 1413592459, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 72084505097 + ], + [ + 0, + 0, + 1395747, + 1400000, + 1820001, + 1820001, + 2000000, + 2000000, + 2310000, + 30824073, + 75793081, + 93631828, + 100000000, + 100000000, + 142574558, + 324083621, + 652423510, + 1094000000, + 1500000000, + 1500000000, + 5000000000 + ], + [ + 0, + 1470000, + 2000000, + 2000000, + 2000000, + 2100000, + 2100000, + 2100000, + 2100000, + 2100000, + 2100000, + 2100000, + 2791494, + 11400000, + 30000000, + 74142104, + 111622207, + 248152766, + 618340870, + 1000000000, + 11307295375 + ], + [ + 0, + 1000000, + 2000000, + 2087933, + 50000000, + 79000000, + 94000000, + 100000000, + 232405057, + 232405057, + 232405057, + 500000000, + 646538292, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 1500000000, + 2200000000, + 45000000000 + ], + [ + 0, + 1400000, + 1820001, + 2000000, + 2000000, + 11128893, + 49183237, + 62505922, + 100000000, + 241804029, + 312627777, + 403648202, + 500000000, + 893803297, + 938615410, + 1000000000, + 1148234100, + 1500000000, + 1500000000, + 3263907206, + 40000000000 + ], + [ + 0, + 0, + 1400000, + 1820001, + 2100000, + 22504208, + 52373894, + 89000000, + 100000000, + 100000000, + 314250785, + 554006502, + 893578183, + 1000000000, + 1000000000, + 1000000000, + 1259654161, + 1500000000, + 1606000000, + 8758863377, + 31000000000 + ], + [ + 0, + 0, + 1400000, + 2000000, + 2000000, + 27254840, + 27254840, + 86627251, + 100000000, + 108538224, + 252009984, + 402166365, + 534633151, + 852009984, + 1000000000, + 1499403482, + 1500000000, + 1500000000, + 2000000000, + 5803168676, + 55000000000 + ], + [ + 0, + 0, + 1820001, + 2800000, + 26777172, + 79000000, + 100000000, + 187435340, + 328529696, + 328529696, + 328529696, + 435550198, + 503100000, + 778163706, + 1000000000, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 5000000000, + 15000000000 + ], + [ + 0, + 0, + 1400000, + 1820001, + 2799998, + 50000000, + 97454516, + 151400000, + 200000000, + 253894133, + 500000000, + 695801602, + 1000000000, + 1000000000, + 1000000001, + 1430856659, + 1500000000, + 1500000000, + 1500000000, + 4264241596, + 100000000000 + ], + [ + 0, + 0, + 1470000, + 2100000, + 26605353, + 74371632, + 100000000, + 200000000, + 200000000, + 200000000, + 200000000, + 245428810, + 316155092, + 398693550, + 524624903, + 694568502, + 1000000000, + 1450535852, + 1500000000, + 2000000000, + 33000000000 + ], + [ + 0, + 0, + 0, + 1395747, + 2449999, + 27024521, + 50000000, + 62460992, + 79000000, + 100000000, + 217000945, + 314250785, + 500000000, + 575000000, + 1000000000, + 1000000001, + 1217000945, + 1500000000, + 1506610307, + 5000000000, + 50000000000 + ], + [ + 0, + 0, + 1274000, + 2100000, + 21304565, + 36017159, + 78950042, + 78950042, + 79000000, + 100000000, + 200000000, + 329883231, + 409280804, + 890795866, + 1000000001, + 1028000000, + 1158106812, + 1500000000, + 1500000000, + 2000000000, + 25000000000 + ], + [ + 0, + 1274000, + 1395747, + 2000000, + 10000000, + 20750841, + 50000000, + 79000000, + 100000000, + 100000000, + 238701039, + 304966461, + 304966461, + 373659192, + 500725494, + 1000000000, + 1000000000, + 1217000000, + 1500000000, + 2000000000, + 25000000000 + ], + [ + 0, + 1274000, + 1274000, + 2000000, + 49436086, + 50000000, + 52328233, + 100000000, + 158276551, + 218323006, + 289106128, + 359673205, + 924970595, + 1000000000, + 1000000000, + 1000000000, + 1500000000, + 1500000000, + 1600000000, + 2975384254, + 46793757367 + ], + [ + 0, + 0, + 1274000, + 2000000, + 10272385, + 28527462, + 60000000, + 89000000, + 110000000, + 200000000, + 214204429, + 214204429, + 214204429, + 250000000, + 409542832, + 1000000000, + 1000000000, + 1217000000, + 1500000000, + 2136095140, + 102000000000 + ], + [ + 0, + 0, + 1911000, + 2000000, + 6399999, + 20750841, + 24621085, + 79000000, + 100000000, + 100000000, + 200000000, + 500000000, + 989095337, + 1161785079, + 1500000000, + 1500000000, + 2000000000, + 2000000000, + 2000000000, + 6722046539, + 25000000000 + ], + [ + 0, + 0, + 0, + 1771283, + 9470369, + 14525588, + 43254646, + 79000000, + 100000000, + 200000000, + 231802508, + 358209145, + 471792285, + 823706335, + 1000000001, + 1054857905, + 1500000000, + 1500000000, + 2000000000, + 5000000000, + 26340158206 + ], + [ + 0, + 268841, + 1274000, + 2000000, + 20750841, + 79000000, + 89000000, + 100000000, + 165641543, + 200000000, + 267659304, + 512530452, + 625000000, + 1000000000, + 1000000004, + 1170474276, + 1500000000, + 1500000000, + 2000000000, + 5000000000, + 44401561215 + ], + [ + 0, + 1274000, + 1274000, + 2000000, + 2000000, + 10136192, + 42190146, + 100000000, + 163981285, + 200000000, + 231802508, + 500000000, + 567243477, + 1000000000, + 1000000000, + 1000000004, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 10020000000 + ], + [ + 0, + 0, + 1274000, + 1274000, + 2000000, + 2100000, + 20750841, + 50000000, + 56001771, + 120340960, + 200000000, + 231802508, + 471792285, + 1000000000, + 1000000001, + 1151482161, + 1500000000, + 1500000000, + 2000000000, + 3000000000, + 35000000000 + ], + [ + 0, + 0, + 1274000, + 2576938, + 10000000, + 50000000, + 89000000, + 100000000, + 231802508, + 419099306, + 500000000, + 500000000, + 1000000000, + 1044590848, + 1150524861, + 1500000000, + 1500000000, + 1500000000, + 5000000000, + 5128722841, + 50000000000 + ], + [ + 0, + 0, + 1274000, + 1656200, + 2000000, + 16956150, + 48728652, + 50000000, + 59954127, + 100000000, + 230000000, + 500000000, + 1000000000, + 1000000000, + 1125210722, + 1500000000, + 1500000000, + 2000000000, + 2400751789, + 5000000000, + 150000000000 + ], + [ + 0, + 0, + 1274000, + 1401400, + 2000000, + 5932084, + 67459831, + 89000000, + 100000000, + 100000000, + 197456865, + 289939487, + 500000000, + 1000000000, + 1172821839, + 1200000000, + 1500000000, + 1500000000, + 1500000000, + 5000000000, + 16366551033 + ], + [ + 0, + 2, + 1872379, + 9735184, + 46173578, + 104114501, + 104114501, + 182179886, + 231802508, + 231802508, + 500000000, + 1000000000, + 1000000000, + 1148682634, + 1500000000, + 1500000000, + 1500000000, + 2000000000, + 2723894560, + 4970052710, + 123000000000 + ], + [ + 0, + 0, + 1274000, + 1274000, + 1470000, + 2000000, + 2000000, + 3600000, + 50000000, + 75254377, + 89000000, + 110000000, + 205105327, + 271851875, + 500000000, + 992810566, + 1153292190, + 1500000000, + 1857511038, + 15339393351, + 89220764834 + ], + [ + 0, + 1274000, + 1274000, + 1911000, + 2100000, + 20750841, + 98000000, + 197456865, + 217420817, + 373522651, + 502758902, + 502758902, + 694418541, + 1000000000, + 1077963299, + 1500000000, + 1500000000, + 1600000000, + 3000000000, + 5000000000, + 150000000000 + ], + [ + 0, + 0, + 1274000, + 2000000, + 2000000, + 20000000, + 50000000, + 79000000, + 151200000, + 267685696, + 316211978, + 785426697, + 1000000000, + 1163193540, + 1289806795, + 1500000000, + 1500000000, + 1781504223, + 2000000000, + 4478441916, + 15606002261 + ], + [ + 1274000, + 2000000, + 2548000, + 3706944, + 3706944, + 3706944, + 8937167, + 10000000, + 10748715, + 79000000, + 89000000, + 90000000, + 200000000, + 314728831, + 422391264, + 1000000000, + 1208937167, + 1996312167, + 2000000000, + 5000000000, + 10020000000 + ], + [ + 0, + 1274000, + 1274000, + 2548000, + 50000000, + 85584869, + 98443916, + 110000000, + 237202281, + 391661851, + 391661851, + 463345788, + 1000000000, + 1000000000, + 1278984164, + 1500000000, + 1500000000, + 1500000000, + 1585493377, + 2000000000, + 150000000000 + ] + ], + "BaseFee": [ + 3543487594, + 3519066201, + 3304333701, + 3446053946, + 3403422430, + 3289847318, + 3374001955, + 3351661275, + 3339599931, + 3275466763, + 2993854521, + 3317022655, + 3280485504, + 3164599292, + 3159094081, + 3059625459, + 3056235875, + 3051195085, + 3069216189, + 3056727835, + 3053624201, + 3129922130, + 3081001114, + 2992269863, + 2903878976, + 2784157291, + 3103421668, + 2931756744, + 2940818147, + 2931870529, + 3298020747, + 3403916931, + 3427630772, + 3409294953, + 3339113996, + 3206148020, + 3287540991, + 3166515416, + 3127768597, + 3066816217, + 3123630491, + 3028213024, + 2926216306, + 2901698651, + 3117118405, + 3185269721, + 3261876440, + 3145367050, + 3063514325, + 3122755593, + 3063389858, + 2934275941, + 2954516014, + 2843129398, + 2891373544, + 2745480682, + 2897814684, + 2762527111, + 2810241694, + 2790978582, + 2723310215, + 2529771950, + 2713933825, + 2673582038, + 2706981135, + 2712074481, + 2697595203, + 2598270003, + 2696855425, + 2717038661, + 2783889115, + 2855669987, + 2811221278, + 2809080658, + 2767611496, + 2914198100, + 2814406018, + 2707945273, + 3045487258, + 3075129044, + 2946078262, + 2963862362, + 2923384532, + 2819326111, + 2948087382, + 2921971543, + 2878852463, + 2754146988, + 2804489306, + 2730481591, + 2710668132, + 2758040251, + 2671751515, + 2560721701, + 2615408046, + 2552512146, + 2526322892, + 2446778416, + 2398346703, + 2365867395, + 2457151181, + 2419916336, + 2370586011, + 2345841036, + 2325840540, + 2288820718, + 2332066118, + 2126149985, + 2349116107, + 2472452024, + 2471290686, + 2422003283, + 2400511051, + 2375726922, + 2282889785, + 2335817794, + 2255185067, + 2239062355, + 2296704378, + 2304358984, + 2088666695, + 2329860170, + 2319006751, + 2329206991, + 2456083020, + 2294066046, + 2348445853, + 2276508247, + 2257330345, + 2319504619, + 2087331382, + 2166240683, + 2306119926, + 2273642302, + 2091804667, + 2245662432, + 2286911966, + 2333387337, + 2276100969, + 2164686738, + 2080212556, + 2160232103, + 2101279093, + 2075317720, + 2215754792, + 2234879437, + 2165553974, + 2202394542, + 2077957311, + 2046740171, + 1977603733, + 2100373001, + 2003873250, + 2009769272, + 1904437853, + 2142486856, + 2171408968, + 2141529619, + 2036538358, + 1887981823, + 1871799742, + 2044943599, + 2067619147, + 1999245578, + 1989304452, + 1836643919, + 1922751438, + 1911834216, + 1875980107, + 1795510128, + 1725752963, + 1689644529, + 1672521315, + 1750764946, + 1746242779, + 1719510783, + 1688335058, + 1798756507, + 1868459504, + 1862524110, + 1787603541, + 1686987493, + 1647724078, + 1852627208, + 1917728610, + 1890070106, + 1853118102, + 1805134173, + 1747351949, + 1757637804, + 1664578187, + 1711793910, + 1714793638, + 1732120360, + 1711168727, + 1741264449, + 1820402296, + 1783931548, + 1791127590, + 1712054929, + 1743392258, + 1713330529, + 1671325633, + 1666802633, + 1616938391, + 1580175612, + 1587495358, + 1460467359, + 1624368525, + 1503508322, + 1545645562, + 1540878199, + 1479129671, + 1404667220, + 1405534094, + 1354494896, + 1492539010, + 1476081396, + 1540384881, + 1635539437, + 1650020771, + 1566876234, + 1630883371, + 1727330814, + 1804341053, + 1853320189, + 1823629485, + 1735332091, + 1688962863, + 1813880421, + 1794106595, + 1780435595, + 1750103952, + 1682982352, + 1729628451, + 1682686633, + 1652262266, + 1599183148, + 1588766611, + 1498317308, + 1530323488, + 1578995868, + 1557594764, + 1490132566, + 1540525956, + 1527838635, + 1488728513, + 1492596849, + 1444450650, + 1417044481, + 1379877284, + 1393698447, + 1382161560, + 1441385587, + 1435639949, + 1448516577, + 1412511124, + 1520176331, + 1559054958, + 1571117114, + 1432427097, + 1594313579, + 1592704982, + 1504968682, + 1434375741, + 1583559566, + 1666940823, + 1659968167, + 1540716746, + 1481118138, + 1632180157, + 1825421644, + 1797240985, + 1798553678, + 1845921825, + 1827428138, + 1829259248, + 1792827325, + 1652613896, + 1754983071, + 1757076951, + 1757129673, + 1717950755, + 1677122986, + 1857343826, + 1726102828, + 1611579962, + 1708143299, + 1749047568, + 1593230090, + 1745210662, + 1708287716, + 1655382020, + 1673267575, + 1678618793, + 1681822483, + 1718561103, + 1703582177, + 1677507461, + 1707274131, + 1907449395, + 1884913729, + 1911493989, + 1742278145, + 1867932396, + 1808674106, + 1803589738, + 1785900471, + 1845100702, + 1797951932, + 1796006908, + 1823812706, + 1869584106, + 1781043965, + 1771240976, + 1653012157, + 1859484918, + 1887718964, + 1905316507, + 1733310160, + 1949011151, + 1931465390, + 1965627229, + 2164618062, + 2083822879, + 2142208450, + 2188748271, + 2274698365, + 2228694097, + 2179932210, + 2148676036, + 2138821003, + 2112803672, + 2072708484, + 2109469455, + 2178221009, + 2007887008, + 2105574163, + 2171675415, + 2151837583, + 2268000900, + 2104931976, + 2188996398, + 2170653921, + 2156144138, + 1978448213, + 1964519334, + 1875769161, + 2110166671, + 2017395081, + 2016190540, + 2049559814, + 1902682142, + 1950977077, + 2194663188, + 2020728853, + 2129359835, + 2067310515, + 2110112192, + 2042562929, + 2016647019, + 1987993461, + 1849118267, + 1846062460, + 1971325371, + 1950197762, + 1924264358, + 1895055777, + 1907404035, + 1921731987, + 1867583834, + 1815340428, + 1764471246, + 1797096251, + 1710723516, + 1735009819, + 1670141013, + 1653358447, + 1668581688, + 1649147606, + 1659938441, + 1680779441, + 1623492622, + 1681371790, + 1790871984, + 1802379744, + 1656474720, + 1772552346, + 1724306702, + 1707665840, + 1720412635, + 1715368185, + 1632129205, + 1582073250, + 1554801068, + 1574398977, + 1528248252, + 1402495946, + 1488402989, + 1465655390, + 1410381067, + 1396065198, + 1360839069, + 1247205908, + 1309125844, + 1318323573, + 1293649859, + 1258427584, + 1200970885, + 1260543035, + 1240573268, + 1263486415, + 1265942122, + 1280046151, + 1291559184, + 1227408179, + 1217745320, + 1327003412, + 1341333875, + 1391444715, + 1375255210, + 1403123130, + 1354839247, + 1522547150, + 1521436182, + 1498251524, + 1462338977, + 1459218809, + 1417717621, + 1313696805, + 1358952215, + 1390462375, + 1360022126, + 1363086082, + 1362900945, + 1313332011, + 1432313000, + 1402187035, + 1418057814, + 1292448755, + 1432662200, + 1418176525, + 1409135908, + 1393717191, + 1366936310, + 1536734509, + 1492089495, + 1449375237, + 1391185004, + 1511732111, + 1509767051, + 1519319522, + 1560171696, + 1639975765, + 1590196271, + 1583914109, + 1557200082, + 1581036315, + 1678751681, + 1691520132, + 1654756959, + 1679194431, + 1581621080, + 1779174620, + 1742008966, + 1773451532, + 1824245144, + 1864914449, + 1861494942, + 1839512270, + 1880190611, + 1828049543, + 1772487379, + 1779397058, + 1731965664, + 1829252296, + 1783936478, + 1799200958, + 1731073706, + 1690478777, + 1680392188, + 1612402923, + 1585541975, + 1721130654, + 1705409598, + 1666895534, + 1614699970, + 1721086370, + 1740679284, + 1623906822, + 1536116985, + 1503053291, + 1690886440, + 1784948488, + 1796613003, + 1762808955, + 1731068109, + 1713572946, + 1743285883, + 1703405801, + 1653789887, + 1493772063, + 1549868979, + 1596282913, + 1593084424, + 1559068486, + 1510984760, + 1480588561, + 1454000800, + 1357658969, + 1460694410, + 1491962195, + 1480663987, + 1447825305, + 1456941738, + 1437841934, + 1317782782, + 1420447870, + 1391894975, + 1262444190, + 1296058589, + 1344427545, + 1322142235, + 1282580263, + 1199824238, + 1253999265, + 1304740090, + 1270647220, + 1256600689, + 1287942391, + 1205835745, + 1133112401, + 1153787141, + 1074513312, + 1170138346, + 1225612988, + 1231581749, + 1203471040, + 1149691858, + 1183344654, + 1147020082, + 1290397388, + 1273630058, + 1250010453, + 1157691820, + 1256446032, + 1208533418, + 1202917734, + 1206572623, + 1195849569, + 1214686752, + 1219995630, + 1209061358, + 1212595907, + 1282559672, + 1255898356, + 1266348926, + 1232993602, + 1208093174, + 1255191022, + 1236490380, + 1220165341, + 1173070850, + 1198293057, + 1166227143, + 1151157843, + 1140498354, + 997936060, + 1101680129, + 1237532179, + 1240411655, + 1250942203, + 1269669933, + 1235073318, + 1233109343, + 1127979990, + 1173556588, + 1219216906, + 1172093108, + 1162723568, + 1129955089, + 1140386698, + 1140970774, + 1148218236, + 1171816117, + 1203372255, + 1224372384, + 1195635365, + 1165216967, + 1168946304, + 1140102117, + 1107512002, + 1062050935, + 1063618565, + 1070696814, + 1065198319, + 1070718058, + 1039035566, + 1019740761, + 1049691682, + 1029126111, + 1001626164, + 1027244261, + 961843209, + 1081574599, + 1065085357, + 1117293816, + 1119163418, + 1119786829, + 1133608111, + 1107984144, + 1106229935, + 1098188681, + 1060697829, + 1096459786, + 1111471682, + 1056526534, + 1056826026, + 1044733203, + 1044421359, + 1026672963, + 987908105, + 875144379, + 942450259, + 948030969, + 997175171, + 999077048, + 968508867, + 934907271, + 922578701, + 903167605, + 945874493, + 849934885, + 931965986, + 944501099, + 958183078, + 971139811, + 986526713, + 1009175560, + 995247659, + 939747602, + 982288649, + 988965385, + 1015860128, + 1010307539, + 971162660, + 1005796717, + 1066574151, + 1089607892, + 1090639124, + 1102909835, + 1060385120, + 1041162547, + 1103328198, + 1147857947, + 1170142363, + 1175207602, + 1196800264, + 1092572565, + 1201526232, + 1150044755, + 1162736188, + 1182088482, + 1175750670, + 1168077963, + 1118675552, + 1160591216, + 1138516735, + 1175387359, + 1144950507, + 1127449805, + 1193533779, + 1228402974, + 1240261614, + 1227188699, + 1242927223, + 1259399171, + 1210890334, + 1202768005, + 1201624456, + 1205778498, + 1122807241, + 1017856870, + 1097605880, + 1159188003, + 1130319521, + 1148613491, + 1185837180, + 1155935347, + 1070115015, + 1129448623, + 1260243469, + 1145124293, + 1188651803, + 1236896733, + 1220815186, + 1266181810, + 1275408844, + 1190734055, + 1308448938, + 1274358976, + 1202818921, + 1350172411, + 1355329889, + 1416954751, + 1483370686, + 1416246276, + 1412283564, + 1559220260, + 1537647097, + 1531613031, + 1720286738, + 1755427608, + 1865195374, + 1930333301, + 2171553991, + 2087695139, + 2052845697, + 2309249059, + 2195309146, + 2468206055, + 2250564054, + 2314447527, + 2365025688, + 2271278180, + 2145389045, + 1964587833, + 2208424889, + 2388836344, + 2510299017, + 2533704928, + 2850357657, + 2726359229, + 2652680053, + 2984044937, + 2937658054, + 3234755933, + 3172485345, + 2860020612, + 3089186558, + 3252308170, + 3251929774, + 3398498439, + 3288724203, + 3564664150, + 3556129533, + 3476486990, + 3539928184, + 3434610278, + 3168795893, + 3470828436, + 3528525482, + 3553979049, + 3598858187, + 3618960869, + 3542088632, + 3617054970, + 3578830706, + 3544452127, + 3578392382, + 3600041218, + 3496285191, + 3545930061, + 3470149019, + 3389910673, + 3409615432, + 3408525545, + 3322057000, + 3290867942, + 3429112569, + 3331232393, + 3189772397, + 3158021981, + 2987033414, + 3045835332, + 2993182299, + 2967905580, + 2785414840, + 2552766919, + 2691470889, + 2828044524, + 2578029881, + 2765258255, + 2800150820, + 2853824210, + 2968083112, + 2914732145, + 2899400813, + 2797303483, + 2823999058, + 2778830009, + 2687707712, + 2633889392, + 2597404267, + 2549448153, + 2541736441, + 2574013150, + 2341533817, + 2326597694, + 2387972423, + 2528492162, + 2580668969, + 2497887315, + 2529603152, + 2587194032, + 2477652566, + 2332555984, + 2409080272, + 2354801939, + 2394145766, + 2382952723, + 2267229533, + 2375440839, + 2433199656, + 2427089978, + 2189611198, + 2237257879, + 2334915344, + 2376927268, + 2294405536, + 2237357802, + 2240142939, + 2130022193, + 2124872251, + 2113621245, + 2047699001, + 2087418169, + 2030655093, + 1988059812, + 1895472903, + 1832145581, + 2004538678, + 2004177659, + 1976689969, + 1896978876, + 1964869196, + 1914897290, + 1878888111, + 2038213448, + 1973523951, + 2026796311, + 2017222054, + 1958448592, + 1929793530, + 1901469576, + 1786837539, + 1826060851, + 1749322720, + 1667861243, + 1659288196, + 1622189723, + 1555545087, + 1464816540, + 1453255452, + 1551576402, + 1534949693, + 1489691277, + 1454328281, + 1395505901, + 1382159428, + 1372645661, + 1339939211, + 1286586930, + 1278390604, + 1268151335, + 1242574816, + 1240655553, + 1270396251, + 1273703805, + 1300434778, + 1303256312, + 1251281045, + 1228004108, + 1242027983, + 1238977675, + 1211997430, + 1203678576, + 1140627900, + 1095765735, + 1075673220, + 1193228275, + 1219874940, + 1255268194, + 1252986997, + 1249250734, + 1255647894, + 1217571524, + 1223032187, + 1199942794, + 1170697029, + 1148016818, + 1086675676, + 1099213383, + 1027279528, + 1059384284, + 1017021485, + 933798279, + 1000183101, + 906417310, + 936170145, + 957547574, + 932575005, + 903646373, + 875526496, + 970097847, + 927036842, + 939407216, + 919019215, + 866568507, + 852817092, + 872645823, + 820751984, + 872755714, + 856940569, + 868511347, + 888966458, + 876588749, + 829999059, + 841856416, + 808375194, + 874095559, + 842987883, + 810085273, + 818923879, + 818978018, + 811241388, + 826692264, + 792356479, + 801167910, + 801316967, + 796506470, + 810609590, + 795587574, + 771803646, + 771192129, + 716040579, + 802250592, + 831243513, + 827160321, + 827050706, + 748588959, + 755325630, + 774827562, + 853134512, + 854596290, + 858886025, + 858117902, + 807999169, + 897944895, + 908341739, + 920522243, + 931329532, + 915579516, + 871363616, + 883035420, + 842785832, + 851698441, + 832006416, + 840495021, + 826714830, + 751671727, + 795029652, + 777919759, + 756220891, + 723190230, + 726694539, + 814992908, + 811735594, + 828345860, + 867827996, + 786153792, + 791756725, + 773404105, + 773731872, + 765879363, + 776492919, + 753758479, + 729667199, + 659052408, + 741425198, + 752725484, + 677360014, + 710237590, + 696417961, + 689044903, + 696433910, + 775913706, + 790539588, + 786366941, + 762206532, + 757911778, + 739980041, + 726804894, + 735862090, + 673870452, + 612321248, + 688822057, + 692704625, + 733905822, + 765370921, + 745993498, + 747990016, + 720616326, + 735758404, + 749464148, + 782999055, + 787469548, + 799274506, + 825290252, + 830303546, + 838214921, + 828207715, + 810666925, + 810347825, + 829659040, + 827300254, + 812525565, + 802543135, + 782400676, + 779235166, + 797241098, + 793495777, + 791062833, + 721015836, + 773968517 + ], + "GasUsedRatio": [ + 0.47243236515878806, + 0.25592104444444447, + 0.6715568198420253, + 0.4505155452905789, + 0.36651657699271506, + 0.6023204177679096, + 0.4735143246388886, + 0.48560553333333334, + 0.4231846094328204, + 0.15609512693534353, + 0.931775314043071, + 0.45593982222222224, + 0.35869626666666665, + 0.4930415063121471, + 0.37405424444444446, + 0.49556862817325437, + 0.4934026048069335, + 0.5236249777777777, + 0.4837243729743552, + 0.4959386072302247, + 0.5999440856598988, + 0.4374795732281805, + 0.3848020522576019, + 0.3818410222222222, + 0.33508722384365747, + 0.9586872494122606, + 0.2787410888888889, + 0.5123631047938431, + 0.4878297555555556, + 0.9995448666666666, + 0.6284360444444445, + 0.5278665333333333, + 0.4786023399727164, + 0.41765926229793066, + 0.34071704846345346, + 0.6015461181060421, + 0.35274638331379166, + 0.4510543111111111, + 0.42205001257227726, + 0.5741019485863065, + 0.3778120848928485, + 0.3652714091853598, + 0.4664855190534205, + 0.7969567378425607, + 0.5874542415730856, + 0.5962012343691625, + 0.3571259307502045, + 0.3959069333333333, + 0.5773507310993904, + 0.42395724444444444, + 0.3314104, + 0.5275912340180513, + 0.34919815555555556, + 0.5678747111111111, + 0.2981680888888889, + 0.7219414667596603, + 0.31325572155546727, + 0.5690883111111111, + 0.47258155831107607, + 0.40301842563555457, + 0.2157308522888807, + 0.791191267609978, + 0.44052649737064953, + 0.5499690517486513, + 0.5075262267420267, + 0.47864471837536804, + 0.35272037777777776, + 0.6517708666666666, + 0.5299359555555555, + 0.5984166404633005, + 0.6031375318869749, + 0.4377397111111111, + 0.4969541777777778, + 0.44094984444444446, + 0.7118600893385357, + 0.3630263495568249, + 0.34869169544837636, + 0.9985949885255215, + 0.5389320781536964, + 0.33213610009526956, + 0.5241461230581823, + 0.4453715111111111, + 0.35761924933984424, + 0.6826837412311305, + 0.46456570781755047, + 0.44097262052545255, + 0.32672891111111113, + 0.5731149333333333, + 0.39444393333333333, + 0.47097441110047555, + 0.5699047001311579, + 0.374855, + 0.3337722444444444, + 0.5854233333333333, + 0.4038071311237801, + 0.4589592385610502, + 0.37405493333333334, + 0.4208237039298999, + 0.44583049268247077, + 0.6543345777777778, + 0.4393853410984273, + 0.4184594443056912, + 0.4582466421121464, + 0.4658962459350478, + 0.436333, + 0.5755767365357851, + 0.1468090958398027, + 0.9194739088628701, + 0.7100124680238278, + 0.49812115555555553, + 0.4202240294388814, + 0.4645050216381318, + 0.45870191111111114, + 0.3436905586201779, + 0.5927386027234721, + 0.36191948338479213, + 0.47140330090408616, + 0.6029752889327046, + 0.5133314493279325, + 0.12559255555555557, + 0.9619089806276601, + 0.4813663917930458, + 0.5175941425232705, + 0.7178870830730921, + 0.23613762532540172, + 0.5948181940343784, + 0.3774719777777778, + 0.4663029507362854, + 0.6101730941654011, + 0.09961582222222222, + 0.651215667139484, + 0.7582893690320638, + 0.4436670573967491, + 0.18009455890206189, + 0.7942105792661333, + 0.5734741367626595, + 0.5812892925108629, + 0.40179706909101964, + 0.3042016, + 0.34390502222222225, + 0.6538680222222222, + 0.39083948888888886, + 0.45057986666666666, + 0.7706806222222222, + 0.534524840897591, + 0.3759208888888889, + 0.5680483041183072, + 0.27399647147259876, + 0.4399080132957401, + 0.3648847779252823, + 0.7483192493613943, + 0.31622358531440126, + 0.5117692406826553, + 0.2903611712986142, + 0.9999879685805797, + 0.5539972612078591, + 0.44495858679906364, + 0.30389482222222225, + 0.20821755555555554, + 0.4657156, + 0.8700050888888888, + 0.5443543753628679, + 0.3677250222222222, + 0.48011024523074625, + 0.1930373622357017, + 0.6875323111111111, + 0.4772883333333333, + 0.4249848991908879, + 0.3284204, + 0.34459644324671185, + 0.4163068200265169, + 0.45946315555555556, + 0.6871273777777778, + 0.4896681333333333, + 0.4387668259866924, + 0.427477675145334, + 0.7616102566249757, + 0.655002629560581, + 0.487293500729714, + 0.3390988387500044, + 0.2748582406052933, + 0.40690288860659646, + 0.9974209777777778, + 0.6405601777777777, + 0.44230986666666666, + 0.4217976, + 0.39642553333333336, + 0.37196026666666665, + 0.5235461555555555, + 0.2882166222222222, + 0.6134599111111111, + 0.5070095555555556, + 0.5404170444444445, + 0.45161621829103515, + 0.5703512561134225, + 0.6817939777777777, + 0.41986222222222225, + 0.5161352444444445, + 0.32341255463775553, + 0.5732157111111111, + 0.43102704444444445, + 0.4019339333333333, + 0.4891750598038218, + 0.38033557139714397, + 0.4090558231179844, + 0.5185289450683518, + 0.17992851533586496, + 0.9489005739795282, + 0.20238230265353857, + 0.6121037777777778, + 0.4876624666666667, + 0.33970562169245216, + 0.29863170758140944, + 0.5024685555555556, + 0.3547478879735753, + 0.9076622666666667, + 0.45589364444444447, + 0.6742545777777778, + 0.7470929389357465, + 0.5354166449536829, + 0.2984400222222222, + 0.6634006222222222, + 0.7365526444444445, + 0.6783335041668246, + 0.608580648199286, + 0.4359188888888889, + 0.3063260222222222, + 0.3931173366275725, + 0.7958443989160618, + 0.4563944114036688, + 0.46952020426026725, + 0.43185568012435277, + 0.34658830466425117, + 0.6108653333333334, + 0.3914406888888889, + 0.4276766888888889, + 0.37149953333333335, + 0.47394535555555556, + 0.27227793374399006, + 0.5854456666666666, + 0.6272211555555556, + 0.4457855333333333, + 0.32675288888888887, + 0.6352722354863064, + 0.4670571599304479, + 0.39760665933441247, + 0.5103936666666666, + 0.37097333217535305, + 0.42410630906971536, + 0.39508529689735356, + 0.5400649061229038, + 0.4668884268305792, + 0.6713953691111693, + 0.48405522489602626, + 0.5358770427531597, + 0.4005728916308341, + 0.8048902222222222, + 0.6023003111111112, + 0.5309473544565386, + 0.1469008779471838, + 0.9520620300559126, + 0.4959641621841342, + 0.2796546083562779, + 0.31237365172377163, + 0.916024376496563, + 0.7106172939149901, + 0.48326837777777776, + 0.21264166666666667, + 0.3452704347552196, + 0.9079674898356014, + 0.9735787957886746, + 0.4382484375414584, + 0.5029215747905075, + 0.6053471839250689, + 0.4599252971800901, + 0.5040080597641395, + 0.42033513333333333, + 0.18716802222222223, + 0.7477751777777778, + 0.5047724222222222, + 0.5001200222222222, + 0.4108115489490448, + 0.4049384313856122, + 0.9298333333333333, + 0.21735766666666667, + 0.2346094, + 0.7396737111111111, + 0.5957865057287168, + 0.14365182222222223, + 0.8815659111111112, + 0.4153730888888889, + 0.37611993810133165, + 0.543217941297144, + 0.5127922487254375, + 0.5076341099256254, + 0.5873781168552252, + 0.4651361111679631, + 0.43877673333333334, + 0.5709783333333334, + 0.9689938444444445, + 0.4527417777777778, + 0.5564063173508963, + 0.14589824444444444, + 0.7884826444444445, + 0.3731039929303407, + 0.4887555781442191, + 0.4607687555555556, + 0.63259469463864, + 0.3977860222222222, + 0.4956728, + 0.5619280444444444, + 0.6003861860124029, + 0.3105671856530885, + 0.477983711934719, + 0.23300342222222223, + 0.9996279333333333, + 0.560735198835058, + 0.5372884690124533, + 0.13889180964513023, + 0.9977781735316206, + 0.4639904333061883, + 0.5707480098500918, + 0.9049411215566748, + 0.3506984960031403, + 0.6120739621894898, + 0.5869006263983978, + 0.6570762380707867, + 0.4191026472996223, + 0.4124834798839518, + 0.44264742748612607, + 0.48165375555555556, + 0.45134266666666667, + 0.42409102791401454, + 0.5709428566787297, + 0.630367466082902, + 0.18720529110344522, + 0.6946068786859676, + 0.6255738155338267, + 0.4634607777777778, + 0.7159332444444444, + 0.2124006, + 0.6597475333333334, + 0.466482397722544, + 0.47326190239246063, + 0.1703449929880629, + 0.4718387777777778, + 0.31929386666666665, + 0.9998429777777778, + 0.3241435777777778, + 0.4976116899578557, + 0.566202607704714, + 0.2133478625663439, + 0.6015302222222222, + 0.9996186053331725, + 0.1829867304095424, + 0.7150332516715193, + 0.38344042222222224, + 0.5828161555555555, + 0.37195133333333336, + 0.4492482496648162, + 0.4431659328080501, + 0.22057212584673783, + 0.49338969847809044, + 0.7714164103232563, + 0.45713013266193586, + 0.4468086666666667, + 0.43928364178565843, + 0.5260641471279628, + 0.5300470222222222, + 0.3872930176806898, + 0.3881048222222222, + 0.38791263183763275, + 0.5739598333680492, + 0.30775044486262604, + 0.5567860402556887, + 0.3504474009619363, + 0.45980562076861686, + 0.536829850425728, + 0.45341173141518737, + 0.5261731212203716, + 0.550221129180602, + 0.36366605468804414, + 0.6426040825669076, + 0.7605020380241053, + 0.5257031338489221, + 0.1761947052162732, + 0.780300387185182, + 0.39112728888888887, + 0.4613969777777778, + 0.5298578222222222, + 0.48827153333333334, + 0.30589827541811054, + 0.37732353833138105, + 0.4310469777777778, + 0.5504190803570491, + 0.38274705462496333, + 0.17085895555555555, + 0.745011884494494, + 0.43886708602854885, + 0.3491478235865939, + 0.45939857777777776, + 0.39907024444444444, + 0.16599088888888888, + 0.6985876947187395, + 0.5281034222222222, + 0.4251360888888889, + 0.39109178082703694, + 0.31736985882008734, + 0.698413287961005, + 0.4366312222222222, + 0.5738792222222222, + 0.5077743858308678, + 0.5445645333333333, + 0.5359769339913929, + 0.3013222888888889, + 0.4685097111111111, + 0.8588865111111111, + 0.5431964616597517, + 0.6494358444444445, + 0.45345986666666666, + 0.5810552690501525, + 0.3623531111111111, + 0.9951374222222222, + 0.49708128888888886, + 0.43904533333333334, + 0.4041214444444444, + 0.4914652666666667, + 0.38623724444444446, + 0.2065118879645492, + 0.6377955872268944, + 0.5927484, + 0.4124312888888889, + 0.5090114888696248, + 0.4994567111111111, + 0.35451933327959195, + 0.8623789929474549, + 0.4158676393300269, + 0.5452743571711791, + 0.14568705780344635, + 0.9339466106469505, + 0.45955591128173157, + 0.47450072726623377, + 0.45623213637618604, + 0.4231382524347678, + 0.9968722862953449, + 0.3837925115215105, + 0.3854914315848841, + 0.3394060222222222, + 0.8466026642782435, + 0.49480049503158413, + 0.525308454079055, + 0.6075538722140669, + 0.7046033001880079, + 0.3785847963875274, + 0.4841977566161632, + 0.43253667547351515, + 0.5612284424137481, + 0.7472185077994229, + 0.5304236689639972, + 0.413064769126917, + 0.5590720404393184, + 0.26757104444444446, + 0.9996229333333333, + 0.41644292959781676, + 0.572198391211796, + 0.6145644222222222, + 0.5891750888888889, + 0.4926656, + 0.4527634, + 0.5884546233326162, + 0.389072794002892, + 0.37842306666666664, + 0.5155931828183504, + 0.3933764701337533, + 0.7246848825317316, + 0.4009085439585507, + 0.5342265111111111, + 0.348538870936543, + 0.40619709925500597, + 0.4761331777777778, + 0.3381585768777263, + 0.4333641777777778, + 0.8420626666666666, + 0.4634634222222222, + 0.4096661251510303, + 0.3747478444444444, + 0.7635446888888889, + 0.5455361564635475, + 0.23166231025509645, + 0.28375646666666665, + 0.41390318751839317, + 0.9998708745362479, + 0.7225153367477207, + 0.5261397251519078, + 0.4247382750274429, + 0.42797665313123745, + 0.45957370483721316, + 0.569359025307998, + 0.4084944529068303, + 0.3834900888888889, + 0.11296697777777778, + 0.6502154666666666, + 0.6197880222222222, + 0.49198515555555555, + 0.41459099525990445, + 0.376634721713977, + 0.419532733029506, + 0.42816975161330306, + 0.23496071823163864, + 0.8035679451774979, + 0.5856244272306964, + 0.4697091286660029, + 0.4112866036174768, + 0.5251865555555556, + 0.44756192580594706, + 0.1660018030683896, + 0.8116297590713838, + 0.4195946685586999, + 0.12798691697676637, + 0.6065057608720701, + 0.6492801555555555, + 0.4336957628133571, + 0.3803094730145993, + 0.24190768429575818, + 0.6806098784988789, + 0.6618528084256663, + 0.3954799559314292, + 0.45578148127164636, + 0.5997666257746586, + 0.2449990083611747, + 0.2587620140851784, + 0.5729838886118864, + 0.22517, + 0.8559752444444444, + 0.6896344732731893, + 0.5194800741698486, + 0.40870046666666665, + 0.32125308888888887, + 0.6170845777777778, + 0.3772138888888889, + 0.9999992888888889, + 0.4480242888888889, + 0.42581957299298656, + 0.20458284444444444, + 0.8412107111111111, + 0.34746622346052775, + 0.48141321557262823, + 0.5121534020376762, + 0.4644511930322938, + 0.5630085392440648, + 0.5174822834492125, + 0.4641497883026636, + 0.5116935335841728, + 0.7307900444444444, + 0.41684966573974963, + 0.5332847540276539, + 0.3946409571507153, + 0.4192196011752378, + 0.6559411130490567, + 0.4404054180510873, + 0.4471891111111111, + 0.34561275555555554, + 0.5860040364138629, + 0.392961353274182, + 0.44831434559808664, + 0.4629608066804992, + 0, + 0.9158345142811631, + 0.9932540666666667, + 0.5093071555555555, + 0.533958238648019, + 0.5598836, + 0.39100595555555556, + 0.49363932252468834, + 0.15897799635675208, + 0.6616219948152431, + 0.6556305640939669, + 0.3453965068488123, + 0.46802457486427534, + 0.38726991437636243, + 0.5369275189229612, + 0.5020486960994297, + 0.5254080436162084, + 0.5822069555555556, + 0.6077170329489798, + 0.5698042666666666, + 0.4061167333333333, + 0.3982351989426148, + 0.5128021953369295, + 0.4012984944305877, + 0.3856589601180698, + 0.33580830754855134, + 0.505904152216634, + 0.5266194925984844, + 0.4794582548182184, + 0.5207275555555556, + 0.3816402045078468, + 0.425720317910526, + 0.617484440346319, + 0.42163195555555555, + 0.3931134005494723, + 0.6023060222222222, + 0.24533397777777777, + 0.9979247734721213, + 0.4390176334223998, + 0.6960723807958682, + 0.5066933239027968, + 0.502228135662516, + 0.5493711081971768, + 0.40958437912064066, + 0.49366702328935885, + 0.4709237494586377, + 0.3634447586805137, + 0.634862, + 0.5547649687063296, + 0.3022616260564651, + 0.5011338629589619, + 0.454229651903255, + 0.498806031768417, + 0.4320259051409281, + 0.3489690024632347, + 0.04342422673161082, + 0.8076332646342949, + 0.5236859525892097, + 0.7073527142041259, + 0.5076290625610917, + 0.3776143179573856, + 0.3612233717385532, + 0.4472522222222222, + 0.4158398222222222, + 0.6891426958527432, + 0.09428186666666667, + 0.8860582888888889, + 0.5538007333333334, + 0.5579437333333334, + 0.554088758302337, + 0.5633766605968236, + 0.5918326656476756, + 0.4447949333333333, + 0.2769397111111111, + 0.6810743555555555, + 0.5271884888888889, + 0.6087793111111112, + 0.4781364, + 0.34501796734317935, + 0.642649858532087, + 0.7417086222222222, + 0.586384023545126, + 0.5037856900876834, + 0.5450037350954587, + 0.34577265037101795, + 0.42748833061344443, + 0.7388316672518757, + 0.6614378941919481, + 0.5776556595331505, + 0.5173149525877414, + 0.5734939400266024, + 0.15164546666666667, + 0.8988885333333333, + 0.32861305395460044, + 0.5441424, + 0.5665750127190873, + 0.4785538350625535, + 0.47389682222222224, + 0.33082495048053145, + 0.6498760209926423, + 0.4239198658475341, + 0.6295391586748366, + 0.3964193298007466, + 0.43885953333333333, + 0.7344546916229183, + 0.6168603555555555, + 0.5386148222222222, + 0.4578382, + 0.5512994444444445, + 0.5530101777777777, + 0.3459302222222222, + 0.4731690679661621, + 0.49619693128078995, + 0.5138280763027163, + 0.2247545628642757, + 0.12611437501645617, + 0.8133996867670211, + 0.7244234308306257, + 0.4003837777777778, + 0.5647391134310974, + 0.6296299779202554, + 0.3991367887963345, + 0.20302722222222222, + 0.7217840427117128, + 0.9632166088969574, + 0.13461289687143216, + 0.6520446683520329, + 0.6623517683587405, + 0.4479938888888889, + 0.6486437110942295, + 0.5291491500758545, + 0.23443875555555554, + 0.8954363555555556, + 0.39578511958433366, + 0.27544770765003174, + 0.9900271777777778, + 0.5152794666666667, + 0.6818741333333334, + 0.6874892216365424, + 0.3189949111111111, + 0.4888078444444444, + 0.9161676888888889, + 0.4446565330375067, + 0.4843031072229691, + 0.992745086180129, + 0.5817093339333937, + 0.750122, + 0.6396913777777777, + 0.9998529333333334, + 0.34553208888888887, + 0.43322886666666666, + 0.9996057183624951, + 0.3026372888888889, + 0.9972364098490132, + 0.1472871407410456, + 0.6135421555555556, + 0.5874129333333333, + 0.34144356897344513, + 0.2782937548140324, + 0.1629026979701425, + 0.9964645555555556, + 0.8267694666666666, + 0.7033838333517154, + 0.5372958023048777, + 0.9999046666666667, + 0.32598895555555557, + 0.391901, + 0.999668075865018, + 0.4378201179613848, + 0.9045370275586792, + 0.4229980990428595, + 0.10603161270905732, + 0.8205094854605249, + 0.7112162666666667, + 0.49953461219996703, + 0.6802851389391328, + 0.3707967700222057, + 0.8356194444444445, + 0.4904230888888889, + 0.4104166, + 0.5729946, + 0.3809943019199207, + 0.19042847085387216, + 0.8812584194250849, + 0.5664936888888888, + 0.5288546224993087, + 0.5505114149331298, + 0.5223434, + 0.4150339111111111, + 0.5846577777777778, + 0.45772885415037295, + 0.4615756188389247, + 0.5383024, + 0.5241995111111111, + 0.3847168443779855, + 0.5567972653840536, + 0.4145148948150718, + 0.40751020101949526, + 0.5232510666666667, + 0.4987213958448668, + 0.39852673636999253, + 0.4624460888888889, + 0.6680342444444445, + 0.38582448157818827, + 0.33014093769022934, + 0.4601847143339869, + 0.28342320831990925, + 0.5787428998643944, + 0.4308524222222222, + 0.4662209419317278, + 0.25404777609009715, + 0.16590553333333333, + 0.7173390278613259, + 0.7029724717292508, + 0.14637806666666667, + 0.7904983777777778, + 0.550472777238288, + 0.5766721288200342, + 0.6601484655678874, + 0.4281004403697305, + 0.4789602169512212, + 0.35914698511024623, + 0.5381732874979617, + 0.43602115555555554, + 0.36883357777777775, + 0.41990450480979197, + 0.4445912470538583, + 0.42614762123144684, + 0.48790057687665805, + 0.5507947387632738, + 0.1387286, + 0.4744848888888889, + 0.6055184222222222, + 0.735379166713379, + 0.5825421566513941, + 0.37168961135410294, + 0.5507882595233998, + 0.5910670596141069, + 0.3306405011089558, + 0.2657515214845865, + 0.6312282126945018, + 0.4098770857822475, + 0.5668316415289539, + 0.4812993111111111, + 0.30574824001464895, + 0.6909137046508733, + 0.5972599555555556, + 0.4899561414959578, + 0.10861973333333333, + 0.5870413555555556, + 0.6746020730333916, + 0.5719716444444445, + 0.3611287209002498, + 0.4005446271870882, + 0.5049793227882553, + 0.3033683575484166, + 0.4903288479419325, + 0.4788203503961156, + 0.375243024128943, + 0.5775879048520323, + 0.3912281642522155, + 0.4160954772359973, + 0.3137140288399899, + 0.3663609004691627, + 0.8763742331967947, + 0.4992795840701068, + 0.4451392040907777, + 0.33869783360121686, + 0.6431546022776733, + 0.39826924444444445, + 0.4247809683304959, + 0.8391906685599722, + 0.3730466666666667, + 0.6079740847373266, + 0.4811046363729373, + 0.3834566245899075, + 0.44147395481689145, + 0.4412912222222222, + 0.2588559111111111, + 0.5878049888349031, + 0.3319045400419904, + 0.31373024097047325, + 0.4794394228445564, + 0.4105677404453233, + 0.3356674666666667, + 0.266696450914689, + 0.4684299333333333, + 0.7706226222222222, + 0.45713595555555553, + 0.3820588932445497, + 0.40504609815516046, + 0.3382142895990354, + 0.46174441577821684, + 0.47246694543793294, + 0.40469076011351235, + 0.3407322242515431, + 0.474517613711768, + 0.467962, + 0.4193266, + 0.4938216555814917, + 0.5958870444444444, + 0.5104142444444445, + 0.5839472217046798, + 0.5086787307355882, + 0.34047567785871047, + 0.4255900577943327, + 0.5456802222222222, + 0.4901763624460295, + 0.41289512787756666, + 0.47254497777777776, + 0.29047337777777776, + 0.3426755452035205, + 0.42665396324712046, + 0.9371404, + 0.5893262967730087, + 0.6160553418111422, + 0.49273079443232654, + 0.48807246027530393, + 0.5204831906318441, + 0.3787036620379257, + 0.5179395144048525, + 0.4244847558084, + 0.4025094690608242, + 0.42250697419998784, + 0.2862709208354038, + 0.5461506868194933, + 0.23823515555555555, + 0.6250088444444445, + 0.3400474666666667, + 0.172678670922556, + 0.7843647050596071, + 0.1250054918644813, + 0.6312986222222222, + 0.5913399333333333, + 0.3956811333333333, + 0.3759193333333333, + 0.37552707025723076, + 0.9320661795299049, + 0.3224467555555556, + 0.5533759777777778, + 0.4131878, + 0.27171006727102576, + 0.4365247282347403, + 0.5930034320436735, + 0.26213103429486556, + 0.7534443145148464, + 0.4275162699910851, + 0.5540097111111111, + 0.5942076888888889, + 0.44430516769531564, + 0.2874045635199163, + 0.5571439555555555, + 0.3409171836604172, + 0.8251973213042215, + 0.3576463286457364, + 0.34387623496347125, + 0.5436428444444444, + 0.5002644444444444, + 0.46221324444444445, + 0.5761838666666667, + 0.33386424444444446, + 0.5444821555555556, + 0.5007442, + 0.47598704444444445, + 0.5708248888888889, + 0.42587299028188774, + 0.3804208079576609, + 0.4968307111111111, + 0.21394132083116899, + 0.9815928712998548, + 0.6445579333333333, + 0.4803514, + 0.49946991764309095, + 0.1205226737949009, + 0.5359966269351316, + 0.6032769529292878, + 0.9042548520252149, + 0.506853670001264, + 0.5200784092384526, + 0.49642269743786577, + 0.26637833333333333, + 0.9452763333333334, + 0.5463139555555555, + 0.5536384222222223, + 0.5469615555555556, + 0.43235469766298007, + 0.3068287820808362, + 0.5535794888888889, + 0.31767622222222225, + 0.5423007080514358, + 0.4075164338490368, + 0.5408102888888889, + 0.4344186888888889, + 0.13690936322349986, + 0.7307279649178331, + 0.4139156868737448, + 0.3884261867700458, + 0.32528564444444447, + 0.5193825054404239, + 0.9860274088706351, + 0.48401302986612993, + 0.581850623092302, + 0.6906553234197816, + 0.12354657638907454, + 0.528508065243544, + 0.40728151520040534, + 0.5016951952273923, + 0.4594044838214227, + 0.555432, + 0.38288655555555556, + 0.37215384444444444, + 0.11289315504011295, + 0.9999468072729977, + 0.5609652039205523, + 0.09950621238965035, + 0.6941512666666667, + 0.4221689777777778, + 0.4576515342004201, + 0.5428941854322217, + 0.9564958444444445, + 0.5753995333333334, + 0.478887093654301, + 0.3771036270101325, + 0.47746146666666667, + 0.4053624, + 0.42878106666666665, + 0.5498466444444444, + 0.16302577777777777, + 0.1346526, + 0.9997429712250558, + 0.5225461215440717, + 0.7379149555555555, + 0.6714939362118421, + 0.39872923042770936, + 0.510705275398866, + 0.35361467579693595, + 0.5840507111111111, + 0.5745122, + 0.6789807139665455, + 0.5228377884894423, + 0.5599640004536908, + 0.630196804376115, + 0.5242983333333333, + 0.5381131743407385, + 0.45224514325647025, + 0.41528313333333333, + 0.4984254931140133, + 0.5953230810258293, + 0.48862767119735834, + 0.4285643186480591, + 0.4508572733712108, + 0.39960683417005183, + 0.4838164129747891, + 0.5924287460275841, + 0.48120858972467934, + 0.48773555251430645, + 0.14580817206823024, + 0.7937670917800478 + ] +}` + +const infuraFeesJSON = `{ + "low": { + "suggestedMaxPriorityFeePerGas": "0.001274", + "suggestedMaxFeePerGas": "0.722289836", + "minWaitTimeEstimate": 12000, + "maxWaitTimeEstimate": 48000 + }, + "medium": { + "suggestedMaxPriorityFeePerGas": "1.5", + "suggestedMaxFeePerGas": "2.531052646", + "minWaitTimeEstimate": 12000, + "maxWaitTimeEstimate": 36000 + }, + "high": { + "suggestedMaxPriorityFeePerGas": "1.5", + "suggestedMaxFeePerGas": "2.531052646", + "minWaitTimeEstimate": 12000, + "maxWaitTimeEstimate": 24000 + }, + "estimatedBaseFee": "0.721015836", + "networkCongestion": 0.7192, + "latestPriorityFeeRange": [ + "0.001274", + "2" + ], + "historicalPriorityFeeRange": [ + "0.000000001", + "90.754791384" + ], + "historicalBaseFeeRange": [ + "0.612321248", + "2.113621245" + ], + "priorityFeeTrend": "down", + "baseFeeTrend": "down", + "version": "0.0.1" +}` diff --git a/examples/gas-comparison/data/fake-client.go b/examples/gas-comparison/data/fake-client.go new file mode 100644 index 0000000..d11f97f --- /dev/null +++ b/examples/gas-comparison/data/fake-client.go @@ -0,0 +1,181 @@ +package data + +import ( + "context" + "fmt" + "math/big" + + "github.com/ethereum/go-ethereum" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" +) + +type FakeClient struct { + gasData *GasData +} + +func NewFakeClient(gasData *GasData) *FakeClient { + return &FakeClient{ + gasData: gasData, + } +} + +func (c *FakeClient) Close() { + // No-op +} + +func (c *FakeClient) ChainID(ctx context.Context) (*big.Int, error) { + if c.gasData == nil || c.gasData.LatestBlock == nil { + return nil, fmt.Errorf("no gas data available") + } + for _, tx := range c.gasData.LatestBlock.Transactions { + if tx.ChainID != nil { + return big.NewInt(tx.ChainID.Int64()), nil + } + } + return nil, fmt.Errorf("no chain ID found in transactions") +} + +func (c *FakeClient) FeeHistory(ctx context.Context, blockCount uint64, lastBlock *big.Int, rewardPercentiles []float64) (*ethereum.FeeHistory, error) { + // Validate gas data availability + if c.gasData == nil || c.gasData.FeeHistory == nil { + return nil, fmt.Errorf("no fee history data available") + } + + // Validate blockCount + if blockCount == 0 { + return nil, fmt.Errorf("blockCount must be greater than 0") + } + + availableBlocks := uint64(len(c.gasData.FeeHistory.GasUsedRatio)) + if blockCount > availableBlocks { + return nil, fmt.Errorf("blockCount %d exceeds available blocks %d", blockCount, availableBlocks) + } + + // Validate rewardPercentiles + for _, percentile := range rewardPercentiles { + if percentile < 0 || percentile > 100 { + return nil, fmt.Errorf("rewardPercentiles must be between 0 and 100") + } + } + + if lastBlock != nil && lastBlock.Cmp(c.gasData.LatestBlock.Number) != 0 { + return nil, fmt.Errorf("requested lastBlock %s is not available", lastBlock.String()) + } + + // Calculate the starting index for the requested blocks + startIdx := uint64(0) + effectiveBlockCount := availableBlocks + if blockCount <= availableBlocks { + startIdx = availableBlocks - blockCount + effectiveBlockCount = blockCount + } + + // Calculate oldest block number + latestBlockNumber := c.gasData.LatestBlock.Number.Uint64() + oldestBlockNumber := latestBlockNumber - effectiveBlockCount + 1 + + ret := ðereum.FeeHistory{ + OldestBlock: big.NewInt(int64(oldestBlockNumber)), + BaseFee: make([]*big.Int, effectiveBlockCount+1), // +1 for next block base fee + GasUsedRatio: make([]float64, effectiveBlockCount), + Reward: make([][]*big.Int, effectiveBlockCount), + } + + // Copy base fees (including the extra one for next block) + for i := uint64(0); i <= effectiveBlockCount; i++ { + // BaseFeePerGas includes estimation for the next block, so we must start one block before + if startIdx-1+i < uint64(len(c.gasData.FeeHistory.BaseFee)) { + ret.BaseFee[i] = big.NewInt(0).Set(c.gasData.FeeHistory.BaseFee[startIdx-1+i]) + } else { + ret.BaseFee[i] = big.NewInt(0) + } + } + + // Copy gas used ratios + for i := uint64(0); i < effectiveBlockCount; i++ { + if startIdx+i < uint64(len(c.gasData.FeeHistory.GasUsedRatio)) { + ret.GasUsedRatio[i] = c.gasData.FeeHistory.GasUsedRatio[startIdx+i] + } else { + ret.GasUsedRatio[i] = 0.0 + } + } + + // Filter rewards based on requested percentiles + for i := uint64(0); i < effectiveBlockCount; i++ { + if startIdx+i < uint64(len(c.gasData.FeeHistory.Reward)) { + sourceRewards := c.gasData.FeeHistory.Reward[startIdx+i] + ret.Reward[i] = make([]*big.Int, len(rewardPercentiles)) + + // Map requested percentiles to available reward data + for j, requestedPercentile := range rewardPercentiles { + // Find the closest available percentile index + // Assuming the source data has percentiles at regular intervals + percentileIdx := int(requestedPercentile / 5) // Assuming 5% intervals (0, 5, 10, ..., 100) + ret.Reward[i][j] = big.NewInt(0) + if percentileIdx < len(sourceRewards) { + ret.Reward[i][j].Set(sourceRewards[percentileIdx]) + } + } + } else { + // Create empty reward data for missing blocks + ret.Reward[i] = make([]*big.Int, len(rewardPercentiles)) + for j := range rewardPercentiles { + ret.Reward[i][j] = big.NewInt(0) + } + } + } + + return ret, nil +} + +func (c *FakeClient) BlockNumber(ctx context.Context) (uint64, error) { + if c.gasData == nil || c.gasData.LatestBlock == nil { + return 0, fmt.Errorf("no gas data available") + } + return c.gasData.LatestBlock.Number.Uint64(), nil +} + +func (c *FakeClient) BlockByNumber(ctx context.Context, number *big.Int) (*ethclient.BlockWithFullTxs, error) { + if c.gasData == nil || c.gasData.LatestBlock == nil { + return nil, fmt.Errorf("no gas data available") + } + if number == nil { + // Return latest block + return c.gasData.LatestBlock, nil + } + // For simplicity, always return the latest block regardless of the requested number + return c.gasData.LatestBlock, nil +} + +func (c *FakeClient) GetGasSuggestions(ctx context.Context, networkID int) (*infura.GasResponse, error) { + dataChainID, err := c.ChainID(context.Background()) + if err != nil { + return nil, err + } + if networkID != int(dataChainID.Int64()) { + return nil, fmt.Errorf("networkID %d does not match latest block networkID %d", networkID, dataChainID.Int64()) + } + return c.gasData.InfuraSuggestedFees, nil +} + +func (c *FakeClient) SuggestGasPrice(ctx context.Context) (*big.Int, error) { + return c.gasData.GasPrice, nil +} + +func (c *FakeClient) SuggestGasTipCap(ctx context.Context) (*big.Int, error) { + return c.gasData.MaxPriorityFeePerGas, nil +} + +func (c *FakeClient) EstimateGas(ctx context.Context, msg ethereum.CallMsg) (uint64, error) { + // Return a default gas limit for simple ETH transfers + if msg.To != nil && len(msg.Data) == 0 && (msg.Value == nil || msg.Value.Cmp(big.NewInt(0)) == 0) { + return 21000, nil // Standard ETH transfer gas limit + } + // For other transactions, return a reasonable default + return 100000, nil +} + +func (c *FakeClient) LineaEstimateGas(ctx context.Context, msg ethereum.CallMsg) (*ethclient.LineaEstimateGasResult, error) { + return nil, fmt.Errorf("LineaEstimateGas not implemented") +} diff --git a/examples/gas-comparison/data/fake-client_test.go b/examples/gas-comparison/data/fake-client_test.go new file mode 100644 index 0000000..6a7c0cf --- /dev/null +++ b/examples/gas-comparison/data/fake-client_test.go @@ -0,0 +1,492 @@ +package data + +import ( + "context" + "math/big" + "testing" + + "github.com/ethereum/go-ethereum" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" +) + +func createTestGasData() *GasData { + return &GasData{ + LatestBlock: ðclient.BlockWithFullTxs{ + Number: big.NewInt(1000), + Transactions: []ethclient.Transaction{ + { + ChainID: big.NewInt(1), + }, + }, + }, + FeeHistory: ðereum.FeeHistory{ + BaseFee: []*big.Int{ + big.NewInt(10000000000), // 10 gwei + big.NewInt(11000000000), // 11 gwei + big.NewInt(12000000000), // 12 gwei + big.NewInt(13000000000), // 13 gwei + big.NewInt(14000000000), // 14 gwei + }, + GasUsedRatio: []float64{0.5, 0.6, 0.7, 0.8}, + Reward: [][]*big.Int{ + {big.NewInt(1000000000), big.NewInt(2000000000), big.NewInt(3000000000)}, // Block 1 rewards (0%, 5%, 10%) + {big.NewInt(1100000000), big.NewInt(2100000000), big.NewInt(3100000000)}, // Block 2 rewards (0%, 5%, 10%) + {big.NewInt(1200000000), big.NewInt(2200000000), big.NewInt(3200000000)}, // Block 3 rewards (0%, 5%, 10%) + {big.NewInt(1300000000), big.NewInt(2300000000), big.NewInt(3300000000)}, // Block 4 rewards (0%, 5%, 10%) + }, + }, + InfuraSuggestedFees: &infura.GasResponse{ + Low: infura.GasPrice{ + SuggestedMaxPriorityFeePerGas: "1000000000", + SuggestedMaxFeePerGas: "11000000000", + }, + Medium: infura.GasPrice{ + SuggestedMaxPriorityFeePerGas: "2000000000", + SuggestedMaxFeePerGas: "12000000000", + }, + High: infura.GasPrice{ + SuggestedMaxPriorityFeePerGas: "3000000000", + SuggestedMaxFeePerGas: "13000000000", + }, + }, + } +} + +func TestNewFakeClient(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + if client == nil { + t.Fatal("NewFakeClient returned nil") + } + if client.gasData != gasData { + t.Error("FakeClient gasData not set correctly") + } +} + +func TestFakeClient_Close(t *testing.T) { + client := NewFakeClient(createTestGasData()) + // Should not panic + client.Close() +} + +func TestFakeClient_ChainID(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + chainID, err := client.ChainID(context.Background()) + if err != nil { + t.Fatalf("ChainID returned error: %v", err) + } + + expected := big.NewInt(1) + if chainID.Cmp(expected) != 0 { + t.Errorf("Expected chainID %v, got %v", expected, chainID) + } +} + +func TestFakeClient_BlockNumber(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + blockNumber, err := client.BlockNumber(context.Background()) + if err != nil { + t.Fatalf("BlockNumber returned error: %v", err) + } + + expected := uint64(1000) + if blockNumber != expected { + t.Errorf("Expected block number %d, got %d", expected, blockNumber) + } +} + +func TestFakeClient_BlockByNumber(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + tests := []struct { + name string + number *big.Int + }{ + {"latest block (nil)", nil}, + {"specific block", big.NewInt(999)}, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + block, err := client.BlockByNumber(context.Background(), tt.number) + if err != nil { + t.Fatalf("BlockByNumber returned error: %v", err) + } + + if block != gasData.LatestBlock { + t.Error("BlockByNumber should return the latest block") + } + }) + } +} + +func TestFakeClient_FeeHistory_Success(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + tests := []struct { + name string + blockCount uint64 + lastBlock *big.Int + rewardPercentiles []float64 + expectedBaseFees int + expectedRewards int + expectedGasRatios int + }{ + { + name: "request 2 blocks", + blockCount: 2, + lastBlock: nil, + rewardPercentiles: []float64{0, 5, 10}, // Match available percentiles + expectedBaseFees: 3, // blockCount + 1 + expectedRewards: 2, // blockCount + expectedGasRatios: 2, // blockCount + }, + { + name: "request all blocks", + blockCount: 4, + lastBlock: nil, + rewardPercentiles: []float64{0, 5}, // Match available percentiles + expectedBaseFees: 5, // blockCount + 1 + expectedRewards: 4, // blockCount + expectedGasRatios: 4, // blockCount + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + feeHistory, err := client.FeeHistory(context.Background(), tt.blockCount, tt.lastBlock, tt.rewardPercentiles) + if err != nil { + t.Fatalf("FeeHistory returned error: %v", err) + } + + if len(feeHistory.BaseFee) != tt.expectedBaseFees { + t.Errorf("Expected %d base fees, got %d", tt.expectedBaseFees, len(feeHistory.BaseFee)) + } + + if len(feeHistory.Reward) != tt.expectedRewards { + t.Errorf("Expected %d reward arrays, got %d", tt.expectedRewards, len(feeHistory.Reward)) + } + + if len(feeHistory.GasUsedRatio) != tt.expectedGasRatios { + t.Errorf("Expected %d gas ratios, got %d", tt.expectedGasRatios, len(feeHistory.GasUsedRatio)) + } + + // Check that each reward array has the correct number of percentiles + // Note: The current implementation may leave some reward arrays empty due to bounds checking + for i, rewards := range feeHistory.Reward { + // Only check non-empty reward arrays since the implementation may skip some blocks + if len(rewards) > 0 && len(rewards) != len(tt.rewardPercentiles) { + t.Errorf("Block %d: expected %d reward percentiles, got %d", i, len(tt.rewardPercentiles), len(rewards)) + } + } + + // Verify oldest block calculation + latestBlockNumber := gasData.LatestBlock.Number.Uint64() + expectedOldest := latestBlockNumber - tt.blockCount + 1 + if feeHistory.OldestBlock.Uint64() != expectedOldest { + t.Errorf("Expected oldest block %d, got %d", expectedOldest, feeHistory.OldestBlock.Uint64()) + } + }) + } +} + +func TestFakeClient_FeeHistory_Errors(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + tests := []struct { + name string + blockCount uint64 + lastBlock *big.Int + rewardPercentiles []float64 + expectedError string + }{ + { + name: "zero block count", + blockCount: 0, + lastBlock: nil, + rewardPercentiles: []float64{50}, + expectedError: "blockCount must be greater than 0", + }, + { + name: "block count exceeds available", + blockCount: 10, + lastBlock: nil, + rewardPercentiles: []float64{50}, + expectedError: "blockCount 10 exceeds available blocks 5", + }, + { + name: "invalid percentile negative", + blockCount: 2, + lastBlock: nil, + rewardPercentiles: []float64{-1}, + expectedError: "rewardPercentiles must be between 0 and 100", + }, + { + name: "invalid percentile over 100", + blockCount: 2, + lastBlock: nil, + rewardPercentiles: []float64{101}, + expectedError: "rewardPercentiles must be between 0 and 100", + }, + { + name: "non-nil lastBlock", + blockCount: 2, + lastBlock: big.NewInt(999), + rewardPercentiles: []float64{50}, + expectedError: "only 'latest' block request is supported", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + _, err := client.FeeHistory(context.Background(), tt.blockCount, tt.lastBlock, tt.rewardPercentiles) + if err == nil { + t.Fatal("Expected error but got none") + } + if err.Error() != tt.expectedError { + t.Errorf("Expected error '%s', got '%s'", tt.expectedError, err.Error()) + } + }) + } +} + +func TestFakeClient_GetGasSuggestions_Success(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + gasSuggestions, err := client.GetGasSuggestions(context.Background(), 1) + if err != nil { + t.Fatalf("GetGasSuggestions returned error: %v", err) + } + + if gasSuggestions != gasData.InfuraSuggestedFees { + t.Error("GetGasSuggestions should return the InfuraSuggestedFees from gasData") + } +} + +func TestFakeClient_GetGasSuggestions_WrongNetworkID(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + _, err := client.GetGasSuggestions(context.Background(), 2) // Wrong network ID + if err == nil { + t.Fatal("Expected error for wrong network ID") + } + + expectedError := "networkID 2 does not match latest block networkID 1" + if err.Error() != expectedError { + t.Errorf("Expected error '%s', got '%s'", expectedError, err.Error()) + } +} + +func TestFakeClient_SuggestGasPrice_NotImplemented(t *testing.T) { + client := NewFakeClient(createTestGasData()) + + _, err := client.SuggestGasPrice(context.Background()) + if err == nil { + t.Fatal("Expected error for unimplemented method") + } + + expectedError := "SuggestGasPrice not implemented" + if err.Error() != expectedError { + t.Errorf("Expected error '%s', got '%s'", expectedError, err.Error()) + } +} + +func TestFakeClient_LineaEstimateGas_NotImplemented(t *testing.T) { + client := NewFakeClient(createTestGasData()) + + msg := ethereum.CallMsg{} + _, err := client.LineaEstimateGas(context.Background(), msg) + if err == nil { + t.Fatal("Expected error for unimplemented method") + } + + expectedError := "LineaEstimateGas not implemented" + if err.Error() != expectedError { + t.Errorf("Expected error '%s', got '%s'", expectedError, err.Error()) + } +} + +// Test edge cases for FeeHistory reward percentile mapping +func TestFakeClient_FeeHistory_PercentileMapping(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + // Test various percentiles to ensure proper mapping + percentiles := []float64{0, 5, 10} // Match available percentiles in test data + + feeHistory, err := client.FeeHistory(context.Background(), 2, nil, percentiles) + if err != nil { + t.Fatalf("FeeHistory returned error: %v", err) + } + + // Verify that we get rewards for all requested percentiles + // Note: The current implementation may leave some reward arrays empty due to bounds checking + for blockIdx, rewards := range feeHistory.Reward { + // Only check non-empty reward arrays since the implementation may skip some blocks + if len(rewards) > 0 && len(rewards) != len(percentiles) { + t.Errorf("Block %d: expected %d rewards, got %d", blockIdx, len(percentiles), len(rewards)) + } + + // All rewards should be non-nil (only check non-empty reward arrays) + if len(rewards) > 0 { + for i, reward := range rewards { + if reward == nil { + t.Errorf("Block %d, percentile %f: reward is nil", blockIdx, percentiles[i]) + } + } + } + } +} + +// Test with empty gas data +func TestFakeClient_EmptyGasData(t *testing.T) { + gasData := &GasData{ + LatestBlock: ðclient.BlockWithFullTxs{ + Number: big.NewInt(100), + Transactions: []ethclient.Transaction{ + {ChainID: big.NewInt(1)}, + }, + }, + FeeHistory: ðereum.FeeHistory{ + BaseFee: []*big.Int{}, + GasUsedRatio: []float64{}, + Reward: [][]*big.Int{}, + }, + InfuraSuggestedFees: &infura.GasResponse{}, + } + + client := NewFakeClient(gasData) + + // Should fail when requesting blocks from empty fee history + _, err := client.FeeHistory(context.Background(), 1, nil, []float64{50}) + if err == nil { + t.Fatal("Expected error when requesting blocks from empty fee history") + } +} + +// Test ChainID error handling with nil transaction +func TestFakeClient_ChainID_NilTransaction(t *testing.T) { + gasData := &GasData{ + LatestBlock: ðclient.BlockWithFullTxs{ + Number: big.NewInt(1000), + Transactions: []ethclient.Transaction{}, // Empty transactions + }, + } + client := NewFakeClient(gasData) + + // This should return an error when no transactions are available + _, err := client.ChainID(context.Background()) + if err == nil { + t.Fatal("Expected error when no transactions available") + } + + expectedError := "no gas data available" + if err.Error() != expectedError { + t.Errorf("Expected error '%s', got '%s'", expectedError, err.Error()) + } +} + +// Test FeeHistory with single block request +func TestFakeClient_FeeHistory_SingleBlock(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + feeHistory, err := client.FeeHistory(context.Background(), 1, nil, []float64{0}) + if err != nil { + t.Fatalf("FeeHistory returned error: %v", err) + } + + if len(feeHistory.BaseFee) != 2 { // blockCount + 1 + t.Errorf("Expected 2 base fees, got %d", len(feeHistory.BaseFee)) + } + + if len(feeHistory.Reward) != 1 { + t.Errorf("Expected 1 reward array, got %d", len(feeHistory.Reward)) + } + + if len(feeHistory.GasUsedRatio) != 1 { + t.Errorf("Expected 1 gas ratio, got %d", len(feeHistory.GasUsedRatio)) + } +} + +// Test GetGasSuggestions with ChainID error +func TestFakeClient_GetGasSuggestions_ChainIDError(t *testing.T) { + gasData := &GasData{ + LatestBlock: ðclient.BlockWithFullTxs{ + Number: big.NewInt(1000), + Transactions: []ethclient.Transaction{}, // Empty transactions will cause ChainID to fail + }, + InfuraSuggestedFees: &infura.GasResponse{}, + } + client := NewFakeClient(gasData) + + // This should fail when ChainID fails due to empty transactions + _, err := client.GetGasSuggestions(context.Background(), 1) + if err == nil { + t.Fatal("Expected error when ChainID fails") + } + + expectedError := "no gas data available" + if err.Error() != expectedError { + t.Errorf("Expected error '%s', got '%s'", expectedError, err.Error()) + } +} + +// Test with context cancellation +func TestFakeClient_ContextCancellation(t *testing.T) { + gasData := createTestGasData() + client := NewFakeClient(gasData) + + // Create a cancelled context + ctx, cancel := context.WithCancel(context.Background()) + cancel() + + // These methods should still work since they don't check context cancellation + // This tests that the fake client doesn't unnecessarily check context + _, err := client.ChainID(ctx) + if err != nil { + t.Errorf("ChainID failed with cancelled context: %v", err) + } + + _, err = client.BlockNumber(ctx) + if err != nil { + t.Errorf("BlockNumber failed with cancelled context: %v", err) + } +} + +// Test with nil gas data +func TestFakeClient_NilGasData(t *testing.T) { + client := NewFakeClient(nil) + + // All methods should return errors when gas data is nil + _, err := client.ChainID(context.Background()) + if err == nil { + t.Error("Expected error for ChainID with nil gas data") + } + + _, err = client.BlockNumber(context.Background()) + if err == nil { + t.Error("Expected error for BlockNumber with nil gas data") + } + + _, err = client.BlockByNumber(context.Background(), nil) + if err == nil { + t.Error("Expected error for BlockByNumber with nil gas data") + } + + _, err = client.FeeHistory(context.Background(), 1, nil, []float64{50}) + if err == nil { + t.Error("Expected error for FeeHistory with nil gas data") + } +} diff --git a/examples/gas-comparison/data/generator/go.mod b/examples/gas-comparison/data/generator/go.mod new file mode 100644 index 0000000..c88632a --- /dev/null +++ b/examples/gas-comparison/data/generator/go.mod @@ -0,0 +1,35 @@ +module generator + +go 1.23.0 + +toolchain go1.23.11 + +require ( + github.com/ethereum/go-ethereum v1.16.3 + github.com/status-im/go-wallet-sdk v0.0.0 +) + +require ( + github.com/Microsoft/go-winio v0.6.2 // indirect + github.com/StackExchange/wmi v1.2.1 // indirect + github.com/bits-and-blooms/bitset v1.20.0 // indirect + github.com/consensys/gnark-crypto v0.18.0 // indirect + github.com/crate-crypto/go-eth-kzg v1.3.0 // indirect + github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a // indirect + github.com/deckarep/golang-set/v2 v2.6.0 // indirect + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect + github.com/ethereum/c-kzg-4844/v2 v2.1.0 // indirect + github.com/ethereum/go-verkle v0.2.2 // indirect + github.com/go-ole/go-ole v1.3.0 // indirect + github.com/gorilla/websocket v1.4.2 // indirect + github.com/holiman/uint256 v1.3.2 // indirect + github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect + github.com/supranational/blst v0.3.14 // indirect + github.com/tklauser/go-sysconf v0.3.12 // indirect + github.com/tklauser/numcpus v0.6.1 // indirect + golang.org/x/crypto v0.41.0 // indirect + golang.org/x/sync v0.16.0 // indirect + golang.org/x/sys v0.35.0 // indirect +) + +replace github.com/status-im/go-wallet-sdk => ../../../.. diff --git a/examples/gas-comparison/data/generator/go.sum b/examples/gas-comparison/data/generator/go.sum new file mode 100644 index 0000000..ab6252d --- /dev/null +++ b/examples/gas-comparison/data/generator/go.sum @@ -0,0 +1,181 @@ +github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ= +github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= +github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= +github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= +github.com/StackExchange/wmi v1.2.1 h1:VIkavFPXSjcnS+O8yTq7NI32k0R5Aj+v39y29VYDOSA= +github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= +github.com/VictoriaMetrics/fastcache v1.12.2 h1:N0y9ASrJ0F6h0QaC3o6uJb3NIZ9VKLjCM7NQbSmF7WI= +github.com/VictoriaMetrics/fastcache v1.12.2/go.mod h1:AmC+Nzz1+3G2eCPapF6UcsnkThDcMsQicp4xDukwJYI= +github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bits-and-blooms/bitset v1.20.0 h1:2F+rfL86jE2d/bmw7OhqUg2Sj/1rURkBn3MdfoPyRVU= +github.com/bits-and-blooms/bitset v1.20.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cockroachdb/errors v1.11.3 h1:5bA+k2Y6r+oz/6Z/RFlNeVCesGARKuC6YymtcDrbC/I= +github.com/cockroachdb/errors v1.11.3/go.mod h1:m4UIW4CDjx+R5cybPsNrRbreomiFqt8o1h1wUVazSd8= +github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce h1:giXvy4KSc/6g/esnpM7Geqxka4WSqI1SZc7sMJFd3y4= +github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce/go.mod h1:9/y3cnZ5GKakj/H4y9r9GTjCvAFta7KLgSHPJJYc52M= +github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b h1:r6VH0faHjZeQy818SGhaone5OnYfxFR/+AzdY3sf5aE= +github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b/go.mod h1:Vz9DsVWQQhf3vs21MhPMZpMGSht7O/2vFW2xusFUVOs= +github.com/cockroachdb/pebble v1.1.5 h1:5AAWCBWbat0uE0blr8qzufZP5tBjkRyy/jWe1QWLnvw= +github.com/cockroachdb/pebble v1.1.5/go.mod h1:17wO9el1YEigxkP/YtV8NtCivQDgoCyBg5c4VR/eOWo= +github.com/cockroachdb/redact v1.1.5 h1:u1PMllDkdFfPWaNGMyLD1+so+aq3uUItthCFqzwPJ30= +github.com/cockroachdb/redact v1.1.5/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= +github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 h1:zuQyyAKVxetITBuuhv3BI9cMrmStnpT18zmgmTxunpo= +github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ= +github.com/consensys/gnark-crypto v0.18.0 h1:vIye/FqI50VeAr0B3dx+YjeIvmc3LWz4yEfbWBpTUf0= +github.com/consensys/gnark-crypto v0.18.0/go.mod h1:L3mXGFTe1ZN+RSJ+CLjUt9x7PNdx8ubaYfDROyp2Z8c= +github.com/cpuguy83/go-md2man/v2 v2.0.5 h1:ZtcqGrnekaHpVLArFSe4HK5DoKx1T0rq2DwVB0alcyc= +github.com/cpuguy83/go-md2man/v2 v2.0.5/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/crate-crypto/go-eth-kzg v1.3.0 h1:05GrhASN9kDAidaFJOda6A4BEvgvuXbazXg/0E3OOdI= +github.com/crate-crypto/go-eth-kzg v1.3.0/go.mod h1:J9/u5sWfznSObptgfa92Jq8rTswn6ahQWEuiLHOjCUI= +github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a h1:W8mUrRp6NOVl3J+MYp5kPMoUZPp7aOYHtaua31lwRHg= +github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a/go.mod h1:sTwzHBvIzm2RfVCGNEBZgRyjwK40bVoun3ZnGOCafNM= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dchest/siphash v1.2.3 h1:QXwFc8cFOR2dSa/gE6o/HokBMWtLUaNDVd+22aKHeEA= +github.com/dchest/siphash v1.2.3/go.mod h1:0NvQU092bT0ipiFN++/rXm69QG9tVxLAlQHIXMPAkHc= +github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM= +github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= +github.com/decred/dcrd/crypto/blake256 v1.0.0 h1:/8DMNYp9SGi5f0w7uCm6d6M4OU2rGFK09Y2A4Xv7EE0= +github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= +github.com/emicklei/dot v1.6.2 h1:08GN+DD79cy/tzN6uLCT84+2Wk9u+wvqP+Hkx/dIR8A= +github.com/emicklei/dot v1.6.2/go.mod h1:DeV7GvQtIw4h2u73RKBkkFdvVAz0D9fzeJrgPW6gy/s= +github.com/ethereum/c-kzg-4844/v2 v2.1.0 h1:gQropX9YFBhl3g4HYhwE70zq3IHFRgbbNPw0Shwzf5w= +github.com/ethereum/c-kzg-4844/v2 v2.1.0/go.mod h1:TC48kOKjJKPbN7C++qIgt0TJzZ70QznYR7Ob+WXl57E= +github.com/ethereum/go-ethereum v1.16.3 h1:nDoBSrmsrPbrDIVLTkDQCy1U9KdHN+F2PzvMbDoS42Q= +github.com/ethereum/go-ethereum v1.16.3/go.mod h1:Lrsc6bt9Gm9RyvhfFK53vboCia8kpF9nv+2Ukntnl+8= +github.com/ethereum/go-verkle v0.2.2 h1:I2W0WjnrFUIzzVPwm8ykY+7pL2d4VhlsePn4j7cnFk8= +github.com/ethereum/go-verkle v0.2.2/go.mod h1:M3b90YRnzqKyyzBEWJGqj8Qff4IDeXnzFw0P9bFw3uk= +github.com/ferranbt/fastssz v0.1.4 h1:OCDB+dYDEQDvAgtAGnTSidK1Pe2tW3nFV40XyMkTeDY= +github.com/ferranbt/fastssz v0.1.4/go.mod h1:Ea3+oeoRGGLGm5shYAeDgu6PGUlcvQhE2fILyD9+tGg= +github.com/getsentry/sentry-go v0.27.0 h1:Pv98CIbtB3LkMWmXi4Joa5OOcwbmnX88sF5qbK3r3Ps= +github.com/getsentry/sentry-go v0.27.0/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY= +github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= +github.com/go-ole/go-ole v1.3.0 h1:Dt6ye7+vXGIKZ7Xtk4s6/xVdGDQynvom7xCFEdWr6uE= +github.com/go-ole/go-ole v1.3.0/go.mod h1:5LS6F96DhAwUc7C+1HLexzMXY1xGRSryjyPPKW6zv78= +github.com/gofrs/flock v0.12.1 h1:MTLVXXHf8ekldpJk3AKicLij9MdwOWkZ+a/jHHZby9E= +github.com/gofrs/flock v0.12.1/go.mod h1:9zxTsyu5xtJ9DK+1tFZyibEV7y3uwDxPPfbxeeHCoD0= +github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/golang-jwt/jwt/v4 v4.5.2 h1:YtQM7lnr8iZ+j5q71MGKkNw9Mn7AjHM68uc9g5fXeUI= +github.com/golang-jwt/jwt/v4 v4.5.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= +github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= +github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= +github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb h1:PBC98N2aIaM3XXiurYmW7fx4GZkL8feAMVq7nEjURHk= +github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc= +github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/hashicorp/go-bexpr v0.1.10 h1:9kuI5PFotCboP3dkDYFr/wi0gg0QVbSNz5oFRpxn4uE= +github.com/hashicorp/go-bexpr v0.1.10/go.mod h1:oxlubA2vC/gFVfX1A6JGp7ls7uCDlfJn732ehYYg+g0= +github.com/holiman/billy v0.0.0-20240216141850-2abb0c79d3c4 h1:X4egAf/gcS1zATw6wn4Ej8vjuVGxeHdan+bRb2ebyv4= +github.com/holiman/billy v0.0.0-20240216141850-2abb0c79d3c4/go.mod h1:5GuXa7vkL8u9FkFuWdVvfR5ix8hRB7DbOAaYULamFpc= +github.com/holiman/bloomfilter/v2 v2.0.3 h1:73e0e/V0tCydx14a0SCYS/EWCxgwLZ18CZcZKVu0fao= +github.com/holiman/bloomfilter/v2 v2.0.3/go.mod h1:zpoh+gs7qcpqrHr3dB55AMiJwo0iURXE7ZOP9L9hSkA= +github.com/holiman/uint256 v1.3.2 h1:a9EgMPSC1AAaj1SZL5zIQD3WbwTuHrMGOerLjGmM/TA= +github.com/holiman/uint256 v1.3.2/go.mod h1:EOMSn4q6Nyt9P6efbI3bueV4e1b3dGlUCXeiRV4ng7E= +github.com/huin/goupnp v1.3.0 h1:UvLUlWDNpoUdYzb2TCn+MuTWtcjXKSza2n6CBdQ0xXc= +github.com/huin/goupnp v1.3.0/go.mod h1:gnGPsThkYa7bFi/KWmEysQRf48l2dvR5bxr2OFckNX8= +github.com/jackpal/go-nat-pmp v1.0.2 h1:KzKSgb7qkJvOUTqYl9/Hg/me3pWgBmERKrTGD7BdWus= +github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= +github.com/klauspost/compress v1.16.0 h1:iULayQNOReoYUe+1qtKOqw9CwJv3aNQu8ivo7lw1HU4= +github.com/klauspost/compress v1.16.0/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= +github.com/klauspost/cpuid/v2 v2.0.9 h1:lgaqFMSdTdQYdZ04uHyN2d/eKdOMyi2YLSvlQIBFYa4= +github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= +github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= +github.com/leanovate/gopter v0.2.11 h1:vRjThO1EKPb/1NsDXuDrzldR28RLkBflWYcU9CvzWu4= +github.com/leanovate/gopter v0.2.11/go.mod h1:aK3tzZP/C+p1m3SPRE4SYZFGP7jjkuSI4f7Xvpt0S9c= +github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= +github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU= +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= +github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= +github.com/minio/sha256-simd v1.0.0 h1:v1ta+49hkWZyvaKwrQB8elexRqm6Y0aMLjCNsrYxo6g= +github.com/minio/sha256-simd v1.0.0/go.mod h1:OuYzVNI5vcoYIAmbIvHPl3N3jUzVedXbKy5RFepssQM= +github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= +github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/pointerstructure v1.2.0 h1:O+i9nHnXS3l/9Wu7r4NrEdwA2VFTicjUEN1uBnDo34A= +github.com/mitchellh/pointerstructure v1.2.0/go.mod h1:BRAsLI5zgXmw97Lf6s25bs8ohIXc3tViBH44KcwB2g4= +github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec= +github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= +github.com/pion/dtls/v2 v2.2.7 h1:cSUBsETxepsCSFSxC3mc/aDo14qQLMSL+O6IjG28yV8= +github.com/pion/dtls/v2 v2.2.7/go.mod h1:8WiMkebSHFD0T+dIU+UeBaoV7kDhOW5oDCzZ7WZ/F9s= +github.com/pion/logging v0.2.2 h1:M9+AIj/+pxNsDfAT64+MAVgJO0rsyLnoJKCqf//DoeY= +github.com/pion/logging v0.2.2/go.mod h1:k0/tDVsRCX2Mb2ZEmTqNa7CWsQPc+YYCB7Q+5pahoms= +github.com/pion/stun/v2 v2.0.0 h1:A5+wXKLAypxQri59+tmQKVs7+l6mMM+3d+eER9ifRU0= +github.com/pion/stun/v2 v2.0.0/go.mod h1:22qRSh08fSEttYUmJZGlriq9+03jtVmXNODgLccj8GQ= +github.com/pion/transport/v2 v2.2.1 h1:7qYnCBlpgSJNYMbLCKuSY9KbQdBFoETvPNETv0y4N7c= +github.com/pion/transport/v2 v2.2.1/go.mod h1:cXXWavvCnFF6McHTft3DWS9iic2Mftcz1Aq29pGcU5g= +github.com/pion/transport/v3 v3.0.1 h1:gDTlPJwROfSfz6QfSi0ZmeCSkFcnWWiiR9ES0ouANiM= +github.com/pion/transport/v3 v3.0.1/go.mod h1:UY7kiITrlMv7/IKgd5eTUcaahZx5oUN3l9SzK5f5xE0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v1.15.0 h1:5fCgGYogn0hFdhyhLbw7hEsWxufKtY9klyvdNfFlFhM= +github.com/prometheus/client_golang v1.15.0/go.mod h1:e9yaBhRPU2pPNsZwE+JdQl0KEt1N9XgF6zxWmaC0xOk= +github.com/prometheus/client_model v0.3.0 h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4= +github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= +github.com/prometheus/common v0.42.0 h1:EKsfXEYo4JpWMHH5cg+KOUWeuJSov1Id8zGR8eeI1YM= +github.com/prometheus/common v0.42.0/go.mod h1:xBwqVerjNdUDjgODMpudtOMwlOwf2SaTr1yjz4b7Zbc= +github.com/prometheus/procfs v0.9.0 h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJfhI= +github.com/prometheus/procfs v0.9.0/go.mod h1:+pB4zwohETzFnmlpe6yd2lSc+0/46IYZRB/chUwxUZY= +github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY= +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= +github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= +github.com/rs/cors v1.7.0 h1:+88SsELBHx5r+hZ8TCkggzSstaWNbDvThkVK8H6f9ik= +github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= +github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= +github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible h1:Bn1aCHHRnjv4Bl16T8rcaFjYSrGrIZvpiGO6P3Q4GpU= +github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= +github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= +github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/supranational/blst v0.3.14 h1:xNMoHRJOTwMn63ip6qoWJ2Ymgvj7E2b9jY2FAwY+qRo= +github.com/supranational/blst v0.3.14/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= +github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 h1:epCh84lMvA70Z7CTTCmYQn2CKbY8j86K7/FAIr141uY= +github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= +github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFAEVmqU= +github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI= +github.com/tklauser/numcpus v0.6.1 h1:ng9scYS7az0Bk4OZLvrNXNSAO2Pxr1XXRAPyjhIx+Fk= +github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= +github.com/urfave/cli/v2 v2.27.5 h1:WoHEJLdsXr6dDWoJgMq/CboDmyY/8HMMH1fTECbih+w= +github.com/urfave/cli/v2 v2.27.5/go.mod h1:3Sevf16NykTbInEnD0yKkjDAeZDS0A6bzhBH5hrMvTQ= +github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 h1:gEOO8jv9F4OT7lGCjxCBTO/36wtF6j2nSip77qHd4x4= +github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1/go.mod h1:Ohn+xnUBiLI6FVj/9LpzZWtj1/D6lUovWYBkxHVV3aM= +golang.org/x/crypto v0.41.0 h1:WKYxWedPGCTVVl5+WHSSrOBT0O8lx32+zxmHxijgXp4= +golang.org/x/crypto v0.41.0/go.mod h1:pO5AFd7FA68rFak7rOAGVuygIISepHftHnr8dr6+sUc= +golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa h1:FRnLl4eNAQl8hwxVVC17teOw8kdjVDVAiFMtgUdTSRQ= +golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa/go.mod h1:zk2irFbV9DP96SEBUUAy67IdHUaZuSnrz1n472HUCLE= +golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw= +golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= +golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI= +golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/text v0.28.0 h1:rhazDwis8INMIwQ4tpjLDzUhx6RlXqZNPEM0huQojng= +golang.org/x/text v0.28.0/go.mod h1:U8nCwOR8jO/marOQ0QbDiOngZVEBB7MAiitBuMjXiNU= +golang.org/x/time v0.9.0 h1:EsRrnYcQiGH+5FfbgvV4AP7qEZstoyrHB0DzarOQ4ZY= +golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= +google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= +google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= +gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc= +gopkg.in/natefinch/lumberjack.v2 v2.2.1/go.mod h1:YD8tP3GAjkrDg1eZH7EGmyESg/lsYskCTPBJVb9jqSc= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/examples/gas-comparison/data/generator/main.go b/examples/gas-comparison/data/generator/main.go new file mode 100644 index 0000000..446a3ae --- /dev/null +++ b/examples/gas-comparison/data/generator/main.go @@ -0,0 +1,350 @@ +package main + +import ( + "context" + "encoding/json" + "flag" + "fmt" + "math/big" + "net/http" + "os" + "path/filepath" + "time" + + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/ethereum/go-ethereum/rpc" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" +) + +func main() { + // Define command line flags + var ( + rpcURL = flag.String("rpc", "", "RPC URL for the blockchain network (required)") + help = flag.Bool("help", false, "Show help message") + ) + + flag.Usage = func() { + fmt.Fprintf(os.Stderr, "Usage: %s [options]\n\n", os.Args[0]) + fmt.Fprintf(os.Stderr, "Gas Data Generator - Fetches blockchain gas data and generates Go code\n\n") + fmt.Fprintf(os.Stderr, "The chain ID is automatically detected from the RPC endpoint.\n\n") + fmt.Fprintf(os.Stderr, "Options:\n") + flag.PrintDefaults() + fmt.Fprintf(os.Stderr, "\nExamples:\n") + fmt.Fprintf(os.Stderr, " # BSC Mainnet\n") + fmt.Fprintf(os.Stderr, " %s -rpc https://bsc-mainnet.infura.io/v3/YOUR_API_KEY\n\n", os.Args[0]) + fmt.Fprintf(os.Stderr, " # Ethereum Mainnet\n") + fmt.Fprintf(os.Stderr, " %s -rpc https://mainnet.infura.io/v3/YOUR_API_KEY\n\n", os.Args[0]) + fmt.Fprintf(os.Stderr, " # Polygon Mainnet\n") + fmt.Fprintf(os.Stderr, " %s -rpc https://polygon-mainnet.infura.io/v3/YOUR_API_KEY\n\n", os.Args[0]) + } + + flag.Parse() + + if *help { + flag.Usage() + os.Exit(0) + } + + // Validate required arguments + if *rpcURL == "" { + fmt.Fprintf(os.Stderr, "Error: -rpc flag is required\n\n") + flag.Usage() + os.Exit(1) + } + + fmt.Println("Fetching gas data from network...") + + // Create context with timeout + ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second) + defer cancel() + + // Create RPC client + rpcClient, err := rpc.Dial(*rpcURL) + if err != nil { + fmt.Printf("Error connecting to RPC: %v\n", err) + os.Exit(1) + } + defer rpcClient.Close() + + // Create ethclient + ethClient := ethclient.NewClient(rpcClient) + + // Create Infura client + httpClient := &http.Client{ + Timeout: 30 * time.Second, + } + infuraClient := infura.NewClient(httpClient) + defer infuraClient.Close() + + // 1. Get chain ID + fmt.Println("Detecting chain ID...") + chainID, err := getChainID(ctx, ethClient) + if err != nil { + fmt.Printf("Error getting chain ID: %v\n", err) + os.Exit(1) + } + fmt.Printf("Detected chain ID: %d\n", chainID.Int64()) + + // 2. Get latest block + fmt.Println("Fetching latest block...") + latestBlock, err := getLatestBlock(ctx, ethClient) + if err != nil { + fmt.Printf("Error fetching latest block: %v\n", err) + os.Exit(1) + } + + // 3. Get current gas price + fmt.Println("Fetching current gas price...") + gasPrice, err := ethClient.SuggestGasPrice(ctx) + if err != nil { + fmt.Printf("Error fetching gas price: %v\n", err) + os.Exit(1) + } + + // 4. Get max fee per gas + fmt.Println("Fetching max priority fee per gas...") + maxPriorityFeePerGas, err := ethClient.SuggestGasTipCap(ctx) + if err != nil { + fmt.Printf("Error fetching max priority fee per gas: %v\n", err) + os.Exit(1) + } + + // 5. Get Infura suggested fees + fmt.Println("Fetching Infura suggested fees...") + infuraFees, err := getInfuraSuggestedFees(ctx, infuraClient, int(chainID.Int64())) + if err != nil { + fmt.Printf("Error fetching Infura suggested fees: %v\n", err) + os.Exit(1) + } + + // 6. Get fee history + fmt.Println("Fetching fee history...") + feeHistory, err := getFeeHistory(ctx, ethClient, latestBlock.Number) + if err != nil { + fmt.Printf("Error fetching fee history: %v\n", err) + os.Exit(1) + } + + // Generate the Go file with the data + fmt.Println("Generating chain-specific data file...") + err = generateDataFile(latestBlock, gasPrice, maxPriorityFeePerGas, feeHistory, infuraFees, int(chainID.Int64())) + if err != nil { + fmt.Printf("Error generating data file: %v\n", err) + os.Exit(1) + } + + fmt.Printf("✅ Successfully generated data file for chain %d!\n", chainID.Int64()) +} + +// getChainID fetches the chain ID using ethclient +func getChainID(ctx context.Context, client *ethclient.Client) (*big.Int, error) { + return client.ChainID(ctx) +} + +// getLatestBlock fetches the latest block using ethclient +func getLatestBlock(ctx context.Context, client *ethclient.Client) (*ethclient.BlockWithFullTxs, error) { + return client.EthGetBlockByNumberWithFullTxs(ctx, nil) +} + +// getFeeHistory fetches fee history using ethclient +func getFeeHistory(ctx context.Context, client *ethclient.Client, lastBlock *big.Int) (*ethereum.FeeHistory, error) { + percentiles := []float64{0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100} + blockCount := uint64(1024) // 0x400 in decimal + + return client.FeeHistory(ctx, blockCount, lastBlock, percentiles) +} + +// getInfuraSuggestedFees fetches suggested fees from Infura Gas API using the infura client +func getInfuraSuggestedFees(ctx context.Context, client *infura.Client, chainID int) (*infura.GasResponse, error) { + return client.GetGasSuggestions(ctx, chainID) +} + +// generateDataFile creates the data.go file with the fetched data +func generateDataFile( + block *ethclient.BlockWithFullTxs, + gasPrice *big.Int, + maxPriorityFeePerGas *big.Int, + feeHistory *ethereum.FeeHistory, + infuraFees *infura.GasResponse, + chainID int) error { + // Marshal the data to JSON strings for embedding + blockJSON, err := json.MarshalIndent(block, "", " ") + if err != nil { + return fmt.Errorf("failed to marshal block: %w", err) + } + + gasPriceJSON := []byte(hexutil.EncodeBig(gasPrice)) + maxPriorityFeePerGasJSON := []byte(hexutil.EncodeBig(maxPriorityFeePerGas)) + + feeHistoryJSON, err := json.MarshalIndent(feeHistory, "", " ") + if err != nil { + return fmt.Errorf("failed to marshal fee history: %w", err) + } + + infuraFeesJSON, err := json.MarshalIndent(infuraFees, "", " ") + if err != nil { + return fmt.Errorf("failed to marshal infura fees: %w", err) + } + + // Generate package name and network name + packageName := getPackageName(chainID) + networkName := getNetworkName(chainID) + + // Generate the Go file content + content := fmt.Sprintf(`package %s + +import ( + "encoding/json" + "gas-comparison/data" + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" + "math/big" +) + +// GetGasData returns the gas data fetched from %s (Chain ID: %d) +func GetGasData() (*data.GasData, error) { + // Parse the embedded JSON data + var block ethclient.BlockWithFullTxs + err := json.Unmarshal([]byte(latestBlockJSON), &block) + if err != nil { + return nil, err + } + + var gasPrice *big.Int + gasPrice, err = hexutil.DecodeBig(gasPriceJSON) + if err != nil { + return nil, err + } + + var maxPriorityFeePerGas *big.Int + maxPriorityFeePerGas, err = hexutil.DecodeBig(maxPriorityFeePerGasJSON) + if err != nil { + return nil, err + } + + var feeHistory ethereum.FeeHistory + err = json.Unmarshal([]byte(feeHistoryJSON), &feeHistory) + if err != nil { + return nil, err + } + + var infuraFees infura.GasResponse + err = json.Unmarshal([]byte(infuraFeesJSON), &infuraFees) + if err != nil { + return nil, err + } + + return &data.GasData{ + LatestBlock: &block, + GasPrice: gasPrice, + MaxPriorityFeePerGas: maxPriorityFeePerGas, + FeeHistory: &feeHistory, + InfuraSuggestedFees: &infuraFees, + }, nil +} + +// Embedded JSON data +const latestBlockJSON = `+"`%s`"+` + +const gasPriceJSON = `+"`%s`"+` + +const maxPriorityFeePerGasJSON = `+"`%s`"+` + +const feeHistoryJSON = `+"`%s`"+` + +const infuraFeesJSON = `+"`%s`"+` +`, packageName, networkName, chainID, string(blockJSON), string(gasPriceJSON), string(maxPriorityFeePerGasJSON), string(feeHistoryJSON), string(infuraFeesJSON)) + + // Create directory for the chain-specific package (one level up from generator) + dirPath := filepath.Join("..", packageName) + err = os.MkdirAll(dirPath, 0755) + if err != nil { + return fmt.Errorf("failed to create directory %s: %w", dirPath, err) + } + + // Write the file to the chain-specific directory + filePath := filepath.Join(dirPath, "data.go") + err = os.WriteFile(filePath, []byte(content), 0644) + if err != nil { + return fmt.Errorf("failed to write %s: %w", filePath, err) + } + + fmt.Printf("Generated file: %s\n", filePath) + return nil +} + +// getPackageName returns a valid Go package name for the given chain ID +func getPackageName(chainID int) string { + switch chainID { + case 1: + return "ethereum" + case 56: + return "bsc" + case 137: + return "polygon" + case 42161: + return "arbitrum" + case 10: + return "optimism" + case 8453: + return "base" + case 43114: + return "avalanche" + case 250: + return "fantom" + case 100: + return "gnosis" + case 25: + return "cronos" + case 11155420: + return "optimismsepolia" + case 421614: + return "arbitrumsepolia" + case 84532: + return "basesepolia" + case 11155111: + return "sepolia" + default: + return fmt.Sprintf("chain%d", chainID) + } +} + +// getNetworkName returns a human-readable network name for the given chain ID +func getNetworkName(chainID int) string { + switch chainID { + case 1: + return "Ethereum Mainnet" + case 56: + return "BSC Mainnet" + case 137: + return "Polygon Mainnet" + case 42161: + return "Arbitrum One" + case 10: + return "Optimism Mainnet" + case 8453: + return "Base Mainnet" + case 43114: + return "Avalanche C-Chain" + case 250: + return "Fantom Opera" + case 100: + return "Gnosis Chain" + case 25: + return "Cronos Mainnet" + case 11155420: + return "Optimism Sepolia" + case 421614: + return "Arbitrum Sepolia" + case 84532: + return "Base Sepolia" + case 11155111: + return "Ethereum Sepolia" + default: + return fmt.Sprintf("Chain %d", chainID) + } +} diff --git a/examples/gas-comparison/data/optimism/data.go b/examples/gas-comparison/data/optimism/data.go new file mode 100644 index 0000000..9d9a2c5 --- /dev/null +++ b/examples/gas-comparison/data/optimism/data.go @@ -0,0 +1,26525 @@ +package optimism + +import ( + "encoding/json" + "gas-comparison/data" + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" + "math/big" +) + +// GetGasData returns the gas data fetched from Optimism Mainnet (Chain ID: 10) +func GetGasData() (*data.GasData, error) { + // Parse the embedded JSON data + var block ethclient.BlockWithFullTxs + err := json.Unmarshal([]byte(latestBlockJSON), &block) + if err != nil { + return nil, err + } + + var gasPrice *big.Int + gasPrice, err = hexutil.DecodeBig(gasPriceJSON) + if err != nil { + return nil, err + } + + var maxPriorityFeePerGas *big.Int + maxPriorityFeePerGas, err = hexutil.DecodeBig(maxPriorityFeePerGasJSON) + if err != nil { + return nil, err + } + + var feeHistory ethereum.FeeHistory + err = json.Unmarshal([]byte(feeHistoryJSON), &feeHistory) + if err != nil { + return nil, err + } + + var infuraFees infura.GasResponse + err = json.Unmarshal([]byte(infuraFeesJSON), &infuraFees) + if err != nil { + return nil, err + } + + return &data.GasData{ + LatestBlock: &block, + GasPrice: gasPrice, + MaxPriorityFeePerGas: maxPriorityFeePerGas, + FeeHistory: &feeHistory, + InfuraSuggestedFees: &infuraFees, + }, nil +} + +// Embedded JSON data +const latestBlockJSON = `{ + "number": "0x87f4eb2", + "hash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "parentHash": "0x675f476b0a817eb66f584cf56cc2b0bdb9bb5dd5f6ea36b1686b214797713fb0", + "nonce": "0x0000000000000000", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "logsBloom": "0x0170352830a41a11601098852614168440302b89415a311a4b422c184cccc3086589780c605e824602020181094629500e32c0428527620a04402e88720012d51010000008ac33b32806c20972225ee6008b800475004b4221851810396130120b0a03033b0419a41220811083082d10dc00788021780600618484160c06030b963626c328033d00c1111a822031043213025fa0829464831a3221420ab40041c0938080769c1293f0601a2e0a218a9c600134d08ca1004800862220a0c0026a222810632021048465190047615e24c10ce92125248883262246a0b01c40714d24e8bb03ec22000008102000885001b4a0301414529000008240467402014624", + "transactionsRoot": "0x747d07ab9565bee231d1d6d998e4558001259072a5c8fa8cb7545db5a855b7e1", + "stateRoot": "0x83d15a68e0ac98192bc7fcf3415a3bdee8c668d2364ef9203b6d7f8ea7bcbe71", + "receiptsRoot": "0x6835d4fc84f81e21b4222e374474071a6040d9d4bd519a21938196da30d76590", + "miner": "0x4200000000000000000000000000000000000011", + "difficulty": "0x0", + "totalDifficulty": null, + "extraData": "0x00000000fa00000002", + "size": "0x3781", + "gasLimit": "0x2625a00", + "gasUsed": "0x2302a16", + "timestamp": "0x68f2771d", + "baseFeePerGas": "0x16a", + "withdrawalsRoot": "0x02756ba940ad33cde34f35abec7c3fadc7f83f32aa268cac4a9d3412084be5d6", + "blobGasUsed": "0x0", + "excessBlobGas": "0x0", + "transactions": [ + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001", + "gas": "0xf4240", + "gasPrice": "0x0", + "hash": "0xbe42ebfa805054ab7851deb61bd13b806bbd51907ca15c040d7a2a26980d5429", + "input": "0x098999be0000146b000f79c500000000000000030000000068f276cf00000000016816a0000000000000000000000000000000000000000000000000000000002ea27ca400000000000000000000000000000000000000000000000000000000000000012d04f49654b0435552a5486cc5e23e6cb06770f5a1e8f7c6d047312f3dc946640000000000000000000000006887246668a3b87f54deb3b94ba47a6f63f32985000000000000000000000000", + "nonce": "0x2398c3d", + "to": "0x4200000000000000000000000000000000000015", + "transactionIndex": "0x0", + "value": "0x0", + "v": "0x0", + "r": "0x0", + "s": "0x0", + "type": "0x7e" + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xdd0955d12962044d427753f6c9b6c241d2a7d965", + "gas": "0x7a120", + "gasPrice": "0xf43aa", + "hash": "0xaa1a00389bc6c841449f008dd04913045a2c8e741b3b9c551d602ccb4f683ad5", + "input": "0xc9807539000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000300000100010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c000000000000000000000009bdc03bbe3060a1e574af37476f7ec330005d0210208030705010204060009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000006198ed0d600000000000000000000000000000000000000000000000000000006198f4ae800000000000000000000000000000000000000000000000000000006198f4ae800000000000000000000000000000000000000000000000000000006199c2ace0000000000000000000000000000000000000000000000000000000619af3d9e000000000000000000000000000000000000000000000000000000061a0774a0000000000000000000000000000000000000000000000000000000061a0774a0000000000000000000000000000000000000000000000000000000061a0774a0000000000000000000000000000000000000000000000000000000061adefc68000000000000000000000000000000000000000000000000000000061c29abc70000000000000000000000000000000000000000000000000000000000000000495db96104c0f214bb36e5932683f66ed6e9372c149e48dc63d5511570a15ef5156ea6351eee84fce124569c4775d7f324b615a4336bf90e39417a718e4ea8c1265ad44356a5501b515b1f6464344f78a56d516783a679731d16abf6ae073aa2429456309156fb02a19a9212b7348893d853243a317f0d6857e6be6df3d66310400000000000000000000000000000000000000000000000000000000000000046730ef92b652b7b874103dc119fec1fffa4c6a82c4909a69281ce6d883b2dcec4d5927dc9beae1e0fea25b5ec76198e8ffb3eed4194c44dbe2b6c8162e6373c37273df515b9b376fcf295fd1974d38fac6c01146e6f5c7b06195f0330e233f3375ddb9a716068f02529c7cada2d8672d09407a2b1a993717b6843c7ead67cd5a", + "nonce": "0xd1130", + "to": "0x78f049f6da1ac1dca50d6d8f184acf47eb269852", + "transactionIndex": "0x1", + "value": "0x0", + "v": "0x1", + "r": "0x812f5909772fae7b23bc14e24ff4927f6f59dbfd4e4a571447619a319b858361", + "s": "0x6cc43477e88eeb3e381fd6b062a3dbfe102826de0a9ddc43ac9734d717623955", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0xf4483", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xcbd8eae56e5d51c82e9b901ff535906077c5ab32", + "gas": "0x5208", + "gasPrice": "0x8ea2e", + "hash": "0x2d9f8910a3a7255cea9f105ec0b8732fb37cfd650d050538b5094c592c8b415b", + "input": "0x", + "nonce": "0x16fa", + "to": "0xcbd8eae56e5d51c82e9b901ff535906077c5ab32", + "transactionIndex": "0x2", + "value": "0x1", + "v": "0x0", + "r": "0xb3bf76d74d6f7e8cf48f5edc338a42217a870e962b558f58aca077eac5e59505", + "s": "0x5f472c3a3ebd5fb17a84f22a59d239d8d3d647b67ad37afff4f8e9125a4a923e", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x8ed58", + "maxPriorityFeePerGas": "0x8e8c4", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x7fd9b0727fefd7f8ca79b3a32f597549f300f75e", + "gas": "0x3d0900", + "gasPrice": "0x2111a", + "hash": "0x6b1043f2a0efed7eaff0e1d311796d17dd501606b60a0a76a385c5f01674a232", + "input": "0x03000c010100003200010000000111110101010100002b6a182b7d2aba51e078451bc98ec77a1c7716eb010100006400010000000111110101010100000d174e4add9cbb9cf75cfe9a18dc67a1648a2a2200010000640001000000011111010101010000a8a4247ff4d02fe33d72244f5e799792e8e199f9", + "nonce": "0x3581ec", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x3", + "value": "0x0", + "v": "0x0", + "r": "0xe5a23738101c66d008ec10d947ca3ada23e218e4e94bce3bb4aec6d09dccd3e4", + "s": "0x208b6a5d58b873b0bd284da9d40e9c9556a1a773a521cf5f72eb3c37e085a259", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x209704", + "maxPriorityFeePerGas": "0x20fb0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x2efc4931f2e64b38d6ae3d714466840fbc951f56", + "gas": "0x3d0900", + "gasPrice": "0x4847", + "hash": "0x4752ea4ac4d7d00fffbac74e1ea7f805979723d3beae784ab4b5aea056ca2718", + "input": "0x02000c0001000190003200000001111101010101000084a76dc11fb244edca2299257bcd350a682243d900010001f4000a000000011111010101010000fc1e2387548f9b2a27a0a80cc6780c5030f09d14", + "nonce": "0x3c4788", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x4", + "value": "0x0", + "v": "0x0", + "r": "0x395ca4df2266d5caafcf8f68fb2d63cae50173b9e1e556cca7e773182865c362", + "s": "0x777830b77218b5515a9322aa2ccd25957bc58e9ac71d5d6e8b8de685e3fe848b", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1ece31", + "maxPriorityFeePerGas": "0x46dd", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x63f164167d6efe31418a812548b8db2d29d839e7", + "gas": "0x3d0900", + "gasPrice": "0x4847", + "hash": "0x41d63ddd139f71564749879807db1eaa51a40b3f3308ada2f93759c46299249f", + "input": "0x02000c0001000190003200000001111101010101000084a76dc11fb244edca2299257bcd350a682243d900010001f4000a000000011111010101010000fc1e2387548f9b2a27a0a80cc6780c5030f09d14", + "nonce": "0x334a62", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x5", + "value": "0x0", + "v": "0x1", + "r": "0x6b43d0f50d213291e026ba8f947f59235ef4d527f79fc3f79a6daf353d2e3684", + "s": "0x3258306f5fc538b924de7189c091fb3267a6d9da9433fb5bc25e21ed8dbef3f1", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1ece31", + "maxPriorityFeePerGas": "0x46dd", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x8fb6b5fb4abb7243a4ae4545d2740bf61ee030e5", + "gas": "0x189110", + "gasPrice": "0x175", + "hash": "0xdc4ff5425ab44a6050a1aa6c3041a9b166194a3ca49ca2decef179fc82e0f963", + "input": "0xfdb5a03e", + "nonce": "0x3e2207", + "to": "0x80942a0066f72efff5900cf80c235dd32549b75d", + "transactionIndex": "0x6", + "value": "0x0", + "v": "0x1", + "r": "0x75f44851abb99315a3d5ed57374d4d5a7fbd8c381a5a28d3e6d2bb4c0972cc7b", + "s": "0x4314ab210655fff1c4fd7cedea65ede34d2f77d270ed9d3262a08488f869ee26", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x22f", + "maxPriorityFeePerGas": "0xb", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x8fb6b5fb4abb7243a4ae4545d2740bf61ee030e5", + "gas": "0x189110", + "gasPrice": "0x16f", + "hash": "0x9c2a8c3e07af424787301887fe7051cd6d568ed9a747de04108722921f61f2d5", + "input": "0xfdb5a03e", + "nonce": "0x3e2208", + "to": "0x80942a0066f72efff5900cf80c235dd32549b75d", + "transactionIndex": "0x7", + "value": "0x0", + "v": "0x1", + "r": "0xbc3d750aecc7b600b088140d008d6ee8f01aafa7847ff625b953671e7e836445", + "s": "0x8b7e2e026077db21c0b19b384492d19b2d6199b632901b0bda15ec4574c4eb", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x225", + "maxPriorityFeePerGas": "0x5", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x38ab43d5e326d058b815c37d71e47c9be5f248da", + "gas": "0x3d0900", + "gasPrice": "0x4847", + "hash": "0x1664e031c5d04004400e8cf67c91c07dd496c457931fce0b11f04cbb36637a00", + "input": "0x02000c0001000190003200000001111101010101000084a76dc11fb244edca2299257bcd350a682243d900010001f4000a000000011111010101010000fc1e2387548f9b2a27a0a80cc6780c5030f09d14", + "nonce": "0xa7203", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x8", + "value": "0x0", + "v": "0x0", + "r": "0xc3718f62f7bf625f27ab49f98ec174ad2d61c6004a1e902eb3ab9ed822a0a34a", + "s": "0x38a3f7ec1d09403a72bda35a3692d246bbee8406d8a08ccd50f201738620e8e7", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1ece31", + "maxPriorityFeePerGas": "0x46dd", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x391e7c679d29bd940d63be94ad22a25d25b5a604", + "gas": "0x7a120", + "gasPrice": "0x131494", + "hash": "0x225017a227b4c5a6357a3273b76608badb447e41e82004b35547099c6f697652", + "input": "0x", + "nonce": "0x5f99", + "to": "0x8c826f795466e39acbff1bb4eeeb759609377ba1", + "transactionIndex": "0x9", + "value": "0xc7a6faa719f9380", + "v": "0x38", + "r": "0xeb0d58be29abdfaa15d250ce349f432da9ff7f24cc837d4a83651344be3d043d", + "s": "0x431d1ccb4f7d51cde78b37fc581838c8313b3008ec4a61778da72bfc61a95812", + "type": "0x0", + "chainId": "0xa" + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x53531b1872b141d56b4d82a54b61d23911be04c1", + "gas": "0x3d0900", + "gasPrice": "0x2111a", + "hash": "0xec56f348fceeff0381ac76f6b5151c9f528997046d7f74007b331c980e616059", + "input": "0x03000c010100003200010000000111110101010100002b6a182b7d2aba51e078451bc98ec77a1c7716eb010100006400010000000111110101010100000d174e4add9cbb9cf75cfe9a18dc67a1648a2a2200010000640001000000011111010101010000a8a4247ff4d02fe33d72244f5e799792e8e199f9", + "nonce": "0x1cbca5", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0xa", + "value": "0x0", + "v": "0x1", + "r": "0x176a0473fbe6237a9b552bea0816d3d1d8a2a39e4f2b8085418f67d0eb16d9f9", + "s": "0x19491117f83aca4c3c6b033f33df2c0a0a19dbc8abc0b3386cb8e0d73637161", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x209704", + "maxPriorityFeePerGas": "0x20fb0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x6ebd5cd5f6958816c726d955d51799e2257f962e", + "gas": "0x3d0900", + "gasPrice": "0x4847", + "hash": "0xe712b28e128121829181c7350b2d1dfc88d91070ac68d968d26d007d69d68349", + "input": "0x02000c0001000190003200000001111101010101000084a76dc11fb244edca2299257bcd350a682243d900010001f4000a000000011111010101010000fc1e2387548f9b2a27a0a80cc6780c5030f09d14", + "nonce": "0x8feca", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0xb", + "value": "0x0", + "v": "0x0", + "r": "0xcb8f2aee79d3e4333366e064f4084dbe0575c627c87c4f4bd421318cecb7a2ac", + "s": "0x36348aad1084be9746e70c13338c6f18e8c439b92f5d43650dedec4e7096423f", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1ece31", + "maxPriorityFeePerGas": "0x46dd", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xa79c12bcf11133af01b6b20f16f8aafaecdebc93", + "gas": "0x9c1d20", + "gasPrice": "0x7d0", + "hash": "0x780ee5898193c13e479d19528fbbe6612b3ba625eaeeb24e764bc9ae0b774aea", + "input": "0x43c08db70104030002020b", + "nonce": "0x109209", + "to": "0x2c19ffe1083f9f256ee20bc520abaccfc954dc68", + "transactionIndex": "0xc", + "value": "0x0", + "v": "0x1", + "r": "0x199c34e28c02efb8cf30d46e0910067bba5601819e72723e245935dd90525041", + "s": "0x37fdcbcc8d52646d22fbb06387fa710e2b9e7286a9d30cd954913a0affe4b7ad", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x7d0", + "maxPriorityFeePerGas": "0x7d0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xaeb7e2ffb69393cf7e3ae4f71d8b25ec79acc5d1", + "gas": "0x1d4c0", + "gasPrice": "0xf43aa", + "hash": "0x2bde46efc5db498260c6e4df51bd810b79e6fc3f5727294023a2fb194d8f4d99", + "input": "0xa9059cbb000000000000000000000000abd01fcbf66c6063aa4fa977488e617ce741092100000000000000000000000000000000000000000000000000000000001e84806decb85d010080000000000000000000000000aeb7e2ffb69393cf7e3ae4f71d8b25ec79acc5d10000000000000000000000004ea48e01f1314db0925653e30617b254d1cf536600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x640", + "to": "0x01bff41798a0bcf287b996046ca68b395dbc1071", + "transactionIndex": "0xd", + "value": "0x0", + "v": "0x1", + "r": "0xfe38df5adff66b1785429d87c0010a76affdda7d8378b8181a48aee9ef6f59bf", + "s": "0x42e164c0e26d2f7e75ba4f5a2df12ac5c7d6c6cc7bb3a5b9bd0a558a0e4e9213", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0xf4514", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xecb55e5ccfc128a1eca67e48dbe2f299e4366d0e", + "gas": "0x3d0900", + "gasPrice": "0x2111a", + "hash": "0x7940cd9f837e201a62d084f1cee2565d7fe8f28890e4d4db899300f516329a0f", + "input": "0x03000c010100003200010000000111110101010100002b6a182b7d2aba51e078451bc98ec77a1c7716eb010100006400010000000111110101010100000d174e4add9cbb9cf75cfe9a18dc67a1648a2a2200010000640001000000011111010101010000a8a4247ff4d02fe33d72244f5e799792e8e199f9", + "nonce": "0x948ce", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0xe", + "value": "0x0", + "v": "0x1", + "r": "0xb34760d9db7f25a7b77f0473e177f7eacf7db4a319010e356423ff76ab8f6c13", + "s": "0x4c192c8ead9e9f4a62d0dad33c91d3c0fe8971f60eadd84fde3b3ff28d9dcd60", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x209704", + "maxPriorityFeePerGas": "0x20fb0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xf488e3b16b1a976cc4caafdb3f47c85dfb3594fb", + "gas": "0xe4e1c0", + "gasPrice": "0xad16", + "hash": "0xae8e594d2522703e41ec57c482b392d71d153a22f08e047b0fc382ae72162b2b", + "input": "0x424b4f820000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xab33", + "to": "0xcdea8e6f9c6a4e9428dbf6700475c73ebc03b5fe", + "transactionIndex": "0xf", + "value": "0x0", + "v": "0x1", + "r": "0xca1dab06648292931e9b0ae3e157ff61988ad9c790d0f1b418bd38a994159905", + "s": "0x6035297945aaa2698385c457f735226cf1de44af19f7c59ac9008524bebee584", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0xb9c6", + "maxPriorityFeePerGas": "0xabac", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x0dc6b4a14b7082e5f17dbe6a22f6422977ac74f1", + "gas": "0x3d0900", + "gasPrice": "0x4847", + "hash": "0x9ddcc31c71e248dca512c2c2c5e7c8512855148116ac6bad01765ab94429ad31", + "input": "0x02000c0001000190003200000001111101010101000084a76dc11fb244edca2299257bcd350a682243d900010001f4000a000000011111010101010000fc1e2387548f9b2a27a0a80cc6780c5030f09d14", + "nonce": "0x8bd9a", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x10", + "value": "0x0", + "v": "0x1", + "r": "0xa1133dd602177f4319d785c1e61e36295dda37f91fe6220728c3ca6e84149d65", + "s": "0x7e8a17825879069c1535a388b3c4339567969ffeca64b0c1a88970eff4413b5c", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1ece31", + "maxPriorityFeePerGas": "0x46dd", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xc02fe543548d1685cae137d91388d0725d2b26ee", + "gas": "0xe4e1c0", + "gasPrice": "0x2cb", + "hash": "0xfab59fc9d0d62ea8a01a67a4d47069354df4ab6d2498479b069a531d9197edfb", + "input": "0x424b4f820000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x9f37", + "to": "0xcdea8e6f9c6a4e9428dbf6700475c73ebc03b5fe", + "transactionIndex": "0x11", + "value": "0x0", + "v": "0x0", + "r": "0x57836b9105fda27bb57bd91b019dd5d933ce602b92d99496dcc1859a7f8b337d", + "s": "0x60a4b07de5a23c546f56190d085d8d26c51d4fbaa25931b689cd38aa1ac348ae", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0xf85", + "maxPriorityFeePerGas": "0x161", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xd4a7f44d625a3691e942ae89aa32056e31357f76", + "gas": "0x989680", + "gasPrice": "0x139383", + "hash": "0xb88f3887207632c4f565c30d503bcd384c3e76ea8d412bf9ae7361e8d5b3a4bb", + "input": "0x00000000000068f277581cc4bce4808661ba27d47a8fdb8f2dc794e73daf2877d24e833e9b3df5ed30592b13ac146ebd7b7407311f570fb95c19c0ee5665d501dfff2e66f02855be9aa89e0c030003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f5780003ebd5311bea1948e1441333976eadcfe5fbda777c000aad0000c804595b010268f5c0a2de713a54991e01858fd27a3832401849000bb800003c00000000040002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c0000000001f117719d5460ed6090814213433cb8d4e07bd583000bb80000000000000101477fa18b063b7728409570d274f7a055e3da0d6e000bb80000000000000102b589969d38ce76d3d7aa319de7133bc9755fd840000bb800003c00000000020003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f5780002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c0000000103000339ed27d101aa4b7ce1cb4293b877954b8b5e14e5000bd60000c801c8740101a0a215de234276cac1b844fd58901351a50fec8a0023280000000000000003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f5780103000339ed27d101aa4b7ce1cb4293b877954b8b5e14e5000bd60000c801c8740101a0a215de234276cac1b844fd58901351a50fec8a0023280000000000000002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c000000010201021fb3cf6e48f1e7b10213e7b6d87d4c073c7fdb7b0001f400000a0000000103478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f57800030003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f5780002b533c12fb4e7b53b5524eab9b47d93ff6c7a456f000bb800003c00000001034dc22588ade05c40338a9d95a6da9dcee68bcd6000017f0000c80163ce0002000384a67cd00eb244edca2288346add251a783243c80001940000320163ce0102fc1f3296458f9b2a27a0b91dd7681c4020e09d050001f400000a00000000020002250e21dddd306579458cf025c5e230665171fb310027100000c800000001022ae3d6096d8215ac2acddf30c60caa984ea5debe000bb800003c00000000030103478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f57801020392b358ce4547601befa962680bede836606ae2000bb800003c0000000103f25bbc18a607bbe218c87ba1ff0e673d9b53dd58000aa70000c8042966000300020392b358ce4547601befa962680bede836606ae2000bb800003c0000000103f25bbc18a607bbe218c87ba1ff0e673d9b53dd58000aa70000c80429660003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f578010300020392b358ce4547601befa962680bede836606ae2000bb800003c000000010185ff5b70de43fee34f3fa632addd9f76a0f6baa90001f400000000000001022e80d5a7b3c613d854ee43243ff09808108561eb000bb800003c00000000", + "nonce": "0x1b268", + "to": "0xa7154297f31d3a62785d747caea5b14f47e08cde", + "transactionIndex": "0x12", + "value": "0x0", + "v": "0x0", + "r": "0x7b210606a2d6b7e9965a7449b0e45ceecb78248b71cbf168a1cc47e70bc88a46", + "s": "0x69528dbf1157b5f4506fa8e63b76ac80970d34ef13021ca4ecd3605704eef05c", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x139219", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xd0957aa233964bbf2d81236da07e8871e9b5309d", + "gas": "0xb71b00", + "gasPrice": "0xf43aa", + "hash": "0x40156c0a63313b381cb1c66e1e02571693c40551263199125f7d2926d23cd6f4", + "input": "0x00000000000068f277581cd601bbc253316ca904d306c8807124a04012f0577fef6fcaa5d52eb7625c67af0d8a354842b6095cb32e63f9fb37f26930a6c29f252ceff39000e9e6e096f87c0e030003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f5780003ebd5311bea1948e1441333976eadcfe5fbda777c000aad0000c804595b010268f5c0a2de713a54991e01858fd27a3832401849000bb800003c00000000030003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f5780002b533c12fb4e7b53b5524eab9b47d93ff6c7a456f000bb800003c00000001034dc22588ade05c40338a9d95a6da9dcee68bcd6000017f0000c80163ce00040002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c0000000001f117719d5460ed6090814213433cb8d4e07bd583000bb80000000000000101477fa18b063b7728409570d274f7a055e3da0d6e000bb80000000000000102b589969d38ce76d3d7aa319de7133bc9755fd840000bb800003c000000000301023f60fca6c50ae3bcd95ae150b4c57f0ba5c3f2ad000bb800003c00000001011eaa860dca29a5124f665f7d80affed92e877681000bb80000000000000003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f57800020003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f5780002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c000000010200021fb3cf6e48f1e7b10213e7b6d87d4c073c7fdb7b0001f400000a0000000002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c0000000103000339ed27d101aa4b7ce1cb4293b877954b8b5e14e5000bd60000c801c8740101a0a215de234276cac1b844fd58901351a50fec8a0023280000000000000003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f5780103000339ed27d101aa4b7ce1cb4293b877954b8b5e14e5000bd60000c801c8740101a0a215de234276cac1b844fd58901351a50fec8a0023280000000000000002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c000000010201021fb3cf6e48f1e7b10213e7b6d87d4c073c7fdb7b0001f400000a0000000103478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f5780002000384a67cd00eb244edca2288346add251a783243c80001940000320163ce0102fc1f3296458f9b2a27a0b91dd7681c4020e09d050001f400000a00000000020002250e21dddd306579458cf025c5e230665171fb310027100000c800000001022ae3d6096d8215ac2acddf30c60caa984ea5debe000bb800003c00000000030103478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f57801020392b358ce4547601befa962680bede836606ae2000bb800003c0000000103f25bbc18a607bbe218c87ba1ff0e673d9b53dd58000aa70000c8042966000300020392b358ce4547601befa962680bede836606ae2000bb800003c0000000103f25bbc18a607bbe218c87ba1ff0e673d9b53dd58000aa70000c80429660003478946bcd4a5a22b316470f5486fafb928c0ba2500016000006402f578010300020392b358ce4547601befa962680bede836606ae2000bb800003c000000010185ff5b70de43fee34f3fa632addd9f76a0f6baa90001f400000000000001022e80d5a7b3c613d854ee43243ff09808108561eb000bb800003c00000000", + "nonce": "0x24d63", + "to": "0xa7154297f31d3a62785d747caea5b14f47e08cde", + "transactionIndex": "0x13", + "value": "0x0", + "v": "0x0", + "r": "0x9f9544f857dd9e230b771d42b47ae0f6b5a87b1afb450258b75d87a1f0e83d03", + "s": "0x11942acf0d72e56ec292422ef75fc2d63b77d17a1165bd1624403b946eabac58", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xcbd8eae56e5d51c82e9b901ff535906077c5ab32", + "gas": "0x5208", + "gasPrice": "0x8ea2e", + "hash": "0xbbef02c2bca1ad36569b5e998dbb413f898c07f10bdd5c12adfd23c87d6fa8d6", + "input": "0x", + "nonce": "0x16fb", + "to": "0xcbd8eae56e5d51c82e9b901ff535906077c5ab32", + "transactionIndex": "0x14", + "value": "0x1", + "v": "0x1", + "r": "0x9238959499ce4ed048c0b5d8890d878ac20c1a2ec26062df0864e0cfe05734d2", + "s": "0x65786b1a70dcc23258720bc58e0682f6ce3331e8f914a07a2287169d808e1991", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x8ed58", + "maxPriorityFeePerGas": "0x8e8c4", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xba2e784abd115ac22333cdf9a0a505d039cff4d5", + "gas": "0x3d0900", + "gasPrice": "0x2111a", + "hash": "0x59ad35b7852071ea018e8dd1d173f00920941d7300310b57c0938e5a338e7a15", + "input": "0x03000c010100003200010000000111110101010100002b6a182b7d2aba51e078451bc98ec77a1c7716eb010100006400010000000111110101010100000d174e4add9cbb9cf75cfe9a18dc67a1648a2a2200010000640001000000011111010101010000a8a4247ff4d02fe33d72244f5e799792e8e199f9", + "nonce": "0x8c9a7", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x15", + "value": "0x0", + "v": "0x1", + "r": "0xa4ecb1d3ae984e09f092a637b90bd611cc58b19f867c96934c698e89fd13f83e", + "s": "0x39744d371f7462c91547a47f568e1f64da0e0743cc7ec7a226500b57afb9d7cd", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x209704", + "maxPriorityFeePerGas": "0x20fb0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x47fd87c7f3b3dacaf0f3ed24703a8e76903fd1a6", + "gas": "0x3d0900", + "gasPrice": "0x2111a", + "hash": "0xb940c1f143a930fecf93d99355ec32aeaec8dc2c92bbe8ebe3e98b4170965739", + "input": "0x03000c010100003200010000000111110101010100002b6a182b7d2aba51e078451bc98ec77a1c7716eb010100006400010000000111110101010100000d174e4add9cbb9cf75cfe9a18dc67a1648a2a2200010000640001000000011111010101010000a8a4247ff4d02fe33d72244f5e799792e8e199f9", + "nonce": "0x8abf0", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x16", + "value": "0x0", + "v": "0x1", + "r": "0xa02cc0628f4e46372f29acbb4c4d855f4913228ca5b3cefbc154560d79e77351", + "s": "0x2b132d547d3294db55bb6f0f57e0d2a955aed75a9293840e51ad3437e597217d", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x209702", + "maxPriorityFeePerGas": "0x20fb0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xf97176641944edef942be2b9d4ee3d75b40c4581", + "gas": "0xb71b00", + "gasPrice": "0x1880a", + "hash": "0x848942931b22232277ae53403d5afecbda45c6ea3220cea6491a98429c4f928d", + "input": "0x00000000000068f277581b87d536e1dad578f36fa7b75a0de118ed4084cdbb51dbc0f56130c813ec48007a394db6a91dee4879b16cf3b0d426986e6e15ad0c52820b348b65e71f72a4a58514030003478946bcd4a5a22b316470f5486fafb928c0ba2500015c00006402f5790003ebd5311bea1948e1441333976eadcfe5fbda777c000aad0000c804595b010268f5c0a2de713a54991e01858fd27a3832401849000bb800003c00000000030003478946bcd4a5a22b316470f5486fafb928c0ba2500015c00006402f5790002b533c12fb4e7b53b5524eab9b47d93ff6c7a456f000bb800003c00000001034dc22588ade05c40338a9d95a6da9dcee68bcd6000017f0000c80163ce00040002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c0000000001f117719d5460ed6090814213433cb8d4e07bd583000bb80000000000000101477fa18b063b7728409570d274f7a055e3da0d6e000bb80000000000000102b589969d38ce76d3d7aa319de7133bc9755fd840000bb800003c000000000301023f60fca6c50ae3bcd95ae150b4c57f0ba5c3f2ad000bb800003c00000001011eaa860dca29a5124f665f7d80affed92e877681000bb80000000000000003478946bcd4a5a22b316470f5486fafb928c0ba2500015c00006402f57900020003478946bcd4a5a22b316470f5486fafb928c0ba2500015c00006402f5790002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c000000010200021fb3cf6e48f1e7b10213e7b6d87d4c073c7fdb7b0001f400000a0000000002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c00000001020003319c0dd36284ac24a6b2bee73929f699b9f48c3800013f000064fbfa3a010273b14a78a0d396c521f954532d43fd5ffe385216000bb800003c0000000003000339ed27d101aa4b7ce1cb4293b877954b8b5e14e5000bd60000c801c8740101a0a215de234276cac1b844fd58901351a50fec8a0023280000000000000003478946bcd4a5a22b316470f5486fafb928c0ba2500015c00006402f579010201021fb3cf6e48f1e7b10213e7b6d87d4c073c7fdb7b0001f400000a0000000103478946bcd4a5a22b316470f5486fafb928c0ba2500015c00006402f5790003000339ed27d101aa4b7ce1cb4293b877954b8b5e14e5000bd60000c801c8740101a0a215de234276cac1b844fd58901351a50fec8a0023280000000000000002c1738d90e2e26c35784a0d3e3d8a9f795074bca4000bb800003c00000001020103cf50dea65ee80ebddaa61005a960ef5a5c995a99000194000064feefb70102def705a1864bcba65e4e275bffd58de21b5d44a00027100000c800000000020003319c0dd36284ac24a6b2bee73929f699b9f48c3800013f000064fbfa3a010285c31ffa3706d1cce9d525a00f1c7d4a2911754c0001f400000a000000000300034dc22588ade05c40338a9d95a6da9dcee68bcd6000017f0000c80163ce0101e9581d0f1a628b038fc8b2a7f5a7d904f0e2f937002710000000000000010339ed27d101aa4b7ce1cb4293b877954b8b5e14e5000bd60000c801c87400030003478946bcd4a5a22b316470f5486fafb928c0ba2500015c00006402f5790001a0a215de234276cac1b844fd58901351a50fec8a002328000000000000010339ed27d101aa4b7ce1cb4293b877954b8b5e14e5000bd60000c801c87400020003478946bcd4a5a22b316470f5486fafb928c0ba2500015c00006402f57900021fb3cf6e48f1e7b10213e7b6d87d4c073c7fdb7b0001f400000a0000000102000384a67cd00eb244edca2288346add251a783243c80001940000320163ce0102fc1f3296458f9b2a27a0b91dd7681c4020e09d050001f400000a00000000020002250e21dddd306579458cf025c5e230665171fb310027100000c800000001022ae3d6096d8215ac2acddf30c60caa984ea5debe000bb800003c00000000030103478946bcd4a5a22b316470f5486fafb928c0ba2500015c00006402f57901020392b358ce4547601befa962680bede836606ae2000bb800003c0000000103f25bbc18a607bbe218c87ba1ff0e673d9b53dd58000aa70000c8042966000300020392b358ce4547601befa962680bede836606ae2000bb800003c0000000103f25bbc18a607bbe218c87ba1ff0e673d9b53dd58000aa70000c80429660003478946bcd4a5a22b316470f5486fafb928c0ba2500015c00006402f579010300020392b358ce4547601befa962680bede836606ae2000bb800003c000000010185ff5b70de43fee34f3fa632addd9f76a0f6baa90001f400000000000001022e80d5a7b3c613d854ee43243ff09808108561eb000bb800003c00000000", + "nonce": "0x45f07", + "to": "0xa7154297f31d3a62785d747caea5b14f47e08cde", + "transactionIndex": "0x17", + "value": "0x0", + "v": "0x0", + "r": "0xa51701dfe085a68c4f1ceff7f4da7c759d79a26ad76d974bdb64fd440fedb0a7", + "s": "0x5b015965e9be336262abb73ebac5f60c96499a2b78f7c8413e8b4f9b7784106d", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x186a0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xbddf90c826a5aa2ba40bc9f2694df2889c3dd290", + "gas": "0xf4240", + "gasPrice": "0x26270a", + "hash": "0x81584ca197d49b2be5fc9884d100e61362b825673a619dd4666a4f793dc179d7", + "input": "0x34e4b0b1000000000000000000000000000000000017917ad27094490000000000000000", + "nonce": "0x1a47e", + "to": "0x78fcaf392d340dc3e8e2258afdd5cea096dd0e47", + "transactionIndex": "0x18", + "value": "0x0", + "v": "0x0", + "r": "0xce11ef06340312dc2bb4291f512ea998672c855abd640d2e350b7f0138bd0886", + "s": "0x31d4fd4705ff2d653bc83d3be4fc7b1a0ebb550126ce9cbe035338fa61d02ee7", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x2627ca", + "maxPriorityFeePerGas": "0x2625a0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x2777acd9099dffba3ebc1a3793eb1f09a42a610c", + "gas": "0x21630", + "gasPrice": "0xf43aa", + "hash": "0x7aa937ac05e41c752d0e32fea4936e0a4767efadec2fa375939298ed1bfb037e", + "input": "0x8e0250ee000000000000000000000000000000000000000000000000000000000bebc20000000000000000000000000000000000000000000000000000000000000000130000000000000000000000002777acd9099dffba3ebc1a3793eb1f09a42a610c0000000000000000000000000b2c639c533813f4aa9d7837caf62653d097ff8500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e2000000000000000000000000000000000000000000000000000000000000003e8", + "nonce": "0xb5", + "to": "0x28b5a0e9c621a5badaa536219b3a228c8168cf5d", + "transactionIndex": "0x19", + "value": "0x0", + "v": "0x0", + "r": "0xa11eae7599a5e995b6d2c473bb59e3d2ba4786a8a40fbce666fa29daf15aa512", + "s": "0x6dc4a9b094a6f37a6444aa68c8e625eebc89d314da5b06cff4ef1627cdf6492f", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0xf4514", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x44198866839df987d115e3bda452610db879f893", + "gas": "0x3d0900", + "gasPrice": "0x2111a", + "hash": "0xfa379ad8225ecfe199b94ab5c7500b9b8e2b0e7c652afe57053afd36cdda4af5", + "input": "0x03000c010100003200010000000111110101010100002b6a182b7d2aba51e078451bc98ec77a1c7716eb010100006400010000000111110101010100000d174e4add9cbb9cf75cfe9a18dc67a1648a2a2200010000640001000000011111010101010000a8a4247ff4d02fe33d72244f5e799792e8e199f9", + "nonce": "0x87bd0", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x1a", + "value": "0x0", + "v": "0x1", + "r": "0xb4e520ccff127fd2e28aedb5fe6d3edd7158f5dd3c7e86fab3a287d31b402c98", + "s": "0xd54f9b7073d30bdb85b1bf9815a5695678c58bed5e4034b54ada441942d97e3", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x209702", + "maxPriorityFeePerGas": "0x20fb0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x2b9d5ee187892af23ddd328ce0774de81465800d", + "gas": "0x3d0900", + "gasPrice": "0x4847", + "hash": "0x654d3eb94fb76ca9b96797223d09847cbe2b47c4e91257801f76eb23e6750a57", + "input": "0x02000c0001000190003200000001111101010101000084a76dc11fb244edca2299257bcd350a682243d900010001f4000a000000011111010101010000fc1e2387548f9b2a27a0a80cc6780c5030f09d14", + "nonce": "0x87db0", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x1b", + "value": "0x0", + "v": "0x1", + "r": "0xb1c310b53490e4d9e4cf8a29229b739d51eea9f6e761f421de1fa646e733fdc6", + "s": "0x244e870be254c66dbd9f2a78dd431922293be3620139d0056af27c2b749e49bb", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1ece2f", + "maxPriorityFeePerGas": "0x46dd", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xcbd8eae56e5d51c82e9b901ff535906077c5ab32", + "gas": "0x5208", + "gasPrice": "0x5dd6e", + "hash": "0x11fa21ba731355e6f310ff9de56fc7be28588fbdab3da63e4c9314d86aa0a888", + "input": "0x", + "nonce": "0x16fc", + "to": "0xcbd8eae56e5d51c82e9b901ff535906077c5ab32", + "transactionIndex": "0x1c", + "value": "0x1", + "v": "0x0", + "r": "0xc6ad5de2e87c9eb62b84440edae0976a8260010c61a064af96f9706f1f230356", + "s": "0xefbbcb1259ed8b29c5cf40d376dfd3b4e95ad94e82819db1f40e1db7c5f6d9", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x5e09b", + "maxPriorityFeePerGas": "0x5dc04", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x94ad460d19a22a576f7bdb90eca49c2c21fabb46", + "gas": "0xe4e1c0", + "gasPrice": "0x282aa", + "hash": "0xd211068cc7f8b84f380c349bd5b5f8cae27d2be62130b2c2fccf91e087cdeaf3", + "input": "0x424b4f820000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xa5d9", + "to": "0xcdea8e6f9c6a4e9428dbf6700475c73ebc03b5fe", + "transactionIndex": "0x1d", + "value": "0x0", + "v": "0x1", + "r": "0x21e794da93e73ef214ed0344f4067496a8a1fd08b48053e668aef530810e83df", + "s": "0x5504e966eb28fbf2e5832c041fd58d367e3dab633eeef5ea001dcf7fdfa15dc0", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x28f5a", + "maxPriorityFeePerGas": "0x28140", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xb1e8ff77642c76a8c30db6db31a45b6146db5ce5", + "gas": "0x3d0900", + "gasPrice": "0x2111a", + "hash": "0x6bac9575612da27b7bbc362519a4fdec61938984f1afd908c37b5d9f4d46f768", + "input": "0x03000c010100003200010000000111110101010100002b6a182b7d2aba51e078451bc98ec77a1c7716eb010100006400010000000111110101010100000d174e4add9cbb9cf75cfe9a18dc67a1648a2a2200010000640001000000011111010101010000a8a4247ff4d02fe33d72244f5e799792e8e199f9", + "nonce": "0x87a76", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x1e", + "value": "0x0", + "v": "0x1", + "r": "0x3da1af3e3064e72800ffb66a1221b8e47b250b0b7af66e3c09319a0d13631713", + "s": "0x4091cbe930d926aad4fe9d5378b44f13264b7563cfa68d664843b609c8046358", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x209702", + "maxPriorityFeePerGas": "0x20fb0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x45a07f120b36bfeb602a3880fc1629a879ba487b", + "gas": "0x3d0900", + "gasPrice": "0x4847", + "hash": "0x5ba4e6242cf496ed23dcb5bd4fca320c072fa981583aa74b9e735b8512d715be", + "input": "0x02000c0001000190003200000001111101010101000084a76dc11fb244edca2299257bcd350a682243d900010001f4000a000000011111010101010000fc1e2387548f9b2a27a0a80cc6780c5030f09d14", + "nonce": "0x8778e", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x1f", + "value": "0x0", + "v": "0x1", + "r": "0x6830e2238a822ad0cb0c2289fa95a6ac5eba15ebf865a76f15cc625ce2c72a39", + "s": "0x72d7dec8b0ded4316a9d2cfe86192dedfc611e98c7fca574580258e204a296b7", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1ece2f", + "maxPriorityFeePerGas": "0x46dd", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xd9a0d632a1bac9e266e9277b53127f0e606289d6", + "gas": "0xe4e1c0", + "gasPrice": "0x48f", + "hash": "0x7b49070e8d775020601f369902177a4c2ff76259d9f18a0246dfe3d35733f84b", + "input": "0x424b4f820000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x9f09", + "to": "0xcdea8e6f9c6a4e9428dbf6700475c73ebc03b5fe", + "transactionIndex": "0x20", + "value": "0x0", + "v": "0x0", + "r": "0x88f0255e05fbff728ce2d9333df66cd5fe6b6a0b40d6a25a434e85d2e09bc932", + "s": "0x1868ebaf8382356b70cd20f6fc35046d9a1fbb4c56754be45f8c9f9dc7ab5ad4", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x113f", + "maxPriorityFeePerGas": "0x325", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xa7b667dc4f0e12c3927e6c05928a082d5af0a686", + "gas": "0xe4e1c0", + "gasPrice": "0x1880a", + "hash": "0x818b395e54a19c40c2351c72d4535aaebd300c01f92650585966beeede76af99", + "input": "0x424b4f820000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xa533", + "to": "0xcdea8e6f9c6a4e9428dbf6700475c73ebc03b5fe", + "transactionIndex": "0x21", + "value": "0x0", + "v": "0x0", + "r": "0xf6bd042abe3fbd8ad8719886b468640cee1c2623ce7387d8a182778b07b811f5", + "s": "0x2e46b494cec1612064c91e3c007b2a368386ef90d5a274bb5a391d1a6832f041", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x194ba", + "maxPriorityFeePerGas": "0x186a0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0xca1ef33a9522ef11265858592f0209b45473c846", + "gas": "0xf0450", + "gasPrice": "0x1880a", + "hash": "0xc89f979fb7463be4f7c2b167f2a0071eee15cf1c80717cc7a559d20baaa9dbd7", + "input": "0x1fad948c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ca1ef33a9522ef11265858592f0209b45473c8460000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000087a4ba293b8c7b2180e3e505359add7528e419880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000013a200000000000000000000000000000000000000000000000000000000000061a80000000000000000000000000000000000000000000000000000000000007f2ba000000000000000000000000000000000000000000000000000000000001ea67000000000000000000000000000000000000000000000000000000000001e8480000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000f8ab468a1ba9a57c4f313a0fcd579fbd748f4845993ffba36f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040a5652e7992acb872308db9ac42e06b1b27e2fc52db9af1472a222ae741396a769d3ab451a5cb7c90bdadfa5c91d7388d38f605d5a490316f9628b2158a3c9665000000000000000000000000000000000000000000000000000000000000000000000000000000a4b61d27f60000000000000000000000005094140d044765e6c5da2c8501b20e8a8348610f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000041249c58b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000018dadc32f0cdd98b8202c78ada3c0d2e9d1e3186d4674a599222be80082738c86129648293158a71be5bc8c7b035c34b29e62f0ed42f5749198212e5ae420f2100000000000000000000000000000000000000000000000000000000000000025e20da87d7053ef533c6cf994ee86468ce1eef521f27797b1cfdaf7c069d2fa551d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c57b2274797065223a22776562617574686e2e676574222c226368616c6c656e6765223a2242336c67536432716d32736554313351327a6a554a6b36716968514173676e64436c5a6f595a7862374645222c226f726967696e223a22616e64726f69643a61706b2d6b65792d686173683a7530495649675f574f7437314f4251784f3870745f384f6a47766274454766536d524b4352386435496b49222c22616e64726f69645061636b6167654e616d65223a22636f6d2e7068656d65782e70756c7365227d000000000000000000000000000000000000000000000000000000", + "nonce": "0x786", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": "0x22", + "value": "0x0", + "v": "0x1", + "r": "0xd6de091013c096c863308d64bfcdebc766b63737cb2bf836564f25331d403830", + "s": "0x3c728d9cd70683f02f6b7e6d4a01fd6644f29c374a9a8d5e8513bf2d0279fb14", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1886b", + "maxPriorityFeePerGas": "0x186a0", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x5920142e65c83ad7afea61817dbb5cf80197aca5", + "gas": "0x3d0900", + "gasPrice": "0x4847", + "hash": "0x28da257738dfa52d33ef22ce9613008b0a76898479a3442bff0fd6fd14b0b63f", + "input": "0x02000c0001000190003200000001111101010101000084a76dc11fb244edca2299257bcd350a682243d900010001f4000a000000011111010101010000fc1e2387548f9b2a27a0a80cc6780c5030f09d14", + "nonce": "0x87fc4", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x23", + "value": "0x0", + "v": "0x1", + "r": "0xcf814835e1f1b91ba816354afd4270de6b99d68bfe4fbcf99ff81303fab15e6f", + "s": "0xcb7013e58e350e4f4a89edda988166dd184d68192b319404b33263541d0c34d", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1ece2f", + "maxPriorityFeePerGas": "0x46dd", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x2ac1dc050aab495ff26c2156d5e4e53f14bdf618", + "gas": "0x3d0900", + "gasPrice": "0x4847", + "hash": "0xc34ea578235b4ceb4f7de04075829ef4df8480751ebe386bbc46f98e252ae014", + "input": "0x02000c0001000190003200000001111101010101000084a76dc11fb244edca2299257bcd350a682243d900010001f4000a000000011111010101010000fc1e2387548f9b2a27a0a80cc6780c5030f09d14", + "nonce": "0x87ce9", + "to": "0x61d1e5e08c20b5628bc81f67952dbd01441cbffb", + "transactionIndex": "0x24", + "value": "0x0", + "v": "0x0", + "r": "0x7103c742fa950b98f7b54e659b265084f1e7999e8e29272ed5354513517c0800", + "s": "0x1ea3b7dfc2b2690aac0120d85777e6aeb0803ea24b61c64e19b61fa7dec50c73", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1ece2f", + "maxPriorityFeePerGas": "0x46dd", + "accessList": [] + }, + { + "blockHash": "0x2b245b19e689dac10f372d917e6a12cb317345a05512aa3c6cf67f1ef23214c9", + "blockNumber": "0x87f4eb2", + "from": "0x4a7aef5c02945987a5398283f2e0d0d27c89c13a", + "gas": "0x1c22260", + "gasPrice": "0x1ce", + "hash": "0x0c0fc6f06d490b001f1c183e2f6e8ecf18fdca42f3639c5e8508dcfb7d077ee5", + "input": "0x8973e2cb00000000000000000000000000000000000000000000000000000000000000aa000000000000000000000000000000000000000000000000000000000000020e", + "nonce": "0x47", + "to": "0x0000000000771a79d0fc7f3b7fe270eb4498f20b", + "transactionIndex": "0x25", + "value": "0x0", + "v": "0x0", + "r": "0xec4f41ccaf64dc49f5a29c891819138c091e5f94f31fc7cb574f76bb27da16e9", + "s": "0x1bbbef21f6b815cb9f27306b6619b12b6367f5c21182f71723f9db25bfb9b7e0", + "type": "0x2", + "chainId": "0xa", + "maxFeePerGas": "0x1388", + "maxPriorityFeePerGas": "0x64", + "accessList": [] + } + ], + "uncles": [] +}` + +const gasPriceJSON = `0xf43aa` + +const maxPriorityFeePerGasJSON = `0xf4240` + +const feeHistoryJSON = `{ + "OldestBlock": 142559923, + "Reward": [ + [ + 0, + 5, + 5, + 12192, + 12192, + 36646, + 39615, + 47627, + 100000, + 100000, + 100000, + 102470, + 113906, + 257547, + 405267, + 1000000, + 1000000, + 1000000, + 1037028, + 2833450, + 100000000 + ], + [ + 0, + 1, + 506, + 977, + 1981, + 2062, + 22818, + 36344, + 39615, + 64655, + 100000, + 100000, + 100000, + 114514, + 257547, + 405255, + 405255, + 1000000, + 1000000, + 3017239, + 25100952 + ], + [ + 0, + 1, + 5, + 866, + 866, + 13469, + 25524, + 64655, + 64655, + 100000, + 100000, + 125951, + 132010, + 143896, + 173472, + 176092, + 363433, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1, + 5, + 5, + 936, + 936, + 3403, + 9754, + 22243, + 67470, + 100000, + 100000, + 100000, + 124772, + 178926, + 197472, + 331043, + 1000000, + 1003130, + 1822024, + 25023133 + ], + [ + 0, + 1, + 5, + 739, + 12191, + 12191, + 22243, + 28455, + 67470, + 100000, + 100000, + 100000, + 100000, + 100000, + 116537, + 124772, + 331043, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 5, + 746, + 1530, + 1530, + 1530, + 1530, + 7251, + 67470, + 100000, + 100000, + 100000, + 107700, + 124772, + 124772, + 136528, + 331043, + 570819, + 1064091, + 25008000 + ], + [ + 0, + 1, + 5, + 5, + 505, + 653, + 2442, + 22243, + 49976, + 67470, + 100000, + 100000, + 124772, + 189685, + 331043, + 441452, + 1000000, + 1150073, + 4000000, + 5059421, + 281672960 + ], + [ + 0, + 1, + 5, + 5, + 22243, + 25480, + 67470, + 100000, + 100000, + 100000, + 124772, + 144475, + 188398, + 1000000, + 1091848, + 1179178, + 2200564, + 10038348, + 25000000, + 34056182, + 96091573 + ], + [ + 0, + 1, + 101, + 101, + 101, + 101, + 101, + 140, + 12191, + 17198, + 22243, + 100000, + 100000, + 100000, + 111238, + 124772, + 331043, + 1000000, + 1150073, + 3419292, + 25003493 + ], + [ + 0, + 1, + 633, + 9754, + 16219, + 22243, + 67470, + 100000, + 100000, + 100000, + 106614, + 110000, + 331043, + 635502, + 1000000, + 1107132, + 1498643, + 10000000, + 25000000, + 25052461, + 100929054 + ], + [ + 0, + 1, + 5, + 817, + 2442, + 11271, + 19654, + 41971, + 74628, + 100000, + 100000, + 197208, + 349079, + 349079, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 3425642, + 8663551 + ], + [ + 0, + 1, + 5, + 5, + 308, + 33947, + 41971, + 41971, + 74628, + 100000, + 100000, + 100000, + 107066, + 110000, + 112388, + 349079, + 349079, + 1000000, + 1150073, + 25171487, + 100046530 + ], + [ + 0, + 5, + 441, + 4878, + 12191, + 41971, + 74628, + 100000, + 100000, + 139259, + 139259, + 139259, + 139259, + 139259, + 139259, + 349079, + 1000000, + 1150073, + 1150073, + 13470193, + 26467969 + ], + [ + 0, + 5, + 5, + 5, + 5, + 399, + 464, + 29018, + 74628, + 100000, + 177789, + 349079, + 369491, + 482664, + 1000000, + 1017957, + 1150073, + 1150073, + 1422139, + 25006328, + 99229949 + ], + [ + 0, + 1, + 34, + 2021, + 2651, + 2651, + 41971, + 74628, + 100000, + 100000, + 100000, + 107066, + 152051, + 191085, + 349079, + 1010004, + 1143023, + 1150073, + 1637930, + 25026138, + 39132110 + ], + [ + 0, + 1, + 4, + 4, + 238, + 4436, + 19921, + 33671, + 45387, + 88566, + 100000, + 100000, + 100000, + 114869, + 177807, + 349079, + 1000000, + 1000000, + 2080127, + 25064721, + 100046530 + ], + [ + 0, + 1, + 264, + 432, + 446, + 1276, + 1276, + 9079, + 20059, + 25528, + 33671, + 88566, + 88566, + 100000, + 100000, + 100000, + 439016, + 1000000, + 1000000, + 1558347, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 346, + 4328, + 12720, + 20059, + 33671, + 88566, + 100000, + 100000, + 133280, + 159301, + 159301, + 439016, + 1000000, + 1000000, + 1000000, + 1350165, + 1566436 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 718, + 33671, + 34440, + 88566, + 100000, + 100000, + 197839, + 439016, + 1000000, + 1000000, + 1000000, + 1000001, + 2258713, + 25021589 + ], + [ + 0, + 1, + 210, + 210, + 13239, + 13239, + 33671, + 42059, + 42238, + 94060, + 100000, + 100000, + 100000, + 100000, + 196961, + 349930, + 465520, + 1000000, + 1000000, + 1574930, + 25019898 + ], + [ + 0, + 1, + 5, + 916, + 1278, + 1278, + 19817, + 38251, + 42238, + 42238, + 94060, + 100000, + 100000, + 100000, + 189097, + 189097, + 349930, + 1000000, + 1583849, + 10000000, + 100046333 + ], + [ + 0, + 1, + 133, + 133, + 1203, + 13239, + 19817, + 42238, + 94060, + 100000, + 100000, + 100000, + 100000, + 109618, + 110000, + 349930, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 5, + 633, + 633, + 2651, + 2651, + 19817, + 42238, + 42238, + 44696, + 94060, + 94060, + 100000, + 100000, + 100000, + 162778, + 162778, + 349930, + 1000000, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 5, + 430, + 6754, + 19817, + 42238, + 100000, + 100000, + 100000, + 145663, + 349930, + 1000001, + 1000001, + 1000001, + 1000001, + 1822524 + ], + [ + 0, + 1, + 5, + 447, + 447, + 1279, + 1279, + 19817, + 24309, + 42238, + 42238, + 94060, + 94060, + 100000, + 100000, + 100000, + 147219, + 163946, + 349930, + 1000000, + 25018911 + ], + [ + 0, + 1, + 120, + 394, + 7946, + 7946, + 19817, + 29337, + 29337, + 42238, + 94060, + 100000, + 100000, + 100000, + 147219, + 189912, + 349930, + 349930, + 1000000, + 1594176, + 1725138 + ], + [ + 0, + 1, + 86, + 13240, + 13240, + 18467, + 19817, + 19817, + 42238, + 42238, + 94060, + 100000, + 100000, + 100000, + 100000, + 104774, + 349930, + 1000000, + 1594669, + 4000000, + 4000000 + ], + [ + 0, + 1, + 5, + 562, + 2653, + 2653, + 19817, + 40451, + 90438, + 90438, + 90438, + 94060, + 100000, + 100000, + 100000, + 121711, + 349930, + 1000000, + 1000001, + 4917710, + 100000000 + ], + [ + 0, + 4, + 54, + 54, + 101, + 101, + 101, + 101, + 101, + 101, + 411, + 42238, + 45606, + 86788, + 94060, + 100000, + 100000, + 104653, + 349930, + 1000000, + 1865788 + ], + [ + 0, + 1, + 5, + 5, + 5, + 648, + 779, + 14430, + 23462, + 82088, + 100000, + 100000, + 100000, + 120219, + 120219, + 349930, + 1000000, + 1000000, + 1000000, + 1005000, + 1595782 + ], + [ + 0, + 1, + 5, + 5, + 55, + 23462, + 23462, + 29385, + 82088, + 100000, + 100000, + 100000, + 100000, + 112913, + 246470, + 507537, + 1000000, + 1000000, + 1596925, + 4000000, + 100045936 + ], + [ + 0, + 1, + 70, + 2151, + 2151, + 3813, + 23462, + 23462, + 74963, + 74963, + 82088, + 82088, + 100000, + 100000, + 100000, + 110300, + 199634, + 246470, + 246470, + 1000000, + 100045936 + ], + [ + 0, + 1, + 71, + 7945, + 7945, + 10000, + 15225, + 23462, + 82088, + 100000, + 100000, + 100000, + 177517, + 177517, + 246470, + 1000000, + 1000000, + 1000000, + 1000000, + 1749564, + 10000000 + ], + [ + 0, + 1, + 81, + 81, + 1281, + 1281, + 2651, + 23462, + 23462, + 26166, + 82088, + 82088, + 100000, + 100000, + 100000, + 106666, + 196968, + 196968, + 246470, + 1000000, + 100000000 + ], + [ + 0, + 1, + 762, + 762, + 10592, + 23462, + 23462, + 41731, + 82088, + 82088, + 100000, + 100000, + 100000, + 109400, + 109400, + 126635, + 246470, + 246470, + 1000000, + 1600650, + 32716877 + ], + [ + 0, + 1, + 5, + 5, + 261, + 23462, + 23462, + 28705, + 77758, + 77758, + 82088, + 82088, + 100000, + 100000, + 100000, + 182045, + 246470, + 246470, + 1000000, + 1000000, + 8381296 + ], + [ + 0, + 1, + 510, + 2151, + 2151, + 7166, + 23462, + 23462, + 82088, + 100000, + 100000, + 100000, + 128496, + 143677, + 246470, + 246470, + 1000000, + 1000000, + 4000000, + 4000000, + 46528822 + ], + [ + 0, + 1, + 5, + 73, + 881, + 15813, + 23462, + 23462, + 82088, + 100000, + 100000, + 100000, + 100000, + 138014, + 246470, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 101, + 101, + 101, + 101, + 101, + 101, + 1283, + 1283, + 13240, + 16924, + 23462, + 82088, + 100000, + 100000, + 246470, + 1000000, + 1000000, + 1552552, + 25004675 + ], + [ + 0, + 1, + 5, + 5, + 373, + 373, + 23462, + 44802, + 50634, + 82088, + 100000, + 100000, + 151710, + 246470, + 391061, + 1000000, + 1000000, + 1000000, + 6720157, + 33156066, + 41431438 + ], + [ + 0, + 1, + 401, + 7946, + 7946, + 21960, + 39232, + 50634, + 50634, + 100000, + 100000, + 100000, + 122147, + 391061, + 618905, + 1150073, + 1438156, + 1614864, + 3150441, + 25277718, + 257623787 + ], + [ + 0, + 1, + 919, + 9297, + 10594, + 21960, + 40401, + 50634, + 50634, + 100000, + 100000, + 100000, + 106533, + 391061, + 1000000, + 1617935, + 3000000, + 3954243, + 20049032, + 25180365, + 43155731 + ], + [ + 0, + 1, + 5, + 5, + 5, + 322, + 1873, + 1873, + 21960, + 50634, + 100000, + 100000, + 100000, + 108015, + 115091, + 391061, + 1000000, + 1000000, + 1000000, + 1618089, + 25001097 + ], + [ + 0, + 1, + 93, + 93, + 2653, + 21960, + 21960, + 48674, + 50634, + 50634, + 82088, + 100000, + 100000, + 100000, + 100000, + 172707, + 391061, + 391061, + 1000000, + 1621160, + 25105224 + ], + [ + 0, + 1, + 431, + 2653, + 2653, + 19556, + 21960, + 21960, + 50634, + 83994, + 100000, + 100000, + 100000, + 115484, + 391061, + 502323, + 1000001, + 1197384, + 3467969, + 25121340, + 43238767 + ], + [ + 0, + 1, + 329, + 2653, + 3335, + 8042, + 21960, + 50634, + 100000, + 100000, + 100000, + 100000, + 198172, + 391061, + 1000000, + 1000000, + 1000000, + 1000000, + 1000001, + 1624846, + 65714129 + ], + [ + 0, + 1, + 5, + 5, + 737, + 1285, + 21960, + 27943, + 50634, + 100000, + 100000, + 391061, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000001, + 1628532, + 10000000, + 47116320 + ], + [ + 0, + 1, + 5, + 5, + 189, + 2151, + 2151, + 16677, + 21960, + 36803, + 50634, + 50634, + 100000, + 100000, + 100000, + 152067, + 391061, + 391061, + 1000000, + 1000000, + 1628717 + ], + [ + 0, + 1, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 330, + 599, + 21960, + 46647, + 90634, + 100000, + 100000, + 100000, + 176763, + 391061, + 1632782, + 40023450 + ], + [ + 0, + 1, + 5, + 430, + 12370, + 13240, + 41487, + 41487, + 51330, + 100000, + 100000, + 100000, + 166380, + 172391, + 1000000, + 1150072, + 1244724, + 1637051, + 9913136, + 25043619, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 903, + 903, + 10593, + 12370, + 15852, + 47129, + 51330, + 87343, + 100000, + 100000, + 100000, + 163049, + 166380, + 1000000, + 1000000, + 12970867, + 25118168 + ], + [ + 0, + 1, + 117, + 1285, + 1285, + 13240, + 13240, + 31685, + 51330, + 81910, + 81910, + 100000, + 100000, + 100000, + 166380, + 179156, + 1000000, + 1000000, + 1000000, + 1000000, + 2999540 + ], + [ + 0, + 1, + 5, + 5, + 10, + 10, + 313, + 639, + 1292, + 1917, + 13546, + 16459, + 51330, + 100000, + 100000, + 100000, + 152248, + 166380, + 1000000, + 1645803, + 20009449 + ], + [ + 0, + 1, + 380, + 380, + 16034, + 16034, + 51330, + 100000, + 100000, + 100000, + 149477, + 166380, + 605871, + 1150072, + 1150072, + 1150072, + 1641759, + 3236766, + 25004614, + 40536048, + 1500000000 + ], + [ + 0, + 1, + 5, + 284, + 284, + 12370, + 41067, + 51330, + 100000, + 100000, + 100000, + 100000, + 142288, + 166380, + 1000000, + 1150072, + 1641996, + 10847051, + 25258429, + 31070990, + 100000000 + ], + [ + 0, + 5, + 5, + 437, + 1285, + 1292, + 37344, + 100000, + 100000, + 166380, + 1000000, + 1019444, + 1179188, + 1310260, + 1441332, + 1834548, + 2031156, + 2200552, + 11773404, + 25388997, + 100045540 + ], + [ + 0, + 1, + 5, + 300, + 7945, + 12370, + 35323, + 51330, + 100000, + 100000, + 100000, + 150042, + 166380, + 370719, + 1000000, + 1150071, + 1375795, + 2031155, + 25024413, + 26516201, + 339988726 + ], + [ + 0, + 705, + 934, + 1977, + 1977, + 2651, + 2651, + 14625, + 32652, + 51330, + 100000, + 100000, + 166380, + 248534, + 618905, + 1000000, + 1642482, + 3599539, + 3599539, + 3599539, + 25112884 + ], + [ + 0, + 1, + 5, + 101, + 101, + 101, + 101, + 101, + 351, + 3551, + 29342, + 66669, + 100000, + 100000, + 100000, + 177885, + 283027, + 1150072, + 4717881, + 20000000, + 25049400 + ], + [ + 0, + 10, + 670, + 2151, + 4768, + 4768, + 6400, + 15608, + 22390, + 45045, + 62355, + 100000, + 100000, + 141972, + 167017, + 412310, + 1000000, + 1150072, + 2905858, + 17977839, + 31229859 + ], + [ + 0, + 5, + 5, + 5, + 5, + 411, + 15322, + 24826, + 62355, + 100000, + 100000, + 100000, + 100000, + 183892, + 1000000, + 1000000, + 1350161, + 2200553, + 10000000, + 20000000, + 28606080 + ], + [ + 0, + 83, + 146, + 146, + 433, + 944, + 1284, + 7994, + 15322, + 17593, + 36660, + 62355, + 100000, + 100000, + 100000, + 158245, + 164696, + 412310, + 1000000, + 10000000, + 100045639 + ], + [ + 0, + 5, + 5, + 5, + 9601, + 51330, + 51330, + 51330, + 100000, + 110147, + 135946, + 1000000, + 1000000, + 1113651, + 1200092, + 1375795, + 1834547, + 2031155, + 24264749, + 109215612, + 130124501 + ], + [ + 0, + 5, + 689, + 1320, + 9601, + 10593, + 16875, + 26801, + 43941, + 55582, + 96144, + 100000, + 100000, + 164696, + 179408, + 1000000, + 1000000, + 1000000, + 1150073, + 17897926, + 32408800 + ], + [ + 0, + 1, + 990, + 1396, + 1396, + 4132, + 7947, + 21055, + 22635, + 26801, + 44501, + 100000, + 100000, + 123110, + 137411, + 164696, + 288041, + 1000000, + 1150072, + 2136978, + 42107368 + ], + [ + 0, + 1, + 469, + 2151, + 3691, + 9601, + 24168, + 26801, + 47742, + 96144, + 100000, + 100000, + 100000, + 100000, + 164696, + 165135, + 1000000, + 1000000, + 1000000, + 6627794, + 25188090 + ], + [ + 0, + 5, + 1686, + 2210, + 39725, + 100000, + 137941, + 198253, + 1000000, + 1000000, + 1003060, + 1150072, + 1375796, + 1597454, + 2031156, + 2031156, + 2031156, + 2091086, + 9280807, + 25238057, + 1176033244 + ], + [ + 0, + 187, + 1285, + 26801, + 38090, + 96144, + 100000, + 100000, + 121889, + 164696, + 291540, + 999999, + 1000000, + 1000009, + 1200092, + 1550252, + 3599539, + 13572474, + 25082812, + 25612082, + 100260214 + ], + [ + 0, + 101, + 101, + 101, + 101, + 950, + 10592, + 11220, + 44075, + 77214, + 100000, + 100000, + 124537, + 164696, + 204735, + 214420, + 1000000, + 1500000, + 1500000, + 1500000, + 500000000 + ], + [ + 0, + 1, + 9601, + 13238, + 19700, + 26801, + 60497, + 96144, + 100000, + 100000, + 164696, + 165796, + 166380, + 166581, + 181639, + 204735, + 204735, + 999999, + 1000000, + 1000000, + 100045638 + ], + [ + 0, + 1, + 315, + 11775, + 13238, + 30920, + 48737, + 59239, + 100000, + 100000, + 104131, + 148257, + 1000000, + 1000000, + 1500000, + 1500000, + 1500000, + 1500000, + 1500000, + 11466354, + 41660726 + ], + [ + 0, + 1, + 5, + 1283, + 1283, + 30087, + 30920, + 32614, + 60497, + 65920, + 100000, + 100000, + 100000, + 129957, + 130591, + 166380, + 219970, + 510446, + 1100000, + 1200092, + 1716178 + ], + [ + 0, + 5, + 5, + 5, + 406, + 868, + 6222, + 10000, + 20754, + 54440, + 100000, + 100000, + 100000, + 133516, + 134096, + 150520, + 340981, + 1000000, + 1000000, + 10000000, + 1600178798 + ], + [ + 0, + 1, + 5, + 5, + 696, + 2151, + 2151, + 9085, + 20754, + 54440, + 100000, + 100000, + 100000, + 100000, + 133516, + 133516, + 340981, + 1000000, + 1000000, + 1674512, + 1725502 + ], + [ + 0, + 1, + 56, + 56, + 56, + 805, + 8499, + 20754, + 20939, + 20939, + 54440, + 100000, + 100000, + 100000, + 100620, + 133516, + 166380, + 169269, + 340981, + 1000000, + 1734867 + ], + [ + 0, + 1, + 463, + 864, + 8499, + 9006, + 20754, + 54440, + 100000, + 100000, + 100000, + 100000, + 133516, + 135835, + 168741, + 340981, + 379732, + 1000000, + 1150072, + 20020248, + 25032887 + ], + [ + 0, + 4, + 4, + 21, + 359, + 505, + 505, + 610, + 610, + 20754, + 40777, + 100000, + 100000, + 100000, + 133516, + 174278, + 340981, + 1000000, + 1744701, + 4000000, + 100000000 + ], + [ + 0, + 1, + 5, + 291, + 291, + 15982, + 20754, + 28032, + 54440, + 54440, + 100000, + 100000, + 100000, + 108265, + 133516, + 340981, + 340981, + 1000000, + 1000000, + 1000000, + 1755027 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 707, + 13521, + 20754, + 26241, + 54440, + 100000, + 100000, + 100000, + 133516, + 193567, + 340981, + 1200092, + 1765353 + ], + [ + 0, + 1, + 5, + 5, + 622, + 15576, + 17370, + 36359, + 36359, + 40808, + 54440, + 100000, + 100000, + 100000, + 100000, + 133516, + 147916, + 340981, + 1000000, + 1000000, + 1765870 + ], + [ + 0, + 5, + 5, + 187, + 187, + 187, + 187, + 187, + 1382, + 10847, + 15576, + 40808, + 60377, + 100000, + 100000, + 139791, + 173149, + 180896, + 1000000, + 1100046, + 1776196 + ], + [ + 0, + 1, + 427, + 505, + 505, + 1401, + 13795, + 14162, + 15576, + 40808, + 44214, + 100000, + 100000, + 128963, + 173149, + 502510, + 1000000, + 1502429, + 2412471, + 7926398, + 25008160 + ], + [ + 0, + 5, + 5, + 625, + 15576, + 40808, + 42010, + 53030, + 100000, + 100000, + 100000, + 119560, + 138780, + 173149, + 1000000, + 1000000, + 1150072, + 1617206, + 2031154, + 16527071, + 137880913 + ], + [ + 0, + 5, + 111, + 111, + 2391, + 11330, + 15189, + 15576, + 21858, + 40808, + 100000, + 100000, + 100000, + 141007, + 156628, + 164917, + 185690, + 1000000, + 1000000, + 1479216, + 100045738 + ], + [ + 0, + 1, + 10, + 10, + 10, + 10, + 15576, + 15576, + 40808, + 46000, + 46000, + 79935, + 100000, + 100000, + 100000, + 159939, + 159939, + 173149, + 1000000, + 1767584, + 25007453 + ], + [ + 0, + 1, + 5, + 5, + 925, + 1380, + 1382, + 1444, + 10000, + 10000, + 15576, + 36162, + 40808, + 74012, + 100000, + 131760, + 173149, + 1000000, + 1000000, + 20000000, + 25002333 + ], + [ + 0, + 5, + 5, + 696, + 2505, + 2505, + 10479, + 10479, + 15576, + 24973, + 40808, + 66558, + 66558, + 79935, + 100000, + 100000, + 100000, + 156337, + 173149, + 1000000, + 25029890 + ], + [ + 0, + 1, + 268, + 837, + 926, + 1382, + 1382, + 15576, + 35226, + 40808, + 40808, + 66118, + 100000, + 100000, + 100000, + 134933, + 173149, + 173149, + 182493, + 1000000, + 100000000 + ], + [ + 0, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 119, + 11330, + 15576, + 23926, + 39577, + 40808, + 66118, + 100000, + 100000, + 127075, + 135682, + 1000000, + 25048180 + ], + [ + 0, + 1, + 459, + 2836, + 2836, + 9799, + 9799, + 15576, + 28019, + 40808, + 60215, + 100000, + 100000, + 148656, + 173149, + 182858, + 182858, + 513472, + 513472, + 1000000, + 1770268 + ], + [ + 0, + 1, + 5, + 228, + 5274, + 20937, + 35847, + 60215, + 100000, + 100000, + 100000, + 387543, + 424742, + 1000001, + 1770303, + 2200555, + 10000000, + 10000000, + 20000000, + 25218854, + 100187676 + ], + [ + 0, + 100, + 100, + 607, + 1382, + 2506, + 2528, + 10000, + 18467, + 34119, + 35847, + 100000, + 100000, + 116312, + 140244, + 140244, + 170655, + 424742, + 1150072, + 9532969, + 75361101 + ], + [ + 0, + 5, + 5, + 63, + 1181, + 2811, + 11330, + 15164, + 18467, + 60215, + 100000, + 116802, + 142198, + 424742, + 1000000, + 1000001, + 1150072, + 1550253, + 1770340, + 25079905, + 75362374 + ], + [ + 0, + 1, + 1000, + 2836, + 18467, + 32665, + 35847, + 52654, + 60215, + 100000, + 100000, + 100000, + 195795, + 251035, + 424742, + 1000000, + 1200092, + 1771835, + 25127812, + 42759934, + 100240005 + ], + [ + 0, + 4, + 5, + 5, + 462, + 1619, + 1811, + 12402, + 51472, + 67003, + 67003, + 100000, + 100000, + 133516, + 1000000, + 1150072, + 1441331, + 1772671, + 2031155, + 25193655, + 214229639 + ], + [ + 0, + 629, + 629, + 11230, + 18362, + 25125, + 57994, + 97721, + 100000, + 100000, + 100000, + 116132, + 140938, + 215894, + 1000000, + 1200092, + 1550253, + 1550253, + 1774427, + 25516106, + 29408955 + ], + [ + 0, + 5, + 5, + 758, + 888, + 1168, + 27051, + 57994, + 97721, + 100000, + 100000, + 124738, + 175646, + 215894, + 1000000, + 1000000, + 1150072, + 1550253, + 1550253, + 1550253, + 30299990 + ], + [ + 0, + 1, + 793, + 11230, + 38375, + 57994, + 57994, + 97721, + 100000, + 100000, + 100000, + 100000, + 106348, + 169922, + 215894, + 1000000, + 1000000, + 1000000, + 1000000, + 10039162, + 68230628 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 801, + 1505, + 11330, + 15522, + 17183, + 57994, + 97721, + 100000, + 100000, + 119373, + 215894, + 1000000, + 1100046, + 1778027 + ], + [ + 0, + 5, + 608, + 11230, + 11330, + 11478, + 33580, + 57994, + 58675, + 97721, + 100000, + 100000, + 100000, + 123745, + 215894, + 1000000, + 1000000, + 1150072, + 1618385, + 10038788, + 117873784 + ], + [ + 0, + 47, + 47, + 428, + 11806, + 14162, + 19409, + 33580, + 100000, + 100000, + 100170, + 133516, + 171904, + 503745, + 1331967, + 1781901, + 10000000, + 10000000, + 10000000, + 10000000, + 100045639 + ], + [ + 0, + 1, + 601, + 637, + 2301, + 10000, + 10000, + 11478, + 23443, + 33580, + 48537, + 100000, + 100000, + 100000, + 119758, + 156845, + 166376, + 262917, + 1000000, + 1781998, + 25172841 + ], + [ + 0, + 1, + 826, + 826, + 4762, + 5276, + 11478, + 13816, + 14826, + 33580, + 100000, + 100000, + 100000, + 100000, + 104078, + 119723, + 127075, + 145477, + 262917, + 1000000, + 1877782 + ], + [ + 0, + 5, + 5, + 582, + 2005, + 3006, + 14826, + 69009, + 100000, + 100000, + 100000, + 118889, + 145477, + 175455, + 1000000, + 1000001, + 1000001, + 1000001, + 1000001, + 10039159, + 26487657 + ], + [ + 0, + 1, + 5, + 112, + 752, + 1506, + 1506, + 4760, + 14826, + 69009, + 69009, + 100000, + 100000, + 100000, + 100477, + 145477, + 154391, + 1000000, + 10000000, + 10000000, + 100000000 + ], + [ + 0, + 1, + 761, + 761, + 14162, + 14162, + 14826, + 38384, + 69009, + 76191, + 82406, + 100000, + 100000, + 114371, + 144809, + 145477, + 199216, + 1010004, + 4000000, + 4000000, + 10000000 + ], + [ + 0, + 409, + 860, + 2836, + 10000, + 10000, + 10000, + 14826, + 19352, + 46043, + 100000, + 100000, + 100000, + 100923, + 114370, + 145477, + 163021, + 1000000, + 1000000, + 1000000, + 1791089 + ], + [ + 0, + 1, + 5, + 246, + 10000, + 14162, + 14826, + 47485, + 69009, + 100000, + 100000, + 115713, + 145477, + 169442, + 682908, + 1000000, + 1000000, + 1000000, + 1118980, + 1500000, + 25006398 + ], + [ + 0, + 1, + 101, + 101, + 101, + 101, + 101, + 329, + 14826, + 69009, + 100000, + 100000, + 129559, + 150831, + 263615, + 1000000, + 1150072, + 3000000, + 4000000, + 25016343, + 96577234 + ], + [ + 0, + 5, + 5, + 939, + 8499, + 14826, + 42671, + 44152, + 69009, + 100000, + 100000, + 100000, + 121656, + 143560, + 150000, + 1000000, + 1100046, + 1150072, + 1796403, + 10000000, + 114256170 + ], + [ + 0, + 1, + 76, + 1602, + 8116, + 10000, + 11330, + 12059, + 22941, + 27814, + 44152, + 80810, + 100000, + 100000, + 100000, + 146254, + 1000000, + 1000000, + 1100046, + 1801859, + 100000000 + ], + [ + 0, + 1, + 505, + 537, + 1018, + 7356, + 11330, + 12059, + 22941, + 23083, + 44152, + 85510, + 100000, + 100000, + 119724, + 119724, + 155330, + 165800, + 1000000, + 1000000, + 2999540 + ], + [ + 0, + 1, + 4, + 419, + 458, + 458, + 9927, + 36332, + 46884, + 46884, + 100000, + 100000, + 100000, + 110711, + 122138, + 122138, + 215894, + 1000000, + 1807588, + 10000000, + 100045540 + ], + [ + 0, + 1, + 57, + 1603, + 4219, + 9927, + 27213, + 36332, + 100000, + 100000, + 100000, + 100000, + 110711, + 111444, + 113906, + 169998, + 964426, + 1000000, + 1813044, + 10000000, + 10000000 + ], + [ + 0, + 1, + 5, + 616, + 1893, + 9927, + 18059, + 36332, + 36332, + 100000, + 100000, + 100000, + 110711, + 138808, + 170311, + 798908, + 1000000, + 1000000, + 1000000, + 1819060, + 20000000 + ], + [ + 0, + 1, + 1, + 22, + 214, + 9927, + 9927, + 18900, + 36332, + 36332, + 100000, + 100000, + 100000, + 100000, + 100000, + 110711, + 137755, + 137755, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 5, + 244, + 244, + 965, + 2361, + 9927, + 9927, + 36332, + 100000, + 100000, + 100000, + 100000, + 101150, + 110711, + 110711, + 922642, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 463, + 463, + 778, + 778, + 9927, + 9927, + 36332, + 36332, + 100000, + 100000, + 100000, + 100000, + 110711, + 915688, + 1000000, + 1100000, + 1831393, + 10000000, + 10000000 + ], + [ + 0, + 1, + 101, + 101, + 101, + 101, + 101, + 278, + 1507, + 9927, + 11332, + 34245, + 36332, + 85884, + 100000, + 100000, + 110711, + 133338, + 1838026, + 4000000, + 20000000 + ], + [ + 0, + 757, + 1000, + 9609, + 11332, + 11332, + 35862, + 45531, + 45531, + 89315, + 100000, + 100000, + 100000, + 110711, + 119897, + 282630, + 1000000, + 1200092, + 1844659, + 10000000, + 25001836 + ], + [ + 0, + 5, + 878, + 9609, + 9609, + 10000, + 10000, + 35862, + 42333, + 42333, + 100000, + 100000, + 100000, + 135333, + 282630, + 282630, + 1000000, + 1000000, + 10000000, + 10000000, + 20000000 + ], + [ + 0, + 880, + 9609, + 9609, + 11332, + 11332, + 35862, + 39422, + 100000, + 100000, + 100000, + 100000, + 100000, + 153311, + 282630, + 282630, + 1000000, + 1000000, + 1852305, + 4000000, + 4000000 + ], + [ + 0, + 5, + 10, + 35, + 2507, + 2507, + 9609, + 35862, + 35862, + 44966, + 100000, + 100000, + 100000, + 163943, + 163943, + 282630, + 1000000, + 1000000, + 1000000, + 1000000, + 1859619 + ], + [ + 0, + 5, + 130, + 130, + 9609, + 11331, + 11331, + 19738, + 35862, + 35862, + 100000, + 100000, + 100000, + 282630, + 635208, + 1000000, + 1000000, + 1000000, + 1000000, + 10000000, + 10000000 + ], + [ + 0, + 5, + 5, + 5, + 21, + 463, + 9609, + 35862, + 35862, + 42277, + 100000, + 100000, + 100000, + 100000, + 151285, + 282630, + 282630, + 1350160, + 5423739, + 10000000, + 100045342 + ], + [ + 0, + 606, + 9609, + 9609, + 14162, + 35862, + 35862, + 36105, + 100000, + 100000, + 100000, + 100000, + 139539, + 167559, + 282630, + 282630, + 1000000, + 1000000, + 1200091, + 1876113, + 25000553 + ], + [ + 0, + 422, + 9609, + 35862, + 35862, + 43060, + 100000, + 100000, + 100000, + 100000, + 121087, + 121087, + 282630, + 282630, + 1000000, + 1000000, + 1550252, + 1550252, + 1550252, + 20000000, + 100000000 + ], + [ + 0, + 163, + 8500, + 8500, + 9609, + 9609, + 18549, + 35862, + 35862, + 100000, + 100000, + 100000, + 100000, + 100000, + 282630, + 764434, + 1000000, + 1188885, + 1666519, + 5000000, + 5000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 477, + 1508, + 9609, + 9609, + 14165, + 35862, + 100000, + 100000, + 128077, + 294621, + 1000000, + 1910830, + 3811012, + 20037168, + 500000000 + ], + [ + 0, + 1382, + 8564, + 31466, + 66330, + 100000, + 100000, + 100000, + 127100, + 635300, + 999545, + 1113657, + 1282457, + 1550250, + 1550250, + 1550250, + 1550250, + 1929502, + 2031161, + 25319307, + 209693971 + ], + [ + 0, + 5, + 550, + 11232, + 20073, + 25958, + 34124, + 100000, + 100000, + 103656, + 127569, + 158916, + 189822, + 950966, + 1000000, + 1000000, + 1150071, + 1550250, + 1550250, + 1550250, + 1049999545 + ], + [ + 0, + 832, + 3452, + 3452, + 11521, + 23364, + 24024, + 34124, + 75334, + 100000, + 100000, + 100000, + 116397, + 189822, + 320615, + 1000000, + 1000000, + 1204490, + 1550250, + 1949108, + 52151662 + ], + [ + 0, + 299, + 539, + 10000, + 10364, + 10887, + 14634, + 34124, + 100000, + 100000, + 100000, + 122873, + 167600, + 189822, + 199403, + 1000000, + 1035833, + 1967780, + 2200547, + 10526756, + 25050252 + ], + [ + 0, + 5, + 420, + 9239, + 24061, + 34124, + 34909, + 100000, + 100000, + 181849, + 189822, + 1000000, + 1000000, + 1150071, + 1150071, + 1244729, + 1326912, + 2602283, + 25020182, + 50802745, + 100293770 + ], + [ + 0, + 2508, + 2513, + 34124, + 69239, + 69239, + 100000, + 100000, + 189822, + 194813, + 1048121, + 1200000, + 1416925, + 1550250, + 1769017, + 2031161, + 3058916, + 10000000, + 25203605, + 46058581, + 231117650 + ], + [ + 0, + 10000, + 24096, + 100000, + 100000, + 165415, + 189822, + 215434, + 436930, + 1000000, + 1000000, + 1150070, + 1244728, + 1506872, + 1550249, + 1550249, + 1769016, + 2031160, + 22689951, + 25046999, + 100045044 + ], + [ + 0, + 389, + 30755, + 53428, + 189822, + 1000000, + 1019448, + 1150071, + 1310264, + 1375800, + 1769016, + 2031160, + 2031160, + 2031160, + 2031160, + 2663993, + 4000000, + 20115058, + 26510574, + 75363655, + 463743767 + ], + [ + 0, + 227, + 10000, + 22330, + 139384, + 223708, + 240153, + 807024, + 1000000, + 1023544, + 1179192, + 1375800, + 1506872, + 1550250, + 1769016, + 2031160, + 2058737, + 5683035, + 10000000, + 25643204, + 240480983 + ], + [ + 0, + 5, + 5, + 91028, + 100000, + 100000, + 156568, + 186472, + 186472, + 282630, + 320134, + 405093, + 405773, + 405773, + 999999, + 999999, + 1000000, + 1000000, + 1624890, + 25135011, + 100000000 + ], + [ + 0, + 101, + 101, + 101, + 2346, + 19544, + 19544, + 19544, + 19544, + 100000, + 405094, + 1000000, + 1000000, + 1000000, + 1150072, + 1550250, + 1550250, + 1550250, + 2031160, + 10000000, + 100000000 + ], + [ + 0, + 250, + 509, + 1578, + 11549, + 21713, + 27170, + 38328, + 75025, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 126594, + 154855, + 189822, + 405093, + 1550249, + 10000000 + ], + [ + 0, + 560, + 10662, + 11548, + 32897, + 48063, + 100000, + 107468, + 159815, + 159815, + 208822, + 276201, + 1000000, + 1000000, + 2006365, + 10000000, + 12234085, + 23243503, + 25022480, + 25066444, + 62644641 + ], + [ + 0, + 4, + 575, + 10000, + 44551, + 52515, + 100000, + 100000, + 100000, + 100000, + 133798, + 201132, + 207961, + 1000000, + 1100044, + 2031158, + 3000000, + 10000000, + 20000000, + 25261372, + 100000000 + ], + [ + 0, + 4, + 121, + 121, + 35389, + 35389, + 83686, + 100000, + 100000, + 100000, + 100000, + 103791, + 155817, + 207961, + 1000000, + 1000000, + 1000000, + 1566427, + 4000000, + 4845858, + 9979777 + ], + [ + 0, + 5, + 5, + 5, + 399, + 1542, + 1542, + 1542, + 4760, + 33088, + 33123, + 97629, + 100000, + 100000, + 100000, + 126400, + 127891, + 510765, + 1000000, + 4796912, + 25021063 + ], + [ + 0, + 5, + 472, + 821, + 13230, + 33123, + 40086, + 100000, + 100000, + 100000, + 127891, + 129763, + 129829, + 129829, + 760117, + 999999, + 999999, + 999999, + 1000000, + 1574921, + 11955680 + ], + [ + 0, + 704, + 704, + 1503, + 1543, + 1543, + 1543, + 10046, + 11549, + 11549, + 40086, + 100000, + 100000, + 100000, + 100000, + 172699, + 216411, + 1000000, + 1000000, + 5000000, + 5000000 + ], + [ + 0, + 5, + 226, + 226, + 450, + 24350, + 37358, + 40086, + 100000, + 100000, + 137999, + 216411, + 912042, + 1000000, + 1000001, + 1100045, + 1100045, + 1200091, + 1567706, + 20112319, + 3000000000 + ], + [ + 0, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 677, + 1560, + 2162, + 40086, + 47294, + 66575, + 66575, + 100000, + 912042, + 1150071, + 9090549, + 10000000, + 20000000 + ], + [ + 0, + 263, + 267, + 1543, + 1543, + 1543, + 2958, + 8663, + 15583, + 15583, + 39771, + 46669, + 100000, + 100000, + 100000, + 108920, + 115345, + 143624, + 418754, + 1000000, + 3621428 + ], + [ + 0, + 5, + 180, + 9000, + 10000, + 21873, + 36475, + 46669, + 100000, + 100000, + 100000, + 100000, + 143535, + 170342, + 418754, + 418754, + 1000000, + 1000000, + 10000000, + 10000000, + 3000000000 + ], + [ + 0, + 226, + 642, + 642, + 1789, + 1941, + 2891, + 2891, + 16179, + 21873, + 30271, + 46669, + 100000, + 100000, + 100000, + 100549, + 418754, + 1000000, + 1000000, + 1200091, + 17038673 + ], + [ + 0, + 5, + 5, + 5, + 29, + 29, + 13702, + 21873, + 28680, + 46669, + 46669, + 100000, + 100000, + 100000, + 100571, + 178085, + 418754, + 1000000, + 1150071, + 3211594, + 25078252 + ], + [ + 0, + 5, + 5, + 206, + 206, + 1543, + 1543, + 1543, + 1543, + 14435, + 14435, + 21655, + 21873, + 46669, + 100000, + 100000, + 173381, + 418754, + 1000000, + 1250763, + 100000000 + ], + [ + 0, + 346, + 9744, + 11549, + 20064, + 31095, + 38598, + 46669, + 100000, + 100000, + 100000, + 100000, + 108882, + 383149, + 418754, + 1000000, + 1000000, + 1570135, + 22185986, + 25187357, + 100141080 + ], + [ + 0, + 226, + 1543, + 1543, + 5527, + 21873, + 46669, + 68805, + 100000, + 100000, + 123737, + 418754, + 1000000, + 1000000, + 1150071, + 1550251, + 2367507, + 13000000, + 25002809, + 38583642, + 779616921 + ], + [ + 0, + 5, + 5, + 5, + 21873, + 22243, + 27707, + 42501, + 46669, + 100000, + 100000, + 100000, + 100000, + 129200, + 129200, + 198915, + 418754, + 855810, + 1000000, + 1150071, + 13000000 + ], + [ + 0, + 794, + 2307, + 8663, + 21873, + 34045, + 100000, + 100000, + 160687, + 418754, + 1023543, + 1113655, + 1150071, + 1500228, + 1703479, + 1965623, + 2031159, + 4063362, + 25129215, + 41527405, + 100195480 + ], + [ + 0, + 6457, + 21431, + 74460, + 418754, + 1000000, + 1036843, + 1179190, + 1233064, + 1310262, + 1375798, + 1375798, + 1569727, + 1703478, + 1834550, + 2031158, + 2031158, + 2031158, + 8690812, + 25396044, + 203584359 + ], + [ + 0, + 101, + 101, + 101, + 1542, + 10000, + 16982, + 21873, + 100000, + 192332, + 379359, + 405117, + 999999, + 999999, + 1150071, + 1375798, + 1550250, + 1550250, + 1572406, + 4046169, + 396293750 + ], + [ + 0, + 5, + 340, + 11326, + 11548, + 29421, + 46669, + 100000, + 100000, + 100000, + 100000, + 119807, + 154702, + 189639, + 405116, + 1000000, + 1000000, + 1000000, + 1550250, + 1569730, + 110000548 + ], + [ + 0, + 507, + 1458, + 1540, + 1540, + 11547, + 30199, + 41341, + 100000, + 185877, + 235476, + 1000000, + 1113652, + 1150070, + 1150070, + 1340232, + 1550251, + 1703476, + 16025880, + 25062874, + 100033825 + ], + [ + 0, + 195, + 472, + 4845, + 5396, + 15114, + 30199, + 100000, + 100000, + 140211, + 179459, + 200065, + 413717, + 999999, + 1000000, + 1000000, + 1150072, + 1550253, + 7352057, + 25367262, + 100045540 + ], + [ + 0, + 5, + 5, + 5, + 10000, + 10000, + 15114, + 30199, + 66609, + 66609, + 66609, + 66609, + 66609, + 66609, + 106452, + 413717, + 999999, + 1550253, + 25018163, + 25029735, + 100045540 + ], + [ + 0, + 224, + 1409, + 1541, + 1541, + 15114, + 19541, + 19541, + 19541, + 19541, + 19541, + 31407, + 100000, + 100000, + 100000, + 190939, + 413717, + 1000000, + 1150073, + 1550254, + 16379619 + ], + [ + 0, + 5, + 223, + 223, + 230, + 18979, + 41399, + 54715, + 100000, + 100000, + 100000, + 110743, + 137028, + 190939, + 693229, + 999999, + 1000000, + 1000000, + 1150070, + 1888684, + 100000000 + ], + [ + 0, + 426, + 1540, + 1540, + 1540, + 1540, + 2345, + 10000, + 18979, + 34210, + 71889, + 100000, + 100000, + 118689, + 190939, + 212005, + 430710, + 1000000, + 1000000, + 1000000, + 2213326 + ], + [ + 0, + 5, + 840, + 9000, + 11729, + 14434, + 18979, + 41771, + 45488, + 54715, + 100000, + 100000, + 100000, + 144235, + 190939, + 225693, + 1000000, + 1000000, + 1150072, + 1972406, + 13000000 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 10000, + 18979, + 34480, + 39693, + 57739, + 100000, + 100000, + 161678, + 259660, + 430710, + 1000000, + 1100837, + 31118695 + ], + [ + 0, + 5, + 998, + 1540, + 1540, + 1540, + 1540, + 19164, + 38375, + 39650, + 57739, + 100000, + 100000, + 100000, + 191235, + 258201, + 954848, + 1000000, + 1000000, + 2397289, + 114172979 + ], + [ + 0, + 223, + 592, + 1653, + 14434, + 14434, + 20843, + 57517, + 89868, + 100000, + 100000, + 100000, + 117579, + 159687, + 159687, + 418754, + 1000000, + 1929129, + 4000000, + 10000000, + 3000000000 + ], + [ + 0, + 5, + 629, + 1540, + 1540, + 10000, + 11548, + 20843, + 24033, + 29262, + 74598, + 100000, + 100000, + 101369, + 175300, + 264509, + 1000000, + 1150072, + 2219615, + 25087099, + 100045540 + ], + [ + 0, + 5, + 864, + 2890, + 9687, + 47118, + 57517, + 100000, + 115239, + 126248, + 193472, + 274038, + 1000000, + 1000000, + 1047865, + 1937623, + 2031156, + 3000000, + 3931010, + 26127645, + 727086496 + ], + [ + 0, + 4, + 223, + 223, + 502, + 10000, + 10000, + 13642, + 23364, + 100000, + 100000, + 100000, + 100000, + 110741, + 115239, + 132865, + 135841, + 1000000, + 1000000, + 5000000, + 100045540 + ], + [ + 0, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2540, + 2608, + 46469, + 544231301 + ], + [ + 0, + 5, + 5, + 313, + 1539, + 1539, + 1539, + 23364, + 35438, + 47300, + 100000, + 100000, + 100000, + 100000, + 115239, + 125656, + 155146, + 960452, + 1000000, + 1250114, + 100000000 + ], + [ + 0, + 472, + 3650, + 15110, + 23364, + 37076, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 168051, + 216400, + 216400, + 747904, + 1000000, + 3000000, + 100000000 + ], + [ + 0, + 5, + 128, + 804, + 2890, + 23364, + 31617, + 47048, + 95720, + 100000, + 100000, + 100000, + 115239, + 195353, + 1000000, + 1000000, + 1150072, + 1931752, + 4000000, + 5608369, + 25195232 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 222, + 265, + 1539, + 1539, + 2890, + 23364, + 100000, + 100000, + 100000, + 115239, + 117231, + 1000000, + 11918128 + ], + [ + 0, + 4, + 423, + 4789, + 19982, + 23364, + 24723, + 81391, + 100000, + 100000, + 100000, + 158464, + 158464, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 10000000, + 19999539 + ], + [ + 0, + 5, + 5, + 2449, + 4541, + 13416, + 14499, + 15966, + 15966, + 19982, + 100000, + 100000, + 100000, + 177943, + 177943, + 188721, + 188721, + 1000000, + 1000000, + 1000000, + 1933825 + ], + [ + 0, + 5, + 204, + 948, + 1540, + 1540, + 1540, + 5189, + 10000, + 19982, + 24978, + 48620, + 100000, + 100000, + 100000, + 177943, + 1000000, + 1000000, + 1000000, + 24126318, + 25087606 + ], + [ + 0, + 223, + 782, + 8847, + 11549, + 19982, + 34643, + 38141, + 100000, + 100000, + 124796, + 177943, + 418754, + 1000000, + 1050023, + 1150072, + 1250115, + 4000000, + 7009268, + 25312183, + 469885596 + ], + [ + 0, + 5, + 112, + 1321, + 3854, + 7447, + 19982, + 49848, + 49848, + 70506, + 100000, + 100000, + 100000, + 100000, + 100000, + 177943, + 323542, + 1150072, + 1935955, + 25119158, + 57213482 + ], + [ + 0, + 240, + 407, + 1541, + 1541, + 1541, + 2890, + 2890, + 10319, + 10984, + 19982, + 100000, + 100000, + 100000, + 132975, + 144372, + 177943, + 1000000, + 1934971, + 25009655, + 100045541 + ], + [ + 0, + 5, + 10, + 99, + 224, + 4271, + 4271, + 14435, + 19982, + 31860, + 100000, + 100000, + 100000, + 132132, + 177943, + 1000000, + 1000000, + 1937202, + 25000000, + 25383536, + 73449975 + ], + [ + 0, + 5, + 724, + 724, + 1541, + 1541, + 1541, + 15088, + 19982, + 19982, + 22601, + 100000, + 100000, + 100000, + 100000, + 142769, + 177943, + 1000000, + 1000000, + 1200000, + 25012084 + ], + [ + 0, + 5, + 832, + 832, + 3216, + 5971, + 6323, + 19982, + 20935, + 20935, + 100000, + 100000, + 100000, + 144256, + 177943, + 1000000, + 1000000, + 1000001, + 1016364, + 1938512, + 100000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 225, + 241, + 478, + 3399, + 9902, + 100000, + 100000, + 177943, + 191178, + 1000000, + 1000001, + 1150071, + 1550251, + 1550251, + 10100222, + 28760635 + ], + [ + 0, + 5, + 888, + 1542, + 1542, + 1542, + 1810, + 11548, + 19982, + 73096, + 73096, + 73096, + 73096, + 100000, + 100000, + 122996, + 177943, + 1000000, + 1000000, + 10000000, + 500000000 + ], + [ + 0, + 5, + 409, + 829, + 2619, + 2991, + 29138, + 36861, + 100000, + 100000, + 103342, + 198460, + 1000000, + 1000000, + 1000000, + 1035830, + 1150071, + 7336972, + 25003222, + 25059723, + 50082342 + ], + [ + 0, + 1541, + 1541, + 8662, + 11031, + 11031, + 36861, + 52619, + 100000, + 100000, + 100000, + 100000, + 100000, + 134864, + 177943, + 198460, + 1000000, + 1000000, + 1669663, + 25000000, + 100045342 + ], + [ + 0, + 5, + 226, + 226, + 609, + 609, + 698, + 2891, + 2891, + 27469, + 36861, + 100000, + 100000, + 100000, + 110000, + 172490, + 198460, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 5, + 79, + 423, + 423, + 7114, + 36861, + 36861, + 78022, + 100000, + 100000, + 100000, + 100000, + 146291, + 177943, + 198460, + 1000000, + 1000000, + 1000000, + 1000000, + 1938936 + ], + [ + 0, + 450, + 8663, + 36861, + 38541, + 100000, + 100000, + 100000, + 100000, + 128496, + 198460, + 1000000, + 1000000, + 1939077, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000 + ], + [ + 0, + 557, + 656, + 1507, + 1507, + 1544, + 1544, + 1544, + 6344, + 11550, + 11550, + 36861, + 100000, + 100000, + 100000, + 103580, + 177943, + 198460, + 1000000, + 1025012, + 25000201 + ], + [ + 0, + 5, + 5, + 5, + 428, + 428, + 15184, + 29281, + 29281, + 36861, + 100000, + 100000, + 100000, + 100000, + 191540, + 198460, + 1000000, + 1000000, + 1000000, + 1100047, + 4974200 + ], + [ + 0, + 229, + 3041, + 10000, + 10000, + 27605, + 36861, + 81044, + 81044, + 100000, + 100000, + 100000, + 192324, + 198460, + 1000000, + 1310264, + 1939417, + 2974584, + 25000000, + 25032528, + 51161704 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 532, + 1544, + 10972, + 13513, + 100000, + 100000, + 142995, + 1000000, + 1150071, + 1150071, + 1644219, + 2031160, + 12099544, + 27103384, + 255400742 + ], + [ + 0, + 168, + 2222, + 16518, + 36861, + 39720, + 39720, + 100000, + 100000, + 100000, + 100000, + 135436, + 135436, + 191707, + 286483, + 538549, + 1000000, + 1000000, + 1940131, + 3599544, + 37490780 + ], + [ + 0, + 5, + 732, + 2505, + 16518, + 47214, + 51388, + 84393, + 84393, + 100000, + 100000, + 100000, + 150779, + 286483, + 1000000, + 1150072, + 3599545, + 3599545, + 9615463, + 25145936, + 100045145 + ], + [ + 0, + 5, + 283, + 496, + 496, + 16518, + 35777, + 51388, + 100000, + 100000, + 100000, + 160509, + 160509, + 266217, + 286483, + 850738, + 1000000, + 2031161, + 6219371, + 25000000, + 25247881 + ], + [ + 0, + 422, + 783, + 1545, + 1545, + 1545, + 3040, + 16518, + 18571, + 40919, + 51388, + 100000, + 100000, + 159846, + 286483, + 1000000, + 1459854, + 3599545, + 5134536, + 25323376, + 87542953 + ], + [ + 0, + 831, + 6724, + 12148, + 12148, + 16518, + 24405, + 24405, + 51388, + 100000, + 100000, + 100000, + 100000, + 100071, + 198460, + 286483, + 1000000, + 1000000, + 1150071, + 1940188, + 8359527 + ], + [ + 0, + 5, + 5, + 5, + 554, + 2006, + 2006, + 5672, + 5686, + 16518, + 51388, + 100000, + 100000, + 133270, + 286483, + 1000001, + 1150072, + 1150072, + 4000000, + 25036423, + 100000000 + ], + [ + 0, + 322, + 1277, + 1277, + 16518, + 51388, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 131087, + 286483, + 1000000, + 1113658, + 1150071, + 10000000, + 25000000, + 25189053 + ], + [ + 0, + 496, + 496, + 987, + 1546, + 1546, + 1546, + 5168, + 5168, + 16518, + 51388, + 51388, + 100000, + 100000, + 100000, + 176449, + 176449, + 286483, + 286483, + 1000000, + 10000000 + ], + [ + 0, + 430, + 2507, + 2507, + 12149, + 12149, + 16518, + 21210, + 21210, + 51388, + 100000, + 100000, + 100000, + 100000, + 108759, + 286483, + 1000000, + 1000000, + 1000000, + 1696926, + 1940252 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 348, + 9114, + 16518, + 23712, + 51388, + 100000, + 100000, + 124428, + 286483, + 1000000, + 1000000, + 1000000, + 100044848 + ], + [ + 0, + 238, + 238, + 1482, + 1482, + 1988, + 1988, + 16518, + 20602, + 51388, + 100000, + 100000, + 100000, + 100000, + 100000, + 126652, + 126652, + 286483, + 286483, + 1282640, + 1940324 + ], + [ + 0, + 5, + 5, + 509, + 509, + 919, + 919, + 20602, + 35356, + 35356, + 81217, + 100000, + 100000, + 100000, + 100000, + 188727, + 188727, + 1000000, + 1000000, + 1196364, + 1940373 + ], + [ + 0, + 703, + 9000, + 20602, + 20602, + 48069, + 81217, + 81217, + 83460, + 83460, + 100000, + 100000, + 100000, + 100000, + 100000, + 172988, + 172988, + 1000000, + 1000001, + 1940376, + 25012258 + ], + [ + 0, + 548, + 1482, + 1551, + 1551, + 1551, + 6969, + 20602, + 81217, + 100000, + 100000, + 100000, + 143342, + 872442, + 1000000, + 1000000, + 1150071, + 1550248, + 1550248, + 7811748, + 25074215 + ], + [ + 0, + 26, + 34, + 56, + 15187, + 20602, + 81217, + 100000, + 100000, + 100000, + 120534, + 872442, + 1000000, + 1000000, + 1000001, + 1113663, + 2031167, + 4656321, + 5095678, + 25001980, + 100044451 + ], + [ + 0, + 303, + 303, + 10365, + 15187, + 15187, + 19741, + 19741, + 20602, + 26065, + 26065, + 81217, + 100000, + 100000, + 100000, + 190724, + 190724, + 1000000, + 1940489, + 25891238, + 100044451 + ], + [ + 0, + 5, + 894, + 20602, + 37952, + 81217, + 81217, + 100000, + 100000, + 100000, + 107332, + 1000000, + 1000000, + 1000000, + 1150071, + 1150071, + 1441344, + 4000000, + 4000000, + 18902754, + 100000000 + ], + [ + 0, + 26, + 77, + 1482, + 2840, + 17866, + 20602, + 27357, + 74460, + 81217, + 100000, + 100000, + 105209, + 188301, + 1000000, + 1150070, + 1550246, + 2890442, + 12099552, + 25041784, + 74418328 + ], + [ + 0, + 5, + 261, + 1552, + 1552, + 1552, + 1552, + 17578, + 20602, + 27515, + 80389, + 81217, + 100000, + 100000, + 100000, + 159325, + 682372, + 1000000, + 1940615, + 25000000, + 25052974 + ], + [ + 0, + 101, + 101, + 101, + 101, + 503, + 15186, + 20602, + 37250, + 81217, + 100000, + 100000, + 116230, + 286483, + 1150070, + 1150070, + 1441344, + 2221302, + 3476189, + 25000000, + 88313345 + ], + [ + 0, + 5, + 26, + 26, + 1552, + 1552, + 1552, + 12306, + 23813, + 100000, + 100000, + 100000, + 100000, + 180772, + 190725, + 405002, + 1000000, + 1000000, + 1075328, + 25000000, + 25621216 + ], + [ + 0, + 118, + 662, + 3041, + 3408, + 19436, + 42629, + 56598, + 82322, + 100000, + 100000, + 100000, + 123082, + 152155, + 262098, + 1000000, + 1000000, + 1000000, + 1940750, + 4000000, + 100044352 + ], + [ + 0, + 139, + 2664, + 12149, + 12149, + 19436, + 28922, + 28922, + 41038, + 85563, + 100000, + 100000, + 123082, + 141402, + 286483, + 1000000, + 1000000, + 1940824, + 10000000, + 10058815, + 26491184 + ], + [ + 0, + 5, + 5, + 5, + 26, + 93, + 93, + 19436, + 19840, + 100000, + 100000, + 100000, + 100000, + 116128, + 123082, + 123082, + 1000000, + 1000001, + 1663784, + 4000000, + 4000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 844, + 844, + 6660, + 19436, + 40409, + 40409, + 100000, + 100000, + 100000, + 100000, + 100000, + 123082, + 137217, + 137217, + 1000000, + 100000000 + ], + [ + 0, + 5, + 5, + 580, + 2033, + 8009, + 9114, + 9114, + 16510, + 19436, + 100000, + 100000, + 100000, + 100000, + 123082, + 126344, + 188700, + 286483, + 1000000, + 1000000, + 1940833 + ], + [ + 0, + 5, + 5, + 7, + 662, + 1555, + 1555, + 1555, + 1555, + 3043, + 19436, + 19436, + 35778, + 100000, + 100000, + 100000, + 103109, + 123082, + 1000000, + 2000451, + 100044155 + ], + [ + 0, + 725, + 725, + 1654, + 2007, + 2007, + 2007, + 15188, + 15188, + 19436, + 100000, + 100000, + 100000, + 100000, + 100000, + 123082, + 171905, + 171905, + 1000000, + 1200090, + 1940845 + ], + [ + 0, + 4, + 4, + 859, + 859, + 6309, + 6309, + 19436, + 100000, + 100000, + 100000, + 100000, + 100000, + 123082, + 123082, + 123962, + 857380, + 1000000, + 1200090, + 1200090, + 2500000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 782, + 1557, + 1557, + 12388, + 19436, + 86278, + 100000, + 100000, + 100000, + 102683, + 123082, + 1000000, + 1250117, + 1940871 + ], + [ + 0, + 5, + 5, + 232, + 4151, + 4151, + 16958, + 19436, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 114280, + 114280, + 123082, + 1000000, + 1940872 + ], + [ + 0, + 68, + 68, + 2009, + 2009, + 2009, + 10000, + 10000, + 16958, + 45088, + 45088, + 100000, + 100000, + 100000, + 100000, + 105424, + 105424, + 197482, + 197482, + 1000000, + 1940885 + ], + [ + 0, + 337, + 15189, + 15189, + 16958, + 28482, + 28482, + 100000, + 100000, + 100000, + 105424, + 156482, + 156482, + 1000000, + 1000000, + 1000000, + 1000001, + 1000001, + 1940874, + 10000000, + 100000000 + ], + [ + 0, + 5, + 5, + 219, + 12983, + 12983, + 16958, + 100000, + 100000, + 100000, + 100000, + 105424, + 105424, + 124130, + 124130, + 1000000, + 1000000, + 1000000, + 1000000, + 1940901, + 40570977 + ], + [ + 0, + 50, + 50, + 50, + 50, + 471, + 2512, + 2512, + 9117, + 9117, + 16958, + 17550, + 17550, + 80209, + 100000, + 100000, + 100000, + 105424, + 105424, + 1000000, + 2500000 + ], + [ + 0, + 14, + 14, + 9116, + 9116, + 11117, + 11117, + 16958, + 16958, + 100000, + 100000, + 100000, + 100000, + 105424, + 105424, + 177206, + 177206, + 1000000, + 1000000, + 1000000, + 1940918 + ], + [ + 0, + 5, + 5, + 785, + 9117, + 9117, + 16958, + 28223, + 28223, + 100000, + 100000, + 100000, + 105424, + 105424, + 128301, + 712109, + 1000000, + 4000000, + 4000000, + 35741883, + 40041761 + ], + [ + 0, + 5, + 5, + 71, + 71, + 166, + 9346, + 9346, + 16958, + 100000, + 100000, + 100000, + 100000, + 101899, + 101899, + 105424, + 1000000, + 1000000, + 1940952, + 3000000, + 9682768 + ], + [ + 0, + 499, + 499, + 16958, + 16958, + 36978, + 36978, + 100000, + 100000, + 100000, + 100000, + 100000, + 105424, + 138921, + 138921, + 708356, + 1000000, + 1000000, + 1000001, + 2376005, + 100000000 + ], + [ + 0, + 50, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 535, + 2468, + 16958, + 35621, + 100000, + 100000, + 105424, + 173230, + 1000000, + 1000000, + 1000000, + 3500000 + ], + [ + 0, + 71, + 71, + 188, + 9116, + 15606, + 20676, + 20676, + 100000, + 100000, + 100000, + 105424, + 167309, + 821702, + 1000000, + 1000000, + 1250123, + 1940989, + 10000000, + 25413389, + 159379768 + ], + [ + 0, + 5, + 5, + 126, + 12152, + 12152, + 15606, + 24745, + 24745, + 73451, + 100000, + 100000, + 100000, + 100000, + 102750, + 163998, + 163998, + 1000000, + 1940973, + 4000000, + 100043263 + ], + [ + 0, + 132, + 132, + 132, + 15606, + 27573, + 27573, + 27573, + 100000, + 100000, + 100000, + 100000, + 100000, + 102750, + 102750, + 153689, + 153689, + 153689, + 1000000, + 1941011, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 512, + 512, + 15606, + 20471, + 78822, + 78822, + 100000, + 100000, + 100000, + 100000, + 100000, + 102750, + 187758, + 1000000, + 1941035, + 10000000, + 30840144 + ], + [ + 0, + 881, + 881, + 15606, + 46302, + 46302, + 100000, + 100000, + 100000, + 100000, + 100000, + 102750, + 117007, + 117007, + 1000000, + 1000000, + 2500000, + 4000000, + 4000000, + 5000000, + 100043065 + ], + [ + 0, + 5, + 5, + 474, + 496, + 496, + 507, + 507, + 15412, + 15412, + 15606, + 100000, + 100000, + 100000, + 102750, + 102750, + 154674, + 860253, + 1000000, + 1000000, + 1941110 + ], + [ + 0, + 5, + 5, + 346, + 572, + 10198, + 10198, + 15190, + 15190, + 15606, + 78822, + 100000, + 100000, + 100000, + 100000, + 102750, + 129199, + 1000000, + 1250127, + 1250127, + 1941161 + ], + [ + 0, + 5, + 134, + 134, + 160, + 3043, + 3043, + 15606, + 36780, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 102750, + 110372, + 110372, + 1000000, + 1000000, + 1941164 + ], + [ + 0, + 5, + 5, + 10, + 386, + 386, + 15192, + 15192, + 15606, + 49460, + 49460, + 100000, + 100000, + 100000, + 100000, + 102750, + 162533, + 162533, + 1000000, + 1941215, + 100000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 917, + 1511, + 1511, + 2469, + 15606, + 16246, + 100000, + 100000, + 100000, + 136488, + 1000000, + 1000000, + 1000002, + 3000000000 + ], + [ + 0, + 846, + 846, + 8912, + 15606, + 16510, + 100000, + 100000, + 100000, + 100000, + 100000, + 102750, + 171133, + 171133, + 1000000, + 1000000, + 1163616, + 1941277, + 3000000, + 3000000, + 100042570 + ], + [ + 0, + 5, + 5, + 5, + 172, + 172, + 21492, + 36790, + 100000, + 100000, + 100000, + 100000, + 100000, + 117826, + 173452, + 586286, + 1000000, + 1000000, + 20000000, + 20000000, + 100042571 + ], + [ + 0, + 5, + 5, + 223, + 223, + 508, + 508, + 21492, + 27970, + 27970, + 100000, + 100000, + 100000, + 100000, + 100000, + 117826, + 144427, + 586286, + 670744, + 1000000, + 1941343 + ], + [ + 0, + 5, + 5, + 960, + 3044, + 3044, + 21492, + 21492, + 29644, + 100000, + 100000, + 100000, + 100000, + 100000, + 117826, + 179847, + 179847, + 1000000, + 1200087, + 20000000, + 20000000 + ], + [ + 0, + 5, + 5, + 299, + 441, + 441, + 4541, + 9000, + 21492, + 100000, + 100000, + 100000, + 100000, + 100000, + 117826, + 128741, + 128741, + 1000000, + 1941348, + 20000000, + 20000000 + ], + [ + 0, + 193, + 193, + 15194, + 15194, + 21492, + 21492, + 47299, + 47299, + 100000, + 100000, + 100000, + 100000, + 100000, + 117826, + 117826, + 175946, + 175946, + 1000000, + 1941480, + 2500000 + ], + [ + 0, + 5, + 5, + 793, + 793, + 21492, + 21492, + 25730, + 100000, + 100000, + 100000, + 100000, + 100000, + 117826, + 124068, + 124068, + 504740, + 504740, + 1000000, + 1100000, + 1941555 + ], + [ + 0, + 554, + 1508, + 1508, + 11902, + 11902, + 21492, + 49460, + 49460, + 100000, + 100000, + 100000, + 117826, + 168130, + 168130, + 1000000, + 1000000, + 1000000, + 1000001, + 1000001, + 1941559 + ], + [ + 0, + 191, + 191, + 8929, + 8929, + 8929, + 21492, + 21492, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 117826, + 117826, + 161463, + 161463, + 1000000, + 1200084, + 1941634 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 617, + 904, + 904, + 2980, + 4556, + 21492, + 100000, + 100000, + 100000, + 117826, + 181884, + 1000000, + 100000000 + ], + [ + 0, + 5, + 5, + 442, + 2981, + 2981, + 20036, + 34821, + 61051, + 100000, + 100000, + 100000, + 117826, + 1000000, + 1000000, + 1941800, + 2031194, + 3287104, + 10000000, + 25121789, + 83855443 + ], + [ + 0, + 5, + 5, + 696, + 696, + 1707, + 1707, + 2418, + 15264, + 15264, + 20036, + 61051, + 100000, + 100000, + 100000, + 115236, + 115236, + 1000000, + 1006087, + 1941805, + 100041778 + ], + [ + 0, + 5, + 5, + 225, + 225, + 2890, + 2890, + 20036, + 61051, + 76484, + 100000, + 100000, + 100000, + 1000000, + 1200000, + 1200084, + 1941888, + 4000000, + 4000000, + 5000000, + 25012253 + ], + [ + 0, + 665, + 2418, + 2418, + 20036, + 20036, + 22859, + 61051, + 100000, + 100000, + 100000, + 100000, + 100000, + 123395, + 1000000, + 1000000, + 1200085, + 1941976, + 25007606, + 25011701, + 25586317 + ], + [ + 0, + 1, + 1, + 836, + 1709, + 1709, + 14877, + 14877, + 20036, + 30140, + 61051, + 78191, + 100000, + 100000, + 100000, + 105400, + 137212, + 1000000, + 1000000, + 1200086, + 298189008 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 100, + 122, + 5104, + 11903, + 20036, + 48408, + 61051, + 100000, + 100000, + 100000, + 103608, + 387903, + 1000000, + 1000000, + 1942069 + ], + [ + 0, + 5, + 5, + 151, + 151, + 20036, + 20036, + 47801, + 61051, + 61051, + 100000, + 100000, + 100000, + 100000, + 180891, + 180891, + 882900, + 1000000, + 1000000, + 1500264, + 2500000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 463, + 1452, + 1710, + 2497, + 8929, + 20036, + 61051, + 85466, + 100000, + 100000, + 100000, + 194740, + 1006090, + 1941994, + 25000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 5, + 159, + 224, + 224, + 19099, + 20036, + 61051, + 100000, + 100000, + 100000, + 125436, + 520253, + 1172246, + 25000000, + 28731317 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 963, + 7380, + 14877, + 20036, + 61051, + 100000, + 100000, + 182960, + 992246, + 1000000, + 20522171, + 25010613, + 33486331 + ], + [ + 0, + 5, + 538, + 538, + 8929, + 14639, + 35233, + 61051, + 68670, + 100000, + 100000, + 100000, + 142410, + 143143, + 1005274, + 1310302, + 1550229, + 1942009, + 25130211, + 34598619, + 112213240 + ], + [ + 0, + 506, + 506, + 709, + 2980, + 2980, + 14639, + 49429, + 51980, + 100000, + 100000, + 100000, + 142410, + 156648, + 1000000, + 1000000, + 1150065, + 2427085, + 25000000, + 25263406, + 100000000 + ], + [ + 0, + 534, + 757, + 11903, + 11903, + 14639, + 39429, + 100000, + 100000, + 100000, + 129054, + 129054, + 142410, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 14330029, + 25056076 + ], + [ + 0, + 5, + 5, + 490, + 788, + 1582, + 1582, + 1582, + 2163, + 2418, + 14639, + 100000, + 100000, + 100000, + 142410, + 189660, + 1000000, + 1000000, + 1000000, + 5447391, + 10936657 + ], + [ + 0, + 294, + 294, + 14639, + 14639, + 30194, + 30194, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 142410, + 142410, + 195331, + 195331, + 195331, + 1000000, + 1942028, + 15234100 + ], + [ + 0, + 5, + 5, + 506, + 506, + 717, + 899, + 14639, + 48904, + 59242, + 100000, + 100000, + 100000, + 100000, + 142410, + 177943, + 184077, + 1000000, + 1000000, + 1000000, + 1942039 + ], + [ + 0, + 172, + 185, + 746, + 746, + 14639, + 35575, + 35575, + 100000, + 100000, + 100000, + 100000, + 100000, + 103792, + 103792, + 142410, + 1000000, + 1942050, + 4000000, + 4000000, + 4000000 + ], + [ + 0, + 283, + 1584, + 1584, + 1584, + 8929, + 14639, + 19749, + 70216, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 142410, + 147951, + 1000000, + 1000000, + 1942051, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 20, + 7418, + 14639, + 14695, + 14695, + 65848, + 100000, + 100000, + 100000, + 142410, + 163432, + 223002, + 1000000, + 1942064, + 3000000, + 83110309 + ], + [ + 0, + 53, + 101, + 101, + 101, + 101, + 101, + 101, + 1508, + 1508, + 4405, + 8929, + 14639, + 30061, + 100000, + 100000, + 104702, + 142410, + 1000000, + 25264452, + 41826327 + ], + [ + 0, + 7, + 492, + 492, + 2979, + 14639, + 18446, + 29850, + 100000, + 100000, + 100000, + 100000, + 112402, + 142410, + 1000000, + 1000000, + 1150065, + 1942105, + 10000000, + 25007822, + 163313109 + ], + [ + 0, + 121, + 2979, + 10000, + 11198, + 22206, + 22206, + 84803, + 100000, + 100000, + 100000, + 111751, + 884296, + 1000000, + 1000000, + 1000000, + 1550228, + 1550228, + 4000000, + 4000000, + 5000000 + ], + [ + 0, + 4, + 10, + 69, + 1584, + 1584, + 1584, + 1713, + 1713, + 5241, + 13342, + 36934, + 84803, + 100000, + 100000, + 100000, + 159259, + 372136, + 1000000, + 1942135, + 100041184 + ], + [ + 0, + 5, + 5, + 523, + 842, + 1452, + 1452, + 13342, + 13568, + 26123, + 70457, + 70457, + 100000, + 100000, + 100000, + 100000, + 159635, + 159635, + 1000000, + 1100044, + 100041184 + ], + [ + 0, + 5, + 5, + 169, + 1140, + 1140, + 11713, + 12147, + 12147, + 26123, + 100000, + 100000, + 100000, + 100000, + 111096, + 137201, + 137201, + 1000000, + 1942138, + 10000000, + 10000000 + ], + [ + 0, + 5, + 952, + 980, + 1585, + 1585, + 1585, + 1585, + 12147, + 26123, + 49079, + 100000, + 100000, + 100000, + 142410, + 187457, + 1100042, + 1100042, + 1942197, + 20000000, + 31145677 + ], + [ + 0, + 5, + 72, + 72, + 1582, + 10000, + 26123, + 36815, + 100000, + 100000, + 100000, + 111096, + 175169, + 175169, + 1000000, + 1000000, + 1464289, + 3000000, + 3000000, + 10000000, + 10000000 + ], + [ + 0, + 271, + 493, + 506, + 815, + 9376, + 11903, + 15180, + 26466, + 100000, + 100000, + 100000, + 101412, + 151861, + 1000000, + 1000066, + 1000066, + 1000066, + 1535512, + 20000000, + 100000000 + ], + [ + 0, + 863, + 9376, + 11903, + 11903, + 41299, + 100000, + 100000, + 100000, + 100000, + 112027, + 151861, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1010004, + 1942267, + 10000000, + 10000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 296, + 8928, + 9376, + 44244, + 100000, + 100000, + 100000, + 100000, + 151861, + 179174, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 5, + 409, + 409, + 11902, + 11902, + 29425, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100121, + 150000, + 1000000, + 1000000, + 1000000, + 20000000, + 20000000 + ], + [ + 0, + 5, + 5, + 184, + 1506, + 1506, + 2418, + 11342, + 21707, + 30674, + 74969, + 100000, + 100000, + 100000, + 111037, + 111037, + 1000000, + 1000000, + 1942345, + 10000000, + 10000000 + ], + [ + 0, + 5, + 5, + 72, + 72, + 11342, + 21707, + 21707, + 39122, + 39122, + 100000, + 100000, + 100000, + 100000, + 100000, + 148583, + 193237, + 193237, + 1000000, + 1000000, + 4001245 + ], + [ + 0, + 5, + 5, + 5, + 5, + 57, + 57, + 1452, + 11342, + 21707, + 43263, + 100000, + 100000, + 100000, + 105400, + 183326, + 1000000, + 1000000, + 1000000, + 2500000, + 20000000 + ], + [ + 0, + 506, + 506, + 11342, + 11903, + 11903, + 21707, + 71795, + 100000, + 100000, + 100000, + 100000, + 100000, + 140095, + 148583, + 148583, + 1000000, + 1000000, + 1125052, + 1125052, + 1942432 + ], + [ + 0, + 5, + 5, + 364, + 680, + 2981, + 2981, + 9903, + 10000, + 10000, + 11342, + 21707, + 100000, + 100000, + 100000, + 100000, + 148583, + 198765, + 198765, + 1000000, + 25068076 + ], + [ + 0, + 5, + 5, + 631, + 631, + 11342, + 27314, + 27314, + 100000, + 100000, + 100000, + 100000, + 116331, + 148583, + 788318, + 1000000, + 1495171, + 10000000, + 10000000, + 25006802, + 45505129 + ], + [ + 0, + 5, + 5, + 129, + 1586, + 11342, + 11904, + 11904, + 17264, + 21707, + 78168, + 100000, + 100000, + 100000, + 100000, + 112242, + 112242, + 788318, + 1000000, + 1000000, + 3000000000 + ], + [ + 0, + 5, + 5, + 133, + 1587, + 1587, + 1587, + 1587, + 11342, + 21707, + 30752, + 100000, + 100000, + 100000, + 100000, + 117537, + 148583, + 1000000, + 1200082, + 1500211, + 100000000 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 607, + 10000, + 12140, + 14877, + 48551, + 76579, + 100000, + 100000, + 148583, + 198351, + 1000000, + 1942535, + 20000000 + ], + [ + 0, + 5, + 5, + 5, + 227, + 1715, + 1715, + 11903, + 11903, + 29984, + 29984, + 100000, + 100000, + 100000, + 127256, + 148583, + 1000000, + 1942637, + 4000000, + 10000000, + 10000000 + ], + [ + 0, + 5, + 5, + 47, + 587, + 11903, + 25785, + 37791, + 37791, + 100000, + 100000, + 100000, + 100000, + 180312, + 281833, + 1000000, + 1000000, + 1100000, + 5000000, + 9161753, + 100000000 + ], + [ + 0, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 587, + 24241, + 100000, + 10000000 + ], + [ + 0, + 5, + 5, + 189, + 189, + 1714, + 1714, + 1714, + 17338, + 25785, + 47869, + 73303, + 100000, + 100000, + 105861, + 105861, + 1000000, + 1942756, + 10000000, + 20000000, + 20000000 + ], + [ + 0, + 5, + 5, + 951, + 951, + 11340, + 22389, + 25785, + 25785, + 47869, + 100000, + 100000, + 100000, + 100000, + 100000, + 102700, + 178306, + 178306, + 265175, + 1000000, + 100000000 + ], + [ + 0, + 240, + 1452, + 1452, + 8862, + 25785, + 47869, + 100000, + 100000, + 100000, + 100000, + 109065, + 1000000, + 1000000, + 1000000, + 1000001, + 1200083, + 2000000, + 10000000, + 10000000, + 25000000 + ], + [ + 0, + 11, + 11, + 8930, + 8930, + 9718, + 9718, + 25785, + 25785, + 47869, + 100000, + 100000, + 100000, + 100000, + 100000, + 175155, + 175155, + 1000000, + 1942882, + 20000000, + 20000000 + ], + [ + 0, + 585, + 589, + 1717, + 1717, + 2982, + 2982, + 11340, + 11340, + 25785, + 37694, + 47869, + 47869, + 100000, + 100000, + 100000, + 100000, + 196153, + 737502, + 1200083, + 28086548 + ], + [ + 0, + 5, + 195, + 1000, + 1000, + 25785, + 27170, + 27170, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 111096, + 112335, + 650077, + 1943020, + 3000000, + 10000000, + 100000000 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 803, + 11340, + 12546, + 25785, + 100000, + 100000, + 100000, + 153028, + 1000000, + 1200082, + 20000000, + 100040690 + ], + [ + 0, + 10, + 486, + 486, + 567, + 567, + 1000, + 1000, + 8056, + 27796, + 27796, + 47869, + 100000, + 100000, + 100000, + 100000, + 111096, + 147090, + 1000000, + 1683190, + 100040590 + ], + [ + 0, + 61, + 506, + 506, + 8056, + 14879, + 14879, + 16756, + 63236, + 69990, + 100000, + 100000, + 100000, + 100000, + 143059, + 1000000, + 1000000, + 2500000, + 10000000, + 10000000, + 25376078 + ], + [ + 0, + 5, + 5, + 127, + 2980, + 2980, + 8047, + 8056, + 11340, + 69990, + 100000, + 100000, + 100000, + 136056, + 559326, + 1000000, + 1000000, + 1000000, + 2200493, + 20000000, + 20000000 + ], + [ + 0, + 4, + 712, + 8056, + 43353, + 43353, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 105642, + 1000000, + 1000000, + 100040491 + ], + [ + 0, + 5, + 5, + 5, + 849, + 8056, + 15221, + 59877, + 69990, + 100000, + 100000, + 100000, + 182509, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 965, + 2418, + 2418, + 8056, + 8056, + 47340, + 59877, + 59877, + 69990, + 100000, + 100000, + 100000, + 100000, + 100000, + 126807, + 937498, + 1005000, + 10000000, + 10000000, + 10000000 + ], + [ + 0, + 5, + 5, + 5, + 507, + 592, + 2348, + 8056, + 25233, + 25233, + 69990, + 100000, + 100000, + 100000, + 116034, + 116034, + 1000000, + 2500000, + 4000000, + 20000000, + 1600000246 + ], + [ + 0, + 260, + 8056, + 8056, + 9398, + 9398, + 33010, + 69990, + 69990, + 100000, + 100000, + 100000, + 100000, + 100000, + 179591, + 1000000, + 1943785, + 10000000, + 10000000, + 10000000, + 100040392 + ], + [ + 0, + 5, + 5, + 740, + 740, + 3136, + 3136, + 8056, + 37552, + 69990, + 100000, + 100000, + 100000, + 100000, + 118190, + 118190, + 1000000, + 1000000, + 1200082, + 20000000, + 20000000 + ], + [ + 0, + 5, + 100, + 101, + 101, + 101, + 101, + 101, + 101, + 263, + 8056, + 15661, + 29236, + 69990, + 100000, + 100000, + 174130, + 1000000, + 1000000, + 10000000, + 10000000 + ], + [ + 0, + 747, + 747, + 3136, + 3136, + 4288, + 4288, + 9000, + 40927, + 83121, + 100000, + 100000, + 100000, + 100000, + 100000, + 108653, + 108653, + 1000000, + 1943806, + 20000000, + 20000000 + ], + [ + 0, + 4, + 5, + 5, + 5, + 5, + 209, + 209, + 12140, + 27324, + 40927, + 100000, + 100000, + 100000, + 100000, + 103895, + 1000000, + 1000000, + 2500000, + 10000000, + 10000000 + ], + [ + 0, + 5, + 5, + 5, + 253, + 253, + 2506, + 12140, + 22103, + 40927, + 100000, + 100000, + 100000, + 100000, + 121144, + 1000000, + 1000000, + 1000000, + 1200000, + 20000000, + 25041554 + ], + [ + 0, + 103, + 987, + 987, + 2545, + 2545, + 12140, + 38261, + 38261, + 40927, + 100000, + 100000, + 100000, + 100000, + 100000, + 159908, + 159908, + 1000000, + 1000000, + 1000000, + 1943856 + ], + [ + 0, + 5, + 5, + 287, + 834, + 8662, + 12140, + 12530, + 12530, + 40927, + 100000, + 100000, + 100000, + 157899, + 1000000, + 1943882, + 2031211, + 2637929, + 5801994, + 25290762, + 80828994 + ], + [ + 0, + 446, + 507, + 595, + 3137, + 3394, + 12140, + 40927, + 100000, + 100000, + 100000, + 100000, + 196268, + 1000000, + 1000000, + 1000000, + 1150063, + 1150063, + 1441387, + 25001795, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 5, + 628, + 628, + 11098, + 12140, + 40927, + 47147, + 100000, + 100000, + 100000, + 100000, + 128486, + 128486, + 1000000, + 2000000 + ], + [ + 0, + 240, + 595, + 3137, + 3137, + 12140, + 40927, + 46651, + 87932, + 100000, + 100000, + 100000, + 100000, + 100000, + 127819, + 127819, + 1000000, + 1000000, + 1200081, + 2500000, + 37257013 + ], + [ + 0, + 5, + 5, + 532, + 1000, + 1000, + 1000, + 2545, + 12140, + 12850, + 12850, + 40927, + 100000, + 100000, + 100000, + 186238, + 186238, + 1000000, + 1000000, + 1010004, + 1943970 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 141, + 141, + 3136, + 12140, + 40927, + 45892, + 100000, + 100000, + 100000, + 100000, + 148458, + 1000000, + 1943972 + ], + [ + 0, + 4, + 4, + 5, + 5, + 7, + 62, + 62, + 10296, + 10296, + 12140, + 94864, + 100000, + 100000, + 100000, + 100000, + 186761, + 186761, + 1000000, + 1000000, + 1944002 + ], + [ + 0, + 79, + 1529, + 2449, + 49811, + 49811, + 100000, + 100000, + 100000, + 197433, + 197433, + 1000000, + 1179244, + 1572460, + 1703532, + 2031212, + 2031212, + 2031212, + 20751045, + 25382021, + 100040096 + ], + [ + 0, + 5, + 5, + 5, + 5, + 133, + 133, + 7111, + 7111, + 9921, + 94864, + 94864, + 100000, + 100000, + 100000, + 100000, + 160650, + 1000000, + 1944038, + 2031212, + 100040096 + ], + [ + 0, + 477, + 1529, + 1529, + 9921, + 9921, + 14472, + 72103, + 94864, + 100000, + 100000, + 100000, + 100000, + 138008, + 138008, + 1000000, + 1000000, + 1000056, + 10000000, + 10000000, + 10000000 + ], + [ + 0, + 5, + 5, + 659, + 659, + 9921, + 28171, + 28171, + 94864, + 100000, + 100000, + 100000, + 100000, + 100000, + 143743, + 143743, + 1000000, + 1015768, + 1944150, + 20000000, + 100039997 + ], + [ + 0, + 557, + 557, + 2507, + 2507, + 9399, + 9399, + 9921, + 49732, + 49732, + 72103, + 72103, + 94864, + 100000, + 100000, + 100000, + 100000, + 100000, + 188086, + 1000000, + 1944226 + ], + [ + 0, + 831, + 831, + 3137, + 3137, + 3137, + 9921, + 22380, + 22380, + 94864, + 94864, + 100000, + 100000, + 100000, + 100000, + 100000, + 116841, + 116841, + 1000000, + 1000000, + 3999598 + ], + [ + 0, + 354, + 2949, + 3138, + 3138, + 9921, + 26561, + 26561, + 94864, + 100000, + 100000, + 100000, + 100000, + 100000, + 100978, + 1000000, + 1944306, + 10000000, + 17198118, + 20000000, + 100000000 + ], + [ + 0, + 5, + 5, + 119, + 599, + 2387, + 2387, + 9921, + 94864, + 100000, + 100000, + 100000, + 100000, + 178858, + 178858, + 1000000, + 1150063, + 1944235, + 10000000, + 10000000, + 25005440 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 622, + 1508, + 8125, + 9921, + 15662, + 19604, + 94864, + 100000, + 100000, + 100000, + 174276, + 1100000, + 25001510 + ], + [ + 0, + 5, + 5, + 100, + 100, + 100, + 342, + 6710, + 9921, + 36735, + 45901, + 94864, + 100000, + 100000, + 100000, + 100000, + 170233, + 170233, + 1492887, + 1869269, + 25015594 + ], + [ + 0, + 5, + 5, + 475, + 600, + 7145, + 9376, + 9399, + 9399, + 17817, + 28502, + 36735, + 100000, + 100000, + 100000, + 100000, + 136428, + 1000000, + 1000000, + 1000000, + 1944495 + ], + [ + 0, + 160, + 878, + 7145, + 9399, + 9399, + 12265, + 12265, + 17817, + 36735, + 100000, + 100000, + 100000, + 100000, + 118282, + 118282, + 1000000, + 1506928, + 1944597, + 25000000, + 51772461 + ], + [ + 0, + 5, + 600, + 716, + 1028, + 3136, + 7145, + 17817, + 36735, + 47674, + 100000, + 100000, + 100000, + 175514, + 175514, + 1000000, + 1368299, + 4000000, + 4000000, + 10000000, + 100039600 + ], + [ + 0, + 906, + 906, + 7145, + 12530, + 12530, + 17817, + 36735, + 47715, + 47715, + 69990, + 100000, + 100000, + 100000, + 100000, + 148714, + 148714, + 1150063, + 1550220, + 1550220, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 600, + 949, + 7145, + 17817, + 29510, + 36023, + 36735, + 100000, + 100000, + 100000, + 100000, + 137694, + 1000000, + 1000000, + 1000000, + 1944807 + ], + [ + 0, + 422, + 422, + 7145, + 9000, + 17817, + 28303, + 28303, + 36735, + 100000, + 100000, + 100000, + 100000, + 100000, + 196156, + 196156, + 1000000, + 1944712, + 7619618, + 25000000, + 100039600 + ], + [ + 0, + 5, + 5, + 5, + 635, + 2442, + 7145, + 15662, + 17817, + 28950, + 36735, + 81595, + 81595, + 100000, + 100000, + 100000, + 169369, + 772630, + 1000000, + 1150064, + 25006300 + ], + [ + 0, + 565, + 565, + 7145, + 12531, + 12531, + 16268, + 16268, + 17817, + 36735, + 100000, + 100000, + 100000, + 145269, + 145269, + 1000000, + 1100039, + 1100039, + 1100039, + 1100039, + 1945053 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 155, + 7145, + 15663, + 17817, + 25339, + 36735, + 100000, + 100000, + 100000, + 100000, + 197746, + 1000000, + 1000001, + 25120951 + ], + [ + 0, + 44, + 44, + 5704, + 7145, + 17817, + 28904, + 28904, + 36735, + 72816, + 100000, + 100000, + 100000, + 100000, + 100000, + 185061, + 364143, + 1000000, + 1000000, + 1000000, + 1945183 + ], + [ + 0, + 5, + 5, + 511, + 763, + 2506, + 2506, + 12239, + 45729, + 45729, + 71499, + 100000, + 100000, + 100000, + 127755, + 1000000, + 1000000, + 1000000, + 1000000, + 1945068, + 30501040 + ], + [ + 0, + 5, + 5, + 5, + 131, + 1507, + 1507, + 1836, + 12239, + 17815, + 69197, + 69197, + 69197, + 69197, + 71499, + 100000, + 100000, + 100000, + 129227, + 1000000, + 10936678 + ], + [ + 0, + 5, + 50, + 50, + 50, + 50, + 50, + 183, + 347, + 5704, + 9399, + 12239, + 15737, + 67639, + 67639, + 100000, + 100000, + 100000, + 153491, + 1000000, + 100000000 + ], + [ + 0, + 5, + 5, + 624, + 624, + 5704, + 12239, + 15662, + 15662, + 43363, + 43363, + 71499, + 100000, + 100000, + 100000, + 194346, + 194346, + 580475, + 1000002, + 1945643, + 100000000 + ], + [ + 0, + 5, + 5, + 115, + 3136, + 3136, + 3797, + 3797, + 5704, + 8056, + 12239, + 71499, + 100000, + 100000, + 100000, + 111329, + 111329, + 605986, + 1000000, + 2536549, + 25023891 + ], + [ + 0, + 3, + 474, + 1097, + 5704, + 12239, + 71499, + 100000, + 100000, + 100000, + 159321, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100040, + 3618382, + 25048003 + ], + [ + 0, + 5, + 5, + 5, + 511, + 511, + 830, + 5704, + 12239, + 26205, + 100000, + 100000, + 100000, + 117233, + 117233, + 1000000, + 1000000, + 1000000, + 1945997, + 12115753, + 32941820 + ], + [ + 0, + 125, + 5704, + 8056, + 41863, + 41863, + 71499, + 100000, + 100000, + 100000, + 121092, + 121092, + 1000000, + 1000000, + 1200079, + 2031219, + 5000000, + 5520825, + 25006069, + 61916503, + 69477060 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 104, + 2005, + 12239, + 16074, + 17817, + 100000, + 100000, + 100000, + 100437, + 1000000, + 4000000, + 4564576, + 100000000 + ], + [ + 0, + 50, + 50, + 511, + 663, + 663, + 12239, + 36567, + 52504, + 100000, + 100000, + 100000, + 100000, + 148018, + 148018, + 1000000, + 1000000, + 1000000, + 1200079, + 10000000, + 10000000 + ], + [ + 0, + 5, + 5, + 539, + 3859, + 3859, + 12530, + 12530, + 65928, + 100000, + 100000, + 100000, + 100000, + 191942, + 1000000, + 1000000, + 1000000, + 1150062, + 1946387, + 25000000, + 25053618 + ], + [ + 0, + 313, + 9399, + 9399, + 19517, + 52504, + 100000, + 100000, + 100000, + 190465, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1550218, + 1946595, + 4000000, + 74443481 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 446, + 446, + 23710, + 52504, + 100000, + 100000, + 100000, + 100000, + 136686, + 136686, + 1000000, + 1000000, + 1946606 + ], + [ + 0, + 28, + 28, + 2073, + 2073, + 2073, + 52504, + 72816, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 121995, + 121995, + 121995, + 1000000, + 1000000, + 1946814, + 2500000 + ], + [ + 0, + 5, + 5, + 496, + 496, + 511, + 511, + 34845, + 34845, + 52504, + 100000, + 100000, + 100000, + 100000, + 100000, + 129310, + 1000000, + 1000000, + 1946618, + 10000000, + 100039304 + ], + [ + 0, + 792, + 792, + 9401, + 9401, + 42243, + 42243, + 52504, + 100000, + 100000, + 100000, + 100000, + 100000, + 134799, + 134799, + 1000000, + 1000002, + 1000002, + 1947064, + 3000000, + 3000000 + ], + [ + 0, + 881, + 15665, + 15665, + 49011, + 49011, + 52504, + 100000, + 100000, + 100000, + 100000, + 100000, + 180252, + 180252, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1947314 + ], + [ + 0, + 100, + 1528, + 1528, + 2007, + 2007, + 13311, + 13311, + 100000, + 100000, + 100000, + 100000, + 115363, + 134804, + 136704, + 136704, + 1000000, + 1000000, + 1000001, + 1947327, + 33115141 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 775, + 33794, + 71490, + 100000, + 100000, + 100000, + 106178, + 1000000, + 1200078, + 2500000, + 500000000 + ], + [ + 0, + 766, + 766, + 1528, + 1528, + 6381, + 6381, + 27404, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 175110, + 175110, + 802497, + 1000000, + 1947341, + 2200472, + 100000000 + ], + [ + 0, + 5, + 5, + 221, + 221, + 1508, + 1508, + 5651, + 5651, + 27404, + 100000, + 100000, + 100000, + 100000, + 142344, + 142344, + 952622, + 1000000, + 1350138, + 38532211, + 83330996 + ], + [ + 0, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 607, + 9400, + 100000, + 2999607 + ], + [ + 0, + 5, + 5, + 5, + 328, + 328, + 463, + 1000, + 1000, + 18080, + 27404, + 100000, + 100000, + 100000, + 100000, + 196675, + 854687, + 1000000, + 1150060, + 1948192, + 100038906 + ], + [ + 0, + 638, + 638, + 8626, + 8626, + 12530, + 12530, + 12530, + 27404, + 100000, + 100000, + 100000, + 100000, + 145107, + 145107, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1948507 + ], + [ + 0, + 5, + 5, + 890, + 890, + 9400, + 9400, + 9400, + 27404, + 49964, + 49964, + 100000, + 100000, + 100000, + 100000, + 100000, + 106987, + 106987, + 1000000, + 1948523, + 10936682 + ], + [ + 0, + 220, + 220, + 633, + 12755, + 12755, + 17279, + 27404, + 100000, + 100000, + 100000, + 100000, + 197736, + 197736, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100038908 + ], + [ + 0, + 3, + 3, + 640, + 640, + 640, + 27404, + 44728, + 44728, + 100000, + 100000, + 100000, + 100000, + 100000, + 121459, + 121459, + 133497, + 133497, + 1000000, + 1000000, + 1948540 + ], + [ + 0, + 221, + 221, + 328, + 328, + 765, + 765, + 18353, + 18353, + 27404, + 100000, + 100000, + 100000, + 100000, + 127608, + 127608, + 1000000, + 1000000, + 1100040, + 1100040, + 1949216 + ], + [ + 0, + 64, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 2250, + 27404, + 100000, + 100000, + 100000, + 195887, + 195887, + 1010004, + 22153017, + 31085410 + ], + [ + 0, + 5, + 5, + 547, + 547, + 13011, + 13011, + 27404, + 78583, + 100000, + 100000, + 100000, + 100000, + 100000, + 130195, + 130195, + 1000000, + 1000000, + 1200078, + 1950010, + 100000000 + ], + [ + 0, + 222, + 222, + 222, + 336, + 336, + 29130, + 40912, + 40912, + 100000, + 100000, + 100000, + 100000, + 100000, + 189904, + 189904, + 189904, + 1000000, + 1000000, + 1000000, + 1950844 + ], + [ + 0, + 5, + 5, + 5, + 5, + 789, + 789, + 24936, + 29130, + 100000, + 100000, + 100000, + 100000, + 100000, + 128923, + 145107, + 583776, + 1000000, + 1000000, + 1000000, + 2999612 + ], + [ + 0, + 210, + 224, + 224, + 1555, + 7887, + 7887, + 100000, + 100000, + 100000, + 125082, + 125082, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100041, + 2500000, + 2500000 + ], + [ + 0, + 13, + 871, + 9567, + 9567, + 29130, + 44252, + 44252, + 100000, + 100000, + 100000, + 100000, + 143967, + 143967, + 1000000, + 1000000, + 1000000, + 1000000, + 1952554, + 2500000, + 10000000 + ], + [ + 0, + 174, + 224, + 224, + 3192, + 3192, + 29130, + 47277, + 73596, + 73596, + 100000, + 100000, + 100000, + 100000, + 138833, + 1000000, + 1000000, + 1000000, + 1951765, + 2500000, + 79999612 + ], + [ + 0, + 3, + 3, + 336, + 336, + 7145, + 29130, + 46054, + 46054, + 100000, + 100000, + 100000, + 100000, + 100000, + 136735, + 136735, + 1000000, + 1000000, + 1000000, + 1953555, + 100000000 + ], + [ + 0, + 3, + 3, + 5, + 5, + 657, + 657, + 15077, + 15077, + 29130, + 100000, + 100000, + 100000, + 100000, + 100000, + 170060, + 790200, + 1000000, + 1000000, + 1000001, + 1954607 + ], + [ + 0, + 743, + 743, + 8627, + 8627, + 9000, + 29130, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 147456, + 147456, + 147456, + 1000000, + 1000000, + 1000000, + 1000000, + 1955659 + ], + [ + 0, + 4, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 891, + 23994, + 100000, + 100000, + 100000, + 100000, + 164024, + 1000000, + 4000000, + 100038215 + ], + [ + 0, + 453, + 3194, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 29130, + 31656, + 100000, + 100000, + 173122, + 1000000, + 1956764, + 100038215 + ], + [ + 0, + 6, + 6, + 6, + 891, + 891, + 12755, + 12755, + 12755, + 33713, + 100000, + 100000, + 100000, + 100000, + 173161, + 173161, + 173161, + 1000000, + 1000000, + 1000000, + 1955768 + ], + [ + 0, + 905, + 905, + 3193, + 3193, + 33713, + 37262, + 37262, + 100000, + 100000, + 100000, + 100000, + 100000, + 180749, + 794502, + 1000000, + 1000001, + 1000001, + 1000001, + 1000001, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 990, + 990, + 23581, + 23581, + 33713, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 139173, + 139173, + 1000000, + 1000000, + 1955827, + 25001686 + ], + [ + 0, + 3, + 3, + 6, + 6, + 140, + 140, + 23650, + 23650, + 33713, + 82162, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 167963, + 1000000, + 1955883, + 100037918 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 155, + 155, + 33713, + 47497, + 47497, + 100000, + 100000, + 100000, + 100000, + 100000, + 167035, + 167035, + 613316, + 1000000, + 1955831 + ], + [ + 0, + 4, + 4, + 353, + 353, + 9570, + 9570, + 9570, + 16507, + 33713, + 100000, + 100000, + 100000, + 100000, + 100000, + 183440, + 183440, + 1000003, + 1100040, + 1491686, + 2999620 + ], + [ + 0, + 899, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 15945, + 33713, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000002, + 1000002, + 1000002, + 2500000 + ], + [ + 0, + 4, + 4, + 4, + 773, + 773, + 7145, + 15945, + 15945, + 33713, + 33713, + 42352, + 42352, + 100000, + 100000, + 100000, + 100000, + 181624, + 181624, + 1000000, + 1956023 + ], + [ + 0, + 3, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 105, + 19328, + 33713, + 100000, + 100000, + 100000, + 165079, + 608646, + 1956095 + ], + [ + 0, + 5, + 5, + 572, + 572, + 17073, + 17073, + 66968, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 159956, + 159956, + 1000000, + 1000000, + 1000000, + 1000001, + 1956247 + ], + [ + 0, + 5, + 5, + 9, + 9, + 9, + 466, + 466, + 23017, + 23017, + 66968, + 100000, + 100000, + 100000, + 100000, + 100000, + 169794, + 169794, + 1000000, + 1000001, + 1956399 + ], + [ + 0, + 21, + 21, + 9570, + 9570, + 9570, + 20938, + 20938, + 66968, + 100000, + 100000, + 100000, + 100000, + 100000, + 148712, + 148712, + 596512, + 596512, + 1000000, + 1956719, + 25040772 + ], + [ + 0, + 237, + 237, + 237, + 825, + 825, + 9557, + 9557, + 9570, + 9570, + 66968, + 100000, + 100000, + 100000, + 100000, + 100000, + 148178, + 148178, + 1000000, + 1957039, + 100000000 + ], + [ + 0, + 829, + 829, + 15947, + 15947, + 17684, + 17684, + 66968, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 138920, + 138920, + 1000000, + 1000000, + 1000000, + 1000000, + 1957055 + ], + [ + 0, + 5, + 5, + 238, + 238, + 620, + 620, + 12608, + 12608, + 66968, + 100000, + 100000, + 100000, + 100000, + 158328, + 158328, + 1000000, + 1000000, + 1957375, + 4000000, + 4000000 + ], + [ + 0, + 5, + 5, + 680, + 33254, + 33254, + 100000, + 100000, + 100000, + 100000, + 110628, + 110628, + 1000000, + 1000000, + 1000000, + 1957072, + 2500000, + 4053943, + 10000000, + 10000000, + 474232920 + ], + [ + 0, + 5, + 1556, + 1556, + 1556, + 1922, + 5432, + 5432, + 14190, + 14190, + 74224, + 74224, + 100000, + 100000, + 100000, + 100000, + 159989, + 159989, + 1000000, + 2500000, + 5253213 + ], + [ + 0, + 239, + 239, + 981, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 7145, + 15946, + 20400, + 66968, + 100000, + 100000, + 118995, + 1000000, + 1000000, + 1957108 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 12758, + 12758, + 40339, + 66968, + 100000, + 100000, + 100000, + 113930, + 1000000, + 1000000, + 1000000, + 3537759 + ], + [ + 0, + 5, + 5, + 133, + 239, + 239, + 1556, + 1556, + 10875, + 10875, + 66968, + 100000, + 100000, + 100000, + 100000, + 153738, + 1000000, + 1000000, + 1000000, + 1350130, + 1957198 + ], + [ + 0, + 309, + 309, + 7145, + 10494, + 10494, + 47834, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 157604, + 157604, + 1000000, + 1000000, + 1000000, + 1000000, + 1957220 + ], + [ + 0, + 240, + 240, + 961, + 2713, + 34253, + 47834, + 63695, + 100000, + 100000, + 100000, + 100000, + 147905, + 147905, + 1000000, + 1000000, + 1310348, + 1375884, + 1957255, + 22698078, + 25075738 + ], + [ + 0, + 44, + 44, + 44, + 44, + 572, + 1556, + 1556, + 2713, + 44849, + 47834, + 100000, + 100000, + 100000, + 181537, + 181537, + 1000000, + 1003228, + 1957244, + 1999628, + 100000000 + ], + [ + 0, + 7, + 7, + 7, + 286, + 286, + 286, + 47834, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 145159, + 145159, + 145159, + 1000000, + 1000000, + 1957297 + ], + [ + 0, + 917, + 2682, + 2682, + 32414, + 32414, + 47834, + 70240, + 70240, + 100000, + 100000, + 100000, + 100000, + 113297, + 113297, + 810686, + 1000000, + 1000000, + 1000001, + 1000009, + 2500000 + ], + [ + 0, + 10, + 418, + 9000, + 9000, + 9000, + 9000, + 9000, + 9000, + 9000, + 9000, + 21391, + 47834, + 100000, + 100000, + 176075, + 941158, + 1150058, + 2031245, + 2513590, + 52810729 + ], + [ + 0, + 5, + 5, + 855, + 973, + 973, + 47834, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 189822, + 189822, + 1000000, + 1000000, + 1350129, + 3229270, + 25051603, + 60000000 + ], + [ + 0, + 1, + 1, + 2645, + 47834, + 49330, + 49330, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 122821, + 122821, + 1000000, + 1000000, + 1000000, + 1957429, + 3599629, + 22706963 + ], + [ + 0, + 5, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 918, + 1411, + 2591, + 12403, + 100000, + 100000, + 100000, + 133660, + 1000000, + 100000000 + ], + [ + 0, + 4, + 4, + 5, + 5, + 5, + 178, + 215, + 215, + 15947, + 18670, + 18670, + 47834, + 100000, + 100000, + 100000, + 100000, + 175331, + 175331, + 1000000, + 500000000 + ], + [ + 0, + 5, + 5, + 180, + 180, + 15947, + 15947, + 18639, + 24046, + 63155, + 63155, + 63155, + 100000, + 100000, + 100000, + 182279, + 182279, + 1000000, + 1150058, + 1200074, + 1957624 + ], + [ + 0, + 242, + 242, + 442, + 442, + 1556, + 1556, + 1556, + 24046, + 26986, + 26986, + 100000, + 100000, + 100000, + 100000, + 100000, + 159956, + 183339, + 183339, + 1000000, + 1957719 + ], + [ + 0, + 628, + 2591, + 9557, + 9557, + 9557, + 9557, + 9557, + 9557, + 9557, + 9557, + 9557, + 9557, + 9557, + 24046, + 39438, + 100000, + 100000, + 141482, + 759146, + 1957630 + ], + [ + 0, + 5, + 5, + 5, + 921, + 24046, + 25736, + 25736, + 56841, + 56841, + 100000, + 100000, + 100000, + 166184, + 166184, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1957833 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 106, + 106, + 24046, + 28655, + 28655, + 100000, + 100000, + 100000, + 100000, + 100000, + 159594, + 159594, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 552, + 15947, + 15947, + 15947, + 24046, + 25851, + 25851, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 199367, + 759558, + 1000000, + 1000000, + 1000001, + 1000001, + 100000000 + ], + [ + 0, + 5, + 5, + 232, + 244, + 244, + 244, + 24046, + 49654, + 49654, + 60264, + 100000, + 100000, + 100000, + 100000, + 122618, + 122618, + 1000000, + 1000000, + 1000000, + 1958427 + ], + [ + 0, + 549, + 549, + 12759, + 12759, + 12759, + 19505, + 19505, + 24046, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 158614, + 158614, + 1000000, + 1000000, + 1000000, + 3000000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 152, + 245, + 15947, + 15947, + 17076, + 24046, + 100000, + 100000, + 180181, + 700778, + 1000000, + 79999633 + ], + [ + 0, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 633, + 26399, + 100000, + 100000000 + ], + [ + 0, + 49, + 49, + 244, + 244, + 3194, + 3194, + 5869, + 5869, + 28129, + 100000, + 100000, + 100000, + 100000, + 100000, + 115162, + 115162, + 999999, + 1000000, + 1959965, + 8932863 + ], + [ + 0, + 5, + 5, + 466, + 466, + 9372, + 9570, + 9570, + 9570, + 28129, + 100000, + 100000, + 100000, + 100000, + 146686, + 338937, + 1000000, + 1000000, + 1960522, + 25008076, + 171692535 + ], + [ + 0, + 888, + 888, + 1221, + 1221, + 1556, + 1556, + 28129, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 103614, + 103614, + 1000000, + 1000000, + 1000000, + 1961079 + ], + [ + 0, + 245, + 245, + 973, + 1556, + 1556, + 27035, + 28129, + 100000, + 100000, + 100000, + 100000, + 100000, + 181024, + 559826, + 1000000, + 1000000, + 1000000, + 1000001, + 1100037, + 2250000 + ], + [ + 0, + 5, + 5, + 10, + 111, + 111, + 28129, + 32890, + 32890, + 100000, + 100000, + 100000, + 100000, + 100000, + 169008, + 559826, + 1000000, + 1000000, + 1100037, + 1100037, + 1963419 + ], + [ + 0, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2633, + 2734, + 100000, + 100036333 + ], + [ + 0, + 5, + 502, + 502, + 697, + 741, + 741, + 1570, + 18060, + 28129, + 100000, + 100000, + 100000, + 159956, + 180072, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100036332 + ], + [ + 0, + 178, + 178, + 9658, + 9658, + 27745, + 27745, + 27745, + 28129, + 100000, + 100000, + 100000, + 100000, + 100000, + 111772, + 111772, + 1000000, + 1000000, + 1000000, + 1000000, + 1973247 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 400, + 741, + 4518, + 4518, + 16094, + 28129, + 100000, + 100000, + 100000, + 112276, + 1000000, + 1973493 + ], + [ + 0, + 586, + 586, + 2615, + 2615, + 2615, + 7296, + 24294, + 72829, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 116231, + 527925, + 1000000, + 1000000, + 1000000, + 1978407 + ], + [ + 0, + 20, + 20, + 716, + 716, + 2615, + 2615, + 15940, + 22915, + 22915, + 24294, + 70968, + 100000, + 100000, + 100000, + 100000, + 132021, + 132021, + 1000000, + 1000000, + 100036333 + ], + [ + 0, + 100, + 298, + 298, + 959, + 959, + 24294, + 46358, + 46358, + 70968, + 100000, + 100000, + 100000, + 100000, + 188660, + 188660, + 686602, + 1000000, + 1200000, + 1989243, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 5, + 7, + 8, + 155, + 9735, + 24294, + 100000, + 100000, + 100000, + 164735, + 1000000, + 1000000, + 1000000, + 2500000, + 2999633 + ], + [ + 0, + 5, + 5, + 5, + 93, + 93, + 24294, + 49784, + 49784, + 100000, + 100000, + 100000, + 100000, + 100000, + 108737, + 108737, + 1000000, + 1000000, + 1994932, + 2500000, + 2500000 + ], + [ + 0, + 860, + 860, + 3224, + 3224, + 24294, + 40445, + 40445, + 65921, + 100000, + 100000, + 100000, + 100000, + 100000, + 132809, + 132809, + 763699, + 1000000, + 2400000, + 31268354, + 38780002 + ], + [ + 0, + 7, + 503, + 743, + 743, + 12879, + 12879, + 24246, + 24246, + 100000, + 100000, + 100000, + 100000, + 197958, + 197958, + 1000000, + 1703571, + 1900179, + 16927645, + 25077832, + 100000000 + ], + [ + 0, + 5, + 5, + 255, + 714, + 857, + 857, + 2128, + 9661, + 9661, + 9661, + 24294, + 100000, + 100000, + 100000, + 100000, + 159578, + 604588, + 1000000, + 1000000, + 1990399 + ], + [ + 0, + 5, + 5, + 428, + 428, + 7958, + 24294, + 69804, + 75827, + 75827, + 100000, + 100000, + 100000, + 100000, + 121185, + 121185, + 424588, + 1000000, + 1000000, + 1991029, + 22167486 + ], + [ + 0, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 743, + 883, + 1570, + 24294, + 25000, + 42350, + 100000, + 100000, + 100000, + 176534, + 1000000, + 10067946 + ], + [ + 0, + 455, + 455, + 1570, + 1570, + 15946, + 21977, + 69804, + 100000, + 100000, + 100000, + 100000, + 100000, + 154088, + 154088, + 1000000, + 1992982, + 4000000, + 4000000, + 25115500, + 40935826 + ], + [ + 0, + 505, + 505, + 881, + 12877, + 12877, + 16039, + 21977, + 100000, + 100000, + 100000, + 183115, + 1000000, + 1000000, + 1150057, + 1244819, + 2031251, + 10000000, + 10001135, + 40007204, + 3000000000 + ], + [ + 0, + 714, + 940, + 940, + 2582, + 16095, + 16095, + 21977, + 25000, + 25000, + 47367, + 47367, + 100000, + 100000, + 100000, + 199607, + 199607, + 1000000, + 1994372, + 25032827, + 100000000 + ], + [ + 0, + 3, + 5, + 151, + 188, + 21977, + 39756, + 100000, + 100000, + 100000, + 121306, + 1000000, + 1000000, + 1035923, + 1463346, + 1769107, + 3254842, + 13244916, + 25000344, + 40786494, + 79994173 + ], + [ + 0, + 525, + 743, + 743, + 879, + 26598, + 66179, + 66179, + 100000, + 100000, + 100000, + 148335, + 1150057, + 1179283, + 1244819, + 1441427, + 1506963, + 1572499, + 2239335, + 22980433, + 1000000000 + ], + [ + 0, + 383, + 383, + 2075, + 10789, + 12337, + 88474, + 88474, + 100000, + 100000, + 100000, + 184540, + 184540, + 184540, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1997365, + 25014644 + ], + [ + 0, + 5, + 5, + 50, + 50, + 50, + 77, + 492, + 870, + 5363, + 11593, + 21977, + 59718, + 100000, + 100000, + 100000, + 110699, + 1000000, + 1150058, + 1179284, + 100036136 + ], + [ + 0, + 5, + 5, + 35, + 639, + 639, + 715, + 715, + 6826, + 7272, + 11012, + 21338, + 21977, + 38855, + 100000, + 137715, + 137715, + 424588, + 1000000, + 2000585, + 25012889 + ], + [ + 0, + 5, + 5, + 5, + 232, + 745, + 745, + 1637, + 1637, + 1637, + 9660, + 20541, + 29321, + 100000, + 100000, + 100000, + 100101, + 196685, + 1000000, + 1000001, + 100000000 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 220, + 2266, + 23483, + 25866, + 67437, + 100000, + 100000, + 144059, + 1000000, + 1000000, + 1200075, + 2005454, + 100000000 + ], + [ + 0, + 5, + 5, + 50, + 50, + 50, + 50, + 50, + 1539, + 11038, + 11038, + 100000, + 100000, + 100000, + 100000, + 112639, + 131881, + 1000000, + 1000000, + 1208164, + 22025145 + ], + [ + 0, + 239, + 506, + 506, + 1637, + 1637, + 1637, + 9660, + 15940, + 33013, + 100000, + 100000, + 100000, + 155258, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1249874, + 20000000 + ], + [ + 0, + 5, + 5, + 40, + 93, + 644, + 745, + 745, + 1346, + 10260, + 17773, + 31062, + 100000, + 100000, + 100000, + 186970, + 186970, + 1000000, + 1000000, + 1200075, + 1249874 + ], + [ + 0, + 5, + 259, + 497, + 497, + 955, + 17773, + 30692, + 56400, + 100000, + 100000, + 100000, + 100000, + 100000, + 153173, + 405114, + 1000000, + 1000000, + 1224747, + 10000000, + 100000000 + ], + [ + 0, + 5, + 5, + 10, + 57, + 57, + 10364, + 10364, + 17773, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 115501, + 115501, + 925584, + 1000000, + 1010003, + 1233666 + ], + [ + 0, + 5, + 5, + 91, + 91, + 17773, + 26442, + 26442, + 100000, + 100000, + 100000, + 100000, + 100000, + 166788, + 166788, + 1000000, + 1000000, + 1000000, + 2500000, + 2500000, + 2500000 + ], + [ + 0, + 5, + 5, + 414, + 8332, + 8332, + 17773, + 63549, + 63549, + 63549, + 100000, + 100000, + 100000, + 100000, + 167194, + 229881, + 405114, + 1000000, + 1200073, + 2500000, + 2500000 + ], + [ + 0, + 5, + 976, + 976, + 17773, + 30844, + 63549, + 100000, + 100000, + 100000, + 100000, + 131178, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1251950, + 2500000, + 2500000 + ], + [ + 0, + 836, + 1570, + 1570, + 1570, + 48902, + 48902, + 67058, + 100000, + 100000, + 100000, + 100000, + 100000, + 186296, + 186296, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1243500 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 302, + 753, + 1638, + 1638, + 1638, + 17773, + 39372, + 100000, + 100000, + 194489, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 72, + 72, + 3755, + 3755, + 10000, + 12870, + 18625, + 31188, + 100000, + 100000, + 100000, + 100000, + 117681, + 117681, + 300426, + 424588, + 1000000, + 1000000, + 1010003, + 1273892 + ], + [ + 0, + 451, + 451, + 820, + 10000, + 15113, + 23664, + 23664, + 100000, + 100000, + 100000, + 100000, + 100000, + 108769, + 108769, + 1000000, + 1000000, + 2500000, + 2500000, + 20000000, + 20000000 + ], + [ + 0, + 5, + 5, + 5, + 535, + 602, + 744, + 1638, + 1638, + 1638, + 1638, + 1638, + 15113, + 25291, + 100000, + 100000, + 146616, + 1000000, + 1000000, + 3000000, + 10000000 + ], + [ + 0, + 505, + 505, + 642, + 642, + 1570, + 1570, + 15113, + 23424, + 59080, + 59080, + 59080, + 100000, + 100000, + 100000, + 100000, + 174180, + 174180, + 1000000, + 1296932, + 1394881 + ], + [ + 0, + 5, + 27, + 750, + 3223, + 3223, + 15113, + 30490, + 64349, + 100000, + 100000, + 100000, + 128955, + 1000000, + 1286284, + 6789511, + 10000000, + 10000000, + 13721432, + 25007839, + 61578265 + ], + [ + 0, + 20, + 32, + 32, + 12877, + 15113, + 25015, + 100000, + 100000, + 100000, + 121673, + 125310, + 1000000, + 1000000, + 1000000, + 1100036, + 1441791, + 10000000, + 10000000, + 25000000, + 100000000 + ], + [ + 0, + 3, + 50, + 50, + 50, + 50, + 50, + 742, + 742, + 1638, + 1638, + 1638, + 15113, + 45346, + 100000, + 100000, + 100000, + 114607, + 137001, + 1000000, + 79999638 + ], + [ + 0, + 20, + 20, + 20, + 627, + 627, + 15113, + 37652, + 37652, + 100000, + 100000, + 100000, + 100000, + 186931, + 186931, + 463548, + 1000000, + 1113750, + 1352229, + 9871599, + 94256038 + ], + [ + 0, + 644, + 644, + 13178, + 13178, + 32103, + 32103, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 164598, + 164598, + 1000000, + 1100000, + 1441430, + 2031254, + 25749933, + 500000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 20, + 101, + 101, + 101, + 101, + 101, + 101, + 735, + 13178, + 44160, + 100000, + 100000, + 187179, + 1000000, + 1381969, + 2210704 + ], + [ + 0, + 5, + 5, + 5, + 788, + 788, + 14731, + 14731, + 15727, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 115901, + 115901, + 186970, + 1000000, + 1000000, + 2210704 + ], + [ + 0, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 640, + 9411, + 100000, + 2250000 + ], + [ + 0, + 407, + 505, + 505, + 505, + 1639, + 1639, + 1639, + 1639, + 9659, + 9659, + 15727, + 34893, + 34893, + 100000, + 100000, + 100000, + 999999, + 1000000, + 1000000, + 2173798 + ], + [ + 0, + 5, + 5, + 15727, + 16041, + 16041, + 16095, + 16095, + 16095, + 55478, + 100000, + 100000, + 100000, + 100000, + 100000, + 164144, + 164144, + 1000000, + 1000000, + 1478268, + 9999639 + ], + [ + 0, + 5, + 5, + 18, + 18, + 10360, + 15727, + 32994, + 100000, + 100000, + 100000, + 100000, + 100000, + 157888, + 157888, + 186296, + 1000000, + 1000000, + 1000000, + 1000000, + 1986756 + ], + [ + 0, + 5, + 35, + 506, + 506, + 525, + 10280, + 35682, + 35682, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 108321, + 360239, + 1517441, + 131000000 + ], + [ + 0, + 5, + 5, + 239, + 239, + 2616, + 2616, + 15727, + 42789, + 42789, + 52392, + 100000, + 100000, + 100000, + 100000, + 124503, + 180166, + 903079, + 1000000, + 1554914, + 100000000 + ], + [ + 0, + 205, + 205, + 3223, + 3223, + 15727, + 47310, + 47310, + 66295, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 189467, + 471006, + 1000000, + 7635341, + 23579759, + 25249795 + ], + [ + 0, + 5, + 109, + 109, + 3223, + 6198, + 10000, + 40929, + 40929, + 100000, + 100000, + 100000, + 106682, + 266004, + 471006, + 1000000, + 1000000, + 1550198, + 1550198, + 1550198, + 25030068 + ], + [ + 0, + 5, + 67, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 17748, + 36892, + 100000, + 100000, + 100000, + 114267, + 186527, + 1000000, + 25024017 + ], + [ + 0, + 714, + 714, + 2740, + 41150, + 41150, + 100000, + 100000, + 100000, + 100000, + 100000, + 122482, + 122482, + 1000000, + 1000000, + 1000000, + 1000000, + 1639229, + 2500000, + 25058106, + 100000000 + ], + [ + 0, + 728, + 728, + 746, + 746, + 1029, + 1570, + 1570, + 12105, + 29793, + 29793, + 100000, + 100000, + 100000, + 100000, + 144338, + 144338, + 1000000, + 1000000, + 1684197, + 100035640 + ], + [ + 0, + 108, + 12105, + 16095, + 16095, + 23196, + 37185, + 100000, + 100000, + 100000, + 132503, + 192048, + 193572, + 621748, + 999640, + 999640, + 999640, + 1100036, + 1100036, + 1778630, + 33911114 + ], + [ + 0, + 353, + 505, + 5209, + 12877, + 37185, + 100000, + 100000, + 161916, + 187052, + 256073, + 621748, + 1000000, + 1000000, + 1000000, + 1000000, + 1100036, + 1873063, + 2500000, + 19076607, + 100035640 + ], + [ + 0, + 525, + 525, + 10000, + 10000, + 10000, + 10000, + 45747, + 100000, + 100000, + 149683, + 403988, + 621748, + 621748, + 1000000, + 1550198, + 1568579, + 2216921, + 2500000, + 25007316, + 100035640 + ], + [ + 0, + 5, + 198, + 1640, + 1640, + 1640, + 1640, + 6516, + 6706, + 10000, + 24787, + 100000, + 100000, + 100000, + 102331, + 968848, + 1034926, + 1550198, + 1877785, + 2500000, + 2500000 + ], + [ + 0, + 5, + 5, + 397, + 525, + 525, + 823, + 1200, + 9837, + 15198, + 100000, + 100000, + 100000, + 152096, + 152096, + 158905, + 1000000, + 1000000, + 1000000, + 1200072, + 100035640 + ], + [ + 0, + 10, + 22, + 463, + 526, + 728, + 728, + 728, + 728, + 728, + 11048, + 23986, + 83709, + 100000, + 100000, + 100000, + 100235, + 1000000, + 1000000, + 4000000, + 14999640 + ], + [ + 0, + 234, + 234, + 3227, + 3227, + 6075, + 11070, + 40910, + 40910, + 100000, + 100000, + 100000, + 100000, + 151773, + 151773, + 1000000, + 1000000, + 1200072, + 1980307, + 10000000, + 10000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 213, + 825, + 11070, + 13374, + 16119, + 20130, + 100000, + 100000, + 136193, + 1000000, + 1988396, + 2500000, + 25001223, + 89309048 + ], + [ + 0, + 5, + 5, + 994, + 5175, + 7500, + 8993, + 11070, + 100000, + 100000, + 100000, + 100000, + 128570, + 128570, + 1000000, + 1000000, + 1000000, + 1200072, + 2005383, + 25628556, + 27059395 + ], + [ + 0, + 5, + 5, + 526, + 718, + 825, + 825, + 8479, + 30420, + 30420, + 100000, + 100000, + 100000, + 150987, + 1000000, + 1200072, + 1634797, + 2500000, + 18055320, + 25400510, + 35431937 + ], + [ + 0, + 5, + 5, + 5, + 5, + 260, + 728, + 3362, + 42347, + 42347, + 84650, + 100000, + 100000, + 100000, + 100000, + 138534, + 138534, + 1000000, + 2004574, + 2500000, + 100000000 + ], + [ + 0, + 177, + 2863, + 3227, + 3227, + 16825, + 43019, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 151626, + 1000000, + 1000000, + 1000000, + 1005000, + 2590050, + 2590050, + 2590050 + ], + [ + 0, + 5, + 367, + 367, + 505, + 1145, + 1688, + 6133, + 12896, + 16825, + 25000, + 100000, + 100000, + 100000, + 144154, + 1000000, + 1000000, + 1200072, + 2500000, + 3100902, + 25010251 + ], + [ + 0, + 5, + 362, + 446, + 1179, + 1179, + 16119, + 36009, + 100000, + 100000, + 100000, + 170478, + 1000000, + 1000000, + 1000000, + 1200072, + 1550198, + 1550198, + 2500000, + 24468064, + 31315854 + ], + [ + 0, + 719, + 1330, + 3227, + 5012, + 16825, + 100000, + 100000, + 100000, + 103113, + 380623, + 1000000, + 1000000, + 1000000, + 1125045, + 1125045, + 1125045, + 1150057, + 1250090, + 2500000, + 2640159 + ], + [ + 0, + 3, + 3, + 5, + 210, + 825, + 825, + 911, + 911, + 16825, + 40957, + 88461, + 100000, + 100000, + 100000, + 100000, + 116374, + 116374, + 1000000, + 1000000, + 1917831 + ], + [ + 0, + 5, + 5, + 5, + 5, + 308, + 308, + 9000, + 16386, + 16825, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 134272, + 339063, + 1000000, + 1100036, + 100000000 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 273, + 1029, + 100000, + 100000, + 141177, + 446664, + 1000000, + 1208161, + 2492448, + 2500000, + 12099640, + 25005701, + 51694740 + ], + [ + 0, + 511, + 825, + 825, + 12896, + 12896, + 34906, + 40485, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1216250, + 1310360, + 2500000, + 25000000, + 26435582, + 100035640 + ], + [ + 0, + 444, + 3554, + 10468, + 13779, + 16119, + 25000, + 25000, + 100000, + 100000, + 100000, + 103851, + 103851, + 1000000, + 1000000, + 1000000, + 1268954, + 1550198, + 2500000, + 2500000, + 2500000 + ], + [ + 0, + 725, + 725, + 825, + 825, + 10468, + 16119, + 16119, + 36719, + 36719, + 93408, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 150147, + 151251, + 1000000, + 100000000 + ], + [ + 0, + 3, + 5, + 5, + 211, + 211, + 10468, + 24337, + 56193, + 100000, + 100000, + 100000, + 155992, + 405496, + 1000000, + 1113752, + 1150057, + 1964659, + 2835138, + 25004560, + 25012069 + ], + [ + 0, + 50, + 50, + 707, + 4224, + 10468, + 21387, + 100000, + 100000, + 100000, + 101624, + 101624, + 1000000, + 1000000, + 1000000, + 1150057, + 2399844, + 2500000, + 2500000, + 25012205, + 100035640 + ], + [ + 0, + 5, + 378, + 378, + 505, + 797, + 2619, + 47130, + 47130, + 100000, + 100000, + 100000, + 102534, + 191499, + 1000000, + 1972748, + 2031256, + 2500000, + 19376705, + 25322477, + 60000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 50, + 50, + 367, + 10468, + 20380, + 20380, + 21551, + 100000, + 100000, + 100000, + 103672, + 103672, + 1000000, + 1000000, + 1980837, + 3125260 + ], + [ + 0, + 509, + 509, + 9673, + 9673, + 9673, + 10468, + 39416, + 39416, + 47041, + 100000, + 100000, + 100000, + 100000, + 100000, + 191844, + 191844, + 1000000, + 1000000, + 1404384, + 1981242 + ], + [ + 0, + 5, + 275, + 275, + 826, + 826, + 16120, + 16120, + 18592, + 20894, + 48928, + 100000, + 100000, + 100000, + 100000, + 148531, + 1000000, + 1989331, + 3500000, + 3500000, + 100000000 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 273, + 10468, + 30634, + 32222, + 100000, + 100000, + 100000, + 182885, + 1000000, + 1550197, + 1981668, + 2500000 + ], + [ + 0, + 191, + 826, + 826, + 826, + 3193, + 12897, + 12897, + 12897, + 40999, + 100000, + 100000, + 100000, + 100000, + 163260, + 163260, + 1000000, + 1000000, + 1000000, + 2500000, + 100000000 + ], + [ + 0, + 5, + 5, + 170, + 11568, + 27778, + 100000, + 100000, + 188156, + 1000000, + 1000000, + 1208772, + 1441433, + 2031257, + 2031257, + 2031257, + 2031257, + 2031257, + 4000000, + 20059247, + 59818677 + ], + [ + 0, + 319, + 2991, + 11568, + 16119, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 180220, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1346383, + 1346383, + 100035541 + ], + [ + 0, + 321, + 826, + 11568, + 16119, + 16878, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 152466, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1286131, + 9727341, + 29730091 + ], + [ + 0, + 592, + 7393, + 11568, + 16119, + 16119, + 100000, + 100000, + 100000, + 100000, + 100000, + 193462, + 1000000, + 1000000, + 1000000, + 1000000, + 1719492, + 1719492, + 10000000, + 25027334, + 100000000 + ], + [ + 0, + 3, + 441, + 826, + 11568, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 167339, + 1000000, + 1000000, + 1000000, + 1000000, + 1200071, + 1573071, + 4000000, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 40, + 11568, + 32288, + 100000, + 100000, + 100000, + 100000, + 100000, + 113067, + 144987, + 144987, + 1000000, + 1000000, + 1000000, + 1000000, + 10000000, + 100035541 + ], + [ + 0, + 2050, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 116440, + 144987, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100035, + 1100035, + 28001000359 + ], + [ + 0, + 5, + 505, + 918, + 9000, + 32374, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 111769, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 4000000, + 4000000 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 11568, + 20238, + 100000, + 100000, + 100000, + 100000, + 183900, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 3000000000 + ], + [ + 0, + 505, + 889, + 3227, + 40665, + 100000, + 100000, + 100000, + 100000, + 143192, + 403976, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1550197, + 1744994, + 40455657, + 100000000, + 7500088226 + ], + [ + 0, + 5, + 477, + 12896, + 21321, + 100000, + 100000, + 100000, + 100000, + 100000, + 161248, + 403976, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100035, + 1550197, + 2500000, + 100035541 + ], + [ + 0, + 5, + 806, + 1641, + 1641, + 1641, + 48492, + 100000, + 100000, + 100000, + 100000, + 100000, + 155295, + 965866, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1741887, + 10000000 + ], + [ + 0, + 5, + 5, + 505, + 776, + 9673, + 11939, + 23173, + 100000, + 100000, + 100000, + 100000, + 100000, + 100544, + 177974, + 1000000, + 1000000, + 1000000, + 1550197, + 1763681, + 105438994 + ], + [ + 0, + 5, + 5, + 914, + 3227, + 11939, + 40007, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 128466, + 152400, + 1000000, + 1000000, + 1000000, + 1000000, + 1741887, + 2000000 + ], + [ + 0, + 953, + 953, + 9673, + 9673, + 29531, + 29531, + 100000, + 100000, + 100000, + 100000, + 100000, + 137543, + 137543, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1741887, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 326, + 505, + 11939, + 42222, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 184067, + 470631, + 1000000, + 1000000, + 1741887, + 2000000 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 1573, + 15576, + 100000, + 172684, + 2500000 + ], + [ + 0, + 5, + 5, + 950, + 11939, + 26412, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 140928, + 321527, + 1000000, + 1000000, + 1000000, + 1741887, + 10000000, + 25000000, + 46074305 + ], + [ + 0, + 27, + 101, + 101, + 101, + 101, + 101, + 101, + 825, + 825, + 12895, + 16324, + 100000, + 100000, + 100000, + 100000, + 100000, + 129097, + 1000000, + 1741887, + 25000000 + ], + [ + 0, + 1, + 761, + 761, + 9673, + 9673, + 11939, + 44376, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 161068, + 1000000, + 1741887, + 1999999 + ], + [ + 0, + 622, + 825, + 825, + 1640, + 1640, + 1640, + 9202, + 9673, + 12966, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 196320, + 1000000, + 1200072, + 100000000 + ], + [ + 0, + 3, + 5, + 5, + 100, + 100, + 100, + 100, + 462, + 41243, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 114880, + 120208, + 1114994, + 2008088 + ], + [ + 0, + 5, + 5, + 872, + 2619, + 2619, + 9202, + 32840, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 182775, + 1000000, + 1000000, + 1096832, + 2008088, + 500000000 + ], + [ + 0, + 505, + 505, + 936, + 9202, + 29950, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 191593, + 932289, + 1000000, + 1200072, + 25000000, + 25035911, + 111827683 + ], + [ + 0, + 5, + 5, + 895, + 10464, + 10464, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 122352, + 1000000, + 1000000, + 1123083, + 1179288, + 2031256, + 25000000, + 25212036, + 40160840 + ], + [ + 0, + 505, + 526, + 14024, + 32937, + 100000, + 100000, + 100000, + 129279, + 1000000, + 1100036, + 1114994, + 1179288, + 1441432, + 1550198, + 1900184, + 2031256, + 2031256, + 10007498, + 25802218, + 146689440 + ], + [ + 0, + 377, + 9672, + 27541, + 100000, + 100000, + 100000, + 100000, + 162921, + 1000000, + 1114994, + 1244823, + 1550197, + 1703575, + 2031255, + 2031255, + 2031255, + 5000000, + 19860876, + 38415770, + 1562103976 + ], + [ + 0, + 824, + 1639, + 1639, + 2776, + 10000, + 16118, + 100000, + 100000, + 176731, + 843240, + 999999, + 999999, + 1000000, + 1114994, + 1300000, + 2031255, + 2031255, + 9246894, + 26017626, + 723159057 + ], + [ + 0, + 3, + 5, + 101, + 101, + 101, + 101, + 503, + 16904, + 100000, + 100000, + 100000, + 146313, + 843240, + 1000000, + 1000000, + 1150056, + 1550197, + 2031254, + 22429353, + 3000000000 + ], + [ + 0, + 5, + 150, + 11177, + 13486, + 26066, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 109457, + 206319, + 334948, + 843240, + 1000000, + 1150056, + 25000000, + 55356365 + ], + [ + 0, + 1, + 34, + 601, + 601, + 2619, + 2619, + 100000, + 100000, + 100000, + 129639, + 129639, + 192192, + 205700, + 271418, + 271418, + 1000000, + 1000000, + 1000000, + 1729576, + 100035837 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 668, + 12536, + 100000, + 271418, + 100000000 + ], + [ + 0, + 5, + 5, + 821, + 821, + 836, + 836, + 1606, + 2462, + 10675, + 100000, + 100000, + 100000, + 100000, + 129474, + 850679, + 999999, + 1000000, + 1000000, + 1000000, + 1924930 + ], + [ + 0, + 1, + 5, + 5, + 44, + 312, + 312, + 341, + 10264, + 16117, + 16117, + 33689, + 33689, + 100000, + 100000, + 100000, + 151353, + 151353, + 892280, + 1000000, + 2120284 + ], + [ + 0, + 423, + 423, + 12895, + 23917, + 32055, + 100000, + 100000, + 100000, + 130867, + 892280, + 1000000, + 1000000, + 1000000, + 1506964, + 1587254, + 1828842, + 3382545, + 17361589, + 25021151, + 68732893 + ], + [ + 0, + 1, + 1, + 5, + 593, + 23917, + 62480, + 100000, + 100000, + 100000, + 125868, + 1000000, + 1000000, + 1000000, + 1150057, + 1150057, + 1703572, + 2031252, + 4006197, + 25000000, + 150754401 + ], + [ + 0, + 505, + 505, + 505, + 505, + 3210, + 3210, + 3210, + 9000, + 9000, + 23917, + 100000, + 892280, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1941108, + 3599636, + 100000000 + ], + [ + 0, + 821, + 821, + 975, + 3210, + 3210, + 6145, + 23917, + 68668, + 100000, + 100000, + 100000, + 126404, + 126404, + 142498, + 326427, + 1000000, + 1000001, + 1150058, + 1336707, + 100000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 534, + 908, + 9622, + 14149, + 15648, + 33132, + 100000, + 100000, + 100000, + 100000, + 189340, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 3, + 3, + 10, + 891, + 891, + 1637, + 1637, + 1982, + 2997, + 11083, + 12882, + 14149, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 2053544, + 40268686, + 117226208 + ], + [ + 0, + 108, + 534, + 880, + 1738, + 10000, + 14595, + 14721, + 100000, + 100000, + 100000, + 100000, + 109987, + 188167, + 1000000, + 1000000, + 1000000, + 1100036, + 1100036, + 2053544, + 100035937 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 71, + 71, + 215, + 297, + 7597, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1993687, + 100035937 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 48991, + 100000, + 150514, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 533, + 533, + 3209, + 3209, + 3209, + 43469, + 43469, + 100000, + 100000, + 134301, + 134301, + 170431, + 1000000, + 1150056, + 1227643, + 25000000, + 118000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 710, + 9234, + 12825, + 25127, + 25127, + 100000, + 100000, + 100000, + 114222, + 198805, + 1000000, + 1000000, + 1150057, + 2001776, + 29207609 + ], + [ + 0, + 533, + 563, + 659, + 1636, + 1636, + 1636, + 9234, + 12825, + 14706, + 100000, + 100000, + 162979, + 892200, + 1000000, + 1000000, + 1113748, + 1227643, + 2001776, + 25035433, + 33295496 + ], + [ + 0, + 5, + 411, + 523, + 18731, + 73336, + 100000, + 100000, + 109889, + 799152, + 1000000, + 1150057, + 1235732, + 1550200, + 1550200, + 1550200, + 7014846, + 10000000, + 10000000, + 25816881, + 3000000000 + ], + [ + 0, + 5, + 499, + 6721, + 23917, + 100000, + 100000, + 164321, + 294196, + 575241, + 999999, + 1000000, + 1000000, + 1000000, + 1150057, + 1227643, + 1244820, + 1729576, + 2031252, + 26406658, + 100000000 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 9234, + 18007, + 100000, + 100000, + 113197, + 220909, + 404034, + 1000000, + 1000000, + 1150057, + 2031252, + 3599636, + 50006954 + ], + [ + 0, + 5, + 5, + 5, + 641, + 889, + 1636, + 1636, + 1636, + 38522, + 38522, + 100000, + 100000, + 100000, + 100000, + 126346, + 126346, + 214200, + 1000000, + 1114188, + 100036036 + ], + [ + 0, + 1, + 930, + 930, + 3210, + 3210, + 9788, + 25928, + 25928, + 61338, + 100000, + 100000, + 100000, + 100000, + 101950, + 917994, + 1000000, + 1114188, + 1251910, + 20373270, + 100036036 + ], + [ + 0, + 1, + 533, + 533, + 888, + 8160, + 9620, + 42829, + 42829, + 100000, + 100000, + 119813, + 837629, + 1000000, + 1506964, + 1769108, + 1900180, + 4000000, + 4000000, + 25690493, + 197960267 + ], + [ + 0, + 1, + 975, + 8160, + 8303, + 9620, + 9620, + 25065, + 25065, + 100000, + 100000, + 100000, + 100000, + 177096, + 185269, + 185269, + 837629, + 1000000, + 1000000, + 1260404, + 26640321 + ], + [ + 0, + 5, + 5, + 34, + 306, + 1636, + 1636, + 1636, + 1636, + 5224, + 40848, + 40848, + 100000, + 100000, + 167940, + 167940, + 182168, + 837629, + 1000000, + 1268493, + 100000000 + ], + [ + 0, + 5, + 20, + 523, + 523, + 533, + 533, + 1281, + 3845, + 38361, + 38361, + 100000, + 100000, + 100000, + 182168, + 187316, + 837629, + 1000000, + 1000000, + 1628660, + 25016757 + ], + [ + 0, + 1, + 419, + 829, + 3016, + 3210, + 3210, + 8160, + 15389, + 15389, + 100000, + 100000, + 100000, + 100000, + 188821, + 188821, + 837629, + 1000000, + 1000000, + 1250090, + 1628660 + ], + [ + 0, + 5, + 201, + 533, + 533, + 1502, + 3210, + 3210, + 8160, + 41921, + 100000, + 100000, + 100000, + 169987, + 169987, + 837629, + 1000000, + 1000000, + 1000000, + 1227643, + 1626362 + ], + [ + 0, + 3, + 235, + 380, + 1636, + 1636, + 1636, + 8160, + 35939, + 100000, + 100000, + 100000, + 112568, + 837629, + 1000000, + 1000000, + 1000000, + 1000000, + 1005000, + 1288393, + 25001253 + ], + [ + 0, + 14, + 14, + 101, + 101, + 101, + 101, + 101, + 101, + 271, + 12865, + 100000, + 100000, + 115142, + 185766, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 25009350 + ], + [ + 0, + 1, + 5, + 5, + 5, + 312, + 312, + 761, + 761, + 8160, + 35073, + 35073, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1288904, + 100000000 + ], + [ + 0, + 5, + 14, + 461, + 533, + 533, + 533, + 533, + 533, + 533, + 533, + 31327, + 100000, + 100000, + 112289, + 139709, + 892200, + 892200, + 1000000, + 1270814, + 100036037 + ], + [ + 0, + 5, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100000, + 1000000, + 100036037 + ], + [ + 0, + 1, + 7, + 701, + 6098, + 12825, + 40014, + 40014, + 100000, + 100000, + 100000, + 172807, + 1000000, + 1000000, + 1023697, + 1344696, + 2185358, + 10000000, + 11594520, + 25003280, + 77400236 + ], + [ + 0, + 1, + 326, + 533, + 6098, + 16030, + 16978, + 100000, + 100000, + 100000, + 101747, + 1000000, + 1003156, + 1113748, + 1441428, + 1834644, + 2031252, + 2185358, + 4000000, + 25484986, + 363128726 + ], + [ + 0, + 3, + 3, + 5, + 5, + 288, + 288, + 6098, + 37182, + 100000, + 100000, + 100000, + 100000, + 166349, + 1000000, + 1000000, + 1000000, + 1200072, + 1369159, + 2185358, + 47185853 + ], + [ + 0, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 636, + 100000, + 120843, + 25000000 + ], + [ + 0, + 1, + 5, + 5, + 19, + 532, + 532, + 532, + 860, + 6098, + 34709, + 34709, + 100000, + 100000, + 100000, + 175647, + 175647, + 1000000, + 1000000, + 1489118, + 2185358 + ], + [ + 0, + 1, + 312, + 1564, + 1564, + 1564, + 1635, + 1635, + 1635, + 6098, + 18185, + 18185, + 100000, + 100000, + 100000, + 100000, + 193913, + 1000000, + 1319086, + 1483814, + 2185358 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 532, + 979, + 6098, + 12825, + 22441, + 100000, + 100000, + 100000, + 117684, + 1426473, + 10000000, + 100000000 + ], + [ + 0, + 1, + 637, + 637, + 3210, + 3210, + 3471, + 3471, + 9257, + 100000, + 100000, + 100000, + 100000, + 100000, + 156593, + 156593, + 1000000, + 1150057, + 1176109, + 1454431, + 2500000 + ], + [ + 0, + 1, + 5, + 5, + 130, + 532, + 532, + 9257, + 24853, + 24853, + 100000, + 100000, + 100000, + 100000, + 179957, + 1000000, + 1000000, + 1000000, + 1000000, + 1176109, + 10000000 + ], + [ + 0, + 1, + 5, + 5, + 827, + 827, + 9257, + 47676, + 47676, + 100000, + 100000, + 100000, + 100000, + 134935, + 134935, + 1000000, + 1000000, + 1000000, + 1150057, + 1176109, + 2999635 + ], + [ + 0, + 22, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 136543, + 25042652 + ], + [ + 0, + 5, + 5, + 177, + 513, + 9257, + 9619, + 11747, + 34709, + 36783, + 53655, + 100000, + 100000, + 100000, + 196132, + 806322, + 1000000, + 1000000, + 1548445, + 25031703, + 75120259 + ], + [ + 0, + 6, + 6, + 356, + 356, + 12824, + 12824, + 37097, + 37097, + 100000, + 100000, + 100000, + 189242, + 192146, + 884232, + 1176109, + 1571077, + 1668800, + 1684471, + 2031250, + 79999634 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 217, + 15839, + 100000, + 100000, + 100000, + 709128, + 1100036, + 1150057, + 1250091, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 22, + 22, + 657, + 657, + 3209, + 6943, + 14472, + 30198, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1208672, + 10000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 633, + 4556, + 10633, + 10633, + 100000, + 100000, + 100000, + 127576, + 837629, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1208672, + 2010935 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 714, + 1634, + 1634, + 1634, + 4078, + 35216, + 100000, + 100000, + 134349, + 837600, + 1000000, + 1087824, + 2019097 + ], + [ + 0, + 400, + 400, + 531, + 1378, + 6562, + 12825, + 12825, + 16834, + 100000, + 100000, + 100000, + 171105, + 171105, + 1000000, + 1000000, + 1000000, + 1033448, + 1200073, + 1855792, + 3000000000 + ], + [ + 0, + 1, + 505, + 609, + 609, + 9107, + 9107, + 12825, + 12825, + 15261, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 115473, + 115473, + 762601, + 1000000, + 1863881 + ], + [ + 0, + 1, + 310, + 412, + 531, + 531, + 3040, + 3040, + 9620, + 9620, + 10000, + 100000, + 100000, + 100000, + 100000, + 160529, + 160529, + 837600, + 1000000, + 1076506, + 1864286 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 5, + 5, + 5, + 3563, + 15261, + 100000, + 100976, + 762601, + 1872375 + ], + [ + 0, + 1, + 5, + 5, + 5, + 67, + 67, + 15261, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 762601, + 762601, + 908612, + 1000000, + 1250091, + 1864712 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 15261, + 100000, + 762601, + 1865138 + ], + [ + 0, + 5, + 5, + 5, + 29989, + 29989, + 53275, + 58664, + 100000, + 100000, + 100000, + 100000, + 762601, + 999999, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1200073, + 2500000 + ], + [ + 0, + 1, + 106, + 531, + 531, + 10000, + 12824, + 12824, + 46984, + 46984, + 100000, + 100000, + 100000, + 198213, + 198213, + 762601, + 767724, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 5, + 5, + 325, + 1634, + 1634, + 1634, + 14506, + 15261, + 40236, + 100000, + 100000, + 100000, + 139664, + 371069, + 845358, + 1000000, + 1150057, + 10053875, + 25000000, + 25865593 + ], + [ + 0, + 66, + 101, + 101, + 101, + 101, + 101, + 101, + 531, + 531, + 16030, + 35160, + 100000, + 100000, + 107007, + 762601, + 999997, + 999997, + 999997, + 1100000, + 26541782 + ], + [ + 0, + 1, + 5, + 5, + 5, + 15261, + 45120, + 45120, + 58664, + 58664, + 100000, + 100000, + 100000, + 100000, + 109218, + 109218, + 109218, + 946950, + 1000000, + 1865656, + 1883170 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 6, + 421, + 755, + 48366, + 58664, + 100000, + 100000, + 100000, + 140961, + 1883170, + 25000000 + ], + [ + 0, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 2635, + 9621, + 149164, + 6914380 + ], + [ + 0, + 1, + 5, + 5, + 6, + 6, + 100, + 119, + 119, + 363, + 6172, + 100000, + 100000, + 100000, + 125839, + 125839, + 1000000, + 1200072, + 1967358, + 23636052, + 69906334 + ], + [ + 0, + 1, + 861, + 11324, + 11324, + 12824, + 12824, + 100000, + 100000, + 100000, + 100000, + 100000, + 170696, + 170696, + 1000000, + 1000000, + 1000000, + 1883170, + 1883170, + 4649603, + 120525324 + ], + [ + 0, + 1, + 5, + 6, + 6, + 266, + 9620, + 9620, + 38729, + 38729, + 100000, + 100000, + 132478, + 941670, + 1000000, + 1000000, + 1200073, + 1975447, + 2200440, + 25000587, + 65543834 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 46414, + 100000, + 1000000, + 1883170, + 60000000 + ], + [ + 0, + 5, + 12, + 1884, + 35403, + 100000, + 104849, + 999998, + 999998, + 1000000, + 1031825, + 1113745, + 1244817, + 1265056, + 1506961, + 1900177, + 2031249, + 2420439, + 4000000, + 25128696, + 179859501 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 198, + 2561, + 100000, + 166021, + 1000000, + 1150058, + 1244817, + 1441425, + 1703569, + 2227857, + 3000000, + 10000000, + 1000000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 901, + 1633, + 1633, + 9457, + 13878, + 42287, + 100000, + 100000, + 112881, + 150658, + 1000000, + 1000000, + 1169184, + 2031249, + 9872217, + 80485173 + ], + [ + 0, + 1, + 31, + 31, + 9456, + 9456, + 9456, + 41736, + 100000, + 100000, + 100000, + 100000, + 100000, + 119566, + 199919, + 199919, + 643733, + 1000000, + 1000000, + 2001779, + 25004128 + ], + [ + 0, + 3, + 3, + 5, + 5, + 5, + 42, + 42, + 442, + 13276, + 34837, + 100000, + 100000, + 100000, + 100000, + 177056, + 643733, + 1335878, + 2002225, + 3599632, + 100036432 + ], + [ + 0, + 5, + 5, + 289, + 1632, + 1632, + 1632, + 7847, + 100000, + 100000, + 100000, + 119484, + 999999, + 999999, + 999999, + 999999, + 999999, + 1000000, + 1000000, + 1795594, + 100036432 + ], + [ + 0, + 5, + 5, + 386, + 1121, + 1883, + 2561, + 47866, + 100000, + 100000, + 100457, + 391504, + 999999, + 1000000, + 1150058, + 1533108, + 1795594, + 17862177, + 25114118, + 26284465, + 39411432 + ], + [ + 0, + 1, + 5, + 623, + 4008, + 10795, + 15759, + 16103, + 65229, + 100000, + 100000, + 108244, + 907824, + 1000000, + 1150058, + 1506133, + 1803683, + 2500000, + 25033193, + 25491028, + 37613131 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 492, + 2635, + 12608, + 100000, + 142770, + 1000000, + 1795594, + 1965495, + 20000000, + 28410313 + ], + [ + 0, + 3, + 634, + 1632, + 1632, + 1632, + 4463, + 10000, + 14177, + 18185, + 100000, + 100000, + 100000, + 122290, + 129543, + 1000000, + 1000000, + 1000000, + 1795594, + 10000000, + 10000000 + ], + [ + 0, + 611, + 611, + 717, + 3263, + 36406, + 36406, + 100000, + 100000, + 100000, + 137796, + 137796, + 200000, + 200000, + 200000, + 200000, + 1000000, + 1000000, + 1795594, + 1820671, + 50000000 + ], + [ + 0, + 1, + 5, + 5, + 804, + 804, + 37913, + 37913, + 100000, + 100000, + 100000, + 100000, + 132266, + 132266, + 1000000, + 1795594, + 1838509, + 1881632, + 1881632, + 3599632, + 100000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 591, + 46308, + 46308, + 100000, + 100000, + 100000, + 100000, + 191207, + 191207, + 1000000, + 1795594, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 595, + 595, + 20831, + 20831, + 100000, + 100000, + 100000, + 100000, + 103954, + 103954, + 943245, + 1000000, + 1000000, + 1000000, + 1000000, + 1857239, + 25006840 + ], + [ + 0, + 1, + 514, + 514, + 912, + 2505, + 2505, + 6263, + 6263, + 100000, + 100000, + 100000, + 100000, + 141716, + 943245, + 1000000, + 1000000, + 1000000, + 1000000, + 1690932, + 25007378 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3155, + 99632, + 100000, + 145450, + 943245, + 1000000, + 1100036, + 1100036, + 1858176 + ], + [ + 0, + 1, + 5, + 73, + 185, + 1432, + 11795, + 44441, + 100000, + 100000, + 100000, + 100000, + 174845, + 943245, + 1000000, + 1000000, + 1000000, + 1679416, + 1896483, + 25110453, + 68323140 + ], + [ + 0, + 1, + 219, + 219, + 14110, + 34276, + 34276, + 100000, + 100000, + 100000, + 106638, + 106638, + 943245, + 1000000, + 1000000, + 1000000, + 1150058, + 1917889, + 2200442, + 2500000, + 100000000 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 171, + 1632, + 1632, + 100000, + 100000, + 100036432 + ], + [ + 0, + 1, + 5, + 5, + 5, + 431, + 514, + 514, + 514, + 2005, + 2005, + 6687, + 100000, + 100000, + 100000, + 108471, + 108471, + 943245, + 1000000, + 1200072, + 100036431 + ], + [ + 0, + 1, + 93, + 6916, + 12607, + 12607, + 13066, + 13066, + 100000, + 100000, + 100000, + 100000, + 178656, + 943245, + 1000000, + 1000000, + 1962843, + 4000000, + 4000000, + 49213758, + 85482692 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 5, + 957, + 9344, + 39766, + 100000, + 100000, + 120177, + 943245, + 1000000, + 1429936, + 10000000 + ], + [ + 0, + 98, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 1537, + 1537, + 20388, + 72887, + 100000, + 100000, + 100000, + 116369, + 999998, + 999998, + 1000000, + 1986444 + ], + [ + 0, + 1, + 5, + 776, + 776, + 1304, + 1631, + 1631, + 1631, + 1631, + 25249, + 25249, + 100000, + 100000, + 100000, + 128340, + 128340, + 1000000, + 1000000, + 1795594, + 100000000 + ], + [ + 0, + 244, + 505, + 505, + 950, + 15759, + 35292, + 35292, + 100000, + 100000, + 103480, + 103480, + 837600, + 916886, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 2011226 + ], + [ + 0, + 1, + 5, + 5, + 5, + 5, + 325, + 325, + 21668, + 21668, + 100000, + 100000, + 100000, + 100000, + 100000, + 112240, + 112240, + 346878, + 916886, + 1000000, + 1994533 + ], + [ + 0, + 103, + 3155, + 15839, + 100000, + 100000, + 143459, + 916886, + 1000000, + 1113743, + 1150058, + 1200073, + 1244815, + 1375887, + 1492308, + 1703567, + 2031247, + 2031247, + 4000000, + 15045694, + 47453841 + ], + [ + 0, + 1, + 5, + 391, + 12608, + 13203, + 38533, + 100000, + 100000, + 100000, + 148959, + 236998, + 521742, + 916886, + 999998, + 999998, + 999998, + 1000000, + 1441423, + 2003027, + 34205262 + ], + [ + 0, + 1631, + 15759, + 25018, + 100000, + 100000, + 100000, + 100000, + 236769, + 1000000, + 1113743, + 1179279, + 1310351, + 1375887, + 1572495, + 1900175, + 2031247, + 2031247, + 3320351, + 25120928, + 78458467 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 75081, + 273173, + 916886, + 999999, + 1000000, + 1026094, + 1150057, + 1200072, + 1544136, + 1834638, + 13685172, + 26099470 + ], + [ + 0, + 1, + 297, + 853, + 1649, + 3841, + 29557, + 100000, + 100000, + 122606, + 122606, + 191966, + 685628, + 1000000, + 1244814, + 1550201, + 1550201, + 1550201, + 1708089, + 3599630, + 3599630 + ], + [ + 0, + 1, + 248, + 514, + 1630, + 1630, + 1630, + 1630, + 1630, + 2504, + 44665, + 100000, + 100000, + 192422, + 422968, + 687082, + 1000000, + 1000000, + 1000090, + 1150058, + 2035964 + ], + [ + 0, + 101, + 101, + 2630, + 2630, + 2630, + 2630, + 2630, + 2630, + 2630, + 2630, + 2630, + 2630, + 2630, + 2630, + 2630, + 2630, + 100000, + 162306, + 1000000, + 3599630 + ], + [ + 0, + 5, + 5, + 258, + 400, + 1629, + 1629, + 1629, + 3155, + 9957, + 12387, + 100000, + 100000, + 100000, + 100000, + 219481, + 610174, + 1000000, + 1000000, + 1000000, + 22226573 + ], + [ + 0, + 1, + 2157, + 4938, + 7485, + 15757, + 15757, + 100000, + 100000, + 100505, + 100505, + 999999, + 1000000, + 1003149, + 1310349, + 1692395, + 1784126, + 3599629, + 7180968, + 21049547, + 100000000 + ], + [ + 0, + 104, + 496, + 809, + 1537, + 6897, + 29458, + 46710, + 100000, + 100000, + 153810, + 213366, + 1000000, + 1011341, + 1550204, + 1550204, + 1715211, + 4000000, + 4254691, + 10000000, + 100036729 + ], + [ + 0, + 5, + 130, + 154, + 238, + 1537, + 17810, + 100000, + 100000, + 100000, + 999999, + 1000000, + 1000000, + 1113741, + 1150058, + 1179277, + 1550204, + 1715211, + 13584397, + 33928814, + 101344270 + ], + [ + 0, + 505, + 86222, + 144506, + 404115, + 761486, + 999998, + 1023629, + 1150058, + 1244813, + 1244813, + 1310349, + 1550204, + 1703565, + 1779505, + 2031245, + 2031245, + 2031245, + 20000000, + 25104863, + 184341775 + ], + [ + 0, + 97947, + 127108, + 333390, + 999999, + 1007244, + 1150057, + 1244812, + 1441420, + 1506956, + 1550203, + 1715211, + 2031244, + 2031244, + 2031244, + 2031244, + 2031244, + 10000000, + 20000000, + 32307142, + 2055768034 + ], + [ + 0, + 988, + 1627, + 2709, + 26604, + 76283, + 100000, + 100000, + 100000, + 100000, + 154336, + 190132, + 404125, + 615130, + 848210, + 999998, + 1150057, + 1200072, + 1700000, + 3599627, + 72582116 + ], + [ + 0, + 5, + 446, + 3931, + 8733, + 28517, + 100000, + 185152, + 285491, + 688773, + 999995, + 999999, + 1000000, + 1150057, + 1550202, + 1550202, + 1550202, + 1550202, + 1550202, + 1937880, + 27199853 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 22229, + 142215, + 1000000, + 1550202, + 60000000 + ], + [ + 0, + 5, + 80, + 101, + 101, + 101, + 101, + 101, + 1625, + 1625, + 1625, + 81954, + 100000, + 240727, + 961406, + 1000000, + 1000000, + 1550201, + 1550201, + 1550201, + 237080891 + ], + [ + 0, + 1, + 295, + 514, + 2004, + 2366, + 3628, + 15332, + 28764, + 64018, + 100000, + 100000, + 100000, + 100000, + 150353, + 173960, + 538125, + 747587, + 1003149, + 1700000, + 6990034 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 5, + 803, + 12607, + 38121, + 100000, + 174402, + 747587, + 999995, + 999995, + 1000000, + 1945947, + 69126629 + ], + [ + 0, + 1, + 5, + 1625, + 1625, + 12501, + 25000, + 100000, + 100000, + 100000, + 384056, + 1000000, + 1000000, + 1100037, + 1100037, + 1100037, + 1100037, + 1100037, + 1866332, + 25048359, + 100037125 + ], + [ + 0, + 3241, + 4226, + 4226, + 10000, + 12607, + 30116, + 71409, + 100000, + 100000, + 113618, + 120671, + 141539, + 141539, + 426890, + 1000000, + 1000000, + 1125046, + 1632702, + 2561381, + 100123533 + ], + [ + 0, + 1, + 5, + 5, + 617, + 8564, + 12607, + 39203, + 47123, + 100000, + 100000, + 100000, + 100000, + 384056, + 1000000, + 1000000, + 1000000, + 1266027, + 1550206, + 1632702, + 25003924 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 1068, + 5481, + 100000, + 1010003, + 3000000000 + ], + [ + 0, + 1, + 544, + 6377, + 6377, + 9456, + 9456, + 24301, + 100000, + 100000, + 100000, + 100000, + 105744, + 151982, + 151982, + 426890, + 1000000, + 1000000, + 1023496, + 1715211, + 10000000 + ], + [ + 0, + 1, + 5, + 5, + 202, + 202, + 7156, + 23750, + 27527, + 32075, + 32075, + 100000, + 100000, + 100000, + 131829, + 131829, + 1000000, + 1000000, + 1010003, + 1200075, + 100000000 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 5, + 124, + 2004, + 9455, + 25000, + 32647, + 100000, + 100000, + 170622, + 1000000, + 1955115, + 3000000 + ], + [ + 0, + 1, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 9000, + 9723, + 12606, + 24047, + 100000, + 100000, + 100000, + 178063, + 485869, + 1116100, + 4000000, + 79999624 + ], + [ + 0, + 1, + 638, + 3155, + 3155, + 17943, + 23161, + 100000, + 100000, + 100000, + 318790, + 485869, + 1000000, + 1000000, + 1000000, + 1000000, + 1023629, + 1100037, + 1956489, + 10000000, + 10000000 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 10000, + 46601, + 100000, + 1100036, + 100037224 + ], + [ + 0, + 1, + 5, + 5, + 5, + 504, + 504, + 504, + 4250, + 4979, + 6583, + 6583, + 15123, + 100000, + 100000, + 100000, + 999623, + 1000000, + 1703565, + 1957451, + 12861808 + ], + [ + 0, + 1, + 95, + 95, + 514, + 586, + 586, + 17402, + 17402, + 47091, + 100000, + 100000, + 100000, + 100000, + 100000, + 146318, + 168410, + 168410, + 1000000, + 1101012, + 100000000 + ], + [ + 0, + 100, + 100, + 386, + 3494, + 5942, + 9457, + 10000, + 28104, + 100000, + 100000, + 100000, + 193745, + 999624, + 1000000, + 1000000, + 1051688, + 1150059, + 1200074, + 4000000, + 100037324 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 42, + 388, + 9457, + 10000, + 68758, + 100000, + 100000, + 601046, + 999994, + 999994, + 1000000, + 1101012, + 140449810 + ], + [ + 0, + 1, + 744, + 1140, + 1717, + 3395, + 5216, + 26743, + 26743, + 62049, + 62049, + 100000, + 100000, + 189393, + 189393, + 1000000, + 1000000, + 1000000, + 1000000, + 1101012, + 1958514 + ], + [ + 0, + 3, + 5, + 711, + 711, + 758, + 45379, + 85029, + 85029, + 85029, + 85029, + 100000, + 100000, + 100000, + 100000, + 100000, + 106437, + 1000000, + 1010003, + 1101012, + 100037225 + ], + [ + 0, + 6, + 6, + 436, + 1564, + 1625, + 1625, + 1625, + 1625, + 4378, + 85029, + 100000, + 100000, + 100000, + 127916, + 380693, + 1000000, + 1000000, + 1000000, + 1958569, + 25013132 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 6553, + 9619, + 100000, + 100000, + 115559, + 1000000, + 1000000, + 1100037, + 1100037, + 1958621, + 10000000, + 25002506, + 100000000 + ], + [ + 0, + 6, + 6, + 47, + 712, + 1625, + 1625, + 1625, + 1625, + 6403, + 16029, + 29166, + 29166, + 36704, + 100000, + 100000, + 1000000, + 1200075, + 25000000, + 25017972, + 41117782 + ], + [ + 0, + 1, + 5, + 436, + 835, + 835, + 3459, + 24168, + 100000, + 100000, + 100000, + 100000, + 100000, + 104807, + 144439, + 144439, + 625710, + 1000000, + 1085638, + 3008365, + 60000000 + ], + [ + 0, + 5, + 5, + 14, + 234, + 583, + 1564, + 1625, + 1625, + 1625, + 2201, + 3947, + 21081, + 100000, + 100000, + 100000, + 181186, + 625710, + 1100037, + 4000000, + 100037125 + ], + [ + 0, + 1, + 5, + 5, + 462, + 865, + 1665, + 16029, + 16029, + 41824, + 100000, + 100000, + 100000, + 100000, + 165831, + 165831, + 376632, + 934506, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 636, + 636, + 847, + 2846, + 29592, + 67271, + 100000, + 100000, + 100000, + 100000, + 143122, + 143122, + 625710, + 1000000, + 1000000, + 1000000, + 1959013 + ], + [ + 0, + 1, + 6, + 6, + 10, + 409, + 730, + 730, + 1192, + 9619, + 9619, + 28019, + 100000, + 100000, + 100000, + 100000, + 116776, + 116776, + 625710, + 1000000, + 1959293 + ], + [ + 0, + 1, + 1, + 1, + 5, + 5, + 5, + 5, + 547, + 6071, + 19414, + 100000, + 100000, + 165196, + 657424, + 1000000, + 1000000, + 2500000, + 10000000, + 25013591, + 94399025 + ], + [ + 0, + 666, + 758, + 893, + 1625, + 1625, + 9619, + 58406, + 100000, + 100000, + 100000, + 163538, + 625710, + 1000000, + 1150059, + 1271665, + 2031241, + 12099625, + 26652707, + 33823808, + 101546107 + ], + [ + 0, + 132, + 132, + 526, + 1578, + 2339, + 9619, + 12315, + 21956, + 59694, + 100000, + 100000, + 100000, + 145970, + 195058, + 195058, + 943200, + 1000000, + 1100039, + 1100076, + 25586085 + ], + [ + 0, + 5, + 5, + 25, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 41834, + 65922, + 100000, + 100000, + 100000, + 131067, + 625710, + 1000000, + 100000000 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 221, + 100000, + 111767, + 100037125 + ], + [ + 0, + 181, + 181, + 525, + 525, + 3602, + 3602, + 9619, + 9619, + 100000, + 100000, + 140681, + 140681, + 406696, + 469902, + 999999, + 999999, + 999999, + 1000000, + 1960530, + 25012155 + ], + [ + 0, + 1, + 523, + 523, + 566, + 2293, + 2293, + 100000, + 100000, + 100000, + 100000, + 189956, + 406696, + 625710, + 999999, + 999999, + 999999, + 999999, + 999999, + 1000000, + 1960855 + ], + [ + 0, + 1, + 275, + 275, + 525, + 525, + 3208, + 3208, + 18086, + 18086, + 100000, + 100000, + 100000, + 100000, + 102547, + 102547, + 406696, + 999999, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 3, + 3, + 5, + 5, + 462, + 462, + 28832, + 62166, + 100000, + 100000, + 100000, + 106946, + 106946, + 406696, + 1000000, + 1000000, + 1000000, + 1210118, + 2000377, + 100037224 + ], + [ + 0, + 1, + 5, + 5, + 67, + 67, + 32165, + 32165, + 63164, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 148607, + 148607, + 406696, + 1000000, + 1000000, + 1960890 + ], + [ + 0, + 1, + 234, + 313, + 313, + 506, + 1564, + 1564, + 9029, + 10000, + 30419, + 100000, + 100000, + 100000, + 130819, + 251211, + 916800, + 1000000, + 1000000, + 1000000, + 1961587 + ], + [ + 0, + 1, + 297, + 297, + 1564, + 1564, + 26396, + 26396, + 100000, + 100000, + 100000, + 100000, + 100000, + 163091, + 163091, + 406696, + 1000000, + 1013836, + 1100038, + 1961997, + 2500000 + ], + [ + 0, + 138, + 527, + 1626, + 1626, + 1626, + 9621, + 19762, + 64124, + 100000, + 100000, + 198866, + 406696, + 1000000, + 1000000, + 1000000, + 1000001, + 1000001, + 1000001, + 1000001, + 1962407 + ], + [ + 0, + 3, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 784, + 2155, + 3897, + 9619, + 100000, + 100000, + 100000, + 119893, + 1000000, + 1200076, + 1962428 + ], + [ + 0, + 5, + 5, + 527, + 527, + 798, + 26388, + 100000, + 100000, + 100000, + 100000, + 159796, + 406696, + 1000000, + 1000000, + 1000000, + 1000000, + 1001830, + 4000000, + 4000000, + 100000000 + ], + [ + 0, + 452, + 452, + 1626, + 1626, + 1626, + 22571, + 100000, + 100000, + 100000, + 100000, + 131815, + 362859, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1962451 + ], + [ + 0, + 1, + 22, + 22, + 46, + 46, + 523, + 523, + 13566, + 13566, + 100000, + 100000, + 100000, + 100000, + 100000, + 125999, + 125999, + 362859, + 1000000, + 1963330, + 19999626 + ], + [ + 0, + 5, + 93, + 12137, + 12824, + 12824, + 100000, + 100000, + 100000, + 100000, + 100000, + 161397, + 362859, + 816200, + 1000000, + 1150059, + 1724349, + 3361860, + 18675652, + 25012334, + 100000000 + ], + [ + 0, + 6, + 6, + 879, + 879, + 1626, + 1626, + 1626, + 3209, + 3209, + 5007, + 100000, + 100000, + 100000, + 100000, + 198270, + 320575, + 625710, + 1963847, + 25003498, + 25103782 + ], + [ + 0, + 1, + 5, + 5, + 5, + 5, + 242, + 10390, + 10390, + 100000, + 100000, + 100000, + 100000, + 172040, + 362859, + 1000000, + 1000000, + 1000000, + 1076168, + 8212213, + 25050139 + ], + [ + 0, + 931, + 931, + 2605, + 2605, + 6282, + 100000, + 100000, + 100000, + 100000, + 100000, + 188538, + 188538, + 362859, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 5, + 985, + 985, + 39496, + 39496, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 144231, + 144231, + 362859, + 1000000, + 1964930, + 2500000 + ], + [ + 0, + 1, + 527, + 527, + 527, + 1627, + 1627, + 1627, + 1627, + 11937, + 11937, + 12824, + 12824, + 100000, + 100000, + 100000, + 100000, + 362859, + 1000000, + 1000000, + 1965521 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 362, + 1564, + 9620, + 27894, + 100000, + 100000, + 100000, + 138513, + 362859, + 1000000, + 1000002, + 1966703 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 518, + 9621, + 100000, + 142787, + 100000000 + ], + [ + 0, + 1, + 3, + 3, + 3, + 3, + 30293, + 30293, + 100000, + 100000, + 100000, + 100000, + 100000, + 157033, + 157033, + 339682, + 339682, + 1000000, + 1000000, + 1967945, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 5, + 5, + 137, + 178, + 178, + 529, + 529, + 35935, + 100000, + 100000, + 100000, + 100000, + 157085, + 339682, + 831668, + 1000000, + 100000000 + ], + [ + 0, + 1, + 5, + 496, + 496, + 47247, + 47247, + 67959, + 67959, + 67959, + 100000, + 100000, + 100000, + 100000, + 100000, + 183379, + 183379, + 339682, + 1000000, + 1000000, + 2500000 + ], + [ + 0, + 1, + 14, + 14, + 523, + 523, + 561, + 561, + 17446, + 17446, + 100000, + 100000, + 100000, + 100000, + 129142, + 129142, + 339682, + 1000000, + 1100037, + 1100037, + 1999628 + ], + [ + 0, + 1, + 5, + 5, + 558, + 558, + 1076, + 1076, + 16030, + 16030, + 100000, + 100000, + 100000, + 100000, + 118787, + 118787, + 619306, + 1000000, + 1000000, + 1000000, + 1974536 + ], + [ + 0, + 1, + 5, + 5, + 80, + 80, + 3210, + 3210, + 37528, + 37528, + 100000, + 100000, + 100000, + 100000, + 100000, + 179169, + 179169, + 339682, + 1000000, + 1000000, + 1977145 + ], + [ + 0, + 1, + 3, + 3, + 472, + 530, + 530, + 39816, + 39816, + 67942, + 67942, + 100000, + 100000, + 100000, + 100000, + 181236, + 278898, + 443064, + 1000001, + 1000001, + 1980022 + ], + [ + 0, + 1, + 5, + 5, + 5, + 5, + 646, + 646, + 24426, + 24426, + 100000, + 100000, + 100000, + 100000, + 190990, + 190990, + 339682, + 362859, + 1000000, + 1000000, + 1982899 + ], + [ + 0, + 5, + 5, + 70, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 242, + 43783, + 100000, + 100000, + 100000, + 100000, + 108720, + 1000000, + 1000000, + 2500000 + ], + [ + 0, + 1, + 523, + 523, + 530, + 530, + 717, + 717, + 38701, + 100000, + 100000, + 100000, + 100000, + 100000, + 184124, + 276790, + 339682, + 1000000, + 1000000, + 1986216, + 66979216 + ], + [ + 0, + 1, + 5, + 5, + 5, + 332, + 6033, + 6033, + 9620, + 100000, + 100000, + 100000, + 100000, + 157970, + 157970, + 276790, + 1000000, + 1000000, + 1200074, + 7380632, + 38070889 + ], + [ + 0, + 1, + 564, + 16030, + 39860, + 100000, + 100000, + 100000, + 118090, + 362859, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1989548, + 17687302, + 254910081 + ], + [ + 0, + 3, + 3, + 5, + 5, + 5, + 5, + 5, + 5, + 824, + 1216, + 100000, + 100000, + 100000, + 191605, + 276790, + 1000000, + 1992721, + 2031245, + 4000000, + 100036729 + ], + [ + 0, + 1, + 5, + 5, + 523, + 686, + 31754, + 31754, + 100000, + 100000, + 100000, + 100000, + 100000, + 117022, + 276790, + 359834, + 1000000, + 1000000, + 1000000, + 1000000, + 1989715 + ], + [ + 0, + 1, + 701, + 701, + 27827, + 27827, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 155061, + 155061, + 276790, + 276790, + 1000000, + 1000000, + 1000000, + 1100037, + 1996529 + ], + [ + 0, + 1, + 366, + 530, + 530, + 530, + 2605, + 2605, + 42946, + 100000, + 100000, + 100000, + 100000, + 179826, + 179826, + 592076, + 1000000, + 1000000, + 2000337, + 10000000, + 10000000 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 334, + 100000, + 121255, + 2000528 + ], + [ + 0, + 1, + 5, + 5, + 338, + 338, + 9620, + 9620, + 10000, + 10000, + 16858, + 100000, + 100000, + 100000, + 137986, + 139332, + 139332, + 276790, + 706258, + 1000000, + 100000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 255, + 1564, + 1564, + 45353, + 100000, + 100000, + 100000, + 157125, + 670032, + 1100036, + 1100036, + 2004618 + ], + [ + 0, + 1, + 5, + 5, + 505, + 505, + 830, + 830, + 29833, + 29833, + 100000, + 100000, + 100000, + 100000, + 153545, + 153545, + 365604, + 1000000, + 1000000, + 1000000, + 1000001 + ], + [ + 0, + 5, + 5, + 5, + 764, + 2521, + 2521, + 100000, + 100000, + 100000, + 125695, + 125695, + 191605, + 191605, + 365604, + 1000000, + 1000000, + 1000000, + 1000000, + 1000001, + 1473007 + ], + [ + 0, + 1, + 137, + 137, + 523, + 523, + 523, + 4955, + 4955, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 163201, + 163201, + 365604, + 1000000, + 1000001, + 2500000 + ], + [ + 0, + 5, + 506, + 708, + 3211, + 11635, + 27293, + 100000, + 100000, + 100000, + 137176, + 424704, + 1000000, + 1000000, + 1000001, + 1000001, + 1638030, + 4000000, + 4000000, + 15803382, + 44957768 + ], + [ + 0, + 1, + 5, + 5, + 778, + 16031, + 16031, + 20536, + 100000, + 100000, + 100000, + 100000, + 176770, + 339682, + 1000000, + 1150058, + 2031246, + 2031246, + 5962324, + 20430582, + 39409279 + ], + [ + 0, + 5, + 1000, + 1000, + 2688, + 100000, + 100000, + 148282, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 28159899 + ], + [ + 0, + 1, + 72, + 72, + 269, + 1551, + 1551, + 4884, + 6374, + 6374, + 100000, + 100000, + 100000, + 100000, + 138841, + 138841, + 174555, + 339682, + 915020, + 1000000, + 100036630 + ], + [ + 0, + 1, + 237, + 523, + 917, + 917, + 46400, + 100000, + 100000, + 100000, + 100000, + 100000, + 126688, + 126688, + 365604, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1059662 + ], + [ + 0, + 1, + 1, + 1, + 13, + 72, + 72, + 562, + 562, + 25495, + 25495, + 100000, + 100000, + 100000, + 100000, + 138998, + 365604, + 969014, + 969014, + 1000000, + 10000000 + ], + [ + 0, + 84, + 84, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 255, + 31068, + 100000, + 100000, + 100000, + 100000, + 197292, + 339600, + 1000000, + 100000000 + ], + [ + 0, + 1, + 72, + 72, + 104, + 713, + 713, + 49450, + 49450, + 100000, + 100000, + 100000, + 100000, + 169182, + 178993, + 367741, + 1000000, + 1000000, + 1000000, + 1100044, + 1168928 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 503, + 48966, + 48966, + 100000, + 100000, + 100000, + 100000, + 100000, + 159798, + 367741, + 1000000, + 1000000, + 10000000 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 42544, + 100000, + 153829, + 1000001, + 40293230 + ], + [ + 0, + 1, + 58, + 2678, + 11948, + 20034, + 30555, + 30555, + 100000, + 100000, + 100000, + 100000, + 133799, + 137507, + 137507, + 367741, + 1000000, + 1000000, + 1000001, + 25024864, + 25127067 + ], + [ + 0, + 1, + 5, + 71, + 900, + 10089, + 15892, + 21939, + 100000, + 100000, + 100000, + 130397, + 130397, + 130397, + 135671, + 254659, + 872694, + 1000000, + 1150058, + 3121253, + 25123544 + ], + [ + 0, + 143, + 2058, + 9536, + 9536, + 44268, + 44268, + 100000, + 100000, + 100000, + 168046, + 367741, + 1000000, + 1000000, + 1000000, + 1097991, + 1550204, + 1834637, + 8574671, + 47455333, + 100000000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 71, + 519, + 519, + 629, + 752, + 811, + 8300, + 100000, + 100000, + 367741, + 1000000, + 1000001, + 1200074 + ], + [ + 0, + 1, + 5, + 5, + 147, + 12587, + 44412, + 49628, + 49628, + 100000, + 100000, + 100000, + 133799, + 147039, + 150814, + 167992, + 365604, + 713214, + 1100037, + 22290947, + 60000000 + ], + [ + 0, + 71, + 71, + 113, + 519, + 519, + 727, + 727, + 6618, + 46575, + 47012, + 100000, + 100000, + 100000, + 100000, + 111005, + 111005, + 367741, + 1000000, + 1550204, + 1550204 + ], + [ + 0, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 933, + 3147, + 9537, + 45536, + 100000, + 100000, + 100000, + 148878, + 1000000, + 1000000, + 1000000, + 1449120 + ], + [ + 0, + 5, + 5, + 5, + 5, + 555, + 744, + 3390, + 4466, + 10000, + 25003, + 100000, + 100000, + 100000, + 117570, + 144062, + 365604, + 1000000, + 1000000, + 1000000, + 1200074 + ], + [ + 0, + 10, + 71, + 71, + 90, + 537, + 3256, + 7162, + 12715, + 12715, + 15416, + 100000, + 100000, + 100000, + 115812, + 115812, + 273119, + 1000000, + 1000000, + 2500000, + 2500000 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 5, + 894, + 9456, + 9456, + 9537, + 9537, + 61226, + 100000, + 100000, + 100000, + 100000, + 157718, + 246897, + 273119, + 1000000 + ], + [ + 0, + 5, + 5, + 71, + 71, + 278, + 278, + 1163, + 2681, + 3182, + 29731, + 55587, + 100000, + 100000, + 100000, + 100000, + 131130, + 273119, + 511852, + 1000000, + 1000001 + ], + [ + 0, + 5, + 5, + 5, + 124, + 124, + 547, + 12715, + 26611, + 26611, + 100000, + 100000, + 100000, + 120975, + 273119, + 1000000, + 1000000, + 1000000, + 1000000, + 2500000, + 100036729 + ], + [ + 0, + 1, + 5, + 5, + 805, + 805, + 20313, + 100000, + 100000, + 100000, + 100000, + 100000, + 143347, + 143347, + 273119, + 607372, + 607372, + 1000000, + 1000001, + 25008104, + 100000000 + ], + [ + 0, + 5, + 5, + 432, + 625, + 9537, + 9537, + 30077, + 56498, + 100000, + 100000, + 100000, + 162605, + 162605, + 509248, + 999999, + 999999, + 1000000, + 1000000, + 1100037, + 100000000 + ], + [ + 0, + 1, + 1, + 5, + 5, + 131, + 291, + 629, + 6633, + 59901, + 100000, + 100000, + 100000, + 100000, + 118062, + 273119, + 689248, + 1000000, + 1000000, + 10000000, + 19999629 + ], + [ + 0, + 10, + 10, + 71, + 71, + 918, + 1551, + 1551, + 8273, + 100000, + 100000, + 100000, + 100000, + 153265, + 273119, + 689248, + 1000000, + 1000000, + 4000000, + 4000000, + 180181528 + ], + [ + 0, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 737, + 12715, + 40880, + 100000, + 100000, + 100000, + 128968, + 825922, + 1000000, + 1000000, + 1000000, + 1000001 + ], + [ + 0, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 11625, + 164353, + 100036729 + ], + [ + 0, + 71, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 444, + 42404, + 194726, + 100000000 + ], + [ + 0, + 1, + 253, + 253, + 253, + 256, + 627, + 60742, + 100000, + 100000, + 100000, + 100000, + 195899, + 420028, + 1000000, + 1000000, + 1000000, + 1000000, + 1000001, + 10154814, + 10154814 + ], + [ + 0, + 70, + 359, + 979, + 9536, + 49381, + 49714, + 100000, + 100000, + 100000, + 178023, + 367803, + 960286, + 1000001, + 1179276, + 1441420, + 1703564, + 2200448, + 10000000, + 25001459, + 60000000 + ], + [ + 0, + 47, + 50, + 7580, + 9537, + 49714, + 100000, + 100000, + 112773, + 176903, + 556057, + 1000000, + 1000001, + 1150058, + 1179276, + 1375884, + 1550204, + 1769100, + 2031244, + 25564032, + 325823261 + ], + [ + 0, + 3, + 5, + 5, + 739, + 3868, + 20005, + 100000, + 100000, + 100000, + 137080, + 145284, + 195899, + 1000000, + 1550204, + 1550204, + 2200446, + 2200446, + 5000000, + 25000000, + 54979168 + ], + [ + 0, + 5, + 5, + 5, + 1550, + 1628, + 1628, + 1628, + 7349, + 11360, + 100000, + 102753, + 155801, + 195899, + 1000000, + 1000000, + 1000001, + 1303746, + 1550204, + 4078502, + 3000000000 + ], + [ + 0, + 847, + 3556, + 30016, + 40318, + 54036, + 71427, + 100000, + 109730, + 166957, + 302883, + 1000000, + 1113740, + 1150058, + 1244812, + 1703564, + 2031244, + 2031244, + 4062206, + 25119721, + 170299140 + ], + [ + 0, + 3, + 3, + 681, + 15892, + 36235, + 36235, + 41636, + 100000, + 100000, + 100000, + 100000, + 100000, + 108391, + 234019, + 302883, + 463308, + 1000000, + 1350130, + 1550204, + 25035364 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 931, + 2021, + 15892, + 69596, + 80885, + 100000, + 108391, + 142203, + 155984, + 1000000, + 1000000, + 1000000, + 1778402 + ], + [ + 0, + 1, + 586, + 910, + 910, + 910, + 2582, + 22477, + 22477, + 46936, + 100000, + 100000, + 100000, + 100000, + 100000, + 107121, + 286702, + 1000000, + 1000000, + 1247063, + 25007323 + ], + [ + 0, + 1, + 70, + 621, + 1550, + 1550, + 4485, + 12939, + 24207, + 100000, + 100000, + 100000, + 160231, + 160231, + 273616, + 276700, + 276700, + 1000000, + 1200073, + 3000000, + 3000000 + ], + [ + 0, + 1, + 5, + 5, + 236, + 236, + 2439, + 11498, + 13929, + 13929, + 14183, + 14183, + 25140, + 100000, + 100000, + 191107, + 1000000, + 1000000, + 1000000, + 1558293, + 100036828 + ], + [ + 0, + 5, + 5, + 315, + 1517, + 1517, + 11862, + 32018, + 100000, + 100000, + 100000, + 100000, + 100000, + 116314, + 170254, + 191107, + 276700, + 1000000, + 1000000, + 4000000, + 4000000 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 905, + 100000, + 195899, + 10000000 + ], + [ + 0, + 5, + 70, + 438, + 438, + 2582, + 2582, + 3129, + 3129, + 3909, + 42176, + 42176, + 100000, + 100000, + 100000, + 100000, + 141586, + 141586, + 1000000, + 1500000, + 25000000 + ], + [ + 0, + 1, + 113, + 3523, + 8196, + 12713, + 43964, + 100000, + 100000, + 100000, + 121304, + 157927, + 191107, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1350129, + 1583370 + ], + [ + 0, + 5, + 5, + 833, + 3181, + 3181, + 100000, + 100000, + 100000, + 146997, + 191107, + 999627, + 999999, + 1000000, + 1000000, + 1000002, + 1200073, + 2031243, + 9818609, + 12055593, + 999999627 + ], + [ + 0, + 699, + 699, + 925, + 1504, + 1627, + 1627, + 1627, + 3181, + 10926, + 38544, + 55395, + 100000, + 100000, + 131973, + 191107, + 1000000, + 1440576, + 1550205, + 5000000, + 100000000 + ], + [ + 0, + 65, + 100, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 1461, + 12434, + 100000, + 100000, + 137254, + 137254, + 192521, + 192521, + 1000000, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 5, + 1627, + 1627, + 1627, + 1627, + 30737, + 30737, + 100000, + 100000, + 324886, + 639888, + 1000000, + 1000000, + 1000000, + 1000000, + 1602482, + 1703563 + ], + [ + 0, + 5, + 5, + 248, + 504, + 857, + 1550, + 1550, + 10000, + 13876, + 13876, + 100000, + 100000, + 100000, + 139571, + 238724, + 1000000, + 1000000, + 1000000, + 1200074, + 100036927 + ], + [ + 0, + 1, + 937, + 1287, + 2345, + 10020, + 12714, + 83802, + 83802, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 131574, + 238724, + 817474, + 1000000, + 1000000, + 100036927 + ], + [ + 0, + 5, + 5, + 5, + 512, + 1627, + 1627, + 3182, + 3182, + 5161, + 35390, + 100000, + 100000, + 273119, + 276700, + 1000000, + 1000000, + 1500000, + 5445686, + 25023195, + 82531727 + ], + [ + 0, + 1, + 1, + 5, + 2757, + 8237, + 78060, + 100000, + 100000, + 121522, + 158082, + 158082, + 273119, + 1000000, + 1150058, + 1441419, + 1550205, + 2031243, + 2200447, + 25023145, + 100000000 + ], + [ + 0, + 39, + 1626, + 1626, + 28119, + 64471, + 100000, + 142367, + 212897, + 362858, + 999999, + 1000000, + 1248016, + 1574211, + 1916917, + 2500000, + 3000000, + 5302336, + 6589671, + 40586141, + 2080156450 + ], + [ + 0, + 5, + 5, + 136, + 1075, + 2505, + 10000, + 12150, + 100000, + 100000, + 126408, + 158081, + 1000000, + 1000000, + 1000000, + 1000000, + 1550204, + 1917322, + 3599626, + 5383987, + 50609939 + ], + [ + 0, + 599, + 1550, + 1550, + 18051, + 29360, + 100000, + 100000, + 119757, + 135509, + 238724, + 1000000, + 1120724, + 1150059, + 1550204, + 1550204, + 1550204, + 1550204, + 1926241, + 25006660, + 32271345 + ], + [ + 0, + 770, + 1626, + 1626, + 1626, + 3181, + 12518, + 12518, + 31693, + 67364, + 68015, + 68015, + 100000, + 165800, + 181879, + 652517, + 1000000, + 1150059, + 1550205, + 25000151, + 100000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 516, + 2505, + 15891, + 47230, + 100000, + 100000, + 100000, + 137129, + 225730, + 1000000, + 1000000, + 1200073, + 1550205, + 1935606 + ], + [ + 0, + 3, + 3, + 5, + 227, + 971, + 7272, + 10000, + 10000, + 33635, + 39677, + 100000, + 100000, + 100000, + 101707, + 221604, + 308127, + 999998, + 999998, + 1000000, + 25012271 + ], + [ + 0, + 5, + 5, + 52, + 3181, + 10365, + 14628, + 18121, + 34866, + 45489, + 45489, + 100000, + 100000, + 100000, + 131386, + 165252, + 165903, + 219866, + 1000000, + 1936075, + 25012221 + ], + [ + 0, + 5, + 5, + 5, + 5, + 121, + 945, + 945, + 4664, + 5913, + 14628, + 15350, + 22500, + 100000, + 100000, + 100000, + 102322, + 106958, + 212728, + 1000000, + 1936568 + ], + [ + 0, + 5, + 380, + 802, + 1599, + 1626, + 1626, + 1905, + 1979, + 4400, + 4400, + 9072, + 12714, + 14628, + 100000, + 100000, + 165252, + 197423, + 1000000, + 1000000, + 1937061 + ], + [ + 0, + 1, + 39, + 64, + 174, + 174, + 2329, + 9480, + 12714, + 14628, + 29188, + 29188, + 100000, + 100000, + 100000, + 127687, + 210985, + 1000000, + 1000000, + 1248016, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 75, + 460, + 2505, + 2505, + 7625, + 12714, + 14628, + 29822, + 100000, + 100000, + 100000, + 100000, + 135134, + 135134, + 142210, + 1000000, + 1939133 + ], + [ + 0, + 1, + 5, + 161, + 970, + 1626, + 1626, + 8848, + 14628, + 69870, + 100000, + 100000, + 100000, + 129049, + 129049, + 138418, + 165252, + 1000000, + 1000000, + 1000000, + 1939185 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 489, + 100000, + 100000, + 162542, + 100000000 + ], + [ + 0, + 1, + 5, + 45, + 1478, + 1478, + 1625, + 1625, + 1625, + 4194, + 14628, + 15326, + 100000, + 100000, + 126489, + 150469, + 165252, + 1000000, + 1275312, + 1500000, + 1939240 + ], + [ + 0, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 242, + 13050, + 13050, + 14249, + 100000, + 100000, + 100000, + 125969, + 148865, + 999999, + 1939295 + ], + [ + 0, + 422, + 466, + 1477, + 1477, + 3821, + 4709, + 5817, + 14628, + 16312, + 16312, + 100000, + 100000, + 100000, + 126619, + 165252, + 301790, + 999997, + 1067493, + 11498327, + 31717003 + ], + [ + 0, + 1, + 22, + 22, + 3077, + 9789, + 9789, + 12470, + 14628, + 41315, + 41315, + 100000, + 100000, + 100000, + 100000, + 187426, + 187426, + 240706, + 1000000, + 1000000, + 100037125 + ], + [ + 0, + 3, + 742, + 779, + 1477, + 1625, + 1625, + 6255, + 37112, + 100000, + 100000, + 100000, + 109937, + 197571, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1388902, + 100037125 + ], + [ + 0, + 1, + 5, + 5, + 5, + 5, + 183, + 1508, + 7585, + 13434, + 13434, + 100000, + 100000, + 100000, + 177576, + 177576, + 204638, + 1000000, + 1000000, + 1300000, + 1939662 + ], + [ + 0, + 1, + 459, + 532, + 532, + 3109, + 7585, + 25468, + 25468, + 100000, + 100000, + 100000, + 100000, + 108760, + 204638, + 1000000, + 1000000, + 1000000, + 3000000, + 4000000, + 100037125 + ], + [ + 0, + 5, + 5, + 505, + 505, + 576, + 1625, + 1625, + 1625, + 1625, + 7585, + 32085, + 32085, + 33796, + 100000, + 100000, + 109831, + 204638, + 1000000, + 1939798, + 100000000 + ], + [ + 0, + 5, + 5, + 317, + 347, + 848, + 7585, + 16312, + 16312, + 22152, + 100000, + 100000, + 100000, + 137990, + 204638, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1939927 + ], + [ + 0, + 71, + 137, + 836, + 1625, + 1625, + 1625, + 3266, + 15462, + 100000, + 100000, + 164836, + 204638, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 2200451, + 2200451 + ], + [ + 0, + 10, + 10, + 10, + 10, + 10, + 10, + 10, + 23, + 405, + 505, + 1080, + 9498, + 13051, + 100000, + 100000, + 135478, + 243106, + 1000000, + 2200451, + 2200451 + ], + [ + 0, + 1, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 460, + 7585, + 28987, + 100000, + 100000, + 100000, + 100000, + 204638, + 1000000, + 1000000, + 201069862 + ], + [ + 0, + 1, + 1625, + 1625, + 1625, + 1625, + 1625, + 7173, + 100000, + 100000, + 100000, + 133911, + 179560, + 204638, + 234800, + 234800, + 234800, + 999999, + 1000000, + 1000000, + 1940245 + ], + [ + 0, + 1, + 64, + 64, + 482, + 554, + 1000, + 1477, + 3266, + 3266, + 16095, + 42529, + 100000, + 100000, + 100000, + 100000, + 135064, + 252367, + 1000000, + 1150060, + 100037126 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 7173, + 100000, + 1000000, + 16406528 + ], + [ + 0, + 1, + 10, + 146, + 1000, + 1477, + 1477, + 1625, + 1625, + 1625, + 1625, + 1625, + 7173, + 13051, + 100000, + 100000, + 100000, + 100000, + 133911, + 1000000, + 1940744 + ], + [ + 0, + 1, + 5, + 5, + 5, + 656, + 656, + 7173, + 29745, + 29745, + 100000, + 100000, + 100000, + 100000, + 100000, + 133911, + 133911, + 762494, + 1000000, + 1000000, + 1941088 + ], + [ + 0, + 1, + 38, + 38, + 654, + 1591, + 1591, + 7173, + 49834, + 49834, + 100000, + 100000, + 100000, + 100000, + 123617, + 123617, + 159720, + 746980, + 1000000, + 1941106, + 25007813 + ], + [ + 0, + 1, + 5, + 416, + 1626, + 1626, + 1626, + 1626, + 7173, + 11108, + 100000, + 100000, + 100000, + 133911, + 185475, + 1000000, + 1350132, + 2021142, + 20458359, + 25012411, + 1000000000 + ], + [ + 0, + 1, + 14, + 14, + 615, + 7173, + 9790, + 9790, + 17286, + 17286, + 100000, + 100000, + 100000, + 114662, + 114662, + 273119, + 1000000, + 1000000, + 1941125, + 25000000, + 3000000000 + ], + [ + 0, + 1, + 5, + 5, + 143, + 3267, + 3267, + 7173, + 8309, + 8309, + 55987, + 100000, + 100000, + 100000, + 100000, + 136572, + 136572, + 1000000, + 1000000, + 1100037, + 1941863 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 548, + 835, + 5871, + 16312, + 25000, + 100000, + 100000, + 133911, + 192330, + 1000000, + 1942276, + 2842485, + 25001001, + 1600000225 + ], + [ + 0, + 1, + 5, + 160, + 1478, + 1478, + 1626, + 1626, + 1626, + 58824, + 58824, + 100000, + 100000, + 102840, + 276140, + 1000000, + 1125046, + 5000000, + 21646863, + 26981647, + 51571449 + ], + [ + 0, + 1, + 3, + 3, + 902, + 6371, + 48631, + 100000, + 100000, + 100000, + 100000, + 141838, + 276140, + 765782, + 1000000, + 1000000, + 1000000, + 13211905, + 25009432, + 25039251, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 993, + 2651, + 2651, + 3406, + 3406, + 6371, + 100000, + 100000, + 100000, + 100000, + 180597, + 276140, + 1000000, + 1000000, + 1942320, + 3599626, + 100000000 + ], + [ + 0, + 5, + 5, + 533, + 533, + 1478, + 1626, + 1626, + 1626, + 6371, + 9859, + 13051, + 13051, + 100000, + 100000, + 100000, + 117942, + 276140, + 1000000, + 1000000, + 1942345 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 46, + 14426, + 100000, + 100000, + 163767, + 276140, + 1000000, + 9948332, + 25024076, + 55241415 + ], + [ + 0, + 505, + 505, + 780, + 1591, + 1626, + 1626, + 1626, + 1626, + 6371, + 25000, + 57284, + 100000, + 100000, + 100000, + 123588, + 276140, + 1000000, + 1500000, + 25000000, + 25716747 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 6371, + 45522, + 100000, + 100000, + 1942453 + ], + [ + 0, + 1, + 5, + 5, + 62, + 62, + 6371, + 10000, + 10000, + 10000, + 34984, + 34984, + 100000, + 100000, + 100000, + 100000, + 653122, + 1000000, + 1000000, + 1942456, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 315, + 315, + 6371, + 6371, + 45036, + 100000, + 100000, + 100000, + 100000, + 100000, + 148899, + 148899, + 276140, + 1000000, + 1000000, + 1000000, + 1942513 + ], + [ + 0, + 62, + 62, + 101, + 101, + 101, + 101, + 101, + 101, + 172, + 3265, + 3265, + 46171, + 100000, + 100000, + 100000, + 130739, + 276140, + 1000000, + 1000000, + 1942633 + ], + [ + 0, + 1, + 118, + 1626, + 1626, + 6371, + 9790, + 16273, + 100000, + 100000, + 100000, + 150483, + 236803, + 1000000, + 1098353, + 1100038, + 1942753, + 4000000, + 7639767, + 25018501, + 52841826 + ], + [ + 0, + 1, + 14, + 14, + 14, + 16313, + 16313, + 100000, + 100000, + 100000, + 100000, + 100000, + 251900, + 1000000, + 1000000, + 1150059, + 1150059, + 1150059, + 2999626, + 25088549, + 25677967 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 5, + 208, + 10000, + 42540, + 100000, + 100000, + 100000, + 140105, + 236803, + 1000000, + 3000000, + 25197224 + ], + [ + 0, + 1, + 27, + 27, + 1627, + 1627, + 1627, + 2651, + 2651, + 43913, + 43913, + 53622, + 100000, + 100000, + 100000, + 125184, + 154338, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 746, + 746, + 4113, + 10000, + 18928, + 18928, + 100000, + 100000, + 100000, + 100000, + 128672, + 128672, + 154338, + 1000000, + 1000000, + 1943291, + 25022714 + ], + [ + 0, + 1, + 5, + 5, + 5, + 5, + 156, + 1479, + 27984, + 46970, + 100000, + 100000, + 100000, + 100000, + 112833, + 149643, + 154338, + 1000000, + 1943305, + 2500000, + 2500000 + ], + [ + 0, + 1, + 408, + 408, + 9789, + 9789, + 32536, + 100000, + 100000, + 100000, + 100000, + 151455, + 151455, + 154338, + 1000000, + 1000000, + 1000000, + 1000000, + 1943571, + 2500000, + 2500000 + ], + [ + 0, + 1, + 822, + 1479, + 1479, + 1627, + 1627, + 1627, + 16312, + 16312, + 42067, + 100000, + 100000, + 100000, + 100000, + 125985, + 165200, + 412938, + 1000000, + 1000000, + 25000000 + ], + [ + 0, + 1, + 880, + 880, + 15963, + 15963, + 16312, + 16312, + 100000, + 100000, + 100000, + 100000, + 100000, + 154338, + 175040, + 175040, + 1000000, + 1943891, + 2500000, + 2500000, + 100000000 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 101, + 101, + 101, + 101, + 101, + 1480, + 47658, + 100000, + 100000, + 185997, + 1000000, + 1944211 + ], + [ + 0, + 1, + 5, + 5, + 846, + 46882, + 46882, + 50627, + 50627, + 50627, + 100000, + 100000, + 100000, + 100000, + 154338, + 187692, + 187692, + 1000000, + 1000000, + 1350131, + 2500000 + ], + [ + 0, + 952, + 1000, + 1480, + 2651, + 2651, + 10000, + 100000, + 100000, + 100000, + 151838, + 512168, + 1000000, + 1000000, + 1000000, + 1000000, + 1375884, + 2500000, + 8733270, + 25001025, + 45595428 + ], + [ + 0, + 5, + 5, + 944, + 2418, + 9789, + 100000, + 100000, + 100000, + 179987, + 191298, + 1000000, + 1000000, + 1150058, + 1944580, + 2031244, + 2200446, + 2200446, + 12099628, + 30503864, + 100036828 + ], + [ + 0, + 38, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 9789, + 100000, + 179987, + 23010933 + ], + [ + 0, + 1, + 821, + 821, + 9788, + 9788, + 9788, + 100000, + 100000, + 100000, + 179987, + 196837, + 196837, + 999999, + 999999, + 1000000, + 1000000, + 1944598, + 2500000, + 2500000, + 100000000 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 62, + 407, + 3265, + 41208, + 75519, + 100000, + 100000, + 100000, + 171293, + 1000000, + 2999627 + ], + [ + 0, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 627, + 100000, + 584582, + 2999627 + ], + [ + 0, + 1, + 5, + 5, + 62, + 62, + 62, + 191, + 18044, + 18044, + 100000, + 100000, + 100000, + 100000, + 179987, + 186525, + 186525, + 709843, + 1000000, + 1944636, + 3000000000 + ], + [ + 0, + 1, + 5, + 5, + 744, + 1591, + 1591, + 45325, + 100000, + 100000, + 100000, + 100000, + 124531, + 179987, + 945776, + 1000000, + 1944637, + 2500000, + 5682354, + 25002189, + 45326500 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 572, + 3266, + 7464, + 100000, + 100000, + 100000, + 143212, + 999626, + 1000000, + 1250000, + 1250000, + 1550205, + 2500000, + 25265338 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 685, + 858, + 1478, + 6537, + 16312, + 45467, + 100000, + 100000, + 100000, + 133779, + 904610, + 1000000, + 1150059, + 2500000, + 17623158 + ], + [ + 0, + 1, + 1, + 3, + 3, + 63, + 41363, + 100000, + 100000, + 100000, + 183247, + 404077, + 1000000, + 1000000, + 1150059, + 1200074, + 1301236, + 2625000, + 12118272, + 25004713, + 47710026 + ], + [ + 0, + 1, + 5, + 55, + 928, + 10589, + 10589, + 100000, + 100000, + 100000, + 133900, + 133900, + 144919, + 144919, + 404077, + 1000000, + 1000000, + 1330468, + 2500000, + 25669786, + 66416657 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 190, + 1478, + 1591, + 1626, + 1626, + 26698, + 100000, + 100000, + 186348, + 1000000, + 1000000, + 1944704, + 100037026 + ], + [ + 0, + 1, + 490, + 3266, + 3266, + 4224, + 36023, + 36023, + 100000, + 100000, + 100000, + 100000, + 116631, + 116631, + 404077, + 1000000, + 1000000, + 1380428, + 1944727, + 25001545, + 100000000 + ], + [ + 0, + 1, + 633, + 1478, + 9045, + 14032, + 14431, + 16312, + 100000, + 100000, + 100000, + 184714, + 236803, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1674458, + 4389699, + 201069863 + ], + [ + 0, + 1, + 5, + 5, + 5, + 5, + 3891, + 48776, + 48776, + 48776, + 100000, + 100000, + 178307, + 178307, + 178307, + 404077, + 1000000, + 1000000, + 1000000, + 1944754, + 1944754 + ], + [ + 0, + 1, + 5, + 5, + 13, + 13, + 490, + 729, + 2642, + 2642, + 27037, + 100000, + 100000, + 100000, + 100000, + 119723, + 119723, + 1000000, + 1100045, + 1944779, + 100037027 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100000, + 158840, + 1944808 + ], + [ + 0, + 1, + 34, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 154, + 170, + 7183, + 9757, + 9757, + 100000, + 138813, + 138813, + 1000000, + 1944837 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 784, + 9756, + 39994, + 100000, + 100000, + 100000, + 999999, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 54, + 54, + 530, + 530, + 946, + 946, + 13229, + 100000, + 100000, + 100000, + 100000, + 100000, + 142016, + 162491, + 613230, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 530, + 530, + 960, + 46684, + 46684, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 155226, + 155226, + 162491, + 1000000, + 10000000 + ], + [ + 0, + 1, + 5, + 5, + 5, + 5, + 34, + 34, + 860, + 10000, + 10000, + 48070, + 100000, + 100000, + 100000, + 123019, + 123019, + 162491, + 1000000, + 1000000, + 1944963 + ], + [ + 0, + 1, + 5, + 747, + 747, + 48184, + 100000, + 100000, + 100000, + 100000, + 100000, + 157382, + 162491, + 200000, + 200000, + 200000, + 200000, + 1000000, + 1100037, + 1200074, + 1945024 + ], + [ + 0, + 1, + 34, + 34, + 368, + 368, + 530, + 530, + 15359, + 100000, + 100000, + 100000, + 100000, + 102693, + 102693, + 162491, + 443832, + 1000000, + 1000000, + 1200074, + 2999626 + ], + [ + 0, + 1, + 55, + 55, + 16257, + 16257, + 43160, + 43160, + 100000, + 100000, + 100000, + 100000, + 100000, + 121320, + 154300, + 154300, + 162491, + 1000000, + 1000000, + 1250093, + 100000000 + ], + [ + 0, + 1, + 34, + 34, + 34, + 617, + 617, + 9756, + 9756, + 37661, + 37661, + 100000, + 100000, + 100000, + 100000, + 100000, + 147775, + 162491, + 226376, + 1000000, + 1945176 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 5, + 5, + 102, + 33980, + 100000, + 100000, + 146792, + 1000000, + 20000000, + 201069864 + ], + [ + 0, + 1, + 5, + 13, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 612, + 64901, + 100000, + 222430, + 1000000, + 1000001, + 1945258, + 2500000, + 20010701, + 373548421 + ], + [ + 0, + 1, + 5, + 557, + 557, + 29327, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 150404, + 150404, + 1000000, + 1000000, + 1945340, + 2500000, + 2500000, + 40000000, + 100036927 + ], + [ + 0, + 1, + 1, + 369, + 369, + 530, + 530, + 530, + 87689, + 100000, + 100000, + 100000, + 100000, + 100000, + 137699, + 137699, + 440460, + 1000000, + 1200074, + 1945513, + 5230194 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 451, + 27518, + 100000, + 1000000, + 100000000 + ], + [ + 0, + 1, + 5, + 5, + 5, + 907, + 907, + 13007, + 13007, + 40730, + 40730, + 87689, + 100000, + 100000, + 100000, + 178674, + 178674, + 1000000, + 1000000, + 1010003, + 1945695 + ], + [ + 0, + 1, + 724, + 724, + 3255, + 3255, + 3255, + 23333, + 23333, + 87689, + 100000, + 100000, + 100000, + 100000, + 100000, + 103020, + 103020, + 595520, + 1000000, + 1945877, + 100036928 + ], + [ + 0, + 1, + 5, + 5, + 10, + 391, + 391, + 1297, + 1297, + 13008, + 13008, + 32385, + 87689, + 100000, + 100000, + 100000, + 100000, + 132897, + 132897, + 1000000, + 100036929 + ], + [ + 0, + 1, + 411, + 411, + 37554, + 87689, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 197691, + 587256, + 1000000, + 1500188, + 1946069 + ], + [ + 0, + 5, + 5, + 5, + 5, + 769, + 1297, + 18702, + 21028, + 100000, + 100000, + 100000, + 151361, + 574758, + 1000000, + 1000000, + 1412084, + 1576568, + 2500000, + 5230196, + 115273802 + ], + [ + 0, + 1, + 259, + 530, + 1629, + 1629, + 1629, + 1629, + 21028, + 26812, + 100000, + 100000, + 100000, + 100888, + 134021, + 162400, + 162400, + 1000000, + 1000000, + 1000000, + 79999629 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 507, + 991, + 7929, + 9756, + 35645, + 55424, + 100000, + 100000, + 124065, + 173064, + 1000000, + 1000000, + 2000371 + ], + [ + 0, + 1, + 109, + 109, + 3255, + 3255, + 7929, + 55424, + 100000, + 100000, + 100000, + 100000, + 100000, + 123634, + 124065, + 756378, + 1000000, + 1000000, + 1000000, + 1000000, + 2500000 + ], + [ + 0, + 1, + 3, + 34, + 34, + 784, + 14167, + 14167, + 18530, + 82365, + 100000, + 100000, + 100000, + 143464, + 143464, + 1000000, + 1000000, + 1460393, + 2500000, + 11176510, + 40585029 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 5, + 235, + 18530, + 100000, + 100000, + 130526, + 1000000, + 1000000, + 2500000 + ], + [ + 0, + 1, + 969, + 2642, + 12209, + 12209, + 18530, + 82365, + 100000, + 100000, + 100000, + 100000, + 100000, + 136949, + 136949, + 1000000, + 1000000, + 1947002, + 2500000, + 2500000, + 500000000 + ], + [ + 0, + 5, + 808, + 1297, + 1297, + 13007, + 13007, + 14254, + 18530, + 82365, + 100000, + 100000, + 100000, + 109221, + 109221, + 1000000, + 1100037, + 1110629, + 1405392, + 2500000, + 10975370 + ], + [ + 0, + 1, + 790, + 3255, + 3255, + 18530, + 33110, + 42587, + 82365, + 100000, + 100000, + 100000, + 100000, + 116017, + 1000000, + 1000000, + 1000000, + 1200074, + 2500000, + 2500000, + 2500000 + ], + [ + 0, + 1, + 3, + 3, + 219, + 1297, + 1297, + 18530, + 42587, + 43008, + 82365, + 100000, + 100000, + 100000, + 100000, + 156557, + 156557, + 1000000, + 1000000, + 1005000, + 1600823505 + ], + [ + 0, + 1, + 5, + 5, + 873, + 873, + 10602, + 10602, + 18530, + 42587, + 100000, + 100000, + 100000, + 100000, + 100000, + 141329, + 141329, + 1000000, + 1150058, + 1947297, + 100036729 + ], + [ + 0, + 1, + 5, + 5, + 505, + 505, + 729, + 18530, + 26277, + 42587, + 82365, + 100000, + 100000, + 100000, + 100000, + 195095, + 195095, + 1000000, + 1000000, + 1000000, + 1947844 + ], + [ + 0, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 473, + 2010, + 18530, + 42587, + 100000, + 100000, + 100000, + 125003, + 125003, + 1000000, + 1600823505 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 13, + 858, + 18530, + 21843, + 79045, + 100000, + 100000, + 183898, + 200000, + 200000, + 1000000, + 2200445 + ], + [ + 0, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 2629, + 78360, + 1948472 + ], + [ + 0, + 1, + 5, + 5, + 5, + 99, + 9756, + 9756, + 22181, + 78360, + 100000, + 100000, + 999628, + 1000000, + 1200073, + 1250091, + 2500000, + 8247948, + 10000000, + 25003154, + 66306512 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 48410, + 100000, + 1000000, + 1948811, + 100000000 + ], + [ + 0, + 1, + 741, + 20199, + 29368, + 29368, + 78360, + 100000, + 100000, + 100000, + 100000, + 147700, + 999999, + 1000000, + 1150057, + 1949133, + 2000000, + 2000000, + 10000000, + 25000000, + 50077756 + ], + [ + 0, + 1, + 5, + 693, + 2642, + 2642, + 8796, + 10000, + 20199, + 78360, + 100000, + 100000, + 100000, + 184320, + 227699, + 1000000, + 1500186, + 1550205, + 1949472, + 5843563, + 99999627 + ], + [ + 0, + 5, + 487, + 2018, + 36149, + 100000, + 100000, + 106948, + 404138, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 12186642 + ], + [ + 0, + 1, + 128, + 128, + 128, + 6125, + 20199, + 78360, + 78360, + 100000, + 100000, + 100000, + 163591, + 163591, + 193001, + 193001, + 193001, + 1000000, + 1000000, + 1949828, + 1949828 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 506, + 1054, + 6426, + 14832, + 38076, + 97399, + 100000, + 100000, + 177942, + 1000000, + 2000000, + 3000000000 + ], + [ + 0, + 1, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 290, + 1628, + 1628, + 1628, + 25515, + 44580, + 100000, + 100000, + 185390, + 1000000, + 1158008, + 7751468 + ], + [ + 0, + 1, + 5, + 594, + 3279, + 9095, + 18616, + 25885, + 26213, + 100000, + 100000, + 100000, + 124656, + 152904, + 210281, + 1000000, + 1100037, + 1100037, + 1100037, + 1951324, + 3000000000 + ], + [ + 0, + 5, + 803, + 1296, + 1296, + 3281, + 9129, + 13007, + 13007, + 15947, + 35556, + 80117, + 100000, + 100000, + 100000, + 136154, + 164817, + 1000000, + 1000000, + 1000000, + 1952895 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 625, + 9129, + 15947, + 16258, + 23570, + 80117, + 100000, + 100000, + 100000, + 165863, + 1000000, + 1000000, + 1497074, + 25000000, + 999999628 + ], + [ + 0, + 5, + 5, + 5, + 266, + 9129, + 15947, + 32569, + 100000, + 100000, + 100000, + 110800, + 111814, + 187231, + 1100037, + 1150058, + 1284962, + 2000000, + 25000000, + 50077867, + 148567426 + ], + [ + 0, + 1, + 5, + 5, + 735, + 9129, + 15947, + 22447, + 33210, + 41244, + 80117, + 100000, + 100000, + 100000, + 100000, + 109882, + 185778, + 1000000, + 1000000, + 1000000, + 1956116 + ], + [ + 0, + 5, + 505, + 1628, + 1628, + 1628, + 1628, + 5889, + 9129, + 9756, + 9756, + 37819, + 37819, + 97399, + 100000, + 100000, + 100000, + 1000000, + 1200074, + 1311566, + 22614741 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 5, + 526, + 563, + 15947, + 23595, + 100000, + 100000, + 111198, + 990990, + 1200074, + 100000000 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 1296, + 80117, + 100000, + 1959888 + ], + [ + 0, + 1, + 5, + 5, + 323, + 323, + 9129, + 12364, + 12364, + 15947, + 16257, + 80117, + 100000, + 100000, + 100000, + 100000, + 153591, + 153591, + 1000000, + 1200074, + 1963660 + ], + [ + 0, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 652, + 9129, + 15947, + 43109, + 100000, + 100000, + 100000, + 103723, + 110126, + 999999, + 1000000, + 25022590 + ], + [ + 0, + 1, + 100, + 505, + 505, + 3254, + 8279, + 15503, + 28113, + 100000, + 100000, + 100000, + 127735, + 150767, + 1000000, + 1550205, + 1550205, + 2230326, + 10021856, + 41895327, + 100000000 + ], + [ + 0, + 1, + 5, + 750, + 8042, + 8279, + 13007, + 15503, + 31957, + 100000, + 100000, + 100000, + 127040, + 150767, + 1000000, + 1150058, + 2031243, + 10039943, + 25000000, + 50078044, + 75378237 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 119, + 1296, + 1296, + 1628, + 1628, + 1628, + 8279, + 15503, + 16258, + 28748, + 100000, + 100000, + 100000, + 100000, + 157719, + 990990, + 1000000, + 1000000, + 1984710, + 25051336 + ], + [ + 0, + 1, + 1, + 1, + 5, + 5, + 5, + 173, + 173, + 8279, + 13007, + 15503, + 38478, + 38478, + 38478, + 100000, + 100000, + 150767, + 185394, + 1000000, + 1998970 + ], + [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 878, + 1586, + 4825, + 15503, + 31355, + 100000, + 100000, + 150767, + 1000000, + 1000000, + 25058410, + 100036828 + ], + [ + 0, + 6, + 6, + 119, + 530, + 530, + 1428, + 1428, + 4422, + 8279, + 8999, + 12295, + 58354, + 100000, + 100000, + 100000, + 100000, + 183440, + 183440, + 1000000, + 2013943 + ], + [ + 0, + 5, + 5, + 608, + 1628, + 1628, + 1628, + 8279, + 15503, + 29584, + 34522, + 100000, + 100000, + 100000, + 148665, + 150767, + 1000000, + 1000000, + 1000000, + 1000000, + 25090182 + ], + [ + 0, + 1, + 140, + 257, + 257, + 571, + 7778, + 7778, + 8279, + 15503, + 34522, + 100000, + 100000, + 100000, + 150767, + 180574, + 180574, + 1000000, + 1200074, + 1200074, + 2007059 + ], + [ + 0, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 159, + 1428, + 8279, + 15503, + 44698, + 100000, + 100000, + 100000, + 119614, + 150767, + 1000000, + 25000000 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 8279, + 100000, + 100000000 + ], + [ + 0, + 5, + 296, + 1427, + 1427, + 1627, + 1627, + 1627, + 8279, + 13037, + 15503, + 43456, + 100000, + 100000, + 150767, + 999999, + 999999, + 1100000, + 1435964, + 25027451, + 75366971 + ], + [ + 0, + 1, + 5, + 5, + 5, + 736, + 13037, + 13037, + 15447, + 33104, + 33104, + 100000, + 100000, + 100000, + 100000, + 175140, + 175140, + 1000000, + 1135997, + 13895358, + 100000000 + ], + [ + 0, + 5, + 504, + 504, + 678, + 1091, + 2142, + 3262, + 3262, + 9554, + 15447, + 100000, + 100000, + 100000, + 100000, + 100000, + 127796, + 127796, + 1000000, + 1000000, + 10000000 + ], + [ + 0, + 720, + 720, + 1627, + 1627, + 1627, + 1627, + 1627, + 15447, + 26757, + 100000, + 100000, + 100000, + 100000, + 107515, + 165950, + 165950, + 1000000, + 4000000, + 4000000, + 33113073 + ], + [ + 0, + 1, + 5, + 37, + 391, + 11349, + 15447, + 100000, + 100000, + 168092, + 498938, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 10000000, + 25000000, + 25996635, + 75365122 + ], + [ + 0, + 1, + 1, + 688, + 1590, + 1590, + 15447, + 15447, + 32464, + 32464, + 38302, + 100000, + 100000, + 100000, + 100000, + 107515, + 110336, + 110336, + 1000000, + 1000001, + 100000000 + ], + [ + 0, + 37, + 37, + 758, + 912, + 2648, + 2648, + 10000, + 10000, + 10000, + 15447, + 42456, + 42456, + 100000, + 100000, + 100000, + 107515, + 137416, + 1000000, + 11341605, + 32702023 + ], + [ + 0, + 5, + 5, + 827, + 827, + 3099, + 3263, + 3263, + 15447, + 33935, + 100000, + 100000, + 100000, + 100000, + 107515, + 144493, + 357252, + 1000001, + 1265276, + 25000000, + 54442150 + ], + [ + 0, + 77, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 9780, + 15447, + 19449, + 100000, + 100000, + 100000, + 107515, + 131644, + 1000000, + 1000001, + 44095327 + ], + [ + 0, + 1, + 3, + 3, + 697, + 7951, + 7951, + 15447, + 55977, + 100000, + 100000, + 100000, + 100000, + 107515, + 193918, + 193918, + 1000000, + 2031243, + 2400292, + 34971786, + 102807174 + ], + [ + 0, + 1, + 170, + 479, + 1427, + 2648, + 2648, + 10000, + 10000, + 38882, + 38882, + 100000, + 100000, + 100000, + 121111, + 121111, + 374747, + 1000000, + 1425669, + 14818121, + 26554374 + ], + [ + 0, + 52, + 52, + 13513, + 87680, + 100000, + 100000, + 100000, + 100000, + 175470, + 187286, + 671240, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1150058, + 1150058, + 30584794 + ], + [ + 0, + 1, + 570, + 1427, + 1427, + 1427, + 9098, + 9098, + 11544, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 187286, + 192623, + 441624, + 1000000, + 1000000, + 100036927 + ], + [ + 0, + 1, + 415, + 740, + 2897, + 6131, + 45970, + 45970, + 100000, + 100000, + 100000, + 100000, + 187286, + 193771, + 432516, + 1000000, + 1000000, + 1300000, + 20000479, + 31184876, + 100036927 + ], + [ + 0, + 1, + 36, + 1427, + 1427, + 6131, + 13513, + 34832, + 34832, + 100000, + 100000, + 100000, + 100000, + 156488, + 156488, + 412858, + 1000000, + 1100037, + 3041171, + 20084479, + 30170238 + ], + [ + 0, + 1, + 291, + 291, + 6131, + 38882, + 47850, + 100000, + 100000, + 100000, + 100000, + 100000, + 115334, + 115334, + 187286, + 1000000, + 1150058, + 2842250, + 20003475, + 45968973, + 100000000 + ], + [ + 0, + 10, + 10, + 37, + 617, + 617, + 2317, + 6131, + 12557, + 34696, + 100000, + 100000, + 100000, + 100000, + 144736, + 144736, + 370864, + 1000000, + 1329173, + 21597519, + 100000000 + ], + [ + 0, + 108, + 432, + 3964, + 13513, + 14047, + 96846, + 100000, + 100000, + 100000, + 100000, + 100000, + 102479, + 145198, + 187286, + 1000000, + 1000000, + 1015435, + 8749768, + 22726502, + 1500000000 + ], + [ + 0, + 10, + 10, + 10, + 60, + 101, + 101, + 101, + 101, + 384, + 6131, + 13513, + 37377, + 100000, + 100000, + 105508, + 187286, + 1150058, + 2031243, + 2200447, + 442972443 + ], + [ + 0, + 1, + 771, + 928, + 928, + 6131, + 13513, + 22650, + 22650, + 100000, + 100000, + 100000, + 135714, + 135714, + 187286, + 1000000, + 1000000, + 1000000, + 1000001, + 24664745, + 78835038 + ], + [ + 0, + 5, + 5, + 5, + 60, + 60, + 990, + 1812, + 16847, + 18626, + 100000, + 100000, + 100000, + 100000, + 151791, + 187286, + 1000000, + 1000001, + 4000000, + 4000000, + 10000000 + ], + [ + 0, + 1, + 157, + 157, + 1427, + 1427, + 3235, + 16847, + 38560, + 38560, + 100000, + 100000, + 100000, + 100000, + 110937, + 178904, + 1000000, + 1000000, + 1000000, + 1000001, + 1500000000 + ], + [ + 0, + 14, + 14, + 14, + 852, + 852, + 6090, + 16847, + 39529, + 39529, + 100000, + 100000, + 100000, + 100000, + 110937, + 110937, + 129100, + 1000000, + 1000001, + 1322556, + 100036828 + ], + [ + 0, + 1, + 6090, + 32897, + 32897, + 32897, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 110937, + 150508, + 150508, + 150508, + 1000000, + 1000000, + 1000001, + 1043314 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 470, + 82360, + 100000, + 1000000, + 1500000000 + ], + [ + 0, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 629, + 21772, + 1000001, + 100036729 + ], + [ + 0, + 60, + 60, + 565, + 565, + 6090, + 21334, + 21334, + 100000, + 100000, + 100000, + 100000, + 100000, + 110937, + 122542, + 1000000, + 1000000, + 1361661, + 4000000, + 4000000, + 1500000000 + ], + [ + 0, + 1, + 820, + 6090, + 14940, + 14940, + 100000, + 100000, + 100000, + 100000, + 100000, + 107515, + 575720, + 1000000, + 1000000, + 1000000, + 2640168, + 3000000, + 8046586, + 25000000, + 25160762 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 403, + 6090, + 6192, + 86276, + 86276, + 100000, + 100000, + 100000, + 110937, + 140648, + 1000000, + 1000000, + 1250093 + ], + [ + 0, + 60, + 60, + 60, + 982, + 982, + 6090, + 47107, + 47107, + 100000, + 100000, + 100000, + 100000, + 100000, + 110937, + 148320, + 148320, + 1000000, + 1216254, + 10000000, + 1500000000 + ], + [ + 0, + 1, + 41, + 100, + 100, + 100, + 16078, + 26102, + 26102, + 94808, + 100000, + 100000, + 100000, + 100000, + 100000, + 118401, + 118401, + 1000000, + 1216659, + 5000000, + 5000000 + ], + [ + 0, + 1, + 662, + 662, + 9839, + 9839, + 16078, + 74203, + 74203, + 74203, + 94808, + 100000, + 100000, + 100000, + 100000, + 100000, + 186161, + 935017, + 1000000, + 1224748, + 1500000000 + ], + [ + 0, + 60, + 60, + 60, + 770, + 770, + 1590, + 1590, + 16078, + 19775, + 19775, + 94808, + 100000, + 100000, + 100000, + 100000, + 172986, + 172986, + 915966, + 1217085, + 25000000 + ], + [ + 0, + 1, + 5, + 5, + 5, + 218, + 218, + 5751, + 39588, + 39588, + 94808, + 100000, + 100000, + 100000, + 100000, + 194793, + 543590, + 1234455, + 4000000, + 4000000, + 17449969 + ], + [ + 0, + 1, + 14, + 14, + 128, + 297, + 5751, + 16368, + 16368, + 22126, + 22126, + 100000, + 100000, + 100000, + 100000, + 179890, + 540083, + 1000000, + 3000000, + 3000000, + 1500000000 + ], + [ + 0, + 982, + 1590, + 1590, + 16078, + 16873, + 94808, + 100000, + 100000, + 100000, + 135840, + 135840, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1244648, + 35653155 + ], + [ + 0, + 14, + 14, + 14, + 100, + 984, + 984, + 1590, + 1590, + 5751, + 8674, + 16078, + 94808, + 100000, + 100000, + 100000, + 100000, + 102615, + 102615, + 1000000, + 1254355 + ], + [ + 0, + 506, + 5751, + 16078, + 19644, + 100000, + 100000, + 100000, + 100000, + 100000, + 160626, + 398129, + 1000000, + 1000000, + 1000000, + 1245159, + 2031244, + 5000000, + 10000000, + 25000718, + 70837528 + ], + [ + 0, + 5, + 14, + 101, + 101, + 101, + 101, + 101, + 101, + 784, + 5751, + 43745, + 100000, + 100000, + 100000, + 153969, + 1040012, + 1703564, + 2031244, + 25002059, + 436034901 + ], + [ + 0, + 1, + 586, + 586, + 5751, + 16078, + 47403, + 47403, + 94808, + 100000, + 100000, + 100000, + 100000, + 100000, + 153946, + 153946, + 668106, + 1000000, + 1010003, + 1200075, + 1277653 + ], + [ + 0, + 1, + 250, + 250, + 1338, + 1338, + 5751, + 24653, + 68499, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 189774, + 189774, + 669230, + 1000000, + 100036829 + ], + [ + 0, + 1, + 37, + 37, + 602, + 639, + 639, + 2493, + 26957, + 26957, + 69949, + 100000, + 100000, + 100000, + 100000, + 121741, + 154047, + 453991, + 1000000, + 1289885, + 100036830 + ], + [ + 0, + 469, + 469, + 24653, + 42275, + 97390, + 97390, + 97390, + 100000, + 100000, + 100000, + 100000, + 101128, + 121741, + 551588, + 1000000, + 1000000, + 1010003, + 1565104, + 25004700, + 3000000000 + ], + [ + 0, + 14, + 14, + 14, + 141, + 141, + 5407, + 10600, + 10600, + 100000, + 100000, + 100000, + 100000, + 100000, + 121741, + 150385, + 669898, + 1000000, + 1000000, + 1279493, + 25000730 + ], + [ + 0, + 1, + 581, + 1134, + 23092, + 23092, + 24653, + 74570, + 100000, + 100000, + 100000, + 100000, + 100000, + 153891, + 153891, + 1000000, + 1150058, + 1200074, + 1280137, + 2468993, + 9547521 + ], + [ + 0, + 60, + 60, + 60, + 215, + 215, + 14051, + 24653, + 28975, + 100000, + 100000, + 100000, + 100000, + 100000, + 107082, + 107082, + 121741, + 203658, + 1000000, + 1280170, + 1550203 + ], + [ + 0, + 1, + 727, + 727, + 5962, + 24653, + 45316, + 45316, + 94808, + 100000, + 100000, + 100000, + 100000, + 100000, + 121741, + 170341, + 170341, + 826456, + 1000000, + 1200074, + 1280814 + ], + [ + 0, + 1, + 60, + 60, + 82, + 82, + 1675, + 1675, + 2139, + 13489, + 24653, + 100000, + 100000, + 100000, + 100000, + 100000, + 121741, + 180606, + 180606, + 1000000, + 100000000 + ], + [ + 0, + 1, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 1474, + 22473, + 100000, + 100000, + 100000, + 121741, + 148381, + 1000000, + 1000000, + 1200075, + 25024050, + 79999631 + ], + [ + 0, + 1, + 14, + 14, + 14, + 437, + 756, + 756, + 24653, + 100000, + 100000, + 100000, + 100000, + 100000, + 121741, + 153866, + 153866, + 1000000, + 1282272, + 25000000, + 25062469 + ], + [ + 0, + 24, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 11962, + 100000, + 112957, + 100000000 + ], + [ + 0, + 1, + 523, + 1786, + 6725, + 11962, + 70322, + 100000, + 100000, + 100000, + 100000, + 146355, + 146355, + 623804, + 1235518, + 1328695, + 23683307, + 25000444, + 25011468, + 50078226, + 100000000 + ], + [ + 0, + 664, + 2630, + 11962, + 41007, + 70322, + 100000, + 100000, + 100000, + 100732, + 106453, + 831770, + 1000000, + 1150058, + 1150058, + 1282348, + 1567654, + 25000000, + 27002417, + 75361452, + 87313782 + ], + [ + 0, + 5, + 5, + 60, + 60, + 266, + 1310, + 5172, + 18147, + 49364, + 100000, + 100000, + 100000, + 100000, + 175230, + 1000000, + 1150058, + 2214674, + 13035760, + 25096734, + 75366549 + ], + [ + 0, + 60, + 60, + 60, + 348, + 11962, + 30185, + 30185, + 70322, + 75292, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 174134, + 1000000, + 1282388, + 25233630, + 43846531 + ], + [ + 0, + 63, + 102, + 657, + 2879, + 5253, + 24559, + 24559, + 75292, + 81575, + 81575, + 100000, + 100000, + 100000, + 194769, + 536647, + 1000000, + 1282353, + 3599631, + 25000000, + 100000000 + ], + [ + 0, + 1, + 17, + 17, + 984, + 984, + 7062, + 11962, + 30646, + 30646, + 70322, + 100000, + 100000, + 100000, + 100000, + 104971, + 1000000, + 1000000, + 1000000, + 1000000, + 1282357 + ], + [ + 0, + 113, + 198, + 941, + 1631, + 1631, + 1631, + 1631, + 1631, + 40683, + 40683, + 81575, + 81575, + 100000, + 100000, + 100000, + 141780, + 849944, + 1282361, + 4000000, + 4000000 + ], + [ + 0, + 99, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 211, + 6626, + 70322, + 80372, + 80372, + 100000, + 100000, + 100000, + 151832, + 1000000, + 1282362, + 10000000 + ], + [ + 0, + 1, + 5, + 5, + 182, + 182, + 570, + 9000, + 33294, + 33294, + 70322, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 172907, + 941324, + 1000000, + 1434399 + ], + [ + 0, + 1, + 225, + 225, + 11779, + 11779, + 17349, + 68214, + 70322, + 100000, + 100000, + 100000, + 100000, + 100000, + 109742, + 109742, + 151529, + 1000000, + 1000000, + 1000000, + 1282364 + ], + [ + 0, + 5, + 5, + 5, + 330, + 522, + 522, + 17349, + 48703, + 48703, + 100000, + 100000, + 100000, + 100000, + 100000, + 151529, + 152126, + 952480, + 1000000, + 1000000, + 10000000 + ], + [ + 0, + 1, + 833, + 833, + 833, + 17349, + 43394, + 43394, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 115820, + 115820, + 151529, + 151529, + 1000000, + 1005000, + 1282377 + ], + [ + 0, + 5, + 5, + 5, + 482, + 482, + 1139, + 2801, + 17349, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 143342, + 143342, + 151529, + 1000000, + 1282383 + ], + [ + 0, + 1, + 608, + 608, + 3817, + 3817, + 17349, + 100000, + 100000, + 100000, + 100000, + 100000, + 139712, + 139712, + 151529, + 1000000, + 1000000, + 1500187, + 13690772, + 25012852, + 81541369 + ], + [ + 0, + 1, + 17, + 17, + 17, + 912, + 17349, + 28347, + 28347, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 354270, + 1000000, + 1282392, + 26339561, + 26656120 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 26014, + 100000, + 1000000, + 3000000, + 40220532 + ], + [ + 0, + 1, + 11, + 11, + 11, + 243, + 243, + 17349, + 46544, + 46544, + 100000, + 100000, + 100000, + 100000, + 100000, + 151529, + 154206, + 154206, + 396412, + 1000000, + 100000000 + ], + [ + 0, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 266, + 17349, + 48532, + 100000, + 100000, + 100000, + 151529, + 185018, + 1000000, + 1282410, + 40385248 + ], + [ + 0, + 5, + 5, + 5, + 5, + 5, + 5, + 11, + 11, + 523, + 6743, + 17349, + 100000, + 100000, + 100000, + 100000, + 162681, + 162681, + 1000000, + 1500183, + 20872957 + ], + [ + 0, + 1, + 11873, + 57531, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 151529, + 162160, + 162160, + 162160, + 1000000, + 1000000, + 1282422, + 5000000, + 5000000, + 5000000 + ], + [ + 0, + 1, + 5, + 5, + 6, + 6, + 965, + 11873, + 11873, + 27927, + 57531, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 174170, + 385744, + 1000000, + 100000000 + ], + [ + 0, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 634, + 1895, + 100000, + 100000000 + ], + [ + 0, + 11, + 11, + 267, + 1633, + 1633, + 1633, + 1633, + 1633, + 41601, + 57531, + 65485, + 100000, + 100000, + 100000, + 179339, + 1000000, + 1282445, + 4000000, + 4000000, + 43847433 + ], + [ + 0, + 1, + 581, + 581, + 11873, + 29573, + 57531, + 62815, + 100000, + 100000, + 100000, + 100000, + 116834, + 116834, + 1000000, + 1000000, + 1000000, + 1000000, + 1282457, + 10000000, + 25000000 + ], + [ + 0, + 1, + 5, + 5, + 249, + 249, + 11873, + 49299, + 49299, + 57531, + 100000, + 100000, + 100000, + 100000, + 100000, + 154164, + 154164, + 1000000, + 1000000, + 1000000, + 1282458 + ], + [ + 0, + 1, + 5, + 5, + 5, + 771, + 771, + 2986, + 11873, + 57531, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 101662, + 1000000, + 1000000, + 1000000, + 2500000 + ], + [ + 0, + 5, + 811, + 11873, + 28843, + 57531, + 100000, + 100000, + 183737, + 360653, + 1113746, + 1150057, + 1179282, + 1282460, + 1441426, + 1900178, + 2031250, + 2031250, + 13987019, + 25008402, + 100000000 + ], + [ + 0, + 10, + 101, + 101, + 101, + 101, + 101, + 793, + 9280, + 57531, + 100000, + 100000, + 134951, + 1027730, + 1113746, + 1179282, + 1638034, + 1769106, + 2031250, + 25000000, + 333520676 + ], + [ + 0, + 17, + 17, + 17, + 677, + 677, + 11873, + 16888, + 22130, + 45304, + 45304, + 57531, + 100000, + 100000, + 100000, + 100000, + 188393, + 188393, + 1000000, + 1282466, + 17639852 + ], + [ + 0, + 1, + 5, + 5, + 872, + 7931, + 12751, + 94977, + 100000, + 103555, + 132124, + 132124, + 1023634, + 1150057, + 1244818, + 1572498, + 2031250, + 2031250, + 2112467, + 26909270, + 506138366 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 94977, + 100000, + 1282470 + ], + [ + 0, + 1633, + 1633, + 1633, + 1633, + 1633, + 14800, + 26424, + 39744, + 45212, + 45212, + 94977, + 100000, + 100000, + 100000, + 104243, + 104243, + 149461, + 999999, + 1200000, + 100036233 + ], + [ + 0, + 11, + 11, + 11, + 201, + 774, + 774, + 4547, + 4547, + 5433, + 9000, + 100000, + 100000, + 100000, + 100000, + 120347, + 124740, + 360232, + 1000000, + 1282471, + 100000000 + ], + [ + 0, + 1, + 41, + 944, + 944, + 8715, + 29991, + 100000, + 100000, + 100000, + 100000, + 100000, + 124740, + 145349, + 145349, + 1000000, + 1000000, + 1000000, + 1000002, + 1282472, + 100000000 + ], + [ + 0, + 5, + 5, + 183, + 183, + 378, + 8715, + 43291, + 43291, + 100000, + 100000, + 100000, + 100000, + 124740, + 130613, + 130613, + 174119, + 174119, + 1000000, + 1282474, + 40297375 + ], + [ + 0, + 304, + 304, + 363, + 363, + 522, + 522, + 8715, + 14259, + 100000, + 100000, + 100000, + 100000, + 100000, + 124740, + 172849, + 1000000, + 1241452, + 1246162, + 1632544, + 40771909 + ], + [ + 0, + 1, + 11, + 11, + 11, + 992, + 992, + 8715, + 28625, + 28625, + 100000, + 100000, + 100000, + 100000, + 100000, + 124740, + 143764, + 1000000, + 1000000, + 1429510, + 40005937 + ], + [ + 0, + 1, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 354, + 354, + 29470, + 100000, + 100000, + 100000, + 100000, + 100000, + 189656, + 189656, + 1000000, + 9999633 + ], + [ + 0, + 13, + 13, + 17, + 17, + 8715, + 21685, + 100000, + 100000, + 100000, + 100000, + 124740, + 143056, + 143056, + 159535, + 159535, + 1000000, + 4000000, + 4000000, + 10000000, + 19080152 + ], + [ + 0, + 1, + 1, + 764, + 764, + 12508, + 38120, + 38120, + 87534, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 124740, + 170403, + 170403, + 1000000, + 1282494, + 100036333 + ], + [ + 0, + 17, + 17, + 17, + 847, + 847, + 9250, + 12508, + 87534, + 100000, + 100000, + 100000, + 100000, + 100000, + 117344, + 117344, + 143056, + 1000000, + 1000001, + 1282503, + 100036334 + ], + [ + 0, + 46, + 12508, + 34375, + 87534, + 100000, + 100000, + 100000, + 178710, + 999634, + 999634, + 1000000, + 1000001, + 1000001, + 1000001, + 1000001, + 1000001, + 1000001, + 1282504, + 4000000, + 52980009 + ], + [ + 0, + 10, + 10, + 10, + 10, + 10, + 10, + 10, + 10, + 17, + 508, + 508, + 14287, + 87534, + 100000, + 100000, + 100000, + 100000, + 115843, + 1000000, + 1282515 + ], + [ + 0, + 1, + 1, + 660, + 660, + 12508, + 45355, + 45355, + 87534, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 151758, + 151758, + 1000000, + 1010003, + 25000000, + 100000000 + ], + [ + 0, + 1, + 11, + 11, + 11, + 660, + 660, + 12508, + 25657, + 25657, + 87534, + 100000, + 100000, + 100000, + 100000, + 100000, + 176161, + 176161, + 176161, + 1000000, + 1282539 + ], + [ + 0, + 1, + 497, + 497, + 4713, + 4713, + 12508, + 87534, + 87534, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 153373, + 153373, + 1000000, + 1282540, + 79999636 + ], + [ + 0, + 1, + 5, + 5, + 5, + 377, + 377, + 12508, + 38366, + 38366, + 87534, + 100000, + 100000, + 100000, + 100000, + 100000, + 104722, + 104722, + 1000000, + 1282552, + 1420869 + ], + [ + 0, + 5, + 5, + 101, + 101, + 101, + 101, + 101, + 101, + 101, + 895, + 895, + 15582, + 87534, + 100000, + 100000, + 100000, + 140448, + 876688, + 1282542, + 25090837 + ], + [ + 0, + 11, + 11, + 72, + 72, + 12508, + 44092, + 87534, + 100000, + 100000, + 100000, + 100000, + 159952, + 159952, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 25000000, + 38296414 + ], + [ + 0, + 1, + 1, + 397, + 397, + 2294, + 12508, + 25793, + 25793, + 100000, + 100000, + 100000, + 100000, + 100000, + 137258, + 137258, + 1000000, + 1000000, + 1000000, + 1000000, + 100035838 + ], + [ + 0, + 83, + 83, + 18141, + 18141, + 20311, + 20311, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 130370, + 130370, + 130370, + 135088, + 1000000, + 1000000, + 1282583 + ], + [ + 0, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 639, + 100000, + 135088, + 1282598 + ], + [ + 0, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 1638, + 43948, + 135088, + 2500000 + ] + ], + "BaseFee": [ + 470, + 470, + 470, + 470, + 470, + 470, + 470, + 470, + 470, + 470, + 470, + 470, + 470, + 470, + 470, + 470, + 469, + 469, + 468, + 468, + 467, + 467, + 467, + 466, + 466, + 466, + 465, + 464, + 464, + 464, + 464, + 464, + 464, + 464, + 463, + 463, + 462, + 462, + 462, + 462, + 461, + 461, + 461, + 461, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 461, + 461, + 461, + 461, + 461, + 461, + 461, + 460, + 460, + 460, + 460, + 461, + 461, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 462, + 461, + 461, + 461, + 461, + 461, + 461, + 461, + 461, + 461, + 461, + 461, + 461, + 461, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 459, + 459, + 458, + 458, + 458, + 458, + 458, + 458, + 458, + 458, + 457, + 456, + 455, + 455, + 455, + 455, + 455, + 455, + 455, + 456, + 456, + 456, + 457, + 456, + 457, + 458, + 458, + 458, + 458, + 458, + 457, + 457, + 457, + 457, + 457, + 457, + 457, + 457, + 457, + 457, + 457, + 457, + 458, + 458, + 459, + 460, + 460, + 460, + 459, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 461, + 461, + 461, + 461, + 461, + 461, + 460, + 460, + 460, + 459, + 459, + 459, + 458, + 458, + 458, + 458, + 458, + 457, + 457, + 456, + 456, + 456, + 456, + 456, + 456, + 455, + 455, + 455, + 455, + 454, + 454, + 454, + 453, + 452, + 452, + 451, + 450, + 449, + 449, + 449, + 448, + 448, + 448, + 448, + 448, + 448, + 448, + 447, + 447, + 446, + 445, + 445, + 444, + 443, + 443, + 442, + 441, + 441, + 440, + 439, + 438, + 438, + 438, + 437, + 437, + 437, + 436, + 435, + 435, + 434, + 433, + 432, + 431, + 430, + 430, + 429, + 428, + 427, + 426, + 425, + 424, + 423, + 423, + 422, + 422, + 422, + 422, + 421, + 420, + 420, + 420, + 419, + 419, + 418, + 418, + 418, + 418, + 418, + 418, + 417, + 417, + 416, + 416, + 416, + 416, + 416, + 416, + 416, + 416, + 415, + 415, + 415, + 415, + 415, + 415, + 415, + 415, + 414, + 414, + 413, + 413, + 413, + 413, + 413, + 413, + 413, + 413, + 414, + 413, + 412, + 412, + 411, + 410, + 410, + 410, + 409, + 409, + 409, + 409, + 409, + 408, + 408, + 407, + 407, + 407, + 406, + 406, + 406, + 405, + 405, + 405, + 405, + 405, + 405, + 405, + 404, + 404, + 404, + 403, + 402, + 402, + 401, + 401, + 400, + 400, + 400, + 400, + 400, + 400, + 400, + 400, + 399, + 399, + 398, + 398, + 397, + 397, + 397, + 397, + 397, + 397, + 397, + 397, + 397, + 397, + 397, + 397, + 397, + 397, + 396, + 395, + 394, + 394, + 394, + 394, + 393, + 393, + 394, + 394, + 393, + 392, + 392, + 391, + 390, + 390, + 389, + 388, + 388, + 388, + 388, + 388, + 387, + 386, + 385, + 385, + 385, + 384, + 383, + 382, + 381, + 380, + 379, + 379, + 378, + 378, + 377, + 376, + 375, + 374, + 374, + 374, + 374, + 373, + 373, + 373, + 373, + 372, + 372, + 372, + 371, + 371, + 371, + 371, + 370, + 370, + 370, + 370, + 369, + 369, + 369, + 368, + 368, + 368, + 367, + 367, + 368, + 368, + 368, + 367, + 367, + 367, + 368, + 368, + 367, + 367, + 367, + 367, + 367, + 367, + 366, + 365, + 365, + 365, + 365, + 365, + 365, + 365, + 365, + 365, + 365, + 364, + 364, + 363, + 363, + 363, + 363, + 363, + 363, + 363, + 362, + 362, + 362, + 362, + 362, + 362, + 362, + 362, + 362, + 362, + 362, + 362, + 362, + 362, + 361, + 361, + 360, + 361, + 361, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 359, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 360, + 361, + 361, + 362, + 363, + 363, + 363, + 364, + 364, + 364, + 364, + 364, + 363, + 363, + 363, + 363, + 363, + 363, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 364, + 363, + 363, + 364, + 364, + 364, + 364, + 365, + 365, + 365, + 365, + 365, + 365, + 365, + 366, + 366, + 366, + 366, + 366, + 366, + 366, + 366, + 366, + 366, + 366, + 365, + 366, + 366, + 366, + 366, + 366, + 365, + 365, + 366, + 366, + 366, + 366, + 367, + 367, + 367, + 368, + 368, + 368, + 368, + 368, + 368, + 368, + 368, + 368, + 368, + 368, + 368, + 368, + 368, + 368, + 368, + 369, + 369, + 369, + 369, + 369, + 369, + 369, + 369, + 369, + 369, + 370, + 370, + 370, + 370, + 371, + 371, + 371, + 371, + 371, + 372, + 373, + 374, + 374, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 376, + 376, + 376, + 376, + 376, + 376, + 377, + 376, + 376, + 376, + 376, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 376, + 376, + 376, + 376, + 376, + 375, + 375, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 373, + 372, + 372, + 373, + 372, + 372, + 372, + 372, + 372, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 370, + 370, + 371, + 371, + 371, + 371, + 371, + 370, + 370, + 370, + 370, + 370, + 370, + 370, + 370, + 370, + 370, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 372, + 373, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 375, + 374, + 374, + 375, + 375, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 375, + 375, + 374, + 374, + 374, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 372, + 372, + 372, + 372, + 372, + 373, + 373, + 373, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 373, + 373, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 374, + 373, + 373, + 373, + 373, + 372, + 373, + 372, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 371, + 372, + 372, + 373, + 373, + 373, + 373, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 373, + 373, + 373, + 373, + 373, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 373, + 372, + 372, + 372, + 371, + 370, + 371, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 372, + 371, + 370, + 370, + 370, + 370, + 370, + 370, + 369, + 369, + 369, + 368, + 369, + 369, + 369, + 369, + 369, + 369, + 369, + 369, + 369, + 369, + 368, + 368, + 367, + 367, + 367, + 367, + 368, + 367, + 367, + 367, + 366, + 366, + 367, + 367, + 367, + 366, + 366, + 366, + 366, + 366, + 366, + 367, + 367, + 367, + 367, + 367, + 367, + 367, + 367, + 367, + 366, + 366, + 366, + 366, + 365, + 364, + 363, + 362, + 362, + 362, + 362, + 361, + 362, + 363 + ], + "GasUsedRatio": [ + 0.2862983, + 0.287012975, + 0.272623075, + 0.2693498, + 0.24286555, + 0.2687696, + 0.324652, + 0.31657535, + 0.385679675, + 0.28791435, + 0.3150403, + 0.2578474, + 0.40497935, + 0.418586975, + 0.31807365, + 0.2235607, + 0.2561922, + 0.23196695, + 0.4153927, + 0.21398365, + 0.26144895, + 0.2387705, + 0.2191068, + 0.332443925, + 0.2330448, + 0.221257675, + 0.224740475, + 0.3000059, + 0.3410118, + 0.2606337, + 0.2453448, + 0.2543667, + 0.299533075, + 0.224984025, + 0.232947125, + 0.221570675, + 0.24968245, + 0.250323975, + 0.355812875, + 0.22746865, + 0.2583868, + 0.275058875, + 0.271794025, + 0.220121775, + 0.267228125, + 0.2806824, + 0.39816485, + 0.232080275, + 0.355449475, + 0.2917135, + 0.25405935, + 0.280060825, + 0.305918925, + 0.260064525, + 0.283266, + 0.5350959, + 0.350753425, + 0.272040575, + 0.394685975, + 0.32338605, + 0.391666825, + 0.30583775, + 0.1757001, + 0.260350925, + 0.31790715, + 0.282261375, + 0.6357221, + 0.42630705, + 0.5050822, + 0.26768285, + 0.29323995, + 0.31870885, + 0.323229275, + 0.24591755, + 0.2468247, + 0.313080025, + 0.323135975, + 0.256054125, + 0.3347371, + 0.230548425, + 0.328751075, + 0.2618199, + 0.4696404, + 0.2909793, + 0.229513025, + 0.306216725, + 0.300616925, + 0.25333975, + 0.3804987, + 0.1779592, + 0.362046825, + 0.39902525, + 0.29638895, + 0.354008625, + 0.492225025, + 0.28592615, + 0.2500577, + 0.2663431, + 0.3850058, + 0.250045875, + 0.403865125, + 0.321391675, + 0.222073375, + 0.2998213, + 0.29767355, + 0.273567175, + 0.337935975, + 0.36460515, + 0.455297175, + 0.330282875, + 0.2888398, + 0.2809047, + 0.2519449, + 0.237905225, + 0.269757125, + 0.20484315, + 0.238906175, + 0.190005, + 0.370419575, + 0.238965075, + 0.259327475, + 0.228193725, + 0.253494375, + 0.231134775, + 0.2316292, + 0.2183888, + 0.218993475, + 0.193701925, + 0.4335371, + 0.4013188, + 0.3230662, + 0.283110225, + 0.371787025, + 0.363938925, + 0.527522825, + 0.4432965, + 0.259816, + 0.771308325, + 0.15571185, + 0.681913525, + 0.5032249, + 0.232847375, + 0.28839725, + 0.246489875, + 0.24933055, + 0.21902585, + 0.228216875, + 0.2791121, + 0.39614255, + 0.2539657, + 0.260944725, + 0.2499676, + 0.235089025, + 0.23175465, + 0.313629025, + 0.49683315, + 0.2466513, + 0.5079292, + 0.341978325, + 0.72795875, + 0.562939775, + 0.409358225, + 0.415741875, + 0.12329255, + 0.630941675, + 0.239826225, + 0.24849905, + 0.257627525, + 0.374583425, + 0.2999304, + 0.268598675, + 0.395010575, + 0.3369058, + 0.254351, + 0.98013875, + 0.367512125, + 0.3813916, + 0.3412038, + 0.363179425, + 0.2543074, + 0.141076325, + 0.360693125, + 0.325836925, + 0.207885775, + 0.269478325, + 0.261131975, + 0.225757675, + 0.233560225, + 0.430829825, + 0.29776305, + 0.276525475, + 0.21554045, + 0.277305975, + 0.216054375, + 0.25948575, + 0.248045375, + 0.229568825, + 0.25223705, + 0.427901475, + 0.197413875, + 0.3229329, + 0.255840125, + 0.25883005, + 0.211774225, + 0.324793375, + 0.2496458, + 0.2105769, + 0.213897725, + 0.324275725, + 0.15885585, + 0.188321225, + 0.176199875, + 0.261194375, + 0.325950525, + 0.163337475, + 0.294297275, + 0.298553475, + 0.265254725, + 0.432570675, + 0.24932875, + 0.3076615, + 0.20982845, + 0.2624334, + 0.1853459, + 0.212903425, + 0.252834175, + 0.177045625, + 0.16759635, + 0.33083615, + 0.18810895, + 0.176094375, + 0.218807975, + 0.19657695, + 0.20902645, + 0.165374975, + 0.2177749, + 0.223500025, + 0.157532275, + 0.3129498, + 0.239319225, + 0.1990409, + 0.1035929, + 0.222354725, + 0.15653505, + 0.208842075, + 0.200884125, + 0.2043016, + 0.18667115, + 0.31243195, + 0.162901175, + 0.182208, + 0.17574295, + 0.19027055, + 0.196353625, + 0.14667795, + 0.16417965, + 0.210329125, + 0.1339409, + 0.271768975, + 0.262017875, + 0.212453925, + 0.1795173, + 0.182685375, + 0.221218075, + 0.269169775, + 0.17456915, + 0.289850025, + 0.19866, + 0.298203625, + 0.240399625, + 0.22608125, + 0.234693275, + 0.316597025, + 0.1341668, + 0.224393, + 0.169009925, + 0.24811865, + 0.243541675, + 0.317999475, + 0.2779052, + 0.262883325, + 0.26973615, + 0.204159, + 0.1780261, + 0.3125882, + 0.222085575, + 0.27510455, + 0.21564645, + 0.29908285, + 0.255212075, + 0.2398711, + 0.156671, + 0.27188035, + 0.18595135, + 0.2073773, + 0.233840275, + 0.217275375, + 0.2388317, + 0.344660225, + 0.267174, + 0.23795895, + 0.98927975, + 0.189124625, + 0.165112575, + 0.24676875, + 0.1538492, + 0.191437825, + 0.25574265, + 0.2958396, + 0.1896312, + 0.217569375, + 0.231850825, + 0.2432805, + 0.2637994, + 0.180607, + 0.231968375, + 0.1807621, + 0.203067425, + 0.337956275, + 0.172518475, + 0.216898375, + 0.256912025, + 0.185324325, + 0.24321515, + 0.281921925, + 0.194668025, + 0.198471025, + 0.2143017, + 0.27062275, + 0.173056125, + 0.27236635, + 0.19339125, + 0.182080075, + 0.18195045, + 0.194278425, + 0.1529333, + 0.20504045, + 0.187177925, + 0.3074806, + 0.18860785, + 0.21466705, + 0.196474675, + 0.2466947, + 0.19316975, + 0.21530485, + 0.159800475, + 0.278241525, + 0.17622525, + 0.3105428, + 0.1548831, + 0.24513265, + 0.268917, + 0.2690474, + 0.206671225, + 0.207493475, + 0.272999675, + 0.2551643, + 0.222898575, + 0.346253325, + 0.20348045, + 0.203567175, + 0.239190275, + 0.1866213, + 0.117993275, + 0.1755022, + 0.16263985, + 0.1962233, + 0.2206228, + 0.28120375, + 0.1476625, + 0.1906069, + 0.992708525, + 0.2348264, + 0.163590175, + 0.157708825, + 0.213261475, + 0.14219685, + 0.17824175, + 0.235792075, + 0.1584924, + 0.146852125, + 0.180935375, + 0.2479509, + 0.18883655, + 0.21035445, + 0.1571431, + 0.168969525, + 0.1336045, + 0.31325475, + 0.2990724, + 0.138786225, + 0.172249125, + 0.14889815, + 0.171481825, + 0.149443225, + 0.170486275, + 0.358915325, + 0.143555975, + 0.257690725, + 0.15662855, + 0.1456147, + 0.1467909, + 0.154665625, + 0.1686389, + 0.17961895, + 0.204830125, + 0.132041375, + 0.385093375, + 0.2611529, + 0.2000356, + 0.133571625, + 0.209544425, + 0.226906775, + 0.11216015, + 0.16640045, + 0.3485332, + 0.171799525, + 0.154469875, + 0.300017375, + 0.2015851, + 0.203745575, + 0.16079975, + 0.296981325, + 0.227486125, + 0.157985725, + 0.1665598, + 0.18007655, + 0.14861575, + 0.274083175, + 0.9823783, + 0.191286225, + 0.18066465, + 0.15346095, + 0.23231505, + 0.16708905, + 0.980488525, + 0.244014275, + 0.1463967, + 0.265741075, + 0.1653397, + 0.169046375, + 0.1799754, + 0.283586625, + 0.15472055, + 0.157191075, + 0.21124435, + 0.1841676, + 0.1771918, + 0.33216785, + 0.17710015, + 0.251765625, + 0.205178975, + 0.301182425, + 0.3178166, + 0.109519425, + 0.34242845, + 0.1438743, + 0.355325525, + 0.356117175, + 0.1960839, + 0.35853795, + 0.181748425, + 0.228414625, + 0.14990835, + 0.158310575, + 0.19363925, + 0.230479175, + 0.1918016, + 0.304794825, + 0.19021665, + 0.170440525, + 0.311571725, + 0.18845685, + 0.2604967, + 0.25401475, + 0.241591975, + 0.1652203, + 0.1417293, + 0.3317285, + 0.143015525, + 0.990872525, + 0.171482025, + 0.14128805, + 0.16639565, + 0.270850975, + 0.1893447, + 0.166467075, + 0.266308425, + 0.2523712, + 0.193818675, + 0.194160625, + 0.2491357, + 0.371484925, + 0.349402525, + 0.2549109, + 0.2191446, + 0.285992025, + 0.176845, + 0.318856925, + 0.194764475, + 0.25144065, + 0.188971225, + 0.195720175, + 0.270901925, + 0.31539575, + 0.26534235, + 0.18592305, + 0.178902075, + 0.345951675, + 0.25858815, + 0.23562565, + 0.1791408, + 0.2272375, + 0.218095025, + 0.2285526, + 0.204999325, + 0.142226375, + 0.238088325, + 0.280250075, + 0.182456575, + 0.347682925, + 0.252593725, + 0.318173825, + 0.258386625, + 0.33001525, + 0.268450775, + 0.2474759, + 0.294040675, + 0.39967655, + 0.3565093, + 0.3219726, + 0.332869475, + 0.33279055, + 0.299135075, + 0.204623075, + 0.335688, + 0.974618725, + 0.241742225, + 0.33136655, + 0.199093025, + 0.278159625, + 0.2941445, + 0.251475175, + 0.231326075, + 0.280663425, + 0.50594275, + 0.4577861, + 0.5753089, + 0.54502445, + 0.28818725, + 0.250278475, + 0.9358332, + 0.227781475, + 0.2345911, + 0.259046025, + 0.39161085, + 0.132606075, + 0.181281975, + 0.38208535, + 0.26404715, + 0.298568825, + 0.207771425, + 0.9369411, + 0.184017375, + 0.2572873, + 0.354613275, + 0.398708525, + 0.395705975, + 0.37202325, + 0.27328365, + 0.191284825, + 0.293277325, + 0.193144825, + 0.257169325, + 0.2083691, + 0.187732575, + 0.195553375, + 0.333224725, + 0.341549175, + 0.12665095, + 0.4340678, + 0.90518175, + 0.256677075, + 0.302361725, + 0.24149505, + 0.9923237, + 0.190653175, + 0.1827318, + 0.288006025, + 0.165668375, + 0.1936008, + 0.16831885, + 0.858374, + 0.2802916, + 0.213877925, + 0.35887435, + 0.222799975, + 0.2587179, + 0.357087325, + 0.2486351, + 0.164489625, + 0.207782725, + 0.305578475, + 0.1447931, + 0.966945375, + 0.179002225, + 0.21700755, + 0.274137925, + 0.3309701, + 0.115424275, + 0.391532625, + 0.989889475, + 0.246340425, + 0.17087115, + 0.2216446, + 0.962126425, + 0.3985062, + 0.417306375, + 0.543313825, + 0.16615915, + 0.212649825, + 0.3390311, + 0.302441025, + 0.2775918, + 0.3347131, + 0.345928, + 0.213496525, + 0.17535585, + 0.259354, + 0.16442065, + 0.2019807, + 0.27473645, + 0.27153595, + 0.1683767, + 0.98213795, + 0.17134105, + 0.2194339, + 0.378381775, + 0.2982356, + 0.22394025, + 0.266625425, + 0.1873314, + 0.378178525, + 0.326103475, + 0.6912012, + 0.4195033, + 0.2399288, + 0.3793299, + 0.900084425, + 0.277779175, + 0.23449255, + 0.325961725, + 0.39296245, + 0.6508245, + 0.724948075, + 0.63717645, + 0.39555725, + 0.91206875, + 0.4367025, + 0.3079178, + 0.45008795, + 0.2789183, + 0.329077425, + 0.234020625, + 0.976345725, + 0.188043525, + 0.173731775, + 0.4131023, + 0.342695175, + 0.2072793, + 0.967198, + 0.15029805, + 0.233128525, + 0.271923275, + 0.4245943, + 0.157027375, + 0.232020175, + 0.330014925, + 0.319507, + 0.2499742, + 0.267445175, + 0.2842245, + 0.196995325, + 0.187547375, + 0.203539475, + 0.37565475, + 0.281256925, + 0.251592375, + 0.2662747, + 0.88349345, + 0.186281725, + 0.210780025, + 0.182759925, + 0.19904975, + 0.166002925, + 0.240106925, + 0.159779225, + 0.338047675, + 0.3110372, + 0.23688465, + 0.2431124, + 0.16873045, + 0.216626475, + 0.225264175, + 0.200588675, + 0.20231545, + 0.139186075, + 0.1547897, + 0.2797593, + 0.91817895, + 0.111568425, + 0.2108545, + 0.199795175, + 0.17555835, + 0.1926803, + 0.16302995, + 0.1868464, + 0.16981405, + 0.27671895, + 0.18812505, + 0.21742575, + 0.3100442, + 0.2908959, + 0.17007025, + 0.136427675, + 0.193224125, + 0.9034189, + 0.181207875, + 0.267340025, + 0.180542325, + 0.197377525, + 0.14082785, + 0.28466235, + 0.2502002, + 0.46601995, + 0.18998875, + 0.171164, + 0.1897879, + 0.2478792, + 0.184709475, + 0.199417825, + 0.945110925, + 0.181509325, + 0.269998225, + 0.240615725, + 0.259273, + 0.278934675, + 0.209628775, + 0.327948925, + 0.2451899, + 0.23946815, + 0.200229, + 0.2036939, + 0.24473515, + 0.192851, + 0.24670475, + 0.2022334, + 0.223724625, + 0.307853325, + 0.994368475, + 0.928062025, + 0.107110025, + 0.35787965, + 0.368998025, + 0.317856125, + 0.31151925, + 0.286533275, + 0.277452725, + 0.34056925, + 0.230245775, + 0.255508825, + 0.16886275, + 0.286972, + 0.905706475, + 0.24120255, + 0.2719325, + 0.33637485, + 0.3098508, + 0.2629313, + 0.172753575, + 0.270830425, + 0.243507875, + 0.2739999, + 0.59590345, + 0.4041393, + 0.36773385, + 0.277394425, + 0.3503456, + 0.38216975, + 0.288537875, + 0.23345635, + 0.2566309, + 0.273271075, + 0.243538225, + 0.2549639, + 0.333233, + 0.96334135, + 0.2524697, + 0.302228775, + 0.253629325, + 0.20449495, + 0.348721725, + 0.2181996, + 0.1984741, + 0.314806475, + 0.256824925, + 0.388629025, + 0.32398615, + 0.3366039, + 0.162377175, + 0.305622425, + 0.944004525, + 0.22932635, + 0.156137725, + 0.207514925, + 0.24215145, + 0.211698375, + 0.203763525, + 0.36204245, + 0.263191825, + 0.24296845, + 0.200257325, + 0.24176565, + 0.364411275, + 0.265353675, + 0.940142875, + 0.200922575, + 0.1654033, + 0.31353725, + 0.274409575, + 0.147982875, + 0.46540245, + 0.2057762, + 0.181133825, + 0.23013705, + 0.190937875, + 0.246846775, + 0.163478925, + 0.439936625, + 0.193563575, + 0.336821925, + 0.2802121, + 0.954569675, + 0.16604085, + 0.3631646, + 0.97617375, + 0.188461475, + 0.219501625, + 0.3421295, + 0.29479405, + 0.279080925, + 0.2275349, + 0.4380424, + 0.197678275, + 0.270696675, + 0.11017535, + 0.2643126, + 0.849174575, + 0.274609575, + 0.3606804, + 0.1891163, + 0.19964215, + 0.2226886, + 0.220163825, + 0.193295825, + 0.171381175, + 0.162853025, + 0.362352525, + 0.300144175, + 0.227386075, + 0.143623275, + 0.95193945, + 0.16466115, + 0.153091425, + 0.198456775, + 0.176297075, + 0.303724375, + 0.248467175, + 0.311018175, + 0.18300025, + 0.2367521, + 0.313825975, + 0.2417551, + 0.22047315, + 0.23430665, + 0.2122947, + 0.176951725, + 0.200792475, + 0.283253325, + 0.4001002, + 0.9756232, + 0.2864404, + 0.954811875, + 0.22281315, + 0.2955886, + 0.46572835, + 0.10117615, + 0.461311925, + 0.36692265, + 0.20933685, + 0.233860825, + 0.30011045, + 0.29207555, + 0.21044485, + 0.24228995, + 0.40217345, + 0.893225525, + 0.20298585, + 0.30248105, + 0.251452725, + 0.273190025, + 0.0013636, + 0.2904384, + 0.2704829, + 0.3691523, + 0.241018475, + 0.266808725, + 0.1705775, + 0.3358567, + 0.864721675, + 0.32347605, + 0.206145275, + 0.1883301, + 0.20849325, + 0.3747048, + 0.180930025, + 0.239697675, + 0.22113195, + 0.27771415, + 0.1959635, + 0.2315538, + 0.218294675, + 0.195625125, + 0.190157075, + 0.2015213, + 0.1993719, + 0.215866625, + 0.2363405, + 0.44517935, + 0.1637311, + 0.23537295, + 0.194496575, + 0.1630755, + 0.10945005, + 0.964208775, + 0.988541775, + 0.213438275, + 0.1851802, + 0.290660075, + 0.1744778, + 0.172089325, + 0.16875495, + 0.180584075, + 0.200724675, + 0.2188263, + 0.2494456, + 0.185393775, + 0.2460023, + 0.344571675, + 0.144310375, + 0.13694405, + 0.195136425, + 0.188860975, + 0.176460075, + 0.1675932, + 0.167884925, + 0.154932975, + 0.164885775, + 0.341434975, + 0.15351215, + 0.92118575, + 0.18315255, + 0.23860355, + 0.263642475, + 0.18974245, + 0.222574175, + 0.1856805, + 0.2284558, + 0.306364725, + 0.16374665, + 0.152124575, + 0.186596975, + 0.137297875, + 0.1749841, + 0.177761225, + 0.182181025, + 0.957894875, + 0.155111125, + 0.243944, + 0.268502875, + 0.105961625, + 0.174395175, + 0.983549525, + 0.251982625, + 0.183675375, + 0.1577936, + 0.17757555, + 0.30321525, + 0.384111725, + 0.162976425, + 0.4259357, + 0.87562035, + 0.2221867, + 0.19592995, + 0.162484925, + 0.19099085, + 0.176427925, + 0.162369525, + 0.26667525, + 0.201106175, + 0.138390775, + 0.171772575, + 0.25144885, + 0.266319025, + 0.149171525, + 0.1442761, + 0.137159475, + 0.149143375, + 0.2702105, + 0.211541225, + 0.171925425, + 0.113965975, + 0.984981925, + 0.91777335 + ] +}` + +const infuraFeesJSON = `{ + "low": { + "suggestedMaxPriorityFeePerGas": "0.0001", + "suggestedMaxFeePerGas": "0.000100724", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 8000 + }, + "medium": { + "suggestedMaxPriorityFeePerGas": "0.0001", + "suggestedMaxFeePerGas": "0.000101086", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 6000 + }, + "high": { + "suggestedMaxPriorityFeePerGas": "0.0001", + "suggestedMaxFeePerGas": "0.00010362", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 4000 + }, + "estimatedBaseFee": "0.000000362", + "networkCongestion": 0.02, + "latestPriorityFeeRange": [ + "0.000000083", + "0.000135088" + ], + "historicalPriorityFeeRange": [ + "0.000000001", + "0.075361452" + ], + "historicalBaseFeeRange": [ + "0.000000361", + "0.000000375" + ], + "priorityFeeTrend": "up", + "baseFeeTrend": "up", + "version": "0.0.1" +}` diff --git a/examples/gas-comparison/data/optimismsepolia/data.go b/examples/gas-comparison/data/optimismsepolia/data.go new file mode 100644 index 0000000..afda052 --- /dev/null +++ b/examples/gas-comparison/data/optimismsepolia/data.go @@ -0,0 +1,25773 @@ +package optimismsepolia + +import ( + "encoding/json" + "gas-comparison/data" + "math/big" + + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" +) + +// GetGasData returns the gas data fetched from Optimism Sepolia (Chain ID: 11155420) +func GetGasData() (*data.GasData, error) { + // Parse the embedded JSON data + var block ethclient.BlockWithFullTxs + err := json.Unmarshal([]byte(latestBlockJSON), &block) + if err != nil { + return nil, err + } + + var gasPrice *big.Int + gasPrice, err = hexutil.DecodeBig(gasPriceJSON) + if err != nil { + return nil, err + } + + var maxPriorityFeePerGas *big.Int + maxPriorityFeePerGas, err = hexutil.DecodeBig(maxPriorityFeePerGasJSON) + if err != nil { + return nil, err + } + + var feeHistory ethereum.FeeHistory + err = json.Unmarshal([]byte(feeHistoryJSON), &feeHistory) + if err != nil { + return nil, err + } + + var infuraFees infura.GasResponse + err = json.Unmarshal([]byte(infuraFeesJSON), &infuraFees) + if err != nil { + return nil, err + } + + return &data.GasData{ + LatestBlock: &block, + GasPrice: gasPrice, + MaxPriorityFeePerGas: maxPriorityFeePerGas, + FeeHistory: &feeHistory, + InfuraSuggestedFees: &infuraFees, + }, nil +} + +// Embedded JSON data +const latestBlockJSON = `{ + "number": "0x20dbb05", + "hash": "0x51bccd32ed709e388e3740d6de8a0e86955db9f28a4070ffa42a5e02163a3592", + "parentHash": "0x8cb50aceb0bbcd07ce3b1525a00c30a1bce95bf037618778a512ee65b6c73469", + "nonce": "0x0000000000000000", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000008000800000000000000000000000000002000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000", + "transactionsRoot": "0x2e046f4e2a3940cd842d0227fb5310e2475b7bbf532062c8add2d37a7c159cc7", + "stateRoot": "0xe0b01a1fa3ecf878c9e4a6d557028a5aa0bd77bee8d286bb9954d7074f782044", + "receiptsRoot": "0x2c1cf221f24c91becbb79f2176dec226c2715bb171a911ef7e9ca193f8ceae22", + "miner": "0x4200000000000000000000000000000000000011", + "difficulty": "0x0", + "totalDifficulty": null, + "extraData": "0x00000000fa00000002", + "size": "0x3f7", + "gasLimit": "0x2625a00", + "gasUsed": "0x120c1", + "timestamp": "0x68f251b6", + "baseFeePerGas": "0xfa", + "withdrawalsRoot": "0xeaab5f0f8c7885786c5e523201bd444aeae0ab23b09652b7bfe9680fcc90b86d", + "blobGasUsed": "0x0", + "excessBlobGas": "0x0", + "transactions": [ + { + "blockHash": "0x51bccd32ed709e388e3740d6de8a0e86955db9f28a4070ffa42a5e02163a3592", + "blockNumber": "0x20dbb05", + "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001", + "gas": "0xf4240", + "gasPrice": "0x0", + "hash": "0x6192b866490a35f6bab64522e26e1ac66287a9daf00a8bdf5046ec3fd23ac3a5", + "input": "0x098999be00001db0000d273000000000000000020000000068f2516800000000008fea8300000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000001b7d2d3a9cc9180acc9baaaf8ea315acfa6f6ca108405dfc4d7631ca1cc77af6b0000000000000000000000008f23bb38f531600e5d8fddaaec41f13fab46e98c000000000000000000000000", + "nonce": "0x20dbb07", + "to": "0x4200000000000000000000000000000000000015", + "transactionIndex": "0x0", + "value": "0x0", + "v": "0x0", + "r": "0x0", + "s": "0x0", + "type": "0x7e" + }, + { + "blockHash": "0x51bccd32ed709e388e3740d6de8a0e86955db9f28a4070ffa42a5e02163a3592", + "blockNumber": "0x20dbb05", + "from": "0x220be055a8f7c982c7d21575a3f33cf3370be953", + "gas": "0x6dff", + "gasPrice": "0xf433a", + "hash": "0xd27a4208a4983ca6821c2a53c0917431900ed8c488fae5e3faa82112a7275591", + "input": "0x5a15e3fc", + "nonce": "0xaa", + "to": "0xbb2f6a44c3a555ce6c651f800170ef952e418e05", + "transactionIndex": "0x1", + "value": "0x0", + "v": "0x0", + "r": "0x8cc683a3e0758c56f798e45df8147d8d9dc8425ed79b536b83c5bd233205b7e4", + "s": "0x4778876e9b96587488e54d31f08b580b4a552fdaa75b5077129933398c1f9bb1", + "type": "0x2", + "chainId": "0xaa37dc", + "maxFeePerGas": "0xf4434", + "maxPriorityFeePerGas": "0xf4240", + "accessList": [] + } + ], + "uncles": [] +}` + +const gasPriceJSON = `0xf433a` + +const maxPriorityFeePerGasJSON = `0xf4240` + +const feeHistoryJSON = `{ + "OldestBlock": 34453254, + "Reward": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100025, + 1100025, + 1100025, + 1100025 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1, + 1, + 1, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1500000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1200050 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1500000, + 1500000, + 1500000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 200000, + 200000, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 970000, + 970000, + 970000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 200000, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750, + 199999999750, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1008614, + 1008614 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 970000, + 970000, + 970000, + 970000, + 970000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100025, + 1100025, + 1100025, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100025 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1500125, + 1500125 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1500000, + 1500000, + 1500000, + 1500000, + 1500000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 970000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 199999999750, + 199999999750, + 199999999750, + 199999999750, + 199999999750, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100025 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 199999999750, + 199999999750, + 199999999750, + 199999999750, + 199999999750, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 199999999750, + 199999999750, + 199999999750, + 199999999750, + 199999999750, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100025 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 20010219975, + 20010219975, + 20010219975, + 20010219975, + 20010219975 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100025 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025, + 1100025 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 899975, + 899975, + 899975, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 899975, + 899975, + 899975, + 899975, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975 + ], + [ + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975, + 899975 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1008614, + 1008614, + 1008614, + 1008614, + 1008614, + 1008614, + 199999999750 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000896, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000, + 1000000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 970000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750, + 199999999750, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1500125, + 1500125, + 1500125 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1500125, + 1500125, + 1500125 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000 + ], + [ + 0, + 0, + 0, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 200000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000, + 1250000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 199999999750, + 199999999750, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125, + 1500125 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 199999999750, + 199999999750, + 199999999750, + 199999999750, + 199999999750 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1200050, + 1200050 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1250000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000, + 100000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000, + 1100000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ] + ], + "BaseFee": [ + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250, + 250 + ], + "GasUsedRatio": [ + 0.0011527, + 0.0011527, + 0.002803375, + 0.059806575, + 0.002134075, + 0.0043193, + 0.0011527, + 0.076042775, + 0.058763, + 0.09109785, + 0.407813175, + 0.0011527, + 0.0043244, + 0.012088375, + 0.3807612, + 0.004210875, + 0.0012924, + 0.389297875, + 0.0042489, + 0.00814875, + 0.004210575, + 0.012067, + 0.029545725, + 0.0136022, + 0.0106531, + 0.0097158, + 0.0011527, + 0.002803375, + 0.0074859, + 0.004319, + 0.0011527, + 0.0074152, + 0.007871925, + 0.006841775, + 0.0012924, + 0.0043877, + 0.3932099, + 0.025896675, + 0.014965825, + 0.0080106, + 0.0011527, + 0.005459975, + 0.005969975, + 0.007307375, + 0.0073445, + 0.0042483, + 0.0075558, + 0.0057973, + 0.0042474, + 0.00305465, + 0.008255075, + 0.0011527, + 0.0076253, + 0.062753125, + 0.0138218, + 0.0139185, + 0.0011527, + 0.05454615, + 0.0012924, + 0.003270325, + 0.007903875, + 0.005969075, + 0.00655715, + 0.0011527, + 0.00787075, + 0.0043193, + 0.005465725, + 0.02779615, + 0.0050941, + 0.25555615, + 0.0019084, + 0.0011524, + 0.002803075, + 0.010541875, + 0.0011524, + 0.001994075, + 0.0044565, + 0.006109975, + 0.0074877, + 0.00823225, + 0.0011527, + 0.009652025, + 0.0260498, + 0.016266425, + 0.01255475, + 0.0073439, + 0.023857275, + 0.008994575, + 0.021764375, + 0.0073439, + 0.0116895, + 0.013640275, + 0.01182405, + 0.00900625, + 0.0013621, + 0.004459, + 0.007192625, + 0.097410975, + 0.0765631, + 0.029579, + 0.0113166, + 0.04904205, + 0.305803075, + 0.0106531, + 0.005134375, + 0.3858057, + 0.00331915, + 0.005134975, + 0.378685125, + 0.005898075, + 0.0011527, + 0.0011527, + 0.0164803, + 0.0011527, + 0.007378375, + 0.0011527, + 0.0011527, + 0.0011527, + 0.0012924, + 0.00305465, + 0.0011527, + 0.0043187, + 0.182083925, + 0.0011527, + 0.0012924, + 0.0011527, + 0.389640575, + 0.021889175, + 0.0019997, + 0.0011527, + 0.0078196, + 0.0011527, + 0.01842905, + 0.006700325, + 0.005700025, + 0.0011527, + 0.004388, + 0.00312435, + 0.0073457, + 0.1775928, + 0.0074128, + 0.0073442, + 0.01464245, + 0.0112497, + 0.39871925, + 0.053270225, + 0.01525875, + 0.376181275, + 0.005115775, + 0.0011524, + 0.0011524, + 0.0011524, + 0.002803075, + 0.013304, + 0.004475725, + 0.0115646, + 0.0011527, + 0.018576075, + 0.034239725, + 0.002436525, + 0.0073433, + 0.004350825, + 0.010275675, + 0.0011527, + 0.029953075, + 0.006474275, + 0.00398855, + 0.003537775, + 0.0011524, + 0.0011524, + 0.0011524, + 0.0011524, + 0.024535925, + 0.002204075, + 0.005459375, + 0.0011527, + 0.006708475, + 0.0011527, + 0.003559375, + 0.0013624, + 0.0011527, + 0.0169237, + 0.39043755, + 0.0130065, + 0.0042456, + 0.002573775, + 0.0011527, + 0.0206778, + 0.055185975, + 0.00939025, + 0.002436525, + 0.006012275, + 0.002803375, + 0.0090525, + 0.001994375, + 0.004128725, + 0.002102425, + 0.003536875, + 0.004248, + 0.002364075, + 0.3738335, + 0.0011527, + 0.0216276, + 0.38057745, + 0.0011527, + 0.004248, + 0.373260325, + 0.018706275, + 0.0011527, + 0.0013621, + 0.002436225, + 0.0011524, + 0.009505525, + 0.003459225, + 0.0011524, + 0.0013621, + 0.0011524, + 0.030215075, + 0.0011524, + 0.009440925, + 0.003390025, + 0.0012924, + 0.002803375, + 0.007378975, + 0.00305465, + 0.38700865, + 0.004248, + 0.0042314, + 0.394001525, + 0.005459375, + 0.0011527, + 0.0074149, + 0.00489385, + 0.0560074, + 0.0053164, + 0.0011524, + 0.0033214, + 0.0217511, + 0.0042477, + 0.0092619, + 0.0054953, + 0.0011524, + 0.010894725, + 0.006363175, + 0.002278875, + 0.002238175, + 0.0011524, + 0.00651325, + 0.0300365, + 0.014945575, + 0.0130062, + 0.04201835, + 0.002803375, + 0.0043193, + 0.0011527, + 0.004128425, + 0.005537925, + 0.003013075, + 0.0876019, + 0.0060975, + 0.215026025, + 0.0011527, + 0.01299315, + 0.0018174, + 0.0011527, + 0.0011527, + 0.002896025, + 0.0011527, + 0.006890625, + 0.0091732, + 0.0011527, + 0.0068363, + 0.01009475, + 0.0042483, + 0.004805875, + 0.0013624, + 0.0011527, + 0.041333725, + 0.081735175, + 0.0016777, + 0.004319, + 0.045188425, + 0.005089675, + 0.0011527, + 0.002803075, + 0.034633625, + 0.011351575, + 0.0044583, + 0.002803375, + 0.0104413, + 0.0016777, + 0.0096041, + 0.0289393, + 0.3055189, + 0.00938755, + 0.004319, + 0.39006025, + 0.0019087, + 0.04439105, + 0.38632115, + 0.0011527, + 0.0041221, + 0.0061367, + 0.006216775, + 0.0016777, + 0.086935525, + 0.00881825, + 0.041049775, + 0.0113384, + 0.010090475, + 0.0043205, + 0.00370705, + 0.0238237, + 0.0016777, + 0.0011527, + 0.002364075, + 0.0011527, + 0.383669725, + 0.0074868, + 0.0097466, + 0.0011524, + 0.0019675, + 0.0149339, + 0.057270025, + 0.0011524, + 0.046449425, + 0.0137813, + 0.0011524, + 0.0141191, + 0.00635935, + 0.0043199, + 0.05583445, + 0.0051102, + 0.0011527, + 0.002984175, + 0.0045299, + 0.0011527, + 0.345312225, + 0.087444975, + 0.0011527, + 0.0043208, + 0.0013624, + 0.0011527, + 0.002102425, + 0.0011527, + 0.0011527, + 0.0011527, + 0.004475725, + 0.0011527, + 0.006700625, + 0.0073445, + 0.0042477, + 0.01608665, + 0.0044589, + 0.0011527, + 0.3894873, + 0.004209975, + 0.003558175, + 0.0042483, + 0.0049127, + 0.003270925, + 0.0011527, + 0.05583445, + 0.00648765, + 0.00305465, + 0.0012921, + 0.0073442, + 0.026830425, + 0.058192125, + 0.088663, + 0.0011524, + 0.0012924, + 0.01624955, + 0.384558325, + 0.0011527, + 0.00944625, + 0.3854959, + 0.002943075, + 0.0011527, + 0.3770687, + 0.0011527, + 0.0011527, + 0.02190555, + 0.0044571, + 0.0043208, + 0.0043199, + 0.0011527, + 0.005898375, + 0.0104389, + 0.004419675, + 0.0011527, + 0.0073424, + 0.003459525, + 0.006700325, + 0.0011527, + 0.0043874, + 0.0011527, + 0.4316778, + 0.00322225, + 0.00305465, + 0.0011527, + 0.0013624, + 0.002803375, + 0.002605925, + 0.00676355, + 0.004129325, + 0.0042489, + 0.003013075, + 0.0042489, + 0.0011527, + 0.0043208, + 0.004248, + 0.00413725, + 0.05792785, + 0.0011527, + 0.0011527, + 0.3946389, + 0.031234175, + 0.0011527, + 0.37553965, + 0.002803375, + 0.0011527, + 0.043037375, + 0.0074886, + 0.0061809, + 0.0013621, + 0.0073439, + 0.029280375, + 0.0073424, + 0.0230343, + 0.0105126, + 0.004388, + 0.005900175, + 0.0073424, + 0.00305465, + 0.0103523, + 0.156602125, + 0.01622425, + 0.0011527, + 0.0081611, + 0.0043202, + 0.004184825, + 0.016196825, + 0.004459, + 0.011268475, + 0.0011527, + 0.01825515, + 0.002803375, + 0.008159525, + 0.007976675, + 0.011268, + 0.002364075, + 0.00701215, + 0.0011527, + 0.3838032, + 0.0012921, + 0.0011524, + 0.446158875, + 0.013498, + 0.0043196, + 0.0419219, + 0.380852575, + 0.005463275, + 0.00666515, + 0.3686478, + 0.0011527, + 0.006763075, + 0.002803375, + 0.0012921, + 0.00740085, + 0.006609075, + 0.0011524, + 0.0104343, + 0.0042474, + 0.0076268, + 0.0011527, + 0.0016777, + 0.008295525, + 0.0011527, + 0.0011527, + 0.003012775, + 0.0043178, + 0.002803075, + 0.3809589, + 0.008003875, + 0.006709075, + 0.0045287, + 0.031822275, + 0.00505405, + 0.0011527, + 0.0011527, + 0.024383875, + 0.0013624, + 0.002102425, + 0.0011527, + 0.02761825, + 0.0011527, + 0.005969075, + 0.0044589, + 0.004248, + 0.0011527, + 0.0104398, + 0.0073433, + 0.077979525, + 0.011718675, + 0.01168325, + 0.0073442, + 0.012866, + 0.006150475, + 0.0042489, + 0.0044577, + 0.006624925, + 0.005898975, + 0.015116125, + 0.0011527, + 0.005160075, + 0.238996225, + 0.050471875, + 0.0169842, + 0.3861922, + 0.008697875, + 0.0062624, + 0.004915025, + 0.0011527, + 0.004319, + 0.0011527, + 0.024626625, + 0.007991325, + 0.0045296, + 0.008430625, + 0.0011527, + 0.002364075, + 0.0011527, + 0.003739925, + 0.0012924, + 0.0104349, + 0.002605925, + 0.01767165, + 0.0011527, + 0.00305465, + 0.015255825, + 0.006438425, + 0.00520165, + 0.0067633, + 0.0050019, + 0.043038875, + 0.0012924, + 0.0206778, + 0.1094829, + 0.0011527, + 0.0105815, + 0.0011527, + 0.230435775, + 0.048071225, + 0.087444975, + 0.3873826, + 0.002803375, + 0.00381065, + 0.020866925, + 0.0011527, + 0.005970275, + 0.0011527, + 0.0011527, + 0.0016777, + 0.032274725, + 0.008256575, + 0.017471225, + 0.014745875, + 0.010441, + 0.004319, + 0.0012924, + 0.012230075, + 0.0011527, + 0.396636275, + 0.005361475, + 0.0011527, + 0.37972015, + 0.03809645, + 0.0175113, + 0.020084, + 0.004319, + 0.004211775, + 0.002943075, + 0.0043196, + 0.016815025, + 0.0011527, + 0.0043181, + 0.002803375, + 0.0013621, + 0.0042453, + 0.0016774, + 0.002363775, + 0.025362025, + 0.059584125, + 0.385345, + 0.0011527, + 0.0011527, + 0.052381275, + 0.0011527, + 0.0011527, + 0.0013624, + 0.0011527, + 0.0016777, + 0.0027952, + 0.0011527, + 0.024626075, + 0.002134075, + 0.0263285, + 0.0011527, + 0.004760525, + 0.0043208, + 0.0011527, + 0.002943075, + 0.39221595, + 0.00289995, + 0.0074155, + 0.3731808, + 0.0058282, + 0.003977575, + 0.362687975, + 0.0011527, + 0.0019087, + 0.01359825, + 0.006273125, + 0.0043874, + 0.003390925, + 0.0011527, + 0.012432425, + 0.0011527, + 0.004281175, + 0.00310965, + 0.032447425, + 0.00361875, + 0.00516355, + 0.005063075, + 0.01084455, + 0.009472625, + 0.065148675, + 0.063845125, + 0.013459125, + 0.013461625, + 0.001848025, + 0.00374635, + 0.0019087, + 0.0079685, + 0.001848025, + 0.00204195, + 0.002803375, + 0.0077682, + 0.0011527, + 0.001848025, + 0.0011527, + 0.397215275, + 0.004943325, + 0.0013624, + 0.38084605, + 0.0011527, + 0.004550625, + 0.37532875, + 0.00204195, + 0.018506975, + 0.003767875, + 0.004705325, + 0.004944525, + 0.0011527, + 0.0042457, + 0.0012921, + 0.025910925, + 0.001847725, + 0.004584025, + 0.001847725, + 0.0011524, + 0.002796625, + 0.00772565, + 0.0011527, + 0.008039525, + 0.38854955, + 0.008991875, + 0.00851525, + 0.00614995, + 0.0125111, + 0.0011527, + 0.0011527, + 0.063475375, + 0.04791765, + 0.010528275, + 0.014624425, + 0.0011524, + 0.0065943, + 0.0042501, + 0.002057125, + 0.0011521, + 0.006493175, + 0.00497115, + 0.400586825, + 0.005012525, + 0.0013624, + 0.029112025, + 0.020857525, + 0.0074143, + 0.001848025, + 0.0011527, + 0.003530325, + 0.004943325, + 0.023461275, + 0.004435625, + 0.0011527, + 0.002803375, + 0.005411275, + 0.0074182, + 0.001848025, + 0.0360667, + 0.0139937, + 0.001848025, + 0.00319435, + 0.001848025, + 0.0106632, + 0.002803375, + 0.0049068, + 0.002371025, + 0.005223725, + 0.0074853, + 0.017670025, + 0.004944225, + 0.006709075, + 0.005015825, + 0.0013624, + 0.0206778, + 0.0082979, + 0.0011527, + 0.004943625, + 0.0043208, + 0.055436875, + 0.008038325, + 0.05892855, + 0.04588135, + 0.0011527, + 0.005899575, + 0.001987425, + 0.0011524, + 0.091198475, + 0.0105114, + 0.019864, + 0.011673225, + 0.274527925, + 0.005014925, + 0.0082852, + 0.4011605, + 0.005014925, + 0.00622185, + 0.023369925, + 0.384627025, + 0.0042483, + 0.00415485, + 0.37617935, + 0.00306635, + 0.0013624, + 0.007390375, + 0.024468425, + 0.0050765, + 0.0026897, + 0.0011527, + 0.002943075, + 0.001848025, + 0.0011527, + 0.001848025, + 0.0011527, + 0.00305465, + 0.002057725, + 0.00659295, + 0.001848025, + 0.0011527, + 0.002946075, + 0.010568575, + 0.0012924, + 0.00306635, + 0.05694605, + 0.006274025, + 0.001848025, + 0.035765475, + 0.004943325, + 0.0013624, + 0.0011527, + 0.004951925, + 0.00615025, + 0.001848025, + 0.0011527, + 0.321292225, + 0.024468725, + 0.0019087, + 0.00707015, + 0.0011527, + 0.0081732, + 0.002057725, + 0.0011527, + 0.005469525, + 0.0011527, + 0.005701825, + 0.001848025, + 0.00531505, + 0.0080027, + 0.004209975, + 0.01233685, + 0.01015565, + 0.0042486, + 0.001987725, + 0.396001625, + 0.005899875, + 0.001848025, + 0.00648735, + 0.001848025, + 0.0036838, + 0.002803375, + 0.00415485, + 0.0042477, + 0.001848025, + 0.0011527, + 0.039070675, + 0.0744953, + 0.0246351, + 0.005014625, + 0.004248, + 0.002434575, + 0.0068053, + 0.3878512, + 0.001848025, + 0.0042501, + 0.005898375, + 0.3812446, + 0.011065275, + 0.00696815, + 0.387399975, + 0.013816125, + 0.008039525, + 0.0043193, + 0.371563025, + 0.001951175, + 0.007871625, + 0.001848025, + 0.0011527, + 0.023663125, + 0.0043886, + 0.005814075, + 0.003128725, + 0.005401725, + 0.001847725, + 0.004319, + 0.027194875, + 0.005673775, + 0.002071175, + 0.0030594, + 0.0011527, + 0.002803375, + 0.008178025, + 0.00305465, + 0.001848025, + 0.0011527, + 0.0086628, + 0.001848025, + 0.0012921, + 0.004014625, + 0.001994075, + 0.00490775, + 0.05951155, + 0.0085383, + 0.001987725, + 0.01571845, + 0.04484005, + 0.380376375, + 0.0091493, + 0.001848025, + 0.002943075, + 0.00305465, + 0.00415485, + 0.0051997, + 0.001848025, + 0.0053112, + 0.0512328, + 0.002898025, + 0.0011527, + 0.001848025, + 0.002889075, + 0.002803375, + 0.0056412, + 0.0091493, + 0.001848025, + 0.00731965, + 0.002802175, + 0.375693625, + 0.011847225, + 0.004943925, + 0.0016777, + 0.377787875, + 0.001848025, + 0.0016777, + 0.001987725, + 0.010287825, + 0.0011527, + 0.087177525, + 0.0043193, + 0.004943625, + 0.0013624, + 0.0050407, + 0.001848025, + 0.0011527, + 0.001848025, + 0.0011527, + 0.0278613, + 0.0603564, + 0.0048452, + 0.370015675, + 0.002363775, + 0.0011524, + 0.391298675, + 0.00492625, + 0.0034987, + 0.3805808, + 0.002802175, + 0.001848025, + 0.0013624, + 0.002373025, + 0.0019678, + 0.017183975, + 0.005757825, + 0.01233965, + 0.005084225, + 0.005459375, + 0.0073445, + 0.0080015, + 0.0011527, + 0.056529775, + 0.0075561, + 0.0051099, + 0.005015525, + 0.380853525, + 0.008109325, + 0.087444675, + 0.0340354, + 0.017609425, + 0.01086935, + 0.005014625, + 0.0011527, + 0.008602875, + 0.002057725, + 0.0011527, + 0.012110575, + 0.0106519, + 0.005969975, + 0.001848025, + 0.0012924, + 0.00706155, + 0.0011527, + 0.39194575, + 0.06022415, + 0.0043208, + 0.04983175, + 0.0011527, + 0.0011527, + 0.001848025, + 0.004705325, + 0.0026897, + 0.0012921, + 0.0011524, + 0.001847725, + 0.0011524, + 0.002603725, + 0.0011524, + 0.031045975, + 0.004905, + 0.005537625, + 0.001847725, + 0.0011524, + 0.002803075, + 0.002057725, + 0.0011527, + 0.001848025, + 0.0011527, + 0.007802125, + 0.001848025, + 0.0013624, + 0.001848025, + 0.0011527, + 0.0135311, + 0.01273275, + 0.008327575, + 0.006866225, + 0.374779575, + 0.00396995, + 0.00443555, + 0.0043196, + 0.386691375, + 0.0013621, + 0.003459225, + 0.001847725, + 0.00305435, + 0.009513275, + 0.0011524, + 0.06729205, + 0.001848025, + 0.048697775, + 0.001848025, + 0.0011527, + 0.002364075, + 0.002057725, + 0.0011527, + 0.006975275, + 0.0011527, + 0.002803375, + 0.001848025, + 0.378048025, + 0.001848025, + 0.0042492, + 0.012370475, + 0.3760554, + 0.0011527, + 0.380377425, + 0.0011524, + 0.002803075, + 0.003983025, + 0.0011524, + 0.001847725, + 0.0044589, + 0.0011527, + 0.001848025 + ] +}` + +const infuraFeesJSON = `{ + "low": { + "suggestedMaxPriorityFeePerGas": "0.0001", + "suggestedMaxFeePerGas": "0.0001005", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 8000 + }, + "medium": { + "suggestedMaxPriorityFeePerGas": "0.0001", + "suggestedMaxFeePerGas": "0.00010075", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 6000 + }, + "high": { + "suggestedMaxPriorityFeePerGas": "0.00098", + "suggestedMaxFeePerGas": "0.0009825", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 4000 + }, + "estimatedBaseFee": "0.00000025", + "networkCongestion": 0, + "latestPriorityFeeRange": [ + "0", + "0.001" + ], + "historicalPriorityFeeRange": [ + "0.001", + "199.99999975" + ], + "historicalBaseFeeRange": [ + "0.00000025", + "0.00000025" + ], + "priorityFeeTrend": "down", + "baseFeeTrend": "down", + "version": "0.0.1" +}` diff --git a/examples/gas-comparison/data/polygon/data.go b/examples/gas-comparison/data/polygon/data.go new file mode 100644 index 0000000..b2aef9a --- /dev/null +++ b/examples/gas-comparison/data/polygon/data.go @@ -0,0 +1,27507 @@ +package polygon + +import ( + "encoding/json" + "gas-comparison/data" + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" + "math/big" +) + +// GetGasData returns the gas data fetched from Polygon Mainnet (Chain ID: 137) +func GetGasData() (*data.GasData, error) { + // Parse the embedded JSON data + var block ethclient.BlockWithFullTxs + err := json.Unmarshal([]byte(latestBlockJSON), &block) + if err != nil { + return nil, err + } + + var gasPrice *big.Int + gasPrice, err = hexutil.DecodeBig(gasPriceJSON) + if err != nil { + return nil, err + } + + var maxPriorityFeePerGas *big.Int + maxPriorityFeePerGas, err = hexutil.DecodeBig(maxPriorityFeePerGasJSON) + if err != nil { + return nil, err + } + + var feeHistory ethereum.FeeHistory + err = json.Unmarshal([]byte(feeHistoryJSON), &feeHistory) + if err != nil { + return nil, err + } + + var infuraFees infura.GasResponse + err = json.Unmarshal([]byte(infuraFeesJSON), &infuraFees) + if err != nil { + return nil, err + } + + return &data.GasData{ + LatestBlock: &block, + GasPrice: gasPrice, + MaxPriorityFeePerGas: maxPriorityFeePerGas, + FeeHistory: &feeHistory, + InfuraSuggestedFees: &infuraFees, + }, nil +} + +// Embedded JSON data +const latestBlockJSON = `{ + "number": "0x4a34166", + "hash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "parentHash": "0x74ede24be5352526ebba35b506ff63104a7ad6a6e05de50a661be04585b1897e", + "nonce": "0x0000000000000000", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "logsBloom": "0x87f5622742a1b005186e7549e4263fd07d6568ecf8903c51398572e88f20cff7161d9484f6e116596e43b0bd35ba7a0332d4d17496a3ae07ec924295c22e3ae54316b6e5ff416218f029f279ede7b9a042eee62ffd54c87477eb0533b31227c255184219cedbfb40135bc1c3c80acbf78ce8d490ea828765c88260df035b74b31baf097a3ece0975e7460bd5b4ddf026df9f8781522726c884c164d4d73d731aafc8408395f0a1e88c735f732cb51d9cea59bd8d208901618072d22f53694c5f93a2fc0a034b23d1fe3b6f181e1bf38140150762e679bb13415a887a8e2c6b099298e8a3313e2070b5d1848a5cabcd83ad833714792865c56fb74914265b3cd2", + "transactionsRoot": "0x67dd5f974b7a1ca914689da997e9fe41124a4535561158660324aab4632380ac", + "stateRoot": "0x2a1cf2bf2efe8ab1dc56233061c096ad23e86086bb68032598efcababaece988", + "receiptsRoot": "0x6435a1869ef440df7f837bc25d341ce6a606e0f0c7cdf8a7ed5e8cce4bee3bc8", + "miner": "0x0000000000000000000000000000000000000000", + "difficulty": "0x1", + "totalDifficulty": null, + "extraData": "0xd783010f0b83626f7288676f312e32342e36856c696e75780000000000000000f8a580f8a2c0c0c0c102c0c0c0c0c0c0c0c0c10bc10cc10dc0c106c10ec10fc0c113c110c21215c0c20a17c118c119c31a1117c116c11cc11dc0c11ec0c21920c0c122c124c125c126c127c2191bc22922c128c21b2ac12cc12dc12ec12ac12fc23031c132c0c132c12bc135c129c136c137c21b38c13bc0c0c527391d2024c13fc140c23941c20b0ec138c2333ac0c0c145c148c22a32c0c0c0c0c142c145c0c151c152c153c0a7ec332b84ce1bd7060a46d56566a99cf241a31cf22a81ebe0673c70da9905407478b41e799782068e16f18d2c9fc40582153504d8efb7a1b03a26ebcbfd351501", + "size": "0xe390", + "gasLimit": "0x2aea540", + "gasUsed": "0xd82617", + "timestamp": "0x68f27728", + "baseFeePerGas": "0x384c3b714", + "transactions": [ + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xfe85b0623beac783554f8d2c4de62f3604b9633e", + "gas": "0xca88", + "gasPrice": "0x2d6d99bf14", + "hash": "0x8d2f3c24e4a656e4a5ad88fb59e200223b138288a97208d497343cbbf3e619fb", + "input": "0x9ab06fcb00000000000000000000000063e2700eceda9bbeb1764473933f5757dd121b23", + "nonce": "0x168", + "to": "0xee7b933a7c483b1e2e547d033c3cfe952b7a922e", + "transactionIndex": "0x0", + "value": "0x0", + "v": "0x0", + "r": "0x7238a4ade48917cc227df4074c7646cf9aa26ec839c4a471245e3d7f3ba56772", + "s": "0x647376d05d9160472bd70df29a175ba3e578b8fefdb8083be5c081522d2beb33", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x2e90edd000", + "maxPriorityFeePerGas": "0x29e8d60800", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x4d108a579b0d001e2494901a1ee44280c3d516cd", + "gas": "0x5208", + "gasPrice": "0x14fb1ce514", + "hash": "0x87306f9a1ce20272df45e6ec4086a120dd55eea0426ac2071f9d51666e10cdac", + "input": "0x", + "nonce": "0x642f", + "to": "0x65a98b4fe36e8291555d02b61befa26490aa1729", + "transactionIndex": "0x1", + "value": "0xc2d052e930000", + "v": "0x0", + "r": "0xc514a87743db8e85cdc580d780a73ac4f9648469e5677d628a483175fb9fd2ad", + "s": "0x6984bd8722f254081a973f919fca28556012f57959c5028ec8fa6dc586b6d4a1", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x1f2719fa00", + "maxPriorityFeePerGas": "0x1176592e00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x44d0229d1d0a1980da2266118521744a28f7abc0", + "gas": "0x15f90", + "gasPrice": "0x131a63426c", + "hash": "0xd2c3a9a09ff3de0ac11660e7c8c888af42c78cc0a1b9b3566da20ac1cdd1ee0e", + "input": "0x0f75e81ff8214673e6dbe6a3f157fc4d1e77b0451a7680ee06ac2f6be64854406adee5f1", + "nonce": "0xcf5b", + "to": "0x03abb1ae819cfcc6747d5ef3bf03def08e5c3e7d", + "transactionIndex": "0x2", + "value": "0x0", + "v": "0x0", + "r": "0x496851fbd903ae550ae67b634cab060b0b050ed7e963730eb5fc55efabb6c032", + "s": "0x6b2bc5e960105a4d8140b04eb4f08d789b1c27e57381a3201bcbbbe822d2de75", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x131a63426c", + "maxPriorityFeePerGas": "0x131a63426c", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x5a7bd84ff9bd157da2bb11d0e89dffd78bb0df2f", + "gas": "0x15f90", + "gasPrice": "0x131a63426c", + "hash": "0xf54a782de1d1c07c6d015ece90e7a19c2297a392def63787344ef89928aa487f", + "input": "0x0f75e81feb25b794712933233645a90e15852b7d77d376e1ef26c8a0fa84a0c89a793678", + "nonce": "0xd59b", + "to": "0x03abb1ae819cfcc6747d5ef3bf03def08e5c3e7d", + "transactionIndex": "0x3", + "value": "0x0", + "v": "0x1", + "r": "0x704e14f706db946c3107abacb54a435c7424071f2a9a024fa2323fdc28d5a383", + "s": "0x1a0d51c6528972d1501686ce385fc0601c7cde4352d1f6f85d9918935ccfa5df", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x131a63426c", + "maxPriorityFeePerGas": "0x131a63426c", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xb3194094e0cd01c5429ba4f50ba22a78ca0337d4", + "gas": "0x15158", + "gasPrice": "0x117d0b0f14", + "hash": "0x52849e9526c6cb0ca038ae8243fecf421243163527fee8f6f2d1a5948f87bb90", + "input": "0x26552278000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000005cbd876b0144ca67e65e7421697bca75ea6c1382", + "nonce": "0x182a3", + "to": "0xafcbf0f65fe1c2c442013fda252908021e81b32d", + "transactionIndex": "0x4", + "value": "0x0", + "v": "0x0", + "r": "0xd9937dd045f1fbe845435d5f8a60d0eeccbfc74c1285f03d7371da45a13e7cf5", + "s": "0x839231ae3d1b33a1d7a0e1deb0fb082230e66ea0ebcee200ef4f494fa0bee23", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x152dd3006a", + "maxPriorityFeePerGas": "0xdf8475800", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x31c0167560e1fc50cfef567cbb66e01d020ee34a", + "gas": "0x7a120", + "gasPrice": "0x100ac6f69c", + "hash": "0x37754b005273149997a4c3730b4a8b5a890beb6fe48851deba488e18579f4063", + "input": "0xc072d146c027c5833601d6f24b3dea90a6020925f7ecb5522e6c902cf0a675bcd36303fd856b2f13354e41db8c9ad40f21e5a2694b4a18603731d1d96ac9c267229088b4", + "nonce": "0xb2b2", + "to": "0x8abcc001ba46ec55e8a35e812f26cbffc692ffee", + "transactionIndex": "0x5", + "value": "0x0", + "v": "0x1", + "r": "0xae87b18e10e4d6ccdc4784acb9e5f3437fb1a3c1a07fb9473d4f4b7a84218338", + "s": "0x23eda1e9cad0a83bc27eacd8e485e63419d0f6c32d76d6e32f84482ba7234051", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x1341f9a9da", + "maxPriorityFeePerGas": "0xc86033f88", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xf190f00700cf9edb603a416caaad3ad7e3ae3b99", + "gas": "0x13edde", + "gasPrice": "0xefee2fad6", + "hash": "0x231be05ff3cc008b260597d38b17f66fba37239067d91da5545ab5828e0f3879", + "input": "0x46a73fb1000000000000000000000000f190f00700cf9edb603a416caaad3ad7e3ae3b9900000000000000000000000000000000000000000000000485125ac28716fe0000000000000000000000000000000000000000000000000000000199f333a9a4", + "nonce": "0x852", + "to": "0x07ff4e06865de4934409aa6ecea503b08cc1c78d", + "transactionIndex": "0x6", + "value": "0x0", + "v": "0x0", + "r": "0xc2f33d59f9f11c2af340c8042b4cbfbf7804786dbb3994d9c6aba78ec48b60bb", + "s": "0x27f7189e8cf1373dc504af363e952a334b846a30e15c65567c6fef0ac067aa1f", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x188cbe3bce", + "maxPriorityFeePerGas": "0xb7a1f43c2", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x1d878ffcf1704157a01d8934ee14da630f34c404", + "gas": "0x2a9100", + "gasPrice": "0xe53d4d800", + "hash": "0xadaf41509f07d1e6e602ac7c7402ed48fe4eea8f70a76415b571c1c38529391d", + "input": "0xeaa79076031400010bb82710993f87e4f54b80355189e2d13a96010d645bf5b10d500b1d8e8ef31e21c99d1db9a6444d3adf127013010026f2271065ac1c07d6bb26f2fdb15aef2ec83f2e58f8c963d13cfd3133239a3c73a9e535a5c4dadee36b395c130707271027101bf0c2541f820e775182832f06c0b7fc27a25f670d500b1d8e8ef31e21c99d1db9a6444d3adf1270073ee2c16863d80208640f6409bffdb40000ab00ab00ab03cd03cd04af01a01e00000000120319000133d3ada02600f0875d2cf03d442c33670060da5139ca000000000000000000000000d13cfd3133239a3c73a9e535a5c4dadee36b395c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000301e0000001c65ac1c07d6bb26f2fdb15aef2ec83f2e58f8c9630080a8f1f52e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d13cfd3133239a3c73a9e535a5c4dadee36b395c0000000000000000000000000000000000000000000000000000000000000000301e0000001a0319000133d3ada02600f0875d2cf03d442c33670060566231180000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf1270000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000420000319000133d3ada02600f0875d2cf03d442c336700a002b9446c000000000000000000000000d13cfd3133239a3c73a9e535a5c4dadee36b395c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065ac1c07d6bb26f2fdb15aef2ec83f2e58f8c9630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000465ac1c07d6bb26f2fdb15aef2ec83f2e58f8c96300a0627dd56a00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000d13cfd3133239a3c73a9e535a5c4dadee36b395c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100201f000000000000000000000000000000000000000000000000000000000000000100000200001bf0c2541f820e775182832f06c0b7fc27a25f6700a0e0232b420000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf12700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x4930d8", + "to": "0xc37184b6ab8d18be826af019cfa6bb71c6a0ab39", + "transactionIndex": "0x7", + "value": "0x0", + "v": "0x0", + "r": "0xb946265c7e892d7470c00da5810fa6bd23b98d10f4d77bdce54c03df2ffd2ed6", + "s": "0x3ba3e66866bf7f21140e4c7982d51d53737443daf689a993a5bc2be039b6ab69", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe53d4d800", + "maxPriorityFeePerGas": "0xe53d4d800", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xc1889a9f480f13a0c6c5ec29d64b3ba507eebe8c", + "gas": "0xb71b0", + "gasPrice": "0xe53ca71d1", + "hash": "0x6d255763d87f29a20a0efb734fa79872487db071b9af4a09a21655476393ea8c", + "input": "0xa9059cbb000000000000000000000000eeaf93c4628ee80e4983728b7b1b26cbca2ae4af00000000000000000000000000000000000000000000001b1ae4d6e2ef500000", + "nonce": "0x8", + "to": "0x0a7914fb882c2cf8c44af3a842b3aeda609f2c8d", + "transactionIndex": "0x8", + "value": "0x0", + "v": "0x136", + "r": "0xbacf7499484f1ebb6ea8c08f4383ed4769d172256a5b0868140c9c3a1790d93d", + "s": "0x5e8cc99a42fd793c68415d3a2746515970711495a8a38e998caae9dfda461cfb", + "type": "0x0", + "chainId": "0x89" + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xa674777a89e84496a49be70f1cbec4ff666be980", + "gas": "0x36a1d", + "gasPrice": "0xe3f2b9511", + "hash": "0x5a832e7505d6a397c66e591771eae53edcc1c22f71890712a47988e7fc33cf71", + "input": "0xad884f69000000000000000000000000ad3754e503703d55e03d077abe22b38b0c56d9b0", + "nonce": "0x0", + "to": "0x30e4af5c1fe3d205440e2e0dbd9799af4ee50e87", + "transactionIndex": "0x9", + "value": "0x0", + "v": "0x1", + "r": "0x79c93f8ec051d8b343c823c3bd6d6b9e7920b0c62728f82af86697fca89e08b7", + "s": "0x7924e42bb222ce01f680873dd8e280df6ba313d923140fad4b48e41eb2630361", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x1765d990b6", + "maxPriorityFeePerGas": "0xaba67ddfd", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xbd73285931f3df3f57d2f86de989ceb633a1f95e", + "gas": "0x44df9", + "gasPrice": "0xe18a31c01", + "hash": "0xc222dc675275fb09ffa5aeabbc7f53dabf44f72b2f783c73b16e2a8a8adecec4", + "input": "0xb9b5149b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000001bdf71ede1a4777db1eebe7232bcda20d6fc1610000000000000000000000000bd73285931f3df3f57d2f86de989ceb633a1f95e0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf12700000000000000000000000000000000000000000000000000000000003d361250000000000000000000000000000000000000000000000017ec507235250f69600000000000000000000000000000000000000000000000000000000001d619b0000000000000000000000000000000000000000000000000000000068f28523000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000001800000000000000000000000296b95dd0e8b726c4e358b0683ff0b6d675c35e900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007616e64726f696400000000000000000000000000000000000000000000000000", + "nonce": "0x162", + "to": "0x07964f135f276412b3182a3b2407b8dd45000000", + "transactionIndex": "0xa", + "value": "0x0", + "v": "0x1", + "r": "0x2c637a8029d53af092378de68abab22de0ad1492635a8b376f73ad62ff76ec26", + "s": "0x124bb7e377a359fe5eb83fd9b350d44f2ef21b99937b77c1e5c701dd7f4e69c1", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x172d0a89c8", + "maxPriorityFeePerGas": "0xa93df64ed", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x64131b60502c01362639cc5cfe1a1efb6be1165a", + "gas": "0x61a80", + "gasPrice": "0xdfef93914", + "hash": "0x66badbe5d3303fec13fcb48ebf8f5c63227aacc564f80257265522f6544bdba6", + "input": "0x6a7612020000000000000000000000004d97dcd97ec945f40cf65f87097ace5ea047604500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000000e401b7037c0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000000000000000000000000000000000000000000000a13312b2cc64532aed2a446b66e5a2d8d8b440b24d7213d33b6dae6a58c3322300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000414ce039b3645e79d8ff6b3765ee4344d6d06acbf2919d06d55bf910f3864ac6b34810fbc11b5fe11f15616a775b6665b4555a713f6522f4615b37f4d8b9a6554f1f00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x13c2a3", + "to": "0xbcff02a109ec6cdfb78871027e43bf695de3a5d5", + "transactionIndex": "0xb", + "value": "0x0", + "v": "0x0", + "r": "0x18b21533c4b0dbb12f551233e570b8ddd0a187c7a08f86a10bc0637d41486c5a", + "s": "0x76632240df3b0272f456db3d44cb61852e4bfd87b327c4e1cf0df37bb9b8978d", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xba43b74000", + "maxPriorityFeePerGas": "0xa7a358200", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x9f75231fbbc2262036a0fd029c06235d897b8e7b", + "gas": "0x37b1d0", + "gasPrice": "0xdfef93914", + "hash": "0x875693c061fec707166661dab2a6216b847ef895c0b0799704bcfa99fa58f554", + "input": "0x405cec67000000000000000000000000b37f71723a29e4940104285abcd394d11fdf3385000000000000000000000000ab45c5a4b0c941a2f231c04c3f49182e1a254052000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001dff4000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000020434ee979100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000004d97dcd97ec945f40cf65f87097ace5ea04760450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e401b7037c0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000000002a80d7e4a0e1f4b312023efe4818ef8d850f9c20083c3c0444582ec0ce80bc240000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000414eea03c3fb9a8cf53adddde2c65a747a9555a4e4c5998cf7a7f50ee2c7e1d87f368559dfda24bd97055042b7a406aba16e41d60b4c548e24064019a5eb6866e61c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x822a1", + "to": "0xd216153c06e857cd7f72665e0af1d7d82172f494", + "transactionIndex": "0xc", + "value": "0x0", + "v": "0x1", + "r": "0x41dfb5e32f3fdbb55d89d066c49b3163da848a5bb2b413928850186e25f5f934", + "s": "0x37ff91f233270dc3e8cd3118f2b38ac9cc4476d7a11e4f83c10022ea16f3b8b5", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xba43b74000", + "maxPriorityFeePerGas": "0xa7a358200", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x6efdade3d235fdebdf9c4fb61424809fddde48fc", + "gas": "0xc3500", + "gasPrice": "0xdfef93914", + "hash": "0xb64bc1b71ce54e926518a14b2a5edf21462d1080f094e5f4fa3b02b6f999d711", + "input": "0x6a761202000000000000000000000000a238cbeb142c10ef7ad8442c6d1f9e89e07e776100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000002c48d80ff0a00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000272004d97dcd97ec945f40cf65f87097ace5ea0476045000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e401b7037c0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000000000000000000000000000000000000000000000b9d4953feec4959fa913b6f00197766f619186b2397843d9fe1c4231054096040000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002004d97dcd97ec945f40cf65f87097ace5ea0476045000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e401b7037c0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000000008bfee3f78321eea0bf6019870bbedbab4003a5b6f393b7ebc2d936a5aa167f1e00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041dde5d2808cb9bfc1627e37137c5ecd89cc92eb8d4d75196ea7bd11e8fded36256cd1c8109e7d404c84015cb14a3b4eaa20dbdf050b1279470da4b761ca57c1971f00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xa4bcb", + "to": "0x77b5acecbc67d1bef9b63ab6ff3dc886ef809170", + "transactionIndex": "0xd", + "value": "0x0", + "v": "0x1", + "r": "0x44bdac7d3a2d881a28b63de7e99370c761f8d194b3c291e2300c6f89246626ec", + "s": "0x5ba901ea1c19457ae8a93180567bb46c8e9da4ce63a1c1f2ef2b17964f3a0a6b", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xba43b74000", + "maxPriorityFeePerGas": "0xa7a358200", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x7210dd22a1461e6f44701d3d97f4a9f452b144e1", + "gas": "0xdbba0", + "gasPrice": "0xdfef93914", + "hash": "0xa227cfba9454737b41f4a319dedc9855249ba081b4b67d459f0768ef9b1f79f0", + "input": "0x2287e35000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000001de84000000000000000000000000000000000000000000000000000000000000fd9d00000000000000000000000000000000000000000000000000000000000000560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000099d3b80d73000000000000000000000000b5096efc0cefbc599626e2d8354723e3b89ec01d0000000000000000000000003cde8833bd6a5615876da8fd86a4aef36c173b490000000000000000000000000000000000000000000000000000000000000000ed1dbb07c88033d4e3a4af851f23a8dfc8ef4b7e89fb9b03dbe774b9bbcd302e00000000000000000000000000000000000000000000000000000000001de84000000000000000000000000000000000000000000000000000000000000f8d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000041f33cfee31887f8f692f469a164a7ad8a33c6555bbf18b82d87bec2e56fc72b533cf6f3aa2140255918ecf313a592c7838e542e0d629cd1ce40caca34e04dbaa61b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000038c97252000000000000000000000000118ed6e1e562ec54f1fa6e7f0a2741fe0d32ea4b0000000000000000000000000ba86440c498f276aa4606c12b0ec0fbfaaaad730000000000000000000000000000000000000000000000000000000000000000ed1dbb07c88033d4e3a4af851f23a8dfc8ef4b7e89fb9b03dbe774b9bbcd302e0000000000000000000000000000000000000000000000000000000000286f9000000000000000000000000000000000000000000000000000000000004c4b400000000000000000000000000000000000000000000000000000000068f27763000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000414b53e13251c481d5f09d05f49da07200e8a675a5913f3c50f7aeb129c2fcd39258e232e2ddeed6903a8d6c1b6ac1a6d43d94fa60f7b21f7d6a248c10cee780791b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000fd9d000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x3d60ac", + "to": "0xe3f18acc55091e2c48d883fc8c8413319d4ab7b0", + "transactionIndex": "0xe", + "value": "0x0", + "v": "0x1", + "r": "0xbec8b671f517daf6b1501cc45d0022048441c5faf529e322c79e2ff31ec1e311", + "s": "0x34c7391fb7acc52dd60a5ec869ca2003e01ce82aadd83c55a7c09acad9417d52", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xba43b74000", + "maxPriorityFeePerGas": "0xa7a358200", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xe1529d0c715519ac7f82a02f8e17f26e1d821291", + "gas": "0xea60", + "gasPrice": "0xdc0d7d737", + "hash": "0x75cb0ac33d421e1eba65c12febf21dbbe7172b9fdc4cbc897f643a579582d5c5", + "input": "0xa9059cbb0000000000000000000000008ee6f24a02997d33abd0eec2dbe97463a16ce5a9000000000000000000000000000000000000000000000000000000001dcd6500", + "nonce": "0x5ee", + "to": "0x99a57e6c8558bc6689f894e068733adf83c19725", + "transactionIndex": "0xf", + "value": "0x0", + "v": "0x0", + "r": "0x581668856eff11c362161072e6159a3c98921efdb9f190a6325d7749f2b4a57a", + "s": "0x7c52c962e73be256592cfda6476826c0b1127af39895e34b588e42315650f351", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x169fd60466", + "maxPriorityFeePerGas": "0xa3c142023", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xb997ca3e4b3d0f3b2b3a1636e474d913a4c710f7", + "gas": "0x23c8d", + "gasPrice": "0xdc0d7d737", + "hash": "0xf5e8e30f240b6350a1898ac58fb98cc3252c7bd7dd5c658fc93b3938c6046dce", + "input": "0x095ea7b300000000000000000000000078654ed080c1d1c87907646fdb2ae48db36353410000000000000000000000000000000000000000000000000de0b6b3a7640000", + "nonce": "0x1", + "to": "0xeb51d9a39ad5eef215dc0bf39a8821ff804a0f01", + "transactionIndex": "0x10", + "value": "0x0", + "v": "0x0", + "r": "0xeeaa3943acb2e9a05d59ffd01a11c52ce0dc93ddec3bf9af1ad994e5952a5e0f", + "s": "0x32016e29a15e7bae876b3a3fffb6317f06670fa24ef9a623edb036a1c1aae524", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x169fd60466", + "maxPriorityFeePerGas": "0xa3c142023", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x4337050608d02173feea2e27ba65a1af0f948538", + "gas": "0xca3cf", + "gasPrice": "0xdb4d43adb", + "hash": "0xd929110e02c83381329a252e7b564e4193c7f281826122f8e193410b4c2d4825", + "input": "0x1fad948c00000000000000000000000000000000000000000000000000000000000000400000000000000000000000004337050608d02173feea2e27ba65a1af0f9485380000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000078f014168e4ae8bbe71afa50f8979829b9208761000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000003a968000000000000000000000000000000000000000000000000000000000003d6c300000000000000000000000000000000000000000000000000000000000144ca0000000000000000000000000000000000000000000000000000000d5bc25698000000000000000000000000000000000000000000000000000000097929fae000000000000000000000000000000000000000000000000000000000000003600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a47bb3742800000000000000000000000038869bf66a61cf6bdb996a6ae40d5853fd43b52600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e48d80ff0a00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000099001bfd67037b42cf73acf2047067bd4f2c47d9bfd600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a9059cbb0000000000000000000000006ac3a524e4b83fe04396781128e9fe17029d7ef9000000000000000000000000000000000000000000000000000000000000238600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000626666666666667849c56f2850848ce1c4da65c68b00000068f2797b0000000000008767a55f6b61a1677b4d785dda7cf5e0d28494e35fa42d8781ce7a3297e4b6f8163e8a9d1fedda203930e181c11e914f4b57b969de58bd2ae40c4bfc025dc4091b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d0000000000000000000000009329bcda5f36ff7b43560bba02550938e6ac591029ebe5e73f586d43f648609310b209df0b77d776bcb54fcfc580569915b24689a7262ff2d8de5173cae59f7f1b00000000000000000000000000000000000000", + "nonce": "0x10525", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": "0x11", + "value": "0x0", + "v": "0x1", + "r": "0x9a345fac7fa819f133ed228ea9240e935a9c2613f41ea630d42f42f9eb57ead0", + "s": "0x25a8ea10dbf7301eefe8c57c81bb97da6c1b6628a7ed1a697988dbbb6ff730bb", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xdb4d43adb", + "maxPriorityFeePerGas": "0xdb4d43adb", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x83793780f354ef1d85b745f5d08f3f32fcbd6e58", + "gas": "0xea60", + "gasPrice": "0xd5adfc38d", + "hash": "0x9f01add89681d9c1cf573f80f601ccf30b177d5cd00e557b8ad1ec4215a5ed10", + "input": "0xa9059cbb000000000000000000000000ebbf59daac581da909ec1380e64503348f7a8c9f000000000000000000000000000000000000000000000000000000001dcd6500", + "nonce": "0x4ad", + "to": "0x99a57e6c8558bc6689f894e068733adf83c19725", + "transactionIndex": "0x12", + "value": "0x0", + "v": "0x0", + "r": "0xbfee1864a11a4d40d02698041519a9921a9ace20e6856a71f9f9e8249adbb7b9", + "s": "0x70494ab28bc0d0dcce2e04ecb537b045532e60d27634c098304c03d9caf58f8f", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x160ec60d5c", + "maxPriorityFeePerGas": "0x9d61c0c79", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xbca38a7f6b3cd3c467c6873f816b12642cee1db4", + "gas": "0xb71b00", + "gasPrice": "0xd34332340", + "hash": "0x5d898a03207e8c13511ee0a660f52d76ea5afc76709937067e91e033574b224f", + "input": "0x4ab0d1906c6bd0e1def311dc9e278835284022e4ca53d50e0ac7bc11577f393a44d943fc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d658843c3befcfe9d3fad05b4f17e3be13f935b531a99a09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f278000000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0x3c2f16", + "to": "0xa561862aa4efd0b57fcf9ac9384c353871e8225f", + "transactionIndex": "0x13", + "value": "0x0", + "v": "0x136", + "r": "0xee8c49e7f6b8166fdf27ec013484e4d7c5775953240793bced1d9b0c34f5c5b", + "s": "0x23d9a04583a681d0445e30e317105029f8d178ab4586c5fcb3c6513111b9d012", + "type": "0x0", + "chainId": "0x89" + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xbca38a7f6b3cd3c467c6873f816b12642cee1db4", + "gas": "0xb71b00", + "gasPrice": "0xd34332340", + "hash": "0x2b47dda7b1120a619fdf0c8fc2cafb2d6e34e87287014e7563316db7bee75173", + "input": "0x4ab0d190aaff2a9dc45eaf7065ff05c521915f72b2bf69e837a3173c5b11e685dc2f745e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d658843c3befcfe9d3fad05b4f17e3be13f935b531a99a09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000068f278000000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0x3c2f17", + "to": "0xa561862aa4efd0b57fcf9ac9384c353871e8225f", + "transactionIndex": "0x14", + "value": "0x0", + "v": "0x136", + "r": "0xb81f648ba51939f4c76fef57aee548d1adf099628eb6ce6d7dbd6733331a06de", + "s": "0x3266fe8aa08fa3edc1089b8601a05398b3ed20ae1682e9d697268b70ab4ce20f", + "type": "0x0", + "chainId": "0x89" + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x2a9a449341a8d18763430d20edd317a7780a2290", + "gas": "0x2bc74", + "gasPrice": "0xd182f0396", + "hash": "0xe0bcedba9fd8c07901c3c2e5c129d36d7218e8b7ec268be2cf80e06dcad4fe4a", + "input": "0x5638f1f30000000000000000000000002a9a449341a8d18763430d20edd317a7780a22900000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x21d", + "to": "0x07ff4e06865de4934409aa6ecea503b08cc1c78d", + "transactionIndex": "0x15", + "value": "0x0", + "v": "0x0", + "r": "0x100c605cbf651530f88cc41fdcfe053da5d340ffc973ecf2403ed5713ed46771", + "s": "0x9068e69e6df3a0e23926c797168dede643ac7b1caf6a60e34863d3f0247e740", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x15a40b94ba", + "maxPriorityFeePerGas": "0x9936b4c82", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x828b45c1bd83d9089903091c4ea7f0db979fe76f", + "gas": "0x27038", + "gasPrice": "0xd182f0396", + "hash": "0x13217d6f62055b6715a387aaa0f97bc344f88c2d0edc7056bee457beb0782790", + "input": "0xd9f0f7f5000000000000000000000000000000000000000000000000000000000000000d", + "nonce": "0x52b", + "to": "0x25a4b842cb200e9148ff5a11babf80488c8d8b07", + "transactionIndex": "0x16", + "value": "0x0", + "v": "0x1", + "r": "0x3a9bd96f526631c36dce79ae46518054f1568475a8e237972f437866a6544a77", + "s": "0x7d5701e04d1164da60730c655f96f09fd7e50ae642cdc2c9d45fd2cc25857bfa", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x15a40b94ba", + "maxPriorityFeePerGas": "0x9936b4c82", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xce3333304bee189f905f909807e62720f7f7a72e", + "gas": "0x16e360", + "gasPrice": "0xd182f0396", + "hash": "0x4508dfe2647fde55e044442631af8a527091944f5a70660cf3d6b39575b3029c", + "input": "0x0000000801008c00190d500b1d8e8ef31e21c99d1db9a6444d3adf12700327108804db1eeaba7bb97b87e0ba3299274bfabafdf470012c80e27d51f715e6f2d0935482c3217fabe176e05e140032050000000000000000000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0001f400000a00000000000000000000000000000000000000003ff13d4a1c93555100000000000000002aad948c13390400", + "nonce": "0x1a682", + "to": "0x8966ea19bde0db6add026496eeef6e9ee43af361", + "transactionIndex": "0x17", + "value": "0x0", + "v": "0x1", + "r": "0x8c0d5b5d851d4f9ddadbb2c07f7f7ac9564fd420c8a805c24bb6724adf87bb86", + "s": "0x1d14ac7d1f01277ea18e7e8a416e453379b51c217545a29d9fad6c12859210d0", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x15a40b94ba", + "maxPriorityFeePerGas": "0x9936b4c82", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xd2dacd4c4f53deef010b3ebdde45cb90ec5545f2", + "gas": "0x3a67c", + "gasPrice": "0xd182f0396", + "hash": "0xc5e036fbab4c6f88726330bef1b76f0640ed195a91d0727c8130eb669a01b036", + "input": "0xd33721a5000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000e27d51f715e6f2d0935482c3217fabe176e05e1400000000000000000000000000000000000000000000000000000000000000010000000000000000000000007272a5a8bd39f204bf773e8b74bb01e31681ad1d000000000000000000000000d2dacd4c4f53deef010b3ebdde45cb90ec5545f200000000000000000000000000000000000000000000000258db5d1c5c64996100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d2b37ade14708bf18904047b1e31f8166d39612b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001c4ba3f2165000000000000000000000000de7259893af7cdbc9fd806c6ba61d22d581d56670000000000000000000000000000000000000000000000000181831ede39ff19000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000f42400000000000000000000000007272a5a8bd39f204bf773e8b74bb01e31681ad1d0000000000000000000000000000000000000000000000025d63c657d3ffe000000000000000000000000000d2dacd4c4f53deef010b3ebdde45cb90ec5545f200000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000530199f3213b2d000101c2132d05d31c914a87c6611c10748aeb04b58e8f01ffff00e27d51f715e6f2d0935482c3217fabe176e05e1400d2b37ade14708bf18904047b1e31f8166d39612b000bb8f424049759320000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xd35", + "to": "0xac4c6e212a361c968f1725b4d055b47e63f80b75", + "transactionIndex": "0x18", + "value": "0x0", + "v": "0x0", + "r": "0x132ac3e889a64fa6107c33e3bbeafcb7087e7927fa282b54bdea0507ae5c5ceb", + "s": "0x1d5c4c9efcb509701e226818fa37d127cdcbb93274dfc9694a5e7c9f36ff49d6", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x15a40b94ba", + "maxPriorityFeePerGas": "0x9936b4c82", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xde33330c5b94d76e4166f6f9a014f2a935182140", + "gas": "0x53ec60", + "gasPrice": "0xd182f0396", + "hash": "0x0922733fdc53db83cb341a5c93aee714223008a2b315e05d3da077fb706c71db", + "input": "0x0000000801008c00190d500b1d8e8ef31e21c99d1db9a6444d3adf12700327108804db1eeaba7bb97b87e0ba3299274bfabafdf470012c80e27d51f715e6f2d0935482c3217fabe176e05e140032050000000000000000000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0001f400000a00000000000000000000000000000000000000003ff13d4a1c93555100000000000000002aad948c13390400", + "nonce": "0x3ef2", + "to": "0x8966ea19bde0db6add026496eeef6e9ee43af361", + "transactionIndex": "0x19", + "value": "0x0", + "v": "0x1", + "r": "0xc20bf3c11afde71f581ff68ce9954be4d7ed5d8ef112fa3499f1b0a20fb8939a", + "s": "0x6b2c8a8fcd62407e9096f5660c315f41c845a7383a101f96b641d3495c3d1569", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x15a40b94ba", + "maxPriorityFeePerGas": "0x9936b4c82", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xce33333264bdd93b5ba4be739b8f4612121d513f", + "gas": "0x16e360", + "gasPrice": "0xd182f0396", + "hash": "0xf60f99011fa886089568ed62b1118f498d76bdcc26a5f8cb76cb39a107b556c8", + "input": "0x0000000801008c00190d500b1d8e8ef31e21c99d1db9a6444d3adf12700327108804db1eeaba7bb97b87e0ba3299274bfabafdf470012c80e27d51f715e6f2d0935482c3217fabe176e05e140032050000000000000000000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0001f400000a00000000000000000000000000000000000000003ff13d4a1c93555100000000000000002aad948c13390400", + "nonce": "0x17c33", + "to": "0x8966ea19bde0db6add026496eeef6e9ee43af361", + "transactionIndex": "0x1a", + "value": "0x0", + "v": "0x0", + "r": "0x8406afd1d2627941aa25887091689ef37197ea2cc64e72e90b90d524e84fc873", + "s": "0x2b78368d617d3d6b09e77fc16bbb45a016cafc606c9d5bd65c1e0438ec203419", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x15a40b94ba", + "maxPriorityFeePerGas": "0x9936b4c82", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x433700890211c1c776c391d414cffd38efdd1811", + "gas": "0x1a56ae", + "gasPrice": "0xcfa1375ea", + "hash": "0x333ffc56da408cc618ed2b986c452ad0e67025944cbbe1f1907b56b6fa7c908f", + "input": "0x1fad948c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000433700890211c1c776c391d414cffd38efdd1811000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000008c9b76a248938d2a87691daba0af80bf632c3010000000000000000000000000000000000000000000000000000000000000011f0000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000fbd7d0000000000000000000000000000000000000000000000000000000000041faa00000000000000000000000000000000000000000000000000000000000207580000000000000000000000000000000000000000000000000000000d29cbd383000000000000000000000000000000000000000000000000000000097929fae000000000000000000000000000000000000000000000000000000000000014c00000000000000000000000000000000000000000000000000000000000001560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013047bb3742800000000000000000000000038869bf66a61cf6bdb996a6ae40d5853fd43b52600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000012448d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000011eb003c499c542cef5e3811e1192ce70d8cc03d5c335900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000c58601ddb27f10c7929610fbfa83abe5650265550000000000000000000000000000000000000000000000000000000000000df9003c499c542cef5e3811e1192ce70d8cc03d5c335900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000003a23f943181408eac424116af7b7790c94cb97a500000000000000000000000000000000000000000000000000000000017d6a47003a23f943181408eac424116af7b7790c94cb97a50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106437c6145a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fc454d70d890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c58601ddb27f10c7929610fbfa83abe5650265550000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c335900000000000000000000000000000000000000000000000000000000000061a500000000000000000000000000000000000000000000000000000000000001a600000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000ec47899f9ed0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c33590000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f61900000000000000000000000000000000000000000000000000000000017d08a20000000000000000000000008c9b76a248938d2a87691daba0af80bf632c30100000000000000000000000000000000000000000000000000000000000000a3000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000dc490411a320000000000000000000000001e82ad8a12068a85fcb96368463b434e77b21201000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c33590000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000001e82ad8a12068a85fcb96368463b434e77b212010000000000000000000000008c9b76a248938d2a87691daba0af80bf632c301000000000000000000000000000000000000000000000000000000000017d08a20000000000000000000000000000000000000000000000000017527f3e8c9f1800000000000000000000000000000000000000000000000000176476622bfc45000000000000000000000000000000000000000000000000000000000000000200000000000000000000000038c7720238a2c123814aaf1a3d0e31e0093af04600000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000860000000000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064eb5625d90000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba300000000000000000000000000000000000000000000000000000000017d08a200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008487517c450000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c33590000000000000000000000001095692a6237d83c6a72f3f5efedb9a670c4922300000000000000000000000000000000000000000000000000000000017d08a20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001095692a6237d83c6a72f3f5efedb9a670c4922300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004a424856bc300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000017d08a20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f61900000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c33590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000600000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000001e82ad8a12068a85fcb96368463b434e77b21201000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000648a6a1e850000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f619000000000000000000000000922164bbbd36acf9e854acbbf32facc949fcaeef00000000000000000000000000000000000000000000000000176476622bfc4500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49f8654220000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f61900000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d1660f990000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000008c9b76a248938d2a87691daba0af80bf632c301000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000626666666666667849c56f2850848ce1c4da65c68b00000068f27972000000000000592b0ecaf19c07a7e5643a07e66094956ed7c3e9dce54307e74744607ed6799618bb5705b2b48f3b37ab5302f32767d3d3541c845302db08c91e147f04238b2f1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d00000000000000000000000086fe981745a796f30898f183007237034e380a03914fe445a9ed3bb8d7adf8d15be2ab006f1cdf9828fb7aa2ca41d4e9584c2ff59c16f31de5304d08b4e6838b1c00000000000000000000000000000000000000", + "nonce": "0x1089a", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": "0x1b", + "value": "0x0", + "v": "0x1", + "r": "0xe9a6d6dcd5ae0e038bab3d5133d08128eadf3f03b9f735fbc0e09d86b11fe0c0", + "s": "0x7856492e85d29b957cd2ec065ca01c260d31dec978947bcbff68f34149f9acf6", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xcfa1375ea", + "maxPriorityFeePerGas": "0xcfa1375ea", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xe96172830eee05202900285556ecbdd6372a71b4", + "gas": "0x4b18a", + "gasPrice": "0xcf020e226", + "hash": "0xf31c9cb3a3fa63fb7646c9420e301e2ffab30b779f2650237acccb57328fd373", + "input": "0xd9f0f7f50000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0x61", + "to": "0x23e2b07d85a8dbc307742c72aadbbdde4e5e2efb", + "transactionIndex": "0x1c", + "value": "0x0", + "v": "0x1", + "r": "0x98bd110e78e2b0f30b541c9e73eb355d0b3d34ca8c0e7240db9cf4b302648f42", + "s": "0x62d01a691a936d1ea0f94d5bcc09cae5f6c53da287f4259dabb6ce42907564b2", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe1530a2f7", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xc36fbbef1b11a793c4c1bdd51eb9b8526b016a10", + "gas": "0x4e058", + "gasPrice": "0xcf020e226", + "hash": "0x4df020fb38e5da3dbfa3bb6f484e0c12b4cc444be0bf10fd3ae0f74176a8b799", + "input": "0xd9f0f7f50000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x16a", + "to": "0x25a4b842cb200e9148ff5a11babf80488c8d8b07", + "transactionIndex": "0x1d", + "value": "0x0", + "v": "0x1", + "r": "0x9a9d45e9a382f924ca2c51d381a85ebdf8077197eaa4ac17437370a9ceb78c3f", + "s": "0xf1f1da7b658974754feb30b3ada876455344f1bcc304349ebe8c728b074fa77", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe19c68d8b", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xf09968f7d89acb095ce8f284328420adedb6046d", + "gas": "0x123d2", + "gasPrice": "0xcf020e226", + "hash": "0xa3da7d307af9171dd22cb4c2f9fd8226be2eae2ef5966a960ef213d510a70526", + "input": "0xa9059cbb00000000000000000000000065d249963ceaab3666946a677805adbdc8a04856000000000000000000000000000000000000000000000000000000067e5fa080", + "nonce": "0x7a7", + "to": "0xeb51d9a39ad5eef215dc0bf39a8821ff804a0f01", + "transactionIndex": "0x1e", + "value": "0x0", + "v": "0x1", + "r": "0x933fc7fdf305f1fda3f3d6443dcebf7a75fd5ebf7367fb03a32b0f1cf362b93e", + "s": "0x5a841863ecf2b9a5d06eaf19ef254fe0c20a782a6d284cb45876c33f1b674abb", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe19c68d8b", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x721e45da4c201224ce66c49daaf97cb6d384d57f", + "gas": "0x5208", + "gasPrice": "0xcf020e226", + "hash": "0x197abb57625d801a2772609cd6a57ab47e48b8a8708d63add9d285f49fb180bd", + "input": "0x", + "nonce": "0x203", + "to": "0xefdadeae1d3f4ee1de435a234ec71f162fa41c30", + "transactionIndex": "0x1f", + "value": "0x1158e460913d00000", + "v": "0x0", + "r": "0x32ace220a62be49b86bc91f654bc7d7031cabca5887bdfdc34dacacacbbbd1e1", + "s": "0x650ac7caa91a170a034bd3ae9cbb2add3f2c77e49118ca0f9f477884446ae5e3", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe1530a2f7", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xf078a01e2bdf96b55ac314e39b9e9e5648a0366f", + "gas": "0x23584", + "gasPrice": "0xcf020e226", + "hash": "0x96f2754330419e5d2c7a7a4aaa545b85666b7943413a6d7795c1ea955a554f2d", + "input": "0x9ebea88c0000000000000000000000000000000000000000000000000000000ba43b74000000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0xae2", + "to": "0x1964ca90474b11ffd08af387b110ba6c96251bfc", + "transactionIndex": "0x20", + "value": "0x0", + "v": "0x0", + "r": "0x491bdfcdb91d5cfd051949887e7eb941f846f1b33796514345947e0cefcaf599", + "s": "0x7f9482dfbc13e41358a4025ac2038ddf16026f97329e66b9ef70a4dde9d256a3", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe1a1d3fec", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xf8d7cadfda2ac5ff0effaf7217e4e5a2b9c39abb", + "gas": "0x5208", + "gasPrice": "0xcf020e226", + "hash": "0xb99e7af162d98a6027f09edfd93a8c59897ea30150bf56b223d195abe24d0ebb", + "input": "0x", + "nonce": "0x43", + "to": "0x6f429d135e5430aecb4f12ebabc4946acb85d470", + "transactionIndex": "0x21", + "value": "0x43db22f76e9c35f9", + "v": "0x1", + "r": "0xcebac19b478cb71cab08c9c04402399e2795758532853ac58ceb538f6c868765", + "s": "0x394aba216301a3be907bd1ee9360c26015400ebc6c78f0ecc641f63861f494f", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe19c68d8b", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x958c7d387522d1f722c41c4cda7b5df273a6284d", + "gas": "0x123292", + "gasPrice": "0xcf020e226", + "hash": "0x75542d4c389df33d77acc13ce3276cad34e877d2a75c980521ec2cd341b37482", + "input": "0x9cc1a283000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000eb51d9a39ad5eef215dc0bf39a8821ff804a0f01000000000000000000000000000000000000000000000000000000000000a6e0000000000000000000000000000000000000000000000000000000000000a71c000000000000000000000000000000000000000000000000000000000054bb32000000000000000000000000000000000000000000000000000000004ce3d62100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000958c7d387522d1f722c41c4cda7b5df273a6284d0000000000000000000000000000000000000000000000000000000068f27bc6", + "nonce": "0xda", + "to": "0x8ef88e4c7cfbbac1c163f7eddd4b578792201de6", + "transactionIndex": "0x22", + "value": "0x0", + "v": "0x0", + "r": "0x3ff746f192580dd8b238960cd813528c4465e34d962d39b59cb5700a189312ab", + "s": "0x1743141dbeb392343e977a5fd172575389ce11248e2d23c1364ef6a158c8d9fd", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe19c68d8b", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x98df81d55912130cf3ff39cbc103c030a585a3b0", + "gas": "0x273cc", + "gasPrice": "0xcf020e226", + "hash": "0x50855802df3df72aca59b6a799a9d9eeda638fa071aeb79585ca790e92d6a4fe", + "input": "0xddc632620000000000000000000000000000000000000000000000000000000000000009", + "nonce": "0x352", + "to": "0xdc5b236981ff22955eadd09e46d54821deb00331", + "transactionIndex": "0x23", + "value": "0x0", + "v": "0x1", + "r": "0x9a93df3ea07f107025c0deeef04a3c54d84038267dddd525e875ad900677ea5b", + "s": "0x45713ea9a53399bc8fdb070114f05a2da042d6ea1bf94638e6abff84dfb6cd2c", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe1530a2f7", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xf21dd94111b0d652bb9e3825e454d29cde04cbaf", + "gas": "0x54c3a", + "gasPrice": "0xcf020e226", + "hash": "0xb9035eb7f25e7d0d3a5f0a82a4134d5121bba443d2a1fec63bbb384dcb9a014a", + "input": "0x4458a14c000000000000000000000000f21dd94111b0d652bb9e3825e454d29cde04cbaf00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x2c6", + "to": "0x6c0ac888b075c6b5141cbc1da6170b6686afd07d", + "transactionIndex": "0x24", + "value": "0x0", + "v": "0x1", + "r": "0x17035a4c6cf6a7aacf2d791bca034d0a637a87fab84aa7566dfe0c418738b5c4", + "s": "0x49e46ec2b510d65a90a97823017ee4b72178b78d7e6cc57a470aee883f03373f", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe1530a2f7", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x599f050d15984f56b3595f2bbf64784053ed72bd", + "gas": "0xe426", + "gasPrice": "0xcf020e226", + "hash": "0x89aa9e15c0789120f2dde9ab740a1bd8b0854fa2debf51928c5afc8275bfa5d9", + "input": "0x095ea7b300000000000000000000000023e2b07d85a8dbc307742c72aadbbdde4e5e2efb0000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x20ea", + "to": "0xeb51d9a39ad5eef215dc0bf39a8821ff804a0f01", + "transactionIndex": "0x25", + "value": "0x0", + "v": "0x0", + "r": "0x1eb61338924ad0bf40817dff1ea83385be618067e42b34810d80a7bc4d56a506", + "s": "0x7b9a133805b6155c2056641cc91012070eafbbf4c1275eb89d95fd20b13af6f0", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe19c68d8b", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x0c2c6005885dd3a990695fc1c999bdef032148dd", + "gas": "0xcf5c4", + "gasPrice": "0xcf020e226", + "hash": "0xffd527eb81a05a212205d6fa4ebb8b741e20ac6e74cf3acf575db820298faafb", + "input": "0x5c11d795000000000000000000000000000000000000000000000000000000010265e700000000000000000000000000000000000000000000000002ef2f23f94aeaa00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000c2c6005885dd3a990695fc1c999bdef032148dd00000000000000000000000000000000000000000000000000000199f325f17a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000eb51d9a39ad5eef215dc0bf39a8821ff804a0f010000000000000000000000008f3cf7ad23cd3cadbd9735aff958023239c6a063", + "nonce": "0x130", + "to": "0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff", + "transactionIndex": "0x26", + "value": "0x0", + "v": "0x1", + "r": "0x52f881191e784d12f0ded43d81b211a5d1d15f421b5490e8a43ee34db625d40d", + "s": "0x12c334e35c06e854149aae5b0d66f65bf0f931451c1d596abc09b1694cad6df1", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe1530a2f7", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xf3bd49f6ff787e52e66ab34c5e1eae339300b4e0", + "gas": "0x513ee", + "gasPrice": "0xcf020e226", + "hash": "0x0a840f74f7021e4f224fd392ebbc1a3acd944af958042dcc4e1a29c5b6df82d6", + "input": "0xd9f0f7f50000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xda7", + "to": "0x14fca7bfa779a4172c9b2de61fd352c005442520", + "transactionIndex": "0x27", + "value": "0x0", + "v": "0x1", + "r": "0xdf94939c1ab357e3c758cd76bfdceb20362a51291bf9492d3b8364b47d98e81f", + "s": "0x45bb7563523442643c30f8517ced7334afc654eb5ace8a31356e7d6c9967c187", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe19c68d8b", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xe302cf6ba4584413e7385b686b2e7a60343db372", + "gas": "0x52b6a", + "gasPrice": "0xcf020e226", + "hash": "0xccde76af32fac44c3997bcaca0c3c2b61d52c55161ccc0d94d81fd98eeadba75", + "input": "0x4e71d92d", + "nonce": "0xb32", + "to": "0x806fdab92b0fc7fbe4bbbe5117a54caa9283d5a4", + "transactionIndex": "0x28", + "value": "0x0", + "v": "0x1", + "r": "0x1867523043453f9c17edfba86ed6e01b655eb05e9e4a8d984d57649db546ad5", + "s": "0x152511bc8bc57fb03489379b21481693a01a5696a201e500ca818c44d0c675a2", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe1530a2f7", + "maxPriorityFeePerGas": "0x96b5d2b12", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x9c69cc79760078df01366df354a9281d18171460", + "gas": "0x27e3d", + "gasPrice": "0xcd044cb13", + "hash": "0xf0973b5cd4229855fd92fe87446798837035bd73d8296268cf87484f9a6e26c5", + "input": "0x727958d900000000000000000000000000000000000000000000000000000000000001000000000000000000000000008f5421442ab72eb235c5a4d25b4007da1248e9950000000000000000000000001cd0cd01c8c902adab3430ae04b9ea32cb309cf1000000000000000000000000000000000000000000000000001c9dfad7bf0ba800000000000000000000000000000000000000000000000294d8d78353be80000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000005e00000000000000000000000008f5421442ab72eb235c5a4d25b4007da1248e9950000000000000000000000001cd0cd01c8c902adab3430ae04b9ea32cb309cf100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015dad0000000000000000000000000000000000000000000000000000000068f3c87600000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000001a4a17438c20000000000000000000000000000000000000000000000008ac7230489e800000000000000000000000000008f5421442ab72eb235c5a4d25b4007da1248e9950000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf1270000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000688d71b400000000000000000000000000000000000000000000000000000000000000080000000000000000000000001cd0cd01c8c902adab3430ae04b9ea32cb309cf100000000000000000000000000000000000000000000000000000000688d71b400000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000041e65be11469801e3e2baedd62fa6707bbc2479dd0aefe6f6a5fe9727475a3f39a09819fb1c2d39de8fde3546a1a1b0bd7b79b2c25563b5d69d40ae6145e62c3841b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041accaa581a2636fe13e1f2ef672c71427e118abd81311d0639a4403e3f6a316d3782dbc080da79847dbccae5ffe5c597601f004ee2bf8ea2798d83e08a6186def1c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000008f5421442ab72eb235c5a4d25b4007da1248e9950000000000000000000000001cd0cd01c8c902adab3430ae04b9ea32cb309cf1000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000068f3c8740000000000000000000000000000000000000000000000000000000000000008000000000000000000000000735023ec9a51eb41c9e298fa74bed454d581a4710000000000000000000000000000000000000000000000000000000068f3c87400000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000040a099808776ecdb2a75ceaae1b7a8118b1130068b3b4a6f2b5210665d7be3c76137ce3d57e5864386b83a9a1165382ae088716b7f0271f7c8388733c8dff8c85100000000000000000000000000000000000000000000000000000000000000064a7e9a311caea8a910fb2e50b405f78c4e052d6bac7522292990012318b84bfeadee5eb4308c12150a5a81a34a1ee5c551c9fad52581219a43ea6cd5de516a26eb90a74eda97426945b0cdafa8f937fae657f9c888292eb40e573d3d6dc66f3e1532559d8df2a4356efe907d6d79f03dc6cfaca71328d1231e9da6d28fd387562cead5db0d38ef40ec40db608eb64502ea55070fada0ec8ee022fdc76caf5ba6a26904679e6405562db0f53223dd7e62154a74f3c5f9915b4431355d222584fc", + "nonce": "0xe96b", + "to": "0x421edd728b64072b3109dae8d802f4f68ce7c500", + "transactionIndex": "0x29", + "value": "0x0", + "v": "0x1", + "r": "0x58ca470c080dae3c2ce0a594b6449b568f03384f0810ee37b631d0a63a7881be", + "s": "0x5899a5505249cb80bfd7603e989a8849c2b4cff805a46b72f5245fcf9edeca12", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe97c47447", + "maxPriorityFeePerGas": "0x94b8113ff", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x700338aaf64829b004b19fe74c2066d8c1041a66", + "gas": "0x9b8fe", + "gasPrice": "0xcc7ac6324", + "hash": "0x9d7f9d23e3ef84b21b25ce3097d949960776cde18415e3e7cba235aef7f06ff3", + "input": "0x727958d90000000000000000000000000000000000000000000000000000000000000100000000000000000000000000db9052d6ac44e0e591c420d1b4de0cb0f234c0650000000000000000000000001e438d4414f38cd2beb71b73721181cde019f7080000000000000000000000000000000000000000000000000016eb2ead013e9d0000000000000000000000000000000000000000000000008ac7230489e800000000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000db9052d6ac44e0e591c420d1b4de0cb0f234c065000000000000000000000000eb6132faf257e9ebcaed78055c5302d81eb948be000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000784e20000000000000000000000000000000000000000000000000000000068f3c89700000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000b400000000000000000000000000000000000000000000000000000000000000a24d1b377ee00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000009045fd9ae2e3202109944670ee837285213b4fe8df6f4e3850c8e82da741e7ce3bad5741bb300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000db9052d6ac44e0e591c420d1b4de0cb0f234c06500000000000000000000000000000000000000000000000000000000000f25d0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000067465612d66690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a307830303030303030303030303030303030303030303030303030303030303030303030303030303030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000bd6c7b0d2f68c2b7805d88388319cfb6ecb50ea9000000000000000000000000bd6c7b0d2f68c2b7805d88388319cfb6ecb50ea90000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c33590000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c335900000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000084eedd56e10000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c335900000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000b563d0dd1ebbdaed8d2d6afc767981aa53d5660500000000000000000000000000000000000000000000000000000000000000000000000000000000f5402ccc5fc3181b45d7571512999d3eea0257b60000000000000000000000003b86917369b83a6892f553609f3c2f439c184e310000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000f3a7000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000048403b87e5f0000000000000000000000000000000000000000000000000000000000019e120000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000f3a7000000000000000000000000000000000000000000000000000000000000f25d00000000000000000000000000000000000000000000000000000000068f28506000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000f3a70000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c335900000000000000000000000000000000000000000000000000000000000000010000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb500000000000000000000000000000000000000000000000000000000000000010000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000000000000000000000000000000000000000000100000000000000000000271031083a78e11b18e450fd139f9abea98cd53181b70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004168b0f1a21080c9264104000a3ec87c1fec495d6a61d3125d10f2fdb7b470b9d91fab50574cdae71e9863d3b6fc19ed0e32a5e2a14e5f51da24e83870ab3f97011c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000688734833b8c484c1502e9f468fc3ec5a86167477df1c45f3e80a4b90742a654f89ec01b3be675b481ec5f687f5f45342504826a84f43ad241fd308f08ee1ee84eb90a74eda97426945b0cdafa8f937fae657f9c888292eb40e573d3d6dc66f3e1532559d8df2a4356efe907d6d79f03dc6cfaca71328d1231e9da6d28fd387562cead5db0d38ef40ec40db608eb64502ea55070fada0ec8ee022fdc76caf5ba6a26904679e6405562db0f53223dd7e62154a74f3c5f9915b4431355d222584fc", + "nonce": "0xead3", + "to": "0x421edd728b64072b3109dae8d802f4f68ce7c500", + "transactionIndex": "0x2a", + "value": "0x0", + "v": "0x0", + "r": "0x201918bf3ad7fc381d2ee9fc1e98aca86689047e12a72132607f14eec20da174", + "s": "0x6b2b27de69b7117bdf17c658fc869bf4695258c91fa5619ac48e324cfd587b3a", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xefbe7753f", + "maxPriorityFeePerGas": "0x942e8ac10", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x69b4a8d87d7210c822fc9f5fbfd5c8b57cdfd94e", + "gas": "0x9573c", + "gasPrice": "0xcb9858c6b", + "hash": "0xc98533b7639656531a0bfc02b63550d73f0ee190f8cc8678ce384423238e2c33", + "input": "0x46a73fb100000000000000000000000069b4a8d87d7210c822fc9f5fbfd5c8b57cdfd94e00000000000000000000000000000000000000000000000074d08c3ed2536a0000000000000000000000000000000000000000000000000000000199f3339dcd", + "nonce": "0x757", + "to": "0x07ff4e06865de4934409aa6ecea503b08cc1c78d", + "transactionIndex": "0x2b", + "value": "0x0", + "v": "0x0", + "r": "0xc9280d33d5045d3bbf90e26a5bfc14dd4a7ec67946fd5cde04778fe4d3e1431", + "s": "0x4b41fb195d135bcbe9ce783000cabbf3d2640dbf2323d27232b5d8fbce7730a2", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xde6b71408", + "maxPriorityFeePerGas": "0x934c1d557", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x2fa2492dc9f40e6d8b121f4c3a3d168164518b9b", + "gas": "0x12751", + "gasPrice": "0xcb7ec3f54", + "hash": "0xbea91c1af5e31818db825f0c6dd405d44b0b48b43c8b98a127a813fea7486138", + "input": "0xa9059cbb0000000000000000000000007cb53cb3ee14ab8abd1e779ef1af0d196a08dd790000000000000000000000000000000000000000000000000000000001924414", + "nonce": "0x2bed", + "to": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "transactionIndex": "0x2c", + "value": "0x0", + "v": "0x0", + "r": "0x2b11ba6f9d11935c7a997c5e1eb801dd2228f2f6dc994b97fa0c628b74954640", + "s": "0x47b855da30a7a2d5abee803d186152cfeb934e78e45161ad06dbbad52fc6162b", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xd9388121c", + "maxPriorityFeePerGas": "0x933288840", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x1390fbfa4f6ec14c54f475c1412e344aa328f736", + "gas": "0xd50d", + "gasPrice": "0xcb7ec3f54", + "hash": "0x34bb4ef4be92b502a6f07105ad48ff5021cf6cbfaf789679ddeb764cecd5e6ee", + "input": "0xa9059cbb0000000000000000000000008ea9ee6c60cf1fc0f3663e6978b71545f2f2b1610000000000000000000000000000000000000000000000000000000001924414", + "nonce": "0xb393", + "to": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "transactionIndex": "0x2d", + "value": "0x0", + "v": "0x0", + "r": "0x6c90d249e3279c1623bf1db24e709eadb84d9d10012d67b6332bf089ab74d962", + "s": "0x49687e9b1cb94d152850a76e3b9f4fb1c5849c88b9e9d0c62204a9130ab77e68", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xd9388121c", + "maxPriorityFeePerGas": "0x933288840", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x2381440e5461d0e5ebecef3b9050df09c52b7b0d", + "gas": "0xd4fe", + "gasPrice": "0xcb7ec3f54", + "hash": "0x4c3a99f82b5a11a4ccb683213ff9c718829a7501d0c30c8c4a003b013a64fffd", + "input": "0xa9059cbb0000000000000000000000003e6f17a978d70816aa89bed6661af703fba24f9c0000000000000000000000000000000000000000000000000000000000fbddbc", + "nonce": "0x45", + "to": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "transactionIndex": "0x2e", + "value": "0x0", + "v": "0x1", + "r": "0xd3b328d454cf846e4db6456c6e5ec394eaf4d57ca48f30cac46389f1e76abb3b", + "s": "0x6299ca6339f1ba700fa02a3888e25957d84abe3741c82edacda7e1537a263d08", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xd9388121c", + "maxPriorityFeePerGas": "0x933288840", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x3eeb05600ecb5d69c43d1fc67de4081d1b0a9bc3", + "gas": "0xd611", + "gasPrice": "0xcb7ec3f54", + "hash": "0x6ff1866d43882ad99054b40abc086f53267df2c179903f1269f3c39e893b1742", + "input": "0xa9059cbb0000000000000000000000003e6f17a978d70816aa89bed6661af703fba24f9c00000000000000000000000000000000000000000000000000000000025d7be8", + "nonce": "0x35", + "to": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "transactionIndex": "0x2f", + "value": "0x0", + "v": "0x1", + "r": "0x945591b26db082ac8b6c7e808f642b7e4bc4874524624fb6ca754258f936958f", + "s": "0xabc1c4dd479c845a2054bafd3e73a242ec42f1f3ad3d60d20f3ea2f4cd8063d", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xd9388121c", + "maxPriorityFeePerGas": "0x933288840", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xa1ab1c841898fe94900d00d9312ba954e4f81501", + "gas": "0x7a120", + "gasPrice": "0xcb77276ee", + "hash": "0xe17460923a231d38e48f86f047286d4ebd0ddfd7c1d4f553465bcdcfddb241e4", + "input": "0x6fadcf7200000000000000000000000066c5601330530076c2744a8d2a56efd8820883d200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000564b1dc65a400012794623af587fb9dda6c705422ff40ae9ef9fe2a1cd6ed3f37c8153ff42e0000000000000000000000000000000000000000000000000000000003bbdb025a3450b48315beb38bbdd50edcc12248234b6b1516223443b407714203a8556f00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000003a00000000000000000000000000000000000000000000000000000000000000480010100010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000068f2772400080c06020103040a05090e0f0b0d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000c69a43b800000000000000000000000000000000000000000000000000000000c69a43b800000000000000000000000000000000000000000000000000000000c6b6ec3600000000000000000000000000000000000000000000000000000000c6b6ec3600000000000000000000000000000000000000000000000000000000c6c0617f00000000000000000000000000000000000000000000000000000000c6c2681800000000000000000000000000000000000000000000000000000000c6c459ac00000000000000000000000000000000000000000000000000000000c6c459ac00000000000000000000000000000000000000000000000000000000c6c459ac00000000000000000000000000000000000000000000000000000000c6c8248300000000000000000000000000000000000000000000000000000000c6c8248300000000000000000000000000000000000000000000000000000000c6c8248300000000000000000000000000000000000000000000000000000000c6c82f0000000000000000000000000000000000000000000000000000000000c6c9c4a000000000000000000000000000000000000000000000000000000000c6cb6b2000000000000000000000000000000000000000000000000000000000c6cfb0e00000000000000000000000000000000000000000000000000000000000000006ff5a85ae7e783fbb62a5f20e84fc8f1576d93112b88597f97b860d4160d9b8e814669c683abdd1f67bb2e04021ae859cb81f4f6cca7a3435d82f6bfcc830c9d247cea2c4b01e46657f6e19d524b4b6879fc207aaa127e65b6f6b6f32e19a9efe238339f4b07e3cf1e65bb7ecbba743c68c475db4b89c6bd41dea1faa0467f4873ebc82643c4446e030d254ca72277ecf484ef3b0801da7311105b70a4dede87e30c2d37185a1d260ccd8d68c20d65d0d40b7dd1667eb4ac0dd25b62678349c8300000000000000000000000000000000000000000000000000000000000000060add932ccace941c2aff05d02e2e51ed700d17567d7ea2aeb7ff7c35938ab521781f710979a88155bc4f53043c7579fbc9d512a20ce73e43944a670de995e68c3d18d92b9d3e630e683e96d0dbf97faf8a864cd9776ac70ad231102e743287ef2a93f46cd6e179fd865acc8de3bd9bf5bec2b27fab61f386965c7e25bc19cf14383b49c5bd10e51e7bdf9faaa47e69167332b70869cca809523e8776314bb8c277ec80669f93ca706ab95a4f03b75726dad89b7493f95fe2cc176260b876243a00000000000000000000000000000000000000000000000000000000", + "nonce": "0x2750c40", + "to": "0x78c7933ee38fe8b204199cf0df0e8a1cc0a7ed30", + "transactionIndex": "0x30", + "value": "0x0", + "v": "0x135", + "r": "0x9bdf3e8ab38557060406157d5d9be0686d98f7aaa41a3edf05362b4fbf1440fc", + "s": "0x9aa2d680ef3eae4289af4a82f0cb8de7b1b9bcb75abeebf3ab58f550c68ae2a", + "type": "0x0", + "chainId": "0x89" + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x0c7e1f03d671b1185bea6fb06f114a0bd8bba2f8", + "gas": "0x12751", + "gasPrice": "0xcb1023a54", + "hash": "0xec03cc405935ef5acb5421ce47b9d479596f3a9e76c1e1f3c847b0d6f104673b", + "input": "0xa9059cbb000000000000000000000000b247dd2351ce220fc321ca873bee8793a3e78fb90000000000000000000000000000000000000000000000000000000012377ddd", + "nonce": "0xe4ac6", + "to": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "transactionIndex": "0x31", + "value": "0x0", + "v": "0x0", + "r": "0x66a40acb47ce2d5dc5b5d852100eaa7ead203ddb0393640078ebdbdc73656c61", + "s": "0x736fa588eac0f967eb2cbd83116975d710cc9ea78f9f9ac2d643f692c0fc24f4", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xd870ec8d0", + "maxPriorityFeePerGas": "0x92c3e8340", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xbbe2f6dc38b8d98041a174dc4d67d29c7036c11d", + "gas": "0xab32e", + "gasPrice": "0xcad68f4a6", + "hash": "0x6db59120868b43d29d992fd45781561f452cb0f8345109b13b987cde963b91e3", + "input": "0x727958d900000000000000000000000000000000000000000000000000000000000001000000000000000000000000001a9cd152f1f6f366827674b0db2b3f0e4cc15edf0000000000000000000000001e438d4414f38cd2beb71b73721181cde019f708000000000000000000000000000000000000000000000000001773a3578e4bbf0000000000000000000000000000000000000000000000008ac7230489e800000000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000d000000000000000000000000001a9cd152f1f6f366827674b0db2b3f0e4cc15edf000000000000000000000000eb6132faf257e9ebcaed78055c5302d81eb948be0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0ea0000000000000000000000000000000000000000000000000000000068f3c86b00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000b400000000000000000000000000000000000000000000000000000000000000a24d1b377ee00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000009045fd9ae2e157114df528fc12f3eb9e9c682fa270570cd935293ae66ec45d244ef748c431400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000eb6132faf257e9ebcaed78055c5302d81eb948be000000000000000000000000000000000000000000000000000000000001aab9000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000067465612d66690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a307830303030303030303030303030303030303030303030303030303030303030303030303030303030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000bd6c7b0d2f68c2b7805d88388319cfb6ecb50ea9000000000000000000000000bd6c7b0d2f68c2b7805d88388319cfb6ecb50ea9000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000001adb000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000084eedd56e1000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000000006e000000000000000000000000000000000000000000000000000000000000006e000000000000000000000000b563d0dd1ebbdaed8d2d6afc767981aa53d5660500000000000000000000000000000000000000000000000000000000000000000000000000000000f5402ccc5fc3181b45d7571512999d3eea0257b60000000000000000000000003b86917369b83a6892f553609f3c2f439c184e31000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000000000000000000000000000000000000001acd400000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000048403b87e5f0000000000000000000000000000000000000000000000000000000000019e120000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000000000000000000000000000000000000001acd4000000000000000000000000000000000000000000000000000000000001aab90000000000000000000000000000000000000000000000000000000068f284ef0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000001acd4000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000000010000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb500000000000000000000000000000000000000000000000000000000000000010000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000000000000000000000000000000000000000000180000000000000000000271031083a78e11b18e450fd139f9abea98cd53181b70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c33590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041b94f2bc1fe49cd8c3d8f32354dd8d0282f4dbccfd106d6395b1f4a9ec1537b21665b39fc38314eb63cbbc2488e1a5361a0e47b17e1d585852f812dd6ec5c52441b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000688734833b8c484c1502e9f468fc3ec5a86167477df1c45f3e80a4b90742a654f89ec01b3be675b481ec5f687f5f45342504826a84f43ad241fd308f08ee1ee84eb90a74eda97426945b0cdafa8f937fae657f9c888292eb40e573d3d6dc66f3e1532559d8df2a4356efe907d6d79f03dc6cfaca71328d1231e9da6d28fd387562cead5db0d38ef40ec40db608eb64502ea55070fada0ec8ee022fdc76caf5ba6a26904679e6405562db0f53223dd7e62154a74f3c5f9915b4431355d222584fc", + "nonce": "0xe9f6", + "to": "0x421edd728b64072b3109dae8d802f4f68ce7c500", + "transactionIndex": "0x32", + "value": "0x0", + "v": "0x1", + "r": "0x8923214e50ec89e881d8d4c9efb60833ffee8f84e8e88dc469bf5c7bb96d918c", + "s": "0x44e4c8780348e806997b8c26ce3eb762c75f7ee3800208bea9b2e3513cf23519", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xe773ffed7", + "maxPriorityFeePerGas": "0x928a53d92", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x4337042d8a539c80c92d84e141271db09f9bec68", + "gas": "0x41a5e", + "gasPrice": "0xc8a71ca94", + "hash": "0x623dee6619574090ca9c7a49b824e3f27cc320bb97666d1e84c4a926cfde97e6", + "input": "0x765e827f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000004337042d8a539c80c92d84e141271db09f9bec680000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000090ef96bcfb3e798c6565cbba6a587f14b58003d30000845adb2c711129d4f3966735ed98a9f09fc4ce5700000000000000000e54000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000001647100000000000000000000000000012645000000000000000000000000000000000000000000000000000000000000d697000000000000000000000009eca5e24000000000000000000000000dc9ef6a8300000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c4e9ae5c53010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000012050c705152931cfee3dd56c52fb09dea816c23000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000008b7296d51611b884179d703a764c58e9388161650000000000000000000000000000000000000000000095b68bfae975d3e00000000000000000000000000000000000000000000000000000000000000000000000000000000000008b7296d51611b884179d703a764c58e93881616500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006492a0a6ee00000000000000000000000000000000000000000000943b1377290cbd800000000000000000000000000000bb6cb4e3fc7ab30ac0f2bb2aeb10b35b180eb0a6363866323661303061613761613530383262656436333434000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000082777777777777aec03fd955926dbf81597e66834c00000000000000000000000000008a8e0000000000000000000000000000000100000068f2797a0000000000001fa610872b8ca38f63d5c296c1f115aa3d54f683c90081ea854cfff7a9ebb18e33e6d19491f60364b7a7192eb7a3cd4a364059cd98c384eb17b0e4bb306031421b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041ce4e17807d9b344b63b9ac0f4f9e7221286d686ea0f3cc0d30c611508a3fe3965af20f5de6c3db3b1024cd19887e631fbd17c6b998f7eed6170e629f36804e811b00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x10514", + "to": "0x0000000071727de22e5e9d8baf0edac6f37da032", + "transactionIndex": "0x33", + "value": "0x0", + "v": "0x1", + "r": "0xf8713feed459c85b362e9f9f2e00255c3143735409b637adfadf06b08ec4e2a9", + "s": "0x4651b6cc9db53fa63e70a8f82835f5d58c33ea953a84b2f7caf2034b6400ded", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xcb8e9d891", + "maxPriorityFeePerGas": "0x905ae1380", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xc842355888f47c9e4f0ebef7627a66724be01295", + "gas": "0x5208", + "gasPrice": "0xbaaed5514", + "hash": "0x1ce0355b9f1b91f15a9ffa8ff1d3507e7cba20d9f0a1194edd1d1c685c8852b4", + "input": "0x", + "nonce": "0xe35d", + "to": "0xe678ef5f5a83e1a27f4a71adfbe68e38c9a7439c", + "transactionIndex": "0x34", + "value": "0x2a3ce555697700", + "v": "0x1", + "r": "0xc0a58f826326a23fd61eb66ab60f81980f86115a1a30c0cb4f7dbb25d219f9dd", + "s": "0x687061139c0260f8689fd8135247ac645e07922bb7b81010527fe328ee3aa7f7", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xbe5e3f8a8", + "maxPriorityFeePerGas": "0x826299e00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x6c59fc4f60f6d0e7e7736a53361c4acdbe2a5ec1", + "gas": "0xb18b", + "gasPrice": "0xba43b7400", + "hash": "0x05fa2eacafd463b25e23d0e4af3f098543998273341ef3194327c264500e5e56", + "input": "0xa9059cbb000000000000000000000000c07be509c165cbb514d5132dae4d12c84f5d7b04000000000000000000000000000000000000000000000000000000000140c8df", + "nonce": "0xc315", + "to": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "transactionIndex": "0x35", + "value": "0x0", + "v": "0x0", + "r": "0xbc219f84347c266054b8b26305c6d7da01c7cc1e539b7a1c9640e9c2488cd6f8", + "s": "0x20f3fbdbe59ba83ffc491821e01c163cf26a966674ca20f6a39b437ba80cb94e", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xba43b7400", + "maxPriorityFeePerGas": "0xba43b7400", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x627dce579e09c17af69fecc1c89a1b99028fe262", + "gas": "0x1b289", + "gasPrice": "0xba43b7400", + "hash": "0x5eda75ceb6c75dd5dff36f9918b606598b653cdc655de5d0d71b27c3f1c01f68", + "input": "0x4e71d92d", + "nonce": "0x3609", + "to": "0x806fdab92b0fc7fbe4bbbe5117a54caa9283d5a4", + "transactionIndex": "0x36", + "value": "0x0", + "v": "0x0", + "r": "0xd5db1f18c705480b53b37e8db1d4a4eaf355e940d8fbe4a07d3cfb4abac0ba89", + "s": "0x735f08c71d4ad5a925061296644fa71718dff362e0397e668562b88acd6ac270", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xba43b7400", + "maxPriorityFeePerGas": "0xba43b7400", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x87db1d80922922467bbc4f3a7c37adbb48c687ce", + "gas": "0xf619", + "gasPrice": "0xba43b7400", + "hash": "0x52a20f506f81a209021691988867743265543825c7d05ae0cba09aba5a1a3be0", + "input": "0xa9059cbb00000000000000000000000024cee65d14744550b704f1319c0dfdd14381460900000000000000000000000000000000000000000000000000000000010b290a", + "nonce": "0xc998", + "to": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "transactionIndex": "0x37", + "value": "0x0", + "v": "0x1", + "r": "0x50926895168b202437210be4ad0e4110c3af8ccd3db5ba05bc659ef2dc699158", + "s": "0x166778224f950d30c022edaa0182c50bbf047dba5be4fb19085edbcfb7f0539a", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xba43b7400", + "maxPriorityFeePerGas": "0xba43b7400", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x33ae4eba259ac3774ab3ea8b31363bd42c444444", + "gas": "0x6084f", + "gasPrice": "0xb8dd02ee4", + "hash": "0x3cdd0e4fe3bb104e6f462c0926b992bfaba5c82532ba9edaee105904ef0087d5", + "input": "0x03c7fa74f21ea5e56d590319248412cf8f24a9d9eb50e3d45a1a26f20000011487b5d27527d9006d2918fb1fc62fbb978f384f5bf3aa14944e26f200000014aa3925bd1e4b0c6791c6390f29587899641ca5a046e97bfd0b270600000014c8526dec2a00000000", + "nonce": "0x1dacf", + "to": "0xde125f169caad0bce3aad68703e53b3fdac8a6e6", + "transactionIndex": "0x38", + "value": "0x0", + "v": "0x135", + "r": "0xca332393ba00bce10c2cc4c6307c0acd4a9bd2878b34f0dbbab125f61b265b94", + "s": "0x26d83c2d5b752c201dc9ae16c82d2bc40b8d8014d33a567014c0a29796e29df7", + "type": "0x0", + "chainId": "0x89" + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xd574e20377696baab23fe2d84d631d278514b92a", + "gas": "0x16b2f", + "gasPrice": "0xb7f128be2", + "hash": "0x7b347bf73f6b0d0bc1398e56d9dbb9ba6c8da702de742ef3a4a546c05671c840", + "input": "0xd9f0f7f50000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x13b", + "to": "0xda13c7553a654601667adf9a1a16248bab584f13", + "transactionIndex": "0x39", + "value": "0x0", + "v": "0x135", + "r": "0x49e1684c3bf30366c24e76a1241166ed8a11a59a0d37b0a9d0d747ee463f56de", + "s": "0x1d31a8da5a9f68582ab450cf14132c75c175bf91c48391d97aaa14136d70d861", + "type": "0x0", + "chainId": "0x89" + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xcc9fd591bb5f6c58a2cf9f1ae62ad240635fb6e2", + "gas": "0x13c68", + "gasPrice": "0xb77bfdd70", + "hash": "0xfb9f6e3cca3f6981e5204cf30f66322d8ebc4cc97b7cfcf66e93474423ede6f9", + "input": "0xa9059cbb000000000000000000000000fb31e10f13dfe0b86a03038a0f193d17e409631f00000000000000000000000000000000000000000000000000000000002ca6f0", + "nonce": "0x27bc", + "to": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "transactionIndex": "0x3a", + "value": "0x0", + "v": "0x135", + "r": "0x53b6a6df467fc3f8c906124b9cc15f432a0d0cae129b735b23e4b835d0ee1a57", + "s": "0x2b477179964283379f6872198edc6759bc2bc24acb5979ef638d01056d2046e8", + "type": "0x0", + "chainId": "0x89" + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x37ec299da749413caf5be620bb677401deb99356", + "gas": "0x3d81c", + "gasPrice": "0xb763b8e40", + "hash": "0xd639f5b1fd43924a91155c0987de1a42dd4bd407fc7cebb34e3b18113e206458", + "input": "0xb61d27f6000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000104414bf38900000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f61900000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000d951ec6f1d1746d1deb87210c75e0071fb99a9560000000000000000000000000000000000000000000000000000000068f278510000000000000000000000000000000000000000000000002a79e25207557c94000000000000000000000000000000000000000000000000002f4d07cb4216d6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x8d309", + "to": "0xd951ec6f1d1746d1deb87210c75e0071fb99a956", + "transactionIndex": "0x3b", + "value": "0x0", + "v": "0x136", + "r": "0x4f818c553f9710787c4e0379174a6fe68faba067d6db1d8eede6226bcee94bf7", + "s": "0xfcc814990d42695d2090689fa43938106561b597e270f4616d2b14e99fb7d12", + "type": "0x0", + "chainId": "0x89" + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x7744456071ca6dc06642e3f42f9d842417702a72", + "gas": "0x65150", + "gasPrice": "0xb2668eb21", + "hash": "0x212348872a0435c923455b418ecf538e9e90681d9a9d89f2205df535980a86f6", + "input": "0x200337d067cc0ffb000ac85905010c25000000000000000000000000c326d3847cc42e3b04461f7a724b741f497e469e020026f20000000000000000000000000712323f8451cf7acc1141083baa60cc70dc32a8", + "nonce": "0xa0877", + "to": "0xc616a705cd0e9a2250db612271ff3e600b0ffd2a", + "transactionIndex": "0x3c", + "value": "0xfe4a", + "v": "0x1", + "r": "0xaf37e7c49a382dbdf6e846c9aad750e7df7491b3658c511c71aefe20034718b7", + "s": "0x7ee21caf7a2e23a0c725a775f94d2d462cb59889ecc2210927665644690600b9", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xb8dd02eda", + "maxPriorityFeePerGas": "0x7a1a5340d", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xb3505060c1a38517bc08be582e09c19121506f8d", + "gas": "0x7e0aa", + "gasPrice": "0xaf1cb48d8", + "hash": "0xc322cebb8cca148105ecb1b6d24031d3a2f4bd476297077c27b26a714740986a", + "input": "0x9971225700000000000000000000000065d4c21a53f86f52efe32507ffe8ed9e1eb866f70000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c1cb016b40e410691317325ec030bf9af38cc0550000000000000000000000003f4fc8a8efa2d1a7ad34e9ef7a24cde25bb02d11ffffffffffffffffffffffffffffffffffffffffffffffffffffffffea6f5ec000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000083d74af7d5e4520000000000000000000000004cb0fe23f227e59a4127f5c68acad6feedbeff6a00000000000000000000000000000000000000000000000000000000000000104d4458363634383537393134313436380000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050000000000000000000000004cb0fe23f227e59a4127f5c68acad6feedbeff6a000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000d6df932a45c0f255f85145f286ea0b292b21c90b000000000000000000000000d6df932a45c0f255f85145f286ea0b292b21c90b000000000000000000000000ada58df0f643d959c2a47c9d4d4c1a4defe3f11c000000000000000000000000ada58df0f643d959c2a47c9d4d4c1a4defe3f11c000000000000000000000000b0897686c545045afc77cf20ec7a532e3120e0f1000000000000000000000000b0897686c545045afc77cf20ec7a532e3120e0f10000000000000000000000004cb0fe23f227e59a4127f5c68acad6feedbeff6a", + "nonce": "0x159ac", + "to": "0xc86b03c7231964370ff8a45a197ea165c10ca229", + "transactionIndex": "0x3d", + "value": "0x0", + "v": "0x0", + "r": "0xa2442823f2a2427d5a73f4ad25be6bd5b59d874ff7e4c881dae27727d40a8f7b", + "s": "0x117a2987d560a7ddad1b496989f1d7bd07687db1d7d387713c857a333fe77d80", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x110e0466b1", + "maxPriorityFeePerGas": "0x76d0791c4", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x0677618591badb4d1f8da88b3e4dd314ec7edf2c", + "gas": "0x130a6", + "gasPrice": "0xaed7dda54", + "hash": "0xae1985c2549e2721483f6b7e934486d4b49c18f2c1a5d9e07472751ec2f390d7", + "input": "0xe51ace160000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004a4653e8b59be8bda6e5bc80e5a5963a32303235313031373834307c392c382c332c31302c372c312c362c322c352c347c32303235e5b9b43130e69c883138e697a52031373a30343a333500000000000000000000000000000000000000000000", + "nonce": "0x145d9", + "to": "0xad4992de024675832bc950d99141d5e34b4be3bd", + "transactionIndex": "0x3e", + "value": "0x0", + "v": "0x1", + "r": "0x535a2583b127ad2f4b7d37bef83dc52c7e349d87eb0859564701208cb1339e1a", + "s": "0x4850bd2a9186be615c0564dd8bb8dfaea689b8abe8c5794d7b3946d175e0da24", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xbe8669009", + "maxPriorityFeePerGas": "0x768ba2340", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xeb2cd6fd007e6b7ac215a4b93da9d7163761a048", + "gas": "0x29366", + "gasPrice": "0xa8639acf7", + "hash": "0x8f30b64de36823056eff1d8211e906161ea5e6de3e4d2e747320eaf20fd23276", + "input": "0x1e83409a000000000000000000000000eb2cd6fd007e6b7ac215a4b93da9d7163761a048", + "nonce": "0x19", + "to": "0x1964ca90474b11ffd08af387b110ba6c96251bfc", + "transactionIndex": "0x3f", + "value": "0x0", + "v": "0x135", + "r": "0x79907e50a1b3d0b016c6c863572dd8aeee8d6e3307fd4c7caa1e4bf115468de7", + "s": "0x500bf2325006b6bc569d434d281518f4c0e3e98b2482cd354b04cdafe1bd684", + "type": "0x0", + "chainId": "0x89" + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x0ebee19f9cb5dc328b5e1bce46acad5dc25f6dc3", + "gas": "0x29e0b", + "gasPrice": "0xa85fad2d4", + "hash": "0x1c32d49b18d74f5cf3c8c6d9fc53c4547fa2c2469018d2be1c0d25cea47c540a", + "input": "0x9ebea88c00000000000000000000000000000000000000000000000000000005617e3ea00000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0x4", + "to": "0x1964ca90474b11ffd08af387b110ba6c96251bfc", + "transactionIndex": "0x40", + "value": "0x0", + "v": "0x1", + "r": "0xd969be2e4637f904ca10d40d9ec0844c60094502ff2b3feba046fec88b7f9930", + "s": "0x66eae1ffd0d931490fec0109a63d8899d874c27e02dab4992a1953ab5ff66d75", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xfad47d606", + "maxPriorityFeePerGas": "0x701371bc0", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xe2aaba48293da9eb465ecc97b42112d067f323e7", + "gas": "0x2a162", + "gasPrice": "0xa85fad2d4", + "hash": "0x69574085310c926fcba2e29daddf6c29dabe9defb7cf7ac2c25c4de587ad0f7c", + "input": "0x9ebea88c00000000000000000000000000000000000000000000000000000000389fd9800000000000000000000000000000000000000000000000000000000000000001", + "nonce": "0x549", + "to": "0x1964ca90474b11ffd08af387b110ba6c96251bfc", + "transactionIndex": "0x41", + "value": "0x0", + "v": "0x1", + "r": "0xb82cc6127bc7396ab669ed872d72a2ca13d6343fad6d512e1111158b828d8081", + "s": "0x4e89efdbbe1e0335c40cbca2b2b0b2c61247fa5a86d3f19369ea9c08fc9b4fa1", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xfad47d606", + "maxPriorityFeePerGas": "0x701371bc0", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x17143cd6fc113f06750d66031db73ab4ec387496", + "gas": "0x13e2ce", + "gasPrice": "0xa85fad2d4", + "hash": "0xe3d9df40dd407dfe0d262c420c28bd0c9d121a5a310e919623593993fd325394", + "input": "0x46a73fb100000000000000000000000017143cd6fc113f06750d66031db73ab4ec3874960000000000000000000000000000000000000000000000014b57f12b942f760000000000000000000000000000000000000000000000000000000199f333a214", + "nonce": "0x32a", + "to": "0x07ff4e06865de4934409aa6ecea503b08cc1c78d", + "transactionIndex": "0x42", + "value": "0x0", + "v": "0x1", + "r": "0x62e73113a7af399a396027e22ccd236912f12cf7dc5ebcd504ee5ed7ba39ccae", + "s": "0x751c2a87c9191776007920145bc820e1bac6b35bb81c465a9fec249743e98b14", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xfad47d606", + "maxPriorityFeePerGas": "0x701371bc0", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x956631db83dd33bd39c3bf46480e24bdc34babfc", + "gas": "0xfdd8", + "gasPrice": "0xa82a1e454", + "hash": "0xbac74ae3f3e51655916f9ff9106da286798419baa9d873bf6ca089f6261679db", + "input": "0xa9059cbb000000000000000000000000be9058275aed9dff0c0d85b60a2977347958dc340000000000000000000000000000000000000000000000000000000000fcaf80", + "nonce": "0x1", + "to": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "transactionIndex": "0x43", + "value": "0x0", + "v": "0x0", + "r": "0x9ad94278fcf0d3b75107d799d1a1d0b1ceb5b2ed84369b11ba7a19aa2de85d0", + "s": "0x151c6b09ce2008f2c11f33aa63114e4a17ec64bdc7238a545bc589da836516d0", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xb53d7ab35", + "maxPriorityFeePerGas": "0x6fdde2d40", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x75e8b0681feb2244f4aee65ace74e7a5eec9e7dd", + "gas": "0xa91c4", + "gasPrice": "0xa81b697bb", + "hash": "0x5ceff468005f835ad3f6e5b151c8a0715d82e676dd4c8d4bb922a86edde415d6", + "input": "0x0a03d63e0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f125d03aa14e6544a2fe147aa997c6722d27300e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000008ac7230489e800000000000000000000000000000000000000000000000000086465753999eb69980000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000003200000000000000000000000069aaaff7419fd2ce58079f05ff06b2ff66d446d200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a631d042814547cf15f6f60ae4f36591fefe70a8000000000000000000000000f125d03aa14e6544a2fe147aa997c6722d27300e0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf1270000000000000000000000000edf6066a2b290c185783862c7f4776a2c8077ad10000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0xdb", + "to": "0x81ba6064523801445531043acecbd1066ab49897", + "transactionIndex": "0x44", + "value": "0x0", + "v": "0x0", + "r": "0x2a1e7a06299297fc6d97fc2c36e125781512032960a872d27fb4520025710120", + "s": "0x2c745756c7b4ef41d67a743c50c90c9e4af7e35e35f2179dbb9f15bb2a2ad51a", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xa81b697bb", + "maxPriorityFeePerGas": "0xa81b697bb", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x1bc341e7b78f37617980ff5ea326c94f1e35c113", + "gas": "0x58d02", + "gasPrice": "0xa80e76315", + "hash": "0x3c20fe7a3ab8ea0de6d3fce26f87485421b69deafc5c703934135635ca2d5604", + "input": "0x1fad948c000000000000000000000000000000000000000000000000000000000000004000000000000000000000000030face1b7895cc5886393ecbcf4fb2fedb37366300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000edfe82b737946f8abb751ddfe960a6b1dce8ac390000000000000000000000000000000000000000000000000000000000035b420000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000100be0000000000000000000000000000000000000000000000000000000000012a3e0000000000000000000000000000000000000000000000000000000000012a590000000000000000000000000000000000000000000000000000001361cecefa0000000000000000000000000000000000000000000000000000000c6de39ae400000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4b61d27f60000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000afa22ff7a96465257f51f9617d1c29bc4029538d000000000000000000000000000000000000000000000000000000000003d090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000957cea357b5ac0639f89f9e378a1f03aa5005c0a250000000000000000000000000000000000000000000000000000000068fbb1a30000000000000000000000000000000000000000000000000000000068f2772375d9bf4a7c8424b749506bb038cfac7d3ea38ade885b41d899926155690debf962834c4307d532157c3a394d0a954e55585dc57d404e275026e681146fd9b4e81b00000000000000000000000000000000000000000000000000000000000000000000000000000000000041645359b4ec84d66eec9915bc5a78912194ae6324436b1404a1805aca837299a41edb76423e5770f3a30b19838bce54cfe7c21c60a9087030e2594c2c8ab6f85c1c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x466ec", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": "0x45", + "value": "0x0", + "v": "0x1", + "r": "0xe00d6cdfa0927b2579bb28560cdc83c343a9f3f72dc54d351d965c4e879674e6", + "s": "0x7a2e2df02bc72ae96a159f5bc04fb7ab2868b720aa62031d1ac76b4c5b1cd606", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xb6663441e", + "maxPriorityFeePerGas": "0x6fc23ac01", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xf4be02889c9e0741659b75558a4c7af99d014248", + "gas": "0x382f7", + "gasPrice": "0xa80e76314", + "hash": "0x323d2b4c890b7b235d5d5bd6ee4314ac39b640da35bbc2f12b95873cae5f1868", + "input": "0xa694fc3a000000000000000000000000000000000000000000000000000000000109aa64", + "nonce": "0x550c", + "to": "0x5cb9fcd65cfe3eefde88a7084caf2625d516bdd0", + "transactionIndex": "0x46", + "value": "0x0", + "v": "0x1", + "r": "0x64262e7fb5b19102fb7330c75db02b10910039d07c92ac544fc946f85ecc4d38", + "s": "0x7c5a3b72e7d68c7cfa3bdb3143ea3d6e08605a48b8ddea1c214bec34b646ee4b", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xbbdbe2c02", + "maxPriorityFeePerGas": "0x6fc23ac00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xeeb336ab585f619adcaeac811b449f473007dae5", + "gas": "0x11355", + "gasPrice": "0xa80e76314", + "hash": "0xbb357ba46026d31c84db6ae1a075913598537f6724721737adb69dcfefc72a6c", + "input": "0x095ea7b30000000000000000000000000000000000001ff3684f28c67538d4d072c22734ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": "0x31", + "to": "0x3f94618ad346f34f43e27f0cf46decbb0d396b1b", + "transactionIndex": "0x47", + "value": "0x0", + "v": "0x0", + "r": "0xbb551cde8e556076f72e30d01e345c151a0954afa54dd3f4cbf563c1d32d20e2", + "s": "0xbf080d5c7f806f323e69837bbf4e4b5d29d30558fc65d6e99c0427ca56d27cd", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xb2564e716", + "maxPriorityFeePerGas": "0x6fc23ac00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xa74dd91391aa3af0f31ab2aed8060037d598dbf5", + "gas": "0x358d9", + "gasPrice": "0xa80e76314", + "hash": "0xb77ea2685edb807639b20434ef19ab9aa6c9d391d9d0a0cda83c628d41e51f6f", + "input": "0xe7acab24000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000006000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000a74dd91391aa3af0f31ab2aed8060037d598dbf500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000004be27b67681f237409c030c00f76e1fa09b3ae910000000000000000000000002d1a340cd83434243d090931afabf95b7d3078b00000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000068ec9dfb0000000000000000000000000000000000000000000000000000000069158ac600000000000000000000000000000000000000000000000000000000000000001ebc9d951d4da48b0000000000000000b195c145f8b0a96824586aab3292f05d87328c9043e7bf343695554eaaf5a8892f7205e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000e28d2d8746d855251ba677a91626009cb33aa4f9000000000000000000000000000000000000000000000000000000000000a6ba00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000448bde1bd7547300000000000000000000000000000000000000000000000000448bde1bd754730000000000000000000000000004be27b67681f237409c030c00f76e1fa09b3ae910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001661ea7c079e30000000000000000000000000000000000000000000000000001661ea7c079e3000000000000000000000000000ca9337244b5f04cb946391bc8b8a980e988f9a6a00000000000000000000000000000000000000000000000000000000000000417e9fc014e112dc23727d512b47d8b046dd3641ace3750ec9782797cf2377736e64a75cc10d388c58282c3e037effcea4ca4e02373af732cb12cd65e191127bfb1b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007e0000000000000000000000000000000000000000000000000068f2777713dbaaf80711d2d2a8a1a43527582ea6b7a1ee9a288f2d92ba569d53a4dd8b5c816faeaae400fb270ccc33ac21d151de5f9cb1965c93a9085356a958a5c6503a00c8f454dc9dd2a2a3ad662565c5e81325e2d5da936425c0f9316ff21f0202b5f9000000000000000000000000000000000000000000000000000000000000000000001d4da48be76ad6c1", + "nonce": "0x0", + "to": "0x0000000000000068f116a894984e2db1123eb395", + "transactionIndex": "0x48", + "value": "0x45f1fcc397ce56000", + "v": "0x0", + "r": "0xbc8df59246228c740ce1ae71aaa0919ccdf428b1678496eefa86370a7ccaf84f", + "s": "0x1221682dff8c8e78dd60b9a1c1a4bace414ada66d22ffd5019e3ab3dcea978fd", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xba8c06a0a", + "maxPriorityFeePerGas": "0x6fc23ac00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x3f4e1a3f21a90af960acc652e9bf8dd7a21f3964", + "gas": "0x58d02", + "gasPrice": "0xa80e76314", + "hash": "0x837096a8ab8b1faf21028960e972f13c9b0465e5d6b92106136a39cfc7a8ab55", + "input": "0x1fad948c00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003f4e1a3f21a90af960acc652e9bf8dd7a21f396400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000edfe82b737946f8abb751ddfe960a6b1dce8ac390000000000000000000000000000000000000000000000000000000000035b420000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000100be0000000000000000000000000000000000000000000000000000000000012a3e0000000000000000000000000000000000000000000000000000000000012a590000000000000000000000000000000000000000000000000000001361cecefa0000000000000000000000000000000000000000000000000000000c6de39ae400000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4b61d27f60000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000afa22ff7a96465257f51f9617d1c29bc4029538d000000000000000000000000000000000000000000000000000000000003d090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000957cea357b5ac0639f89f9e378a1f03aa5005c0a250000000000000000000000000000000000000000000000000000000068fbb1a30000000000000000000000000000000000000000000000000000000068f2772375d9bf4a7c8424b749506bb038cfac7d3ea38ade885b41d899926155690debf962834c4307d532157c3a394d0a954e55585dc57d404e275026e681146fd9b4e81b00000000000000000000000000000000000000000000000000000000000000000000000000000000000041645359b4ec84d66eec9915bc5a78912194ae6324436b1404a1805aca837299a41edb76423e5770f3a30b19838bce54cfe7c21c60a9087030e2594c2c8ab6f85c1c00000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x1600b", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": "0x49", + "value": "0x0", + "v": "0x1", + "r": "0x17ec2393e40fba2a5946b2eaa22b58873b5c7afdb67e121a7c122acaef7c4e61", + "s": "0x60ea81197eb27ae594ae9213edb96012b8e5ebd0c205e3a93e9716ed6f807500", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xb6663441d", + "maxPriorityFeePerGas": "0x6fc23ac00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x717b9d05d601eacddb9e46730968f20503baf939", + "gas": "0x4dea7", + "gasPrice": "0xa80e76314", + "hash": "0x0e6227e1d4043240a088280f67d7515dd48276049f70e2256273a315a38564d0", + "input": "0x14d08fca00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000717b9d05d601eacddb9e46730968f20503baf93900000000000000000000000000000000238c69b2879b4fb4bcbd723f88266e94000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000006b8789a1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c20d16000000000000000000000000ab28e2d6e4713dc0f6f1addf74abc3d2313445cc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004ad0000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000b547275737457616c6c657400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f5042e6ffac5a625d4e7848e0b01373d8eb9e222000000000000000000000000f5042e6ffac5a625d4e7848e0b01373d8eb9e222000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006b8789a100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001e430be55670000000000000000000000000000000000000000000000000000000000000060000000000000000000000000717b9d05d601eacddb9e46730968f20503baf939000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000006423b872dd00000000000000000000000069460570c93f9de5e2edbc3052bf10125f0ca22d000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef000000000000000000000000000000000000000000000000000000006b8789a100000000000000000000000000000000000000000000000000000000463e2e2d32a30d1913e6507f0b52cc8c9068c40c40dba5e0b4f2f7fbff273fdc00000000000000000000000000000000000000000000000000000000", + "nonce": "0x1", + "to": "0x69460570c93f9de5e2edbc3052bf10125f0ca22d", + "transactionIndex": "0x4a", + "value": "0x0", + "v": "0x0", + "r": "0xd3e0cae31b9b5700d79cc0466b7db7c86b3aaa3d272576629d884d5a04b254a9", + "s": "0x1c71e514e9e6684394dfbe78feb762aaeac3e67d4c7232efec249ac4287d463e", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xb8feb6cfe", + "maxPriorityFeePerGas": "0x6fc23ac00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x6de2c1272bdb0e6239ff2be8db566222d442e320", + "gas": "0x7530", + "gasPrice": "0xa80e76314", + "hash": "0x322088c8eb37eccf9793707b51ebc255b9ff725ef0d743d5cbf8ddc87e3ee929", + "input": "0x", + "nonce": "0x23524", + "to": "0x2110a7562c8f77794b7a467fcb7fc6620bd7fcb5", + "transactionIndex": "0x4b", + "value": "0x93cafac6a8000", + "v": "0x0", + "r": "0xcba95768d245b6eb7f19d3e83195dff00bd63c5a2516c836518e420330bdf8c2", + "s": "0x1201c552fe603ca97cf8a6006f8c16dd628410cd255c591f295b8868c8821754", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x131e76b544", + "maxPriorityFeePerGas": "0x6fc23ac00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x8d3f0b86b5b75fd958848d9d4d225ea24eb623dc", + "gas": "0x50478", + "gasPrice": "0xa80e76314", + "hash": "0x1158381d198f050008fc2a6f6eec67e5dcebc409e71f9e1340a3d03b7c2dc9b6", + "input": "0x99712257000000000000000000000000fbeaecbf4d3998110a73de1475fa325122800960000000000000000000000000000000000000000000000000000000000000010000000000000000000000000044eafd0f6986d6bf85d3d0a782e4bd85786e261f000000000000000000000000fea44b7151138b21eb61aaa1fa4cc1a5f5eb93b7000000000000000000000000000000000000000000000000000000000e8b250000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000050e8f79760340c0000000000000000000000004cb0fe23f227e59a4127f5c68acad6feedbeff6a00000000000000000000000000000000000000000000000000000000000000104d44583936323636343838353234343500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000004cb0fe23f227e59a4127f5c68acad6feedbeff6a000000000000000000000000b0897686c545045afc77cf20ec7a532e3120e0f1000000000000000000000000b0897686c545045afc77cf20ec7a532e3120e0f100000000000000000000000006d02e9d62a13fc76bb229373fb3bbbd1101d2fc00000000000000000000000006d02e9d62a13fc76bb229373fb3bbbd1101d2fc000000000000000000000000d6df932a45c0f255f85145f286ea0b292b21c90b000000000000000000000000d6df932a45c0f255f85145f286ea0b292b21c90b0000000000000000000000000000000000000000000000000000000000001010000000000000000000000000000000000000000000000000000000000000101000000000000000000000000061299774020da444af134c82fa83e3810b30999100000000000000000000000061299774020da444af134c82fa83e3810b3099910000000000000000000000002c89bbc92bd86f8075d1decc58c7f4e0107f286b0000000000000000000000002c89bbc92bd86f8075d1decc58c7f4e0107f286b000000000000000000000000ada58df0f643d959c2a47c9d4d4c1a4defe3f11c000000000000000000000000ada58df0f643d959c2a47c9d4d4c1a4defe3f11c000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000001bfd67037b42cf73acf2047067bd4f2c47d9bfd60000000000000000000000001bfd67037b42cf73acf2047067bd4f2c47d9bfd60000000000000000000000004cb0fe23f227e59a4127f5c68acad6feedbeff6a", + "nonce": "0x289241", + "to": "0x5c9a8a94959d0037964c63e2bebd7a196fecae68", + "transactionIndex": "0x4c", + "value": "0x0", + "v": "0x1", + "r": "0x55e099378d9843e3ac19d59bd7511a672848d8f825f326a206c41ea13fbb26eb", + "s": "0x7684902de8e3d967c5c775d55c5b564e72967e03e5e7a7f180feaf5064729f9b", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x109d2080ed", + "maxPriorityFeePerGas": "0x6fc23ac00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xe749c8f63b3867472610cc9577cd2c753369c086", + "gas": "0x21ae61", + "gasPrice": "0xa80e76314", + "hash": "0xd3df30349a48ab2189b167ee2bb09501e5b5e73a67ce3df54bf73f41e39e2112", + "input": "0x60c060405260056080908152640312e312e360dc1b60a052600390610024908261042e565b5034801561003157600080fd5b50604051611f9f380380611f9f83398101604081905261005091610510565b61005b60003361008b565b50604080518082019091526007815266125b9a5d1a585b60ca1b602082015261008490826100c3565b505061061a565b6000806100988484610249565b905080156100ba5760008481526001602052604090206100b890846102f3565b505b90505b92915050565b60006100ce33610308565b6101105760405162461bcd60e51b815260206004820152600e60248201526d26bab9ba1031329030b236b4b71760911b60448201526064015b60405180910390fd5b81516000036101565760405162461bcd60e51b815260206004820152601260248201527126bab9ba103737ba1031329032b6b83a3c9760711b6044820152606401610107565b6040805160608101825284815260208101849052429181019190915260028054600181018255600091909152815182916003027f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace019081906101b8908261042e565b50602082015160018201906101cd908261042e565b50604091820151600290910155516101e69082906105c2565b604051908190038120907f0f8dffddc4a23c5b334b191914c360e956e800427735455d92170b30b1494e3f90600090a26040517fa5d4097edda6d87cb9329af83fb3712ef77eeb13738ffe43cc35a4ce305ad96290600090a15060019392505050565b6000828152602081815260408083206001600160a01b038516845290915281205460ff166102eb576000838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556102a33390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45060016100bd565b5060006100bd565b60006100ba836001600160a01b038416610348565b6001600160a01b03811660009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205460ff166100bd565b60008181526001830160205260408120546102eb575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556100bd565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806103b957607f821691505b6020821081036103d957634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561042957806000526020600020601f840160051c810160208510156104065750805b601f840160051c820191505b818110156104265760008155600101610412565b50505b505050565b81516001600160401b038111156104475761044761038f565b61045b8161045584546103a5565b846103df565b6020601f82116001811461048f57600083156104775750848201515b600019600385901b1c1916600184901b178455610426565b600084815260208120601f198516915b828110156104bf578785015182556020948501946001909201910161049f565b50848210156104dd5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b60005b838110156105075781810151838201526020016104ef565b50506000910152565b60006020828403121561052257600080fd5b81516001600160401b0381111561053857600080fd5b8201601f8101841361054957600080fd5b80516001600160401b038111156105625761056261038f565b604051601f8201601f19908116603f011681016001600160401b03811182821017156105905761059061038f565b6040528181528282016020018610156105a857600080fd5b6105b98260208301602086016104ec565b95945050505050565b6000825180516105d68185602085016104ec565b601f19601f8201168401915050602084015180516105f88184602085016104ec565b601f19601f820116830192505050604084015181526020810191505092915050565b611976806106296000396000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c806370480275116100cd578063a217fddf11610081578063ca15c87311610066578063ca15c87314610331578063d547741f14610344578063e8a3d4851461035757600080fd5b8063a217fddf14610316578063a3246ad31461031e57600080fd5b80639010d07c116100b25780639010d07c1461028557806391d14854146102bd57806398daac831461030157600080fd5b8063704802751461026a5780638bad0c0a1461027d57600080fd5b806331ae450b11610124578063392f37e911610109578063392f37e91461022d57806354fd4d501461024257806356ce0e6c1461025757600080fd5b806331ae450b1461020557806336568abe1461021a57600080fd5b8063248a9ca311610155578063248a9ca3146101ae57806324d7806c146101df5780632f2ff15d146101f257600080fd5b806301ffc9a7146101715780631785f53c14610199575b600080fd5b61018461017f366004611184565b61035f565b60405190151581526020015b60405180910390f35b6101ac6101a73660046111ef565b6103bb565b005b6101d16101bc36600461120a565b60009081526020819052604090206001015490565b604051908152602001610190565b6101846101ed3660046111ef565b6103d5565b6101ac610200366004611223565b610422565b61020d61044d565b604051610190919061124f565b6101ac610228366004611223565b6104ff565b61023561055d565b604051610190919061133d565b61024a6106ed565b6040516101909190611350565b61018461026536600461146a565b61077b565b6101ac6102783660046111ef565b61094f565b6101ac610965565b6102986102933660046114d3565b61097e565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610190565b6101846102cb366004611223565b60009182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b61030961099d565b60405161019091906114f5565b6101d1600081565b61020d61032c36600461120a565b610b2a565b6101d161033f36600461120a565b610b44565b6101ac610352366004611223565b610b5b565b61024a610b80565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f0000000000000000000000000000000000000000000000000000000014806103b557506103b582610c1d565b92915050565b60006103c681610cb4565b6103d1600083610b5b565b5050565b73ffffffffffffffffffffffffffffffffffffffff811660009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205460ff166103b5565b60008281526020819052604090206001015461043d81610cb4565b6104478383610cbe565b50505050565b6060600061045a81610b44565b905060008167ffffffffffffffff81111561047757610477611363565b6040519080825280602002602001820160405280156104a0578160200160208202803683370190505b50905060005b828110156104f8576104b960008261097e565b8282815181106104cb576104cb611578565b73ffffffffffffffffffffffffffffffffffffffff909216602092830291909101909101526001016104a6565b5092915050565b73ffffffffffffffffffffffffffffffffffffffff8116331461054e576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105588282610cf3565b505050565b61058160405180606001604052806060815260200160608152602001600081525090565b60028054610591906001906115a7565b815481106105a1576105a1611578565b90600052602060002090600302016040518060600160405290816000820180546105ca906115e1565b80601f01602080910402602001604051908101604052809291908181526020018280546105f6906115e1565b80156106435780601f1061061857610100808354040283529160200191610643565b820191906000526020600020905b81548152906001019060200180831161062657829003601f168201915b5050505050815260200160018201805461065c906115e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610688906115e1565b80156106d55780601f106106aa576101008083540402835291602001916106d5565b820191906000526020600020905b8154815290600101906020018083116106b857829003601f168201915b50505050508152602001600282015481525050905090565b600380546106fa906115e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610726906115e1565b80156107735780601f1061074857610100808354040283529160200191610773565b820191906000526020600020905b81548152906001019060200180831161075657829003601f168201915b505050505081565b6000610786336103d5565b6107f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4d7573742062652061646d696e2e00000000000000000000000000000000000060448201526064015b60405180910390fd5b815160000361085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4d757374206e6f7420626520656d7074792e000000000000000000000000000060448201526064016107e8565b6040805160608101825284815260208101849052429181019190915260028054600181018255600091909152815182916003027f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace019081906108be9082611682565b50602082015160018201906108d39082611682565b50604091820151600290910155516108ec90829061177d565b604051908190038120907f0f8dffddc4a23c5b334b191914c360e956e800427735455d92170b30b1494e3f90600090a26040517fa5d4097edda6d87cb9329af83fb3712ef77eeb13738ffe43cc35a4ce305ad96290600090a15060019392505050565b600061095a81610cb4565b6103d1600083610422565b600061097081610cb4565b61097b6000336104ff565b50565b60008281526001602052604081206109969083610d20565b9392505050565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610b2157838290600052602060002090600302016040518060600160405290816000820180546109f4906115e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a20906115e1565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b50505050508152602001600182018054610a86906115e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab2906115e1565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b50505050508152602001600282015481525050815260200190600101906109c1565b50505050905090565b60008181526001602052604090206060906103b590610d2c565b60008181526001602052604081206103b590610d39565b600082815260208190526040902060010154610b7681610cb4565b6104478383610cf3565b60603073ffffffffffffffffffffffffffffffffffffffff1663392f37e96040518163ffffffff1660e01b8152600401600060405180830381865afa158015610bcd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bf59190810190611822565b60200151604051602001610c0991906118cc565b604051602081830303815290604052905090565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806103b557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146103b5565b61097b8133610d43565b600080610ccb8484610dc9565b90508015610996576000848152600160205260409020610ceb9084610ec5565b509392505050565b600080610d008484610ee7565b90508015610996576000848152600160205260409020610ceb9084610fa2565b60006109968383610fc4565b6060600061099683610fee565b60006103b5825490565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166103d1576040517fe2517d3f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82166004820152602481018390526044016107e8565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915281205460ff16610ebd5760008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055610e5b3390565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45060016103b5565b5060006103b5565b60006109968373ffffffffffffffffffffffffffffffffffffffff841661104a565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915281205460ff1615610ebd5760008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8616808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45060016103b5565b60006109968373ffffffffffffffffffffffffffffffffffffffff8416611091565b6000826000018281548110610fdb57610fdb611578565b9060005260206000200154905092915050565b60608160000180548060200260200160405190810160405280929190818152602001828054801561103e57602002820191906000526020600020905b81548152602001906001019080831161102a575b50505050509050919050565b6000818152600183016020526040812054610ebd575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556103b5565b6000818152600183016020526040812054801561117a5760006110b56001836115a7565b85549091506000906110c9906001906115a7565b905080821461112e5760008660000182815481106110e9576110e9611578565b906000526020600020015490508087600001848154811061110c5761110c611578565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061113f5761113f611911565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506103b5565b60009150506103b5565b60006020828403121561119657600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461099657600080fd5b803573ffffffffffffffffffffffffffffffffffffffff811681146111ea57600080fd5b919050565b60006020828403121561120157600080fd5b610996826111c6565b60006020828403121561121c57600080fd5b5035919050565b6000806040838503121561123657600080fd5b82359150611246602084016111c6565b90509250929050565b602080825282518282018190526000918401906040840190835b8181101561129d57835173ffffffffffffffffffffffffffffffffffffffff16835260209384019390920191600101611269565b509095945050505050565b60005b838110156112c35781810151838201526020016112ab565b50506000910152565b600081518084526112e48160208601602086016112a8565b601f01601f19169290920160200192915050565b600081516060845261130d60608501826112cc565b90506020830151848203602086015261132682826112cc565b915050604083015160408501528091505092915050565b60208152600061099660208301846112f8565b60208152600061099660208301846112cc565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040516060810167ffffffffffffffff811182821017156113b5576113b5611363565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156113e4576113e4611363565b604052919050565b600067ffffffffffffffff82111561140657611406611363565b50601f01601f191660200190565b600082601f83011261142557600080fd5b8135611438611433826113ec565b6113bb565b81815284602083860101111561144d57600080fd5b816020850160208301376000918101602001919091529392505050565b6000806040838503121561147d57600080fd5b823567ffffffffffffffff81111561149457600080fd5b6114a085828601611414565b925050602083013567ffffffffffffffff8111156114bd57600080fd5b6114c985828601611414565b9150509250929050565b600080604083850312156114e657600080fd5b50508035926020909101359150565b6000602082016020835280845180835260408501915060408160051b86010192506020860160005b8281101561156c577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08786030184526115578583516112f8565b9450602093840193919091019060010161151d565b50929695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b818103818111156103b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600181811c908216806115f557607f821691505b60208210810361162e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f82111561055857806000526020600020601f840160051c8101602085101561165b5750805b601f840160051c820191505b8181101561167b5760008155600101611667565b5050505050565b815167ffffffffffffffff81111561169c5761169c611363565b6116b0816116aa84546115e1565b84611634565b6020601f82116001811461170257600083156116cc5750848201515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600385901b1c1916600184901b17845561167b565b600084815260208120601f198516915b828110156117325787850151825560209485019460019092019101611712565b508482101561176e57868401517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b60f8161c191681555b50505050600190811b01905550565b6000825180516117918185602085016112a8565b601f19601f8201168401915050602084015180516117b38184602085016112a8565b601f19601f820116830192505050604084015181526020810191505092915050565b600082601f8301126117e657600080fd5b81516117f4611433826113ec565b81815284602083860101111561180957600080fd5b61181a8260208301602087016112a8565b949350505050565b60006020828403121561183457600080fd5b815167ffffffffffffffff81111561184b57600080fd5b82016060818503121561185d57600080fd5b611865611392565b815167ffffffffffffffff81111561187c57600080fd5b611888868285016117d5565b825250602082015167ffffffffffffffff8111156118a557600080fd5b6118b1868285016117d5565b60208301525060408201516040820152809250505092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c000000000081526000825161190481601b8501602087016112a8565b91909101601b0192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122026c86435bbfd82325f62a956f7ec52713564332ffd2f459b4d0a688d9cdc222964736f6c634300081e0033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002b07b226964223a2254412d30303030323736222c226e616d65223a225279646572204375702032303235202d205465616d204575726f7065205265736572766564205061726b696e67205369676e222c2264617465223a22323032352d31302d31375431373a30343a33352e3633345a222c226c6173745f7072696365223a6e756c6c2c226c6173745f736f6c64223a6e756c6c2c2265787465726e616c5f6c696e6b223a2268747470733a2f2f617263686976652e7468657265616c6573742e636f6d2f6974656d2d69642f34323231336462312d326364342d346532622d613635642d343363356166633735613039222c2261757468656e7469636174696f6e5f74797065223a22676f6c64222c22696d616765223a2268747470733a2f2f6173736574732e7468657265616c6573742e636f6d2f6974656d732f30303438643362642d626266632d346134322d626230382d6430313437353566326437362f31333761653161622d306262622d346564352d626636392d3434613836363331326161632e77656270222c2261757468656e7469636174696f6e5f64617461223a7b22746f75726e616d656e745f6e616d65223a225279646572204375702032303235222c22636f6e646974696f6e223a22546f75726e616d656e742d55736564222c2264617465223a22323032352d30392d3238222c226175746f67726170686564223a66616c73652c2274797065223a22696e697469616c227d2c2274616773223a7b2261727469737473223a22222c2263617465676f7279223a225374616469756d2f4172656e612f436f75727365204974656d73222c2267656e726573223a22222c2276656e7565223a22426574687061676520426c61636b20476f6c6620436f75727365222c226576656e74223a22527964657220437570202d2053756e64617920526f756e64227d7d00000000000000000000000000000000", + "nonce": "0x3d51", + "to": null, + "transactionIndex": "0x4d", + "value": "0x0", + "v": "0x1", + "r": "0x19a3dab31ac172e3c11d741b7933d2791d096cbf683c82a56a2c33825cc38e47", + "s": "0x227465c31ca6f711a70ae91dd2bffce89583981c1f5e85056f95c09f9bd17c40", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xdf8475800", + "maxPriorityFeePerGas": "0x6fc23ac00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xa9bccbddba9a073caa3e0be88b7bd11bb969c3df", + "gas": "0x7530", + "gasPrice": "0xa80e76314", + "hash": "0x0a117c0e53a34a485db12a734ca1349818c531a94c436d8d4522b1573c015147", + "input": "0x", + "nonce": "0x2f934", + "to": "0xf992e59562a1a1f4ef1d6304f22219a1e2bc79ed", + "transactionIndex": "0x4e", + "value": "0x93cafac6a8000", + "v": "0x0", + "r": "0x7e180ae7a3f7ab9e7b482b52b4ad0a38e711f288f4d52308492d40b2b143526", + "s": "0x6290395bb6ecab97ddcfff5fa9542ef0d35f83ac5bc3d306aa2a612ed9deccb5", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0x1329c0542c", + "maxPriorityFeePerGas": "0x6fc23ac00", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xed67c372f74a1c39c8525892d5079cca00d592e0", + "gas": "0x4785b", + "gasPrice": "0xa3edf879d", + "hash": "0x9031fe0e9e344ae68a5885e0ec2d52b18464f36f254bdda8405e30fd730cdbc3", + "input": "0xa694fc3a00000000000000000000000000000000000000000000000000000000067c2800", + "nonce": "0x8b", + "to": "0x78654ed080c1d1c87907646fdb2ae48db3635341", + "transactionIndex": "0x4f", + "value": "0x0", + "v": "0x1", + "r": "0x75714bf5e97edd69a3b7db5d05e88579ec9ff9810c91f0ab69ac2e10650e7a14", + "s": "0x1d880c6181035724c7c5774eadb78d94e17889e564bed5ab37c18042dc628831", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xf45a2e8b0", + "maxPriorityFeePerGas": "0x6ba1bd089", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xe3ba5107fc211dc7ed15b734f47b738384a358d3", + "gas": "0xf5eb", + "gasPrice": "0xa0a60521a", + "hash": "0x030f3d8b8b107fbd13464ee5155a180aa2b40ded36820a588fce2f6152b329cc", + "input": "0xa9059cbb000000000000000000000000e64a901729cb8e91132e25ee5b5274cdafb7644f000000000000000000000000000000000000000000000000000000000bac145e", + "nonce": "0x4e4f", + "to": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "transactionIndex": "0x50", + "value": "0x0", + "v": "0x1", + "r": "0xe3072c1ef1a04e3c1ed0a199004a92047419be8e3063906cff1b4c39a9240aaa", + "s": "0x78744497010588b5edaea50193482008a801943a3a991521eac1bc9206e14eb6", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xaa15331e1", + "maxPriorityFeePerGas": "0x6859c9b06", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x79bce55914a5433308cbeca0d18bc5ca934dc96f", + "gas": "0x53a9", + "gasPrice": "0x9f2913ce0", + "hash": "0xa5c2add89026208b7b4e5eefcdcdeffe0d1215b17c357101248b04a20af2e7f9", + "input": "0x2b67ff39", + "nonce": "0xbc", + "to": "0x59e0ad27d0f58a15128051caa1d2917aa71ab864", + "transactionIndex": "0x51", + "value": "0x1", + "v": "0x1", + "r": "0x25b131c167895261a0b1fecb4562ed0c2757e9d0a961f3240bd212ae5042d933", + "s": "0x681578eb0961c41a1cd9d96e9b54c8968797794240fec0f1694f638f55fb94d6", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xa2d87e074", + "maxPriorityFeePerGas": "0x66dcd85cc", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0xe7ee154d42fed1266b5eda7d1583fd61b341c2c6", + "gas": "0x53a9", + "gasPrice": "0x9f2913ce0", + "hash": "0x58eda77ca383346a84e076834716480c52c03037c2cf2cfd91ff21531e69c0b3", + "input": "0x2b67ff39", + "nonce": "0xbc", + "to": "0x59e0ad27d0f58a15128051caa1d2917aa71ab864", + "transactionIndex": "0x52", + "value": "0x1", + "v": "0x0", + "r": "0xb892a52ba7fcc4ba1b325a3e82d5e277d5e16bd0312ca7f0d3a14a364252f04c", + "s": "0x6be09f18dd7eba47d893beb28e71f55fef5785f30a97deeb6fa2c4dce6742c34", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xa2d87e074", + "maxPriorityFeePerGas": "0x66dcd85cc", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x005ef70f9eed3c2c90cae2c176d52a363b7e7306", + "gas": "0x53a9", + "gasPrice": "0x9f2913ce0", + "hash": "0xc983c1eee138ba66977f5fba4bc1cc83b922efca82923cf391e2d902cb220e9e", + "input": "0x2b67ff39", + "nonce": "0xbc", + "to": "0x59e0ad27d0f58a15128051caa1d2917aa71ab864", + "transactionIndex": "0x53", + "value": "0x1", + "v": "0x0", + "r": "0xa02943bc7a177ca5c4f5c549c98d45b24a19a839a56951fb8832d1eec0d87692", + "s": "0x41991a2bf6d734abd7699831ac9d87f900aa3f8879a2c3c4bf14e45fda24b2d3", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xa2d87e074", + "maxPriorityFeePerGas": "0x66dcd85cc", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x71ceb49406cd74fca5a11a22c2de0dadbe180403", + "gas": "0x53a9", + "gasPrice": "0x9f2913ce0", + "hash": "0xc4b72f2d630f210b6399a165c7827564a04a951d66a5ef2fd099da6bbd045cf2", + "input": "0x2b67ff39", + "nonce": "0xbc", + "to": "0x59e0ad27d0f58a15128051caa1d2917aa71ab864", + "transactionIndex": "0x54", + "value": "0x1", + "v": "0x1", + "r": "0x3d99cab6e68c4ae19b0b7fb2d8decd4b76fa339ac6e92ec8469e69bf325beb9a", + "s": "0x5f08a185363f3e762ba28bb5deef5523d09ed40cdb582cea84a3569cb083ea0c", + "type": "0x2", + "chainId": "0x89", + "maxFeePerGas": "0xa2d87e074", + "maxPriorityFeePerGas": "0x66dcd85cc", + "accessList": [] + }, + { + "blockHash": "0x6a9e2022cbde2f1781e6bef8e27aed80b29e9dd28efa2935f2525c117f8562e1", + "blockNumber": "0x4a34166", + "from": "0x4f4fb103acf4ebef7380b20ad201620aba976062", + "gas": "0x52f8", + "gasPrice": "0x994e02a16", + "hash": "0x453f364de0932825f9e3edc352c9fc006342c3d927fb0ddb63fe30fb951afc73", + "input": "0x", + "nonce": "0x0", + "to": "0xda649f0663e9daa5607ae5723db88fd5d98e21c0", + "transactionIndex": "0x55", + "value": "0x5af3107a4000", + "v": "0x136", + "r": "0x61d55ac854a6027e7b955330fde4ff558f0dccc7185b35a93b265862aa41df2d", + "s": "0x6ab364fff8ba6649c9cc4bd5e7919fffb186293d5d86351dc9337569c46bdc9c", + "type": "0x0", + "chainId": "0x89" + } + ], + "uncles": [] +}` + +const gasPriceJSON = `0x99fae471f` + +const maxPriorityFeePerGasJSON = `0x61aea900b` + +const feeHistoryJSON = `{ + "OldestBlock": 77806951, + "Reward": [ + [ + 30000000000, + 30000000000, + 30000000000, + 35000000000, + 43874108696, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45886545159, + 45886545159, + 54065677498, + 54065677498, + 58459691920, + 60211011932, + 60211011932, + 120603120187 + ], + [ + 25067696258, + 30000000000, + 31240854769, + 31240854769, + 41142769486, + 43874108696, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47309608095, + 54065677498, + 58500000000, + 59003113043, + 59707898889, + 59707898889, + 65012335779, + 65012335779, + 1176296399488 + ], + [ + 30000000000, + 30000000000, + 30394169867, + 36000000001, + 36644354769, + 39258820554, + 40981164996, + 41617399530, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 58500000000, + 58500000000, + 59003113043, + 59707898889, + 110196404201, + 337455394417 + ], + [ + 25004725528, + 31000000000, + 41123379014, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45154000000, + 47677890480, + 53832279279, + 53832279279, + 53832279279, + 53832279279, + 53832279279, + 53832279279, + 53832279279, + 59003113043, + 96303899578, + 1176524643880 + ], + [ + 30000000000, + 30336801274, + 35336801274, + 35336801274, + 35336801274, + 35336801274, + 35336801274, + 35336801274, + 35336801274, + 35336801274, + 35336801274, + 35336801274, + 40845606160, + 41370088550, + 45000000000, + 45000000000, + 45000000000, + 45154000000, + 47420488353, + 59003113043, + 249507000703 + ], + [ + 29837177808, + 30000000000, + 35804327519, + 39481086278, + 43923000004, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46861282153, + 50000000000, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 62544996226, + 217677135022 + ], + [ + 29874638017, + 30000000000, + 35792074017, + 35851405259, + 39481086278, + 41004921240, + 43195283120, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45154000000, + 47466532153, + 58500000000, + 60211011932, + 83329872252, + 83329872252, + 83329872252, + 83329872252, + 621620591852 + ], + [ + 29992065955, + 30000000000, + 30000000001, + 36691535583, + 40862401925, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46908747169, + 47466532153, + 58500000000, + 58960000000, + 60000000000, + 63351015611, + 100761805205 + ], + [ + 30000000000, + 30000000001, + 35822498113, + 36000000001, + 40991355907, + 43973662771, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47000000000, + 48089941108, + 50000000000, + 50000000000, + 58500000000, + 59003113043, + 93820838785, + 93820838785, + 140726241507 + ], + [ + 30000000000, + 30356637261, + 30356637261, + 30356637261, + 30356637261, + 30356637261, + 32681021153, + 36208042520, + 43592635870, + 44100000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46233747169, + 53495478005, + 56229774820, + 56229774820, + 58500000000, + 137246033423 + ], + [ + 30000000000, + 30000000000, + 39258820554, + 40671303905, + 40851015871, + 41373578126, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 53495478005, + 53495478005, + 53620839988, + 53620839988, + 53620839988, + 56229774820, + 56902039486, + 58500000000, + 1176646921411 + ], + [ + 26617905957, + 30893581155, + 33662697380, + 40534949229, + 40534949229, + 40642288451, + 43097477215, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46340371732, + 53500142200, + 53500142200, + 53500142200, + 54000000000, + 58494504355, + 58500000000, + 90815079455, + 136410514138 + ], + [ + 26586247917, + 30536274108, + 30536274108, + 39641060802, + 40935221889, + 43278313015, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46340371732, + 46790880990, + 50000000000, + 56229774820, + 56229774820, + 58500000000, + 58500000000, + 62747663926 + ], + [ + 29975052864, + 35560495531, + 40757764261, + 41314461028, + 44534312784, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47643222621, + 47643222621, + 47643222621, + 47643222621, + 47643222621, + 47643222621, + 47643222621, + 47643222621, + 47643222621, + 58500000000, + 139021115196 + ], + [ + 29954896841, + 30000000000, + 30045132774, + 33644549575, + 34784184289, + 41314461028, + 42456004438, + 44534312784, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 47000000000, + 56229774820, + 58500000000, + 63907038731 + ], + [ + 25022170338, + 30000000000, + 30000000001, + 30131872897, + 33840014787, + 37396000000, + 44537660805, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47189326450, + 55291132141, + 55291132141, + 55291132141, + 55291132141, + 56749130392, + 58500000000, + 110021874129, + 229829115026 + ], + [ + 30000000000, + 30000000000, + 31000000000, + 35605915580, + 39636529867, + 40856708899, + 41370088550, + 44583258151, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45840743296, + 58500000000, + 58500000000, + 60211011932, + 462076625520, + 1176885612133 + ], + [ + 25000076912, + 30000000000, + 34005511454, + 34005511454, + 38183489567, + 40932803938, + 41009864977, + 42525863293, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46690776981, + 53135038077, + 53135038077, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 74212123366, + 739431943562 + ], + [ + 30000000000, + 31601204077, + 35196186642, + 40807434649, + 44270169209, + 45000000000, + 45000000000, + 45256068828, + 53135038077, + 53135038077, + 53135038077, + 53135038077, + 53135038077, + 53135038077, + 53135038077, + 53135038077, + 53135038077, + 53135038077, + 58500000000, + 67399733939, + 136413332810 + ], + [ + 25000076912, + 30000000000, + 33644549575, + 38169456062, + 38523433437, + 44100000000, + 44564081609, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45294279963, + 55691484618, + 58500000000, + 59359047352, + 83326874097, + 83326874097, + 83326874097, + 85175381693 + ], + [ + 30000000000, + 30000000001, + 30620270666, + 35460327830, + 35460327830, + 35460327830, + 38198760431, + 40684266669, + 44460805136, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45806648032, + 47341229148, + 50000000000, + 56230000000, + 58500000000, + 58500000000, + 59359047352, + 1016168469720 + ], + [ + 25000076912, + 30000000001, + 35620270666, + 40689726485, + 44100000000, + 44100000000, + 44408796275, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45930405999, + 47000000000, + 57794090666, + 58500000000, + 59359047352, + 59359047352, + 59359047352, + 61976717949, + 1047377444521 + ], + [ + 30000000000, + 30000000000, + 34302459562, + 36000000001, + 40784741526, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45930405999, + 58500000000, + 58500000000, + 59767000000, + 82189450179, + 82189450179, + 105428744925, + 105428744925, + 179129857024, + 1177302459562 + ], + [ + 30000000000, + 30000000000, + 30272600127, + 36000000001, + 36611054627, + 38523433437, + 40792136422, + 40838906183, + 40936517286, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45731069847, + 56835816033, + 58500000000, + 58500000000, + 59359047352, + 61143887375, + 277441069847 + ], + [ + 27593469629, + 30000000000, + 30000000001, + 35620270666, + 35639156581, + 39318900752, + 40991305965, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45930405999, + 56782302847, + 58500000000, + 82988550505 + ], + [ + 30000000000, + 30000000000, + 30452622753, + 35947174115, + 40992130841, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47000000000, + 52697540438, + 52697540438, + 57226667238, + 58500000000, + 61143887375, + 61143887375, + 119399222263 + ], + [ + 30000000000, + 30000000000, + 30000000001, + 36104776283, + 36611054627, + 38353461503, + 39109355010, + 40952678596, + 40952678596, + 43646907588, + 44881962413, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45294279963, + 58500000000, + 58500000000, + 60000000000, + 69496577730 + ], + [ + 30000000000, + 30000000000, + 39109355010, + 41314461028, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45294279963, + 45294279963, + 46316756109, + 52406530371, + 52406530371, + 52558930153, + 52558930153, + 58500000000, + 58500000000, + 58558000000, + 61143887375, + 277990146911 + ], + [ + 25001416178, + 30000000000, + 30000000000, + 35613682491, + 39109355010, + 40633803939, + 40633803939, + 40633803939, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45294279963, + 45710681541, + 50000000000, + 52244917685, + 58500000000, + 60177158835, + 134446271596, + 961397753442 + ], + [ + 25028829519, + 30000000000, + 30000000001, + 35962570548, + 39717125698, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45920523736, + 50000000000, + 52118037587, + 52118037587, + 52118037587, + 58500000000, + 58500000000, + 112071568944, + 278147747380, + 278147747380 + ], + [ + 30000000000, + 38506770893, + 39318900752, + 41229613384, + 41816394223, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52009853089, + 52009853089, + 52009853089, + 52009853089, + 52009853089, + 52009853089, + 56244393017, + 58500000000, + 60000000000, + 65180555106, + 1178229613384 + ], + [ + 30000000000, + 31000000000, + 35657095416, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45824782899, + 51907841165, + 52009853089, + 52009853089, + 58500000000, + 58557278773, + 1178187685963 + ], + [ + 29929288050, + 35000000000, + 35973724602, + 39561199280, + 40283365373, + 40283365373, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51852252620, + 51852252620, + 58225096501, + 58500000000, + 58557278773, + 61143887375, + 81863406674, + 81863406674, + 81863406674, + 81863406674, + 133470061282 + ], + [ + 30000000000, + 30000000000, + 30000000000, + 34305536365, + 38506770893, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 47088487524, + 58500000000, + 58500000000, + 58557278773, + 60109286834, + 61143887375, + 9978256208245 + ], + [ + 25140757284, + 30000000001, + 32000000000, + 35114371720, + 40109383833, + 40685849812, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45171557580, + 47308810812, + 50000000000, + 50000000000, + 58500000000, + 58557278773, + 58557278773, + 59808061813, + 60888143242, + 82158728665 + ], + [ + 30000000000, + 35000000000, + 36945255168, + 40737805274, + 43410647714, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47477534447, + 55226985624, + 58500000000, + 60000000000, + 60792502254, + 68202241365, + 68202241365, + 78248548234, + 278645255168 + ], + [ + 30000000000, + 30000000001, + 37936074359, + 39995178582, + 41410718732, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 58557278773, + 58557278773, + 60792502254, + 60888143242, + 63005184356, + 81793242265, + 278746305331 + ], + [ + 25005884658, + 30000000000, + 30114371720, + 30114371720, + 31000000000, + 35114371720, + 36300000000, + 40196374604, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51743791755, + 51743791755, + 51743791755, + 58500000000, + 60792502254, + 63005184356, + 978846047104 + ], + [ + 30000000000, + 30000000001, + 30230827390, + 31000000000, + 37936074359, + 37936074359, + 41401632622, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 47496922546, + 51743791755, + 55908199806, + 56637730407, + 60000000000, + 144000000000 + ], + [ + 30000000000, + 30000000000, + 30000000000, + 31000000000, + 35179720264, + 40807677070, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47550843134, + 51743791755, + 51743791755, + 57297379673, + 60726982102, + 60726982102, + 81437392484, + 132691087153 + ], + [ + 25027723935, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 35000000000, + 36691535583, + 40577541953, + 44100000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47333536430, + 52876772499, + 57428169220, + 58500000000, + 60726982102, + 63005184356, + 1179060792693 + ], + [ + 30000000000, + 35125449186, + 36393340778, + 38506770893, + 40359428866, + 40807677070, + 44100000000, + 44100000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47631567924, + 58500000000, + 58500000000, + 60726982102, + 81258562820, + 1179010727936 + ], + [ + 25032294131, + 30000000000, + 30211533723, + 36000000001, + 39074864411, + 40859380293, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 58500000000, + 60726982102, + 60888143242, + 63005184356, + 63005184356, + 63005184356, + 89000000000, + 89000000000, + 1701485267575 + ], + [ + 30000000000, + 30000000001, + 33517669691, + 38439360201, + 40393646279, + 40393646279, + 40393646279, + 40393646279, + 40859380293, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45938823206, + 45946692378, + 50000000000, + 58500000000, + 60726982102, + 3053591739197 + ], + [ + 29322269165, + 30000000000, + 33528948655, + 35998084478, + 38439360201, + 41401632622, + 42040678252, + 44100000000, + 44100000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 54215204498, + 58500000000, + 63005184356, + 175679736680, + 237982625753 + ], + [ + 30000000000, + 30000000000, + 33000000001, + 36300000000, + 36300000002, + 41104654846, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47830049489, + 48876970900, + 50858463131, + 50989272064, + 50989272064, + 57654027280, + 58500000000, + 63351015611, + 325046764305 + ], + [ + 29523124812, + 30000000001, + 35523124812, + 39303124812, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45195000000, + 48923124812, + 58500000000, + 81000000000, + 81110085206, + 81110085206, + 132000000000, + 201203629462, + 4015079482428 + ], + [ + 29439356291, + 30428628355, + 38187717280, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48894224787, + 53751313416, + 58558000000, + 879439356291 + ], + [ + 29760357727, + 30000000000, + 30000000000, + 32000000000, + 34285404860, + 37500000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45456816841, + 49500000000, + 58500000000, + 63927292707, + 70000000000, + 99997836382, + 100153710134, + 1179283482539 + ], + [ + 29672080273, + 30000000000, + 32000000000, + 33528948655, + 35283404355, + 37339945350, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47947607986, + 55036170648, + 58500000000, + 58500000000, + 86185842144, + 89278630425, + 280258305438 + ], + [ + 29762040517, + 30000000000, + 35201396808, + 38439360201, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45641396808, + 45641396808, + 45641396808, + 45641396808, + 47090011167, + 47639166438, + 55042362371, + 55489091504, + 58500000000, + 58500000000, + 100071624403, + 373023804541 + ], + [ + 30000000000, + 30000000000, + 34124328656, + 38561000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45065000000, + 45981434843, + 45981434843, + 58500000000, + 58500000000, + 67671367538, + 121000000000, + 166573688122, + 232574779870, + 1906236338864 + ], + [ + 25000076912, + 30000000000, + 34124328656, + 39074864411, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46620583842, + 48479887893, + 50560643709, + 58141418173, + 58500000000, + 59392201930, + 87144309421, + 87144309421, + 123044737727, + 173157060804, + 179079887893, + 195590222359, + 2998366146364 + ], + [ + 29567416444, + 30000000000, + 36080389228, + 40048865086, + 40048865086, + 40048865086, + 40478001497, + 44427875476, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46992442893, + 50000000000, + 50565152642, + 55288446044, + 58500000000, + 58500000000, + 131486350832, + 221090541257, + 3319005789801 + ], + [ + 30000000000, + 30000000000, + 34124328656, + 37500000000, + 40155730881, + 42696823140, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45133452693, + 45133452693, + 45133452693, + 45133452693, + 47006935502, + 47006935502, + 49274269639, + 58500000000, + 59136921160, + 97651822812, + 1555739879841 + ], + [ + 29974351230, + 30000000000, + 37286179394, + 43369103078, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47090011167, + 50000000000, + 50920112107, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 58708453963, + 75567938629, + 89538363314, + 89538363314, + 1457419918868 + ], + [ + 29922849892, + 30000000000, + 30922850447, + 34879636562, + 37286179394, + 39892202303, + 40104741640, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 52891720909, + 55101784605, + 58500000000, + 58500000000, + 58708453963, + 80786485762, + 229013391148 + ], + [ + 30000000000, + 35079114225, + 35107732490, + 35396719825, + 40142970993, + 45000000000, + 45000000000, + 45044000000, + 46130794023, + 47090011167, + 50794141552, + 50794141552, + 50794141552, + 50794141552, + 50794141552, + 50794141552, + 50794141552, + 55408935185, + 60515663168, + 132000000000, + 1179079114225 + ], + [ + 29957544277, + 30000000000, + 31000000000, + 31075587972, + 39588979121, + 40211108136, + 44100000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45195000000, + 46235511703, + 50000000000, + 58500000000, + 58708453963, + 60515663168, + 111780735015, + 121269338473, + 151949620588, + 4281506054187 + ], + [ + 30000000000, + 31000000000, + 31000000000, + 35396719824, + 40330208597, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 46292810557, + 50986608852, + 50986608852, + 50986608852, + 55548939245, + 60515663168, + 81119495678, + 81119495678, + 81119495678, + 90426122160, + 90426122160, + 418973893066 + ], + [ + 30000000000, + 30000000000, + 30000000000, + 31865092823, + 35133804473, + 36000000001, + 40251827492, + 40263665366, + 42570851088, + 44100000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 46168455525, + 58500000000, + 58500000000, + 60168372125, + 80977519924, + 131891665076, + 152733062641 + ], + [ + 30000000000, + 30000000001, + 35294486650, + 42942477978, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45229216913, + 45229216913, + 50000000000, + 50000000000, + 60168372125, + 75840965564, + 90489061099, + 131770382991, + 216765849660, + 3650906368782 + ], + [ + 29885387266, + 30000000001, + 35396719824, + 38169076869, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 46198990083, + 58708453963, + 67155000381, + 86588467930, + 90119219802, + 129216705184, + 150658793609, + 172186650388, + 193800618594, + 309167324955, + 3409817115822 + ], + [ + 29730868299, + 30000000000, + 30000000000, + 39899147811, + 43762216271, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45171557580, + 50775631453, + 51592669251, + 51592669251, + 51592669251, + 57950114444, + 62022396005, + 62510523936, + 172032131421, + 215346523706, + 320299738765, + 4982341852878 + ], + [ + 28729542746, + 33729542746, + 37500000000, + 40504532377, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 47090011167, + 54919763041, + 54919763041, + 54919763041, + 54919763041, + 62022396005, + 65063254676, + 90945261780, + 90945261780, + 320299738765, + 496732486933, + 518002944188, + 1009441195193 + ], + [ + 28613544485, + 32279600213, + 34539081805, + 37286179394, + 37286179394, + 37286179394, + 37286179394, + 37286179394, + 37286179394, + 37500000000, + 39760756842, + 43650000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 47090011167, + 60786820368, + 62343043882, + 1185543756689 + ], + [ + 29603068576, + 30000000001, + 35464838756, + 38798990796, + 44100000000, + 44100000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45492539311, + 45595079736, + 50000000000, + 50790783087, + 62022396005, + 62343043882, + 144090654129, + 395083010037, + 395204015211 + ], + [ + 29481524654, + 30000000001, + 34543863917, + 38798990796, + 41366003267, + 43650000000, + 44100000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45590115276, + 54276796240, + 54276796240, + 55397938471, + 60515663168, + 62343043882, + 81033167098 + ], + [ + 29890632851, + 30000000942, + 35504177336, + 40313130162, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45136608457, + 45244349911, + 58030508602, + 60849619653, + 62343043882, + 64004974988, + 137453121874, + 395204015211 + ], + [ + 29939841894, + 30000000000, + 30000000001, + 30061133789, + 38333386379, + 44100000000, + 44100000000, + 45000000000, + 45000000000, + 45136608457, + 45136608457, + 51110529265, + 51110529265, + 51110529265, + 51110529265, + 55066165468, + 58079717645, + 62287920961, + 66827614892, + 66827614892, + 1178553386379 + ], + [ + 30000000000, + 30000000001, + 35434222445, + 36591724566, + 41184840050, + 44942451884, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45136608457, + 45136608457, + 47639166438, + 60849619653, + 60849619653, + 63829304784, + 137544840874, + 182019006852, + 585695270106 + ], + [ + 30000000000, + 30000000000, + 30087040038, + 35000000000, + 39689378079, + 43650000000, + 44591217374, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45136608457, + 45651333667, + 54591217374, + 60849619653, + 62287920961, + 64004974988, + 89739811270, + 89739811270, + 89739811270 + ], + [ + 29974338138, + 30116173832, + 30116173832, + 31150494505, + 31150496069, + 35434222445, + 36357000000, + 41938045665, + 44723880884, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45136608457, + 45136608457, + 45590115276, + 58230212963, + 60849620571, + 65013786991, + 81528466780, + 1178703880884 + ], + [ + 30000000000, + 30000000000, + 30192695198, + 32471232081, + 40478664109, + 43650000000, + 43650000000, + 43650000000, + 43650000000, + 44100000000, + 45000000000, + 45000000000, + 45044000000, + 45223912572, + 50000000000, + 60035468961, + 62343043882, + 64706032263, + 81608498468, + 81608498468, + 3364746947874 + ], + [ + 30000000000, + 30000000000, + 30000000001, + 31122325120, + 31160158077, + 31500000000, + 36300000000, + 41471057424, + 43333018741, + 43650000000, + 43650000000, + 45000000000, + 45044000000, + 45044000000, + 45136608457, + 45595079736, + 55713542494, + 56811545973, + 58544397749, + 62343043882, + 144000000000 + ], + [ + 30000000000, + 30116057459, + 35863447009, + 38938681863, + 40375281282, + 42630000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45651333667, + 51296119116, + 51296119116, + 51296119116, + 56811545973, + 58544397749, + 60849619653, + 64004974988, + 121670448145, + 248547638840 + ], + [ + 30000000000, + 30000000000, + 30000000001, + 31334855450, + 37867665495, + 38938681863, + 40431988371, + 41590253641, + 42537098916, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 49888239364, + 50000000000, + 56888239364, + 58558697749, + 64830753847, + 81608498468, + 81608498468, + 112702213703 + ], + [ + 30000000000, + 30242313397, + 30500653136, + 35000000000, + 40084021095, + 40371929879, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45651333667, + 49911866189, + 56811545973, + 58544397749, + 58544397749, + 60787000000, + 64619476961, + 178955855891, + 1775331908713 + ], + [ + 29589760023, + 31209177971, + 34658544700, + 35500653136, + 35819845740, + 37589525144, + 38938681863, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46295170513, + 50000000000, + 58075550000, + 58500000000, + 58544397749, + 61912549185, + 92131693544, + 92131693544, + 132364398222 + ], + [ + 30000000000, + 30000000000, + 37855402756, + 42449349782, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 46295170513, + 50076878025, + 58075550000, + 58075550000, + 58544397749, + 60000000000, + 81076878025, + 92264452297, + 210043302232 + ], + [ + 30000000000, + 30000000000, + 30000000001, + 30214593880, + 35720110659, + 37500000000, + 42449349782, + 45000000000, + 45000000000, + 45044000000, + 45091072304, + 45750979704, + 50000000000, + 50000000000, + 51180061657, + 51180061657, + 51180061657, + 58075550000, + 58544397749, + 132302882098, + 1179170449771 + ], + [ + 30000000000, + 30000000000, + 30508951267, + 35128905002, + 38054955687, + 42449349782, + 42777000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45029333333, + 45136608457, + 45136608457, + 46538905002, + 52710585008, + 58075550000, + 58528600000, + 65779407268, + 144000000000 + ], + [ + 29149038984, + 30000000000, + 35445812514, + 38778521788, + 42370403230, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 45136608457, + 50149038984, + 50923121975, + 55715255147, + 58528600000, + 89803731932, + 132061690042 + ], + [ + 29209774647, + 33896322584, + 36000000000, + 37500000000, + 38498696736, + 42717090424, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45668718771, + 48609774647, + 50000000000, + 50000000000, + 50000000000, + 58075550000, + 58500000000, + 63853584815, + 89864467595, + 89864467595, + 501562518443 + ], + [ + 29782054991, + 29782054991, + 29782054991, + 29782054991, + 29782054991, + 30000000000, + 30000000000, + 35283094558, + 38536703403, + 42370403230, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45668718771, + 50871094998, + 50871094998, + 50871094998, + 58089850000, + 68887751263, + 152613284995 + ], + [ + 29196022964, + 35000000000, + 36396022964, + 38498696736, + 40144293387, + 41841070237, + 42902668110, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45668718771, + 50000000000, + 50000000000, + 58558198499, + 80432100000, + 118463000000, + 279196022964 + ], + [ + 30000000000, + 30000000001, + 30045113256, + 35283094558, + 37323000000, + 42449349782, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45966000000, + 50000000000, + 50000000000, + 58089850000, + 58543898499, + 58761232099, + 80835338609, + 80835338609, + 80835338609, + 1179254887903 + ], + [ + 30000000000, + 30000000000, + 35112402294, + 39692883082, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 46665954705, + 46665954705, + 46665954705, + 50000000000, + 50790225353, + 50790225353, + 50790225353, + 50790225353, + 50790225353, + 55919311334, + 58761232099, + 229255954705 + ], + [ + 29864367826, + 29864367826, + 30000000000, + 36120322531, + 40085094974, + 40474864237, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45495460797, + 47596789213, + 50000000000, + 58528600000, + 58761232099, + 58761232099, + 131355658822, + 1179120322531 + ], + [ + 29882269930, + 30000000000, + 35179755414, + 38661041578, + 41600362786, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 50000000000, + 50000000000, + 50000000000, + 50000000000, + 50000000000, + 50745112097, + 50745112097, + 50745112097, + 58528600000, + 88280309619, + 88280309619, + 279243698297 + ], + [ + 29916771844, + 30000000000, + 35029174138, + 35130931046, + 37323000000, + 38648728021, + 40228339511, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 50000000000, + 58544397749, + 58731633600, + 86421418267, + 86421418267, + 86421418267, + 161790920925 + ], + [ + 30000000000, + 30000000000, + 31000000000, + 33229215871, + 33229215871, + 37500000000, + 44975319405, + 45000000000, + 45044000000, + 45044000000, + 45495460797, + 45495460797, + 49000000000, + 50000000000, + 50000000000, + 50000000000, + 50879677469, + 55763596649, + 58543898499, + 58731633600, + 300000000000 + ], + [ + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 36630843318, + 38536703403, + 40181307129, + 44975319405, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45506783052, + 50744045295, + 50744045295, + 50744045295, + 50744045295, + 50744045295, + 50744045295, + 58731633600, + 144000000000 + ], + [ + 25000076912, + 31153782485, + 39291895856, + 41600362786, + 41600362786, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45495460797, + 50000000000, + 50000000000, + 50000000000, + 50744045295, + 50744045295, + 50744045295, + 50744045295, + 58731633600, + 59055735279, + 131808329387, + 294605076807 + ], + [ + 30000000000, + 35731851886, + 36731635530, + 37323000000, + 43580297561, + 43580297561, + 43580297561, + 43580297561, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45495460797, + 51655186073, + 56872614502, + 58731633600, + 59055735279, + 60680735279, + 85699254857, + 85699254857, + 144000000000 + ], + [ + 30000000000, + 32352373416, + 37500000000, + 37698862086, + 40156373416, + 40223879314, + 41605368822, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 58528600000, + 59055735279, + 60666435279, + 60666435279, + 85759702314, + 85759702314, + 147556289580 + ], + [ + 29366408453, + 30000000001, + 30074482494, + 35276409249, + 41002114440, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 47842875135, + 50000000000, + 50000000000, + 55366408453, + 60666435279, + 60680735279, + 131386881351 + ], + [ + 30000000000, + 30722163874, + 35722163874, + 37500000000, + 40934426797, + 41002114440, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 50000000000, + 50000000000, + 50673490966, + 58528600000, + 60300324759, + 81433316742, + 90590791508, + 90590791508, + 90590791508, + 1179433316742 + ], + [ + 25000076912, + 30000000000, + 30000000000, + 35488249688, + 38938681863, + 40280914329, + 40833235016, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 46623144898, + 55609986845, + 59055735279, + 60300324759, + 60300324759, + 60300324759, + 131463484225 + ], + [ + 30000000000, + 32000000000, + 35333071835, + 36949408379, + 37698862086, + 42640027913, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45478035693, + 50708074041, + 50708074041, + 50708074041, + 50708074041, + 60300324759, + 80903304228, + 80903304228, + 80903304228, + 1179636121134 + ], + [ + 29606534653, + 30000000000, + 35000000000, + 40286554562, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45597861990, + 46158282063, + 50276534653, + 59055735279, + 59055735279, + 60167900000, + 60167900000, + 88852568401, + 88852568401, + 88852568401, + 129606534653 + ], + [ + 25066997708, + 30000000001, + 30224975659, + 31224977216, + 35610196100, + 39525580132, + 42153936881, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 45089000000, + 46870300874, + 50479395527, + 50479395527, + 55745580132, + 60000000000, + 60167900000, + 60680735279, + 2193406843508 + ], + [ + 25000076912, + 30000000000, + 34505799539, + 36270053799, + 40346428675, + 44075813016, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 46097777829, + 56071546080, + 60167900000, + 60300324759, + 93466981323, + 108887648572 + ], + [ + 30000000000, + 30000000000, + 31270053799, + 33319063763, + 35116575141, + 40257899129, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 45871151833, + 46439360592, + 58542900000, + 179856138514 + ], + [ + 30000000000, + 36203310000, + 37500000739, + 40194582042, + 40545400106, + 41002114440, + 43285407068, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45915294150, + 50000000000, + 50000000000, + 58542900000, + 58722905147, + 60314624759, + 128503564811 + ], + [ + 25009624130, + 30000000000, + 33600290148, + 36300000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 45985623528, + 45985623528, + 45985623528, + 45985623528, + 45985623528, + 48965623528, + 50254419868, + 58722905147, + 60167900000, + 205531407363 + ], + [ + 30000000000, + 30000000000, + 31058895678, + 31058895678, + 37964891916, + 40123909011, + 41416245727, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45180398958, + 48951275228, + 50000000000, + 50000000000, + 50000000000, + 58542900000, + 58722905147, + 80172718826, + 90000000000, + 879951275228 + ], + [ + 30000000000, + 31110342605, + 41002114440, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45871151833, + 45871151833, + 45915294150, + 48999620806, + 58722905147, + 58722905147, + 60167900000, + 90991692452, + 1179999620806 + ], + [ + 25029019960, + 30000000001, + 35167322675, + 37500000000, + 38017087500, + 38951682213, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46097777829, + 47153740702, + 52348080948, + 60000000000, + 132000000000 + ], + [ + 30000000000, + 30000000000, + 30844609964, + 30844609964, + 35189631048, + 38951682213, + 40642992686, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45181000000, + 46588343517, + 50048724772, + 50048724772, + 55787685118, + 58722905147, + 58722905147, + 130177557730 + ], + [ + 30000000000, + 30093989090, + 35244803028, + 37195855493, + 40123464083, + 43485210925, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45597861990, + 46834121147, + 46834121147, + 50000000000, + 56123009050, + 58528600000, + 58528600000, + 58722905147, + 58722905147, + 61437070913, + 132000000000 + ], + [ + 25000076912, + 30000000000, + 31230446910, + 35297280989, + 36297391547, + 40224642918, + 40642992686, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 46083245811, + 49437171435, + 58514300000, + 58528600000, + 65210132938, + 102971037601, + 1180259466870 + ], + [ + 25000076912, + 30000000000, + 31297391547, + 31297391547, + 38951682213, + 39663871715, + 40642992686, + 45000000000, + 45000000000, + 45044000000, + 45426754852, + 48836048625, + 49968616586, + 50048724772, + 56836461962, + 58528600000, + 60167900000, + 80113563843, + 80113563843, + 80113563843, + 230359581943 + ], + [ + 30000000000, + 31266572476, + 35389998376, + 39663871715, + 40078221019, + 41495494854, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45181000000, + 46588343517, + 48516090161, + 49076771197, + 49389581263, + 58528600000, + 58528600000, + 58722905147, + 58722905147, + 209999999999 + ], + [ + 30000000000, + 30000000000, + 30000000001, + 31178514857, + 36294288699, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46097777829, + 49468119709, + 49876990950, + 49876990950, + 49876990950, + 50408119709, + 58528600000, + 132000000000 + ], + [ + 30000000000, + 35526813618, + 39136035814, + 39514951617, + 39582545657, + 41853935392, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 49526396505, + 50000000000, + 58528600000, + 58708605147, + 59621679763, + 63351015611, + 132000000000 + ], + [ + 30000000000, + 30000000001, + 30723557541, + 30723557541, + 35723557541, + 40167832204, + 45044000000, + 45044000000, + 45044000000, + 46044848932, + 49635329719, + 49876990950, + 49876990950, + 58514300000, + 58528600000, + 58708605147, + 58722905147, + 58722905147, + 58847300473, + 60000000000, + 125000000000 + ], + [ + 25010283243, + 25010283243, + 30000000000, + 31295651346, + 31295651346, + 31295651346, + 31295651346, + 31295651346, + 35723557541, + 45000000000, + 45000000000, + 45044000000, + 49610418737, + 49610418737, + 49610418737, + 49610418737, + 49610418737, + 49610418737, + 49610418737, + 58708605147, + 230735007637 + ], + [ + 30000000000, + 30000000000, + 35304615001, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 48110155139, + 50000000000, + 50000000000, + 58514300000, + 58708605147, + 58790000000, + 58847300473, + 58847300473, + 1180700155139 + ], + [ + 25040738210, + 29349377442, + 30000000000, + 30000000000, + 30000000000, + 30671974407, + 38862689715, + 39136035814, + 39136035814, + 39136035814, + 39136035814, + 44100000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45555715789, + 45555715789, + 46946087320, + 58708605147, + 480875715789 + ], + [ + 29946620254, + 29946620254, + 30000000000, + 30000000000, + 30672116834, + 35671974407, + 38726684397, + 39136035814, + 42169562522, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45175172249, + 45935865943, + 49264992363, + 49660248508, + 58652995327, + 60000000000, + 81288837895, + 89864677257 + ], + [ + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 31000000000, + 35000000000, + 36014359128, + 39136035814, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45089000000, + 46521538692, + 49299844861, + 49299844861, + 50000000000, + 58652995327, + 58708605147, + 58847300473, + 627756562182 + ], + [ + 25147192035, + 30000000001, + 36300000002, + 39755513806, + 39755513806, + 44340819282, + 44340819282, + 44340819282, + 44998132158, + 45000000000, + 45044000000, + 46521538692, + 50000000000, + 54492799070, + 54492799070, + 58652995327, + 58722905147, + 58722905147, + 89288739821, + 128761489080, + 128761489080 + ], + [ + 30000000000, + 31014359128, + 31014359128, + 31014359128, + 35869928410, + 37900438636, + 39582545657, + 44763073106, + 44998132158, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45181000000, + 50000000000, + 50066441388, + 56719953297, + 58708605147, + 60020782158, + 224995870350 + ], + [ + 25089916848, + 35000000000, + 36876574875, + 44998132158, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45181000000, + 50000000000, + 58708605147, + 100262641184, + 128828255638, + 181989916735, + 232411781435 + ], + [ + 29945305410, + 30000000001, + 36000000000, + 37557708444, + 37900438636, + 37900438636, + 41973939450, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 46521538692, + 58652995327, + 60020782158, + 60020782158, + 89297600888, + 89297600888, + 89297600888, + 1180815233820 + ], + [ + 29736105485, + 34241942045, + 37500000000, + 37500000000, + 39682108128, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46521538692, + 50000000000, + 56608511639, + 58847300473, + 62497854938, + 78986165400, + 78986165400, + 128116236990 + ], + [ + 29600692699, + 30000000000, + 30000000000, + 34241942045, + 36300000002, + 44910000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 46679952470, + 56608511639, + 58528600000, + 58528600000, + 58528600000, + 89522740708, + 89522740708, + 89522741311, + 128214251010 + ], + [ + 29430888145, + 30254499350, + 34241942045, + 35157715375, + 36000000001, + 37500000000, + 39744338475, + 44857850064, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 51924985544, + 55888701757, + 55888701757, + 55888701757, + 56622811639, + 58528600000, + 79092151419, + 128544552399, + 147821933341 + ], + [ + 29489929287, + 30000000000, + 30000000000, + 34989051132, + 39989717237, + 39989717237, + 39989717237, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 54692626871, + 55000000001, + 58528600000, + 83882767623, + 83882767623, + 103101107423, + 128544552400, + 2034785195530 + ], + [ + 29477857247, + 30000000001, + 32000000000, + 34976979092, + 36769588161, + 36769588161, + 36769588161, + 37438576243, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45236573062, + 50000000000, + 53831991790, + 58500000000, + 98218155030, + 128789730751, + 128789730751, + 1180769588161 + ], + [ + 25000000000, + 30000000000, + 30000000000, + 34651850814, + 34984034012, + 35157715375, + 37500000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45236573062, + 49285352940, + 50000000000, + 58528600000, + 74919088755, + 74919088755, + 79713505750, + 98218155031, + 128611057800, + 5343156755688 + ], + [ + 29775221769, + 30000000000, + 30000000000, + 30000000000, + 35581594522, + 37500000000, + 39631470213, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45236573062, + 50000000000, + 58528600000, + 83682701944, + 83682701944, + 83682701944, + 122263577593, + 150698421768, + 527426341452 + ], + [ + 29793180649, + 30000000000, + 30000000000, + 33840000000, + 35562768810, + 37500000000, + 39509276810, + 42368552998, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 50000000000, + 58500000000, + 58528600000, + 84936660797, + 123773471757, + 162610282717, + 719799217570 + ], + [ + 29725619781, + 30000000000, + 30000000000, + 34504534758, + 34651850814, + 37470636691, + 37500000000, + 39581028964, + 44100000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 54336162292, + 55836704548, + 58500000000, + 58528600000, + 58528600000, + 70022473898, + 130717024888, + 2718071431211 + ], + [ + 29801192538, + 30000000000, + 31000000000, + 35000000000, + 37264826350, + 37500000000, + 39648154766, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46521975334, + 49205699287, + 49205699287, + 58514300000, + 65969964884, + 87605644189, + 16032543426810 + ], + [ + 30000000000, + 30000000000, + 31500000000, + 36935834852, + 39883818608, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45857561048, + 49689212770, + 58514300000, + 58528600000, + 981559141180 + ], + [ + 29914501668, + 31000000000, + 36763425476, + 39895315859, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45108191020, + 45108191020, + 45108191020, + 45108191020, + 45108191020, + 45108191020, + 45108191020, + 46521975334, + 50000000270, + 79491688052, + 1354229993249 + ], + [ + 29996596839, + 31000000000, + 36000000000, + 37495746048, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45723315201, + 53146830006, + 58514300000, + 93770654499, + 1764771211474 + ], + [ + 29820222337, + 29906280681, + 30000000000, + 30000000001, + 34584142236, + 35724496376, + 37495746064, + 39777773803, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45089000000, + 50000000000, + 58500000000, + 58528600000, + 58528600000, + 79257677996, + 79257677996, + 79257677996, + 275513384520 + ], + [ + 29996596839, + 29996596839, + 30000000001, + 35344077247, + 35765260124, + 36763425476, + 39806656037, + 39806656037, + 39806656037, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45516115870, + 46811648912, + 58514300000, + 58528600000, + 203142925632 + ], + [ + 29996596839, + 30000000000, + 30750771466, + 35724496376, + 40062692508, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45089000000, + 46926096315, + 49440858820, + 58514300000, + 58548941176, + 85866302522, + 144000000000, + 1180526096315 + ], + [ + 29993528822, + 32579783487, + 35765260124, + 38687304049, + 40111783487, + 43094066415, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45089000000, + 45516115870, + 55029783487, + 57036109016, + 57036109016, + 57036109016, + 57036109016, + 57036109016, + 58514300000, + 58589000000, + 1966111248892 + ], + [ + 29996596839, + 31171593493, + 31171593493, + 35750771466, + 36515043238, + 40586645566, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46126157199, + 50000000000, + 58528600000, + 78961483742, + 1180586645566 + ], + [ + 29906139704, + 30000000000, + 39739639180, + 40814970853, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46231155652, + 49584947927, + 49584947927, + 49584947927, + 49584947927, + 49584947927, + 49584947927, + 49584947927, + 54641389966, + 58528600000, + 79376640228, + 85418757492, + 467084477440 + ], + [ + 29834710850, + 30000000000, + 34863320696, + 35211000001, + 35211000001, + 35211000001, + 36000000001, + 39718073520, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45023059551, + 45516115870, + 46218882491, + 49470500524, + 54532824407, + 58528600000, + 58549462082, + 336938626284 + ], + [ + 29800447046, + 30000000000, + 35211000001, + 38990000000, + 39755096401, + 41132453553, + 42371287033, + 44100000000, + 44932757702, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45850495773, + 54731932261, + 58514300000, + 58543225000, + 58847300473, + 467039334033 + ], + [ + 29938887275, + 30000000000, + 30000000001, + 30000000001, + 30000000001, + 30000000001, + 30000000001, + 30000000001, + 30000000001, + 35154098348, + 37630969588, + 45000000000, + 45000000000, + 45044000000, + 46485283780, + 54915283780, + 54915283780, + 54915283780, + 58514300000, + 58557525000, + 275595901622 + ], + [ + 29858032383, + 35211000001, + 35211000001, + 35211000001, + 35211000001, + 35211000001, + 35211000001, + 35211000001, + 35211000001, + 35211000001, + 37488235256, + 39908894454, + 42973255558, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 58514300000, + 58549462082, + 100000000000 + ], + [ + 29910619150, + 30000000000, + 34896359515, + 37340316108, + 38687304049, + 39209456681, + 43923000004, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 46421056836, + 50000000000, + 58549462082, + 58557525000, + 60019033076, + 85555470959, + 100087806136, + 100149719076, + 1180379306091 + ], + [ + 29956022338, + 34424142047, + 37412826526, + 39209456681, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 45044000000, + 45089000000, + 45788020913, + 57595173192, + 60000000000, + 60019033076, + 60019033076, + 203315050813 + ], + [ + 30000000000, + 33576775000, + 35403875321, + 39209456681, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45089000000, + 45791991399, + 49510159920, + 49510159920, + 57541286472, + 70217071265, + 85604277401, + 85604277739, + 105176165647, + 230428112533 + ], + [ + 30000000000, + 38687304049, + 43021591398, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 58381150835, + 58381150835, + 58381150835, + 58381150835, + 58381150835, + 58381150835, + 58381150835, + 58381150835, + 58381150835, + 58381150835, + 60019033076, + 79688077897, + 79688077897, + 193875551447 + ], + [ + 29720692225, + 30000000000, + 30000000001, + 32771521454, + 36300000002, + 38687304049, + 43923000004, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45477609542, + 50000000000, + 50000000000, + 55000000001, + 58557525000, + 77812273813, + 127532249971, + 148717364377, + 415948674170 + ], + [ + 29564777016, + 30000000000, + 30018273417, + 35211000001, + 37500000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 54370999876, + 57864895991, + 69980300042, + 89324593327, + 89324593327, + 89324593327, + 119164945209, + 1196747075869 + ], + [ + 29437693124, + 30000000000, + 30000000001, + 31047034045, + 35403875321, + 36336000000, + 37216802841, + 37491524100, + 37500000064, + 39709220812, + 42706181511, + 45000000000, + 45000000000, + 45145427577, + 50000000000, + 50000000000, + 50000000000, + 54500963893, + 57595173192, + 101367518638, + 1179891189525 + ], + [ + 25000076912, + 30000000001, + 36300000002, + 37238529572, + 37495746048, + 38860811732, + 38860811732, + 39368720574, + 40087350590, + 43923000004, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45372916256, + 49883583925, + 57595173192, + 74746111602, + 169722267467, + 588640588140 + ], + [ + 29480404219, + 30000000000, + 30000000000, + 30841436893, + 38687304049, + 38860811732, + 43923000004, + 44426017156, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 56101576459, + 58549462082, + 70000000000, + 87106500311, + 87106500311, + 87106500311, + 1028863113471 + ], + [ + 28763841724, + 29996596839, + 33753758459, + 35403875321, + 38528146252, + 38860811732, + 42706181511, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45104805989, + 49546503599, + 49546503599, + 49546503599, + 50000000000, + 62863174021, + 78981418781, + 111576977869, + 279753758459 + ], + [ + 29751504028, + 30000000000, + 30000000000, + 32314017721, + 34559130633, + 37495746048, + 38168094849, + 39135530446, + 39826351986, + 40950000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000001, + 52382684771, + 56101576459, + 62891774021, + 111439799685, + 1179725935287 + ], + [ + 29996596839, + 30000000000, + 34786599181, + 38550968830, + 38860811732, + 44739913721, + 44920443417, + 44971711326, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45044000000, + 45089000000, + 55231040338, + 88629633735, + 88629633735, + 88629633735, + 88629633735, + 91623971964, + 482517058937 + ], + [ + 29871845017, + 30000000000, + 30089114656, + 34822432040, + 38860811732, + 40137682332, + 44846276276, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46155215747, + 57754508991, + 62103383012, + 62891774021, + 88665466594, + 100635578229, + 100635578725, + 100635578967, + 205939048986 + ], + [ + 29996596839, + 30000000000, + 30641356312, + 30641356312, + 34646294416, + 37495746048, + 40280399904, + 44661839364, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46914232666, + 49777704492, + 50025568741, + 55178990148, + 56956584716, + 58557525000, + 62514731163, + 62891774021, + 2743847502467 + ], + [ + 29996596839, + 30186673010, + 34566052718, + 36825248257, + 40259736553, + 44971711326, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45386681121, + 50000000000, + 55315582580, + 57740540089, + 57754508991, + 57754508991, + 58500000000, + 62103383012, + 89053827499, + 120789302864, + 985950427090 + ], + [ + 29996596839, + 30000000000, + 30000000000, + 35760000000, + 37658848166, + 44942153260, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45143599865, + 49999172453, + 49999172453, + 49999172453, + 55151798024, + 58260467820, + 62103383012, + 277004529808 + ], + [ + 30000000000, + 30000000000, + 30205333072, + 30395409243, + 35542816387, + 36375000000, + 37658848166, + 40294277636, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50040990797, + 50040990797, + 56101576459, + 58500000000, + 80327070274, + 80327070274, + 80327070274, + 482245088680 + ], + [ + 30000000000, + 30000000001, + 31647915328, + 35209716316, + 36647915328, + 37658848166, + 38550968830, + 40422105707, + 42800710420, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49461676997, + 54455222710, + 58500000000, + 62891774021, + 77249471924, + 80249471924, + 141350471924, + 1346000000000 + ], + [ + 29763565583, + 30000000000, + 30000000000, + 35346752231, + 37658848166, + 40234294243, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 57626079915, + 58500000000, + 79849768549, + 1180346752231 + ], + [ + 25000076912, + 30000000001, + 30616915806, + 35786000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45336273809, + 45433337998, + 49754911320, + 49754911320, + 50546254254, + 54687690742, + 54687690742, + 58500000000, + 58625671364, + 66466000000, + 97661717990, + 204228040970 + ], + [ + 29996596839, + 30000000001, + 30115840372, + 32148636939, + 37658848166, + 38860811732, + 40162545648, + 42392979040, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45089000000, + 58500000000, + 58625671364, + 58625671364, + 132000000000, + 1180465995750 + ], + [ + 29996596853, + 30000000000, + 30443497045, + 34814897547, + 35434125546, + 35889096350, + 36563986995, + 37658848166, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45835631903, + 46584970440, + 49461676997, + 55011978968, + 58500000000, + 58625671364, + 75063215379, + 114720431880 + ], + [ + 30000000000, + 30000000000, + 30889096350, + 30889096350, + 30889096350, + 36000000001, + 37527329108, + 44872857509, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45802859990, + 49750528076, + 49750528076, + 50865973461, + 58625671364, + 58625671364, + 65077341229, + 280665973461 + ], + [ + 30000000000, + 30889096350, + 35181950849, + 35698351607, + 40178990148, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 51001438096, + 53146830006, + 58625671364, + 58625671364, + 75288842769, + 75288842769, + 106932877962, + 127923960107, + 159143506610 + ], + [ + 30000000000, + 30000000001, + 31312690577, + 36375000000, + 37528767917, + 45000000000, + 45000000000, + 45000000000, + 49530601089, + 49530601089, + 49530601089, + 49530601089, + 49530601089, + 49530601089, + 49530601089, + 49530601089, + 51049902612, + 58625671364, + 58625671364, + 58625671364, + 100000000000 + ], + [ + 30000000000, + 35013090704, + 45000000000, + 45000000000, + 45044000000, + 58625671364, + 58640834849, + 65150000000, + 65150000000, + 65150000000, + 65150000000, + 65150000000, + 65150000000, + 65150000000, + 65150000000, + 65150000000, + 65150000000, + 65150000000, + 65150000000, + 166111631966, + 2468468881099 + ], + [ + 29666616080, + 29953879439, + 30000000000, + 30000000000, + 30000000000, + 32000000000, + 36375000000, + 37277929531, + 38937955469, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46029382248, + 55980798379, + 58625671364, + 58640834849, + 132000000000, + 480755317535 + ], + [ + 30000000000, + 30000000001, + 32296399660, + 36015708844, + 37245517515, + 37500000000, + 37527329108, + 37527329108, + 37593808042, + 39970180876, + 39970180876, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45165440522, + 58625671364, + 58640834849, + 65132068740, + 816432616378 + ], + [ + 25020834842, + 30000000000, + 31139087414, + 36000000001, + 36040265052, + 37694987380, + 37694987380, + 39962737929, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47000000000, + 50000000000, + 50000000000, + 58640834849, + 59972445354, + 130170932230, + 194999999993 + ], + [ + 30000000000, + 30233469598, + 30233469598, + 35076840669, + 36007744990, + 37593808041, + 40060706364, + 40060706364, + 44022034548, + 44022034548, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45433337998, + 49244682465, + 49244682465, + 58640834849, + 59972445354, + 118000000000, + 281097285766 + ], + [ + 30000000000, + 30000000001, + 31296044442, + 36300000002, + 38937955469, + 40473055423, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45019636056, + 45022000000, + 45165440522, + 49244682465, + 49244682465, + 54614471616, + 58640834849, + 59972445354, + 73077945994, + 1181145723879 + ], + [ + 25103698370, + 25103698370, + 30000000000, + 30076840669, + 35427941340, + 36000000001, + 38187939516, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45022000000, + 47471872992, + 50000000000, + 60000000000, + 64886504139, + 125051776386, + 125051776386, + 365635787475, + 1773326826872 + ], + [ + 25011776032, + 30000000000, + 30000001000, + 33332626360, + 33332626360, + 35397733486, + 36529082721, + 37694987380, + 37694987380, + 39957757705, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47345980492, + 54332626360, + 62411791209, + 64886504139, + 118000000000, + 1200898372097 + ], + [ + 30000000000, + 30000000000, + 30076840669, + 35418290464, + 37245517515, + 44982760478, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 47345980492, + 59130132091, + 59972445354, + 63414058785, + 65998072370, + 180484016264, + 1181398072370 + ], + [ + 30000000000, + 34823381889, + 35418290464, + 36529082721, + 39930000003, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45022000000, + 53196052525, + 58625671364, + 60877180583, + 63414058785, + 104515109540, + 218696963162 + ], + [ + 25006305942, + 30000000000, + 32000000000, + 37082445641, + 39975516389, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46848732734, + 46848732734, + 46848732734, + 46848732734, + 50200592242, + 58500000000, + 58500000000, + 59972445354, + 66521195354, + 110000000000 + ], + [ + 28856878516, + 30000000000, + 30110047569, + 30543814328, + 36300000002, + 36642891284, + 43923000004, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46333644525, + 54344521306, + 56865308785, + 56865308785, + 58500000000, + 63414058785, + 202011086224 + ], + [ + 25041469818, + 30000000000, + 30000000001, + 30000000001, + 35816576820, + 36603476712, + 37513653906, + 43923000004, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45115261003, + 46333644525, + 53751469694, + 56865308785, + 58500000000, + 58500000000, + 59972445354, + 63414058785, + 964363673992 + ], + [ + 27761450734, + 30000000000, + 30205963410, + 35085231033, + 36128151989, + 36128151989, + 36651000000, + 42048505470, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46333644525, + 58500000000, + 60000000000, + 63414058785, + 126923763222 + ], + [ + 30000000000, + 30000000000, + 30000000001, + 34974724496, + 35048107832, + 36170132527, + 36484021304, + 40974724496, + 43797857111, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47345980492, + 48358899906, + 48358899906, + 50000000000, + 56865308785, + 58500000000, + 115788698835 + ], + [ + 25080825673, + 30000000000, + 30549773148, + 35000000000, + 35085231033, + 35348690849, + 36236010171, + 40111505561, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45127846549, + 47009815012, + 47345980492, + 55000000001, + 58500000000, + 74685985264, + 84690749965, + 4086599596230 + ], + [ + 30000000000, + 30257751028, + 34932617586, + 35073044677, + 36484021304, + 39735145136, + 44022034548, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45127846549, + 45127846549, + 46138515204, + 46138515204, + 46138515204, + 47009815012, + 47009815012, + 58500000000, + 58500000000, + 145024541090 + ], + [ + 25057390483, + 30000000000, + 35034901532, + 36128151989, + 36128151989, + 37347310509, + 38362758477, + 44000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45954317196, + 48025275504, + 48025275504, + 54245011734, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 1182207098478 + ], + [ + 25023054082, + 30000000000, + 33000000000, + 35487843978, + 36128151989, + 36128151989, + 36128151989, + 36484021304, + 37082445641, + 39767276643, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45089000000, + 54293054082, + 60000000000, + 1182293054082 + ], + [ + 30000000000, + 30000000000, + 30257198095, + 36651000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47062012627, + 47062012627, + 47062012627, + 51247151810, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 108170750376, + 253810420280 + ], + [ + 29974952054, + 30060907658, + 35236236281, + 35823209160, + 36214075996, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45012260281, + 52468006136, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 564512729788 + ], + [ + 29977771142, + 30000000000, + 35050875528, + 35686378039, + 36619242540, + 38005523303, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 52476670298, + 58500000000, + 70000000000, + 642315723590 + ], + [ + 30000000000, + 30000000000, + 30000000000, + 32688303817, + 36128151989, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45012260281, + 47198359076, + 47637987373, + 47637987373, + 54676751712, + 58500000000, + 58500000000, + 125312321195 + ], + [ + 30000000000, + 30000000000, + 33000000001, + 35686378039, + 36300000002, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47284219061, + 50000000000, + 56865308785, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 74910456915, + 143195981592, + 209894440149 + ], + [ + 29343611585, + 30000000000, + 30000000000, + 30263535200, + 35734928486, + 35956389078, + 39374229168, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47331541336, + 58500000000, + 58500000000, + 58500000000, + 63546076170, + 116345515675 + ], + [ + 30000000000, + 30000000001, + 34317806434, + 35013202235, + 36128151989, + 39748238450, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47597033419, + 47597033419, + 47597033419, + 47597033419, + 47597033419, + 47597033419, + 50000000000, + 58500000000, + 58500000000, + 2871802459092 + ], + [ + 25000076912, + 30000000000, + 30000000001, + 35469806981, + 35956389078, + 38490367631, + 39585362232, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45019803352, + 52766425105, + 58500000000, + 58500000000, + 60026404470, + 838204051469 + ], + [ + 29989788230, + 34061232251, + 35017843682, + 36315367631, + 42616057572, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45019803352, + 47416057572, + 51357266943, + 58500000000, + 58500000000, + 58500000000, + 66884310144, + 1018616057572 + ], + [ + 30000000000, + 34742079515, + 35013202235, + 38490367631, + 39654867024, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47534577150, + 50759852654, + 58500000000, + 59025000000, + 482734577150 + ], + [ + 30000000000, + 30183202818, + 34910364113, + 35671000000, + 36195580754, + 37290794182, + 39659991303, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45019803352, + 47433574895, + 47433574895, + 50000000000, + 50898218976, + 58500000000, + 58500000000, + 58500000000, + 77666410180 + ], + [ + 25005574609, + 30000000000, + 30360877041, + 35107722907, + 39812708251, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46122418377, + 46122418377, + 46122418377, + 46122418377, + 46122418377, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 1182892418377 + ], + [ + 30000000000, + 30000000000, + 31295842518, + 35022761335, + 35870510539, + 36128151989, + 36128151989, + 36128151989, + 40000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 51611719910, + 58500000000, + 60000000000, + 158662935982 + ], + [ + 26172216336, + 30000000000, + 33170177356, + 37608881781, + 37608881781, + 39571667632, + 41849395600, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45034142002, + 50000000186, + 52930780100, + 58500000000, + 58500000000, + 144000000000 + ], + [ + 25056110959, + 25056123898, + 30000000000, + 30000000001, + 35211000001, + 37608881781, + 39585221844, + 39585221845, + 39611511251, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45034142002, + 45034142002, + 53056123897, + 58500000000, + 58500000000, + 58500000000, + 1183056123897 + ], + [ + 30000000000, + 30000000000, + 31221174001, + 33331080865, + 35671000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 58500000000, + 58500000000, + 60867452361, + 124299343309, + 411546319025, + 893570309510 + ], + [ + 30000000000, + 30000000000, + 35128632690, + 36161866372, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45224483675, + 45469274029, + 50000000000, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 58864785973, + 100084477857, + 1439103919173 + ], + [ + 26717078287, + 35102325752, + 36161866371, + 37883416642, + 39573965636, + 39616637290, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45996982851, + 53056123897, + 58500000000, + 77171738173, + 77171738173, + 77171738173, + 77171738173, + 85349794849, + 124008935140, + 702543938483 + ], + [ + 25035608159, + 30000000000, + 30000000000, + 31229271819, + 36320955428, + 39653606752, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46922883058, + 58308955428, + 58500000000, + 58864785973, + 65266607109, + 90524549442, + 191515081579, + 403593554221 + ], + [ + 26658318069, + 30000000000, + 30000000001, + 35018008313, + 36090348080, + 37608881781, + 37883416642, + 39530361658, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46298918927, + 58500000000, + 58500000000, + 58864785973, + 58864785973, + 535546466174 + ], + [ + 30000000000, + 30194086499, + 35035000000, + 35664655234, + 36964918605, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 58500000000, + 95750462236, + 140148042099 + ], + [ + 30000000000, + 30120000000, + 30120000000, + 35109713331, + 35109713331, + 35109713331, + 37608881781, + 39522477160, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 47003809139, + 58864785973, + 88218143632, + 97999116148, + 124248144524, + 427531386803, + 1849706478619 + ], + [ + 30000000000, + 30000000001, + 30227799499, + 30227799499, + 35078943068, + 35109713331, + 37107760763, + 39551850579, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 53537927199, + 55064525158, + 58500000000, + 58864785973, + 123173326701, + 1183607544099, + 2763073936429 + ], + [ + 26219573010, + 30000000000, + 34791143564, + 39507739724, + 42582006581, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46521927534, + 46521927534, + 54884114680, + 54884114680, + 54884114680, + 56343729227, + 58500000000, + 59615001579, + 82676450150, + 82676450150, + 283681426684 + ], + [ + 30000000000, + 30000000000, + 30000000001, + 31153288399, + 35653211731, + 36783854077, + 39558078138, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48531765097, + 50000000000, + 53364049357, + 58500000000, + 58500000000, + 58500000000, + 60000000000, + 1183731765097 + ], + [ + 25045954961, + 30000000000, + 30000000001, + 35111670347, + 39500336488, + 39500336488, + 41012407688, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45219594595, + 46748563734, + 55055000000, + 58500000000, + 58500000000, + 58864785973, + 138955719948, + 233829389407 + ], + [ + 25064042612, + 30000000001, + 33808630137, + 34963340678, + 36205651754, + 37237546937, + 39453521070, + 41659304446, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46341639187, + 46421522840, + 46421522840, + 46850813514, + 53409499161, + 58500000000, + 58500000000, + 76468108993 + ], + [ + 25051924090, + 30000000000, + 30000000001, + 34794395222, + 36881461713, + 39618141573, + 43076900845, + 43076900845, + 43076900845, + 43076900845, + 43076900845, + 43076900845, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46268234903, + 46268234903, + 53631924090, + 58500000000, + 446733782875 + ], + [ + 30000000000, + 30319861758, + 37127866099, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46269251165, + 46269251165, + 46945197083, + 58500000000, + 58500000000, + 58500000000, + 58500000000, + 60000000000, + 200000000000 + ], + [ + 25050213880, + 30000000000, + 30000000000, + 30000000001, + 35043000000, + 35810980771, + 37237546937, + 40989488227, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46184089839, + 54240213736, + 58500000000, + 58500000000, + 58500000000, + 58994626448, + 58994626448, + 1103461231470 + ], + [ + 30000000000, + 30000000000, + 32912069538, + 35132340616, + 36000000001, + 40842266582, + 44973255225, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45075487206, + 50000000000, + 58500000000, + 58500000000, + 58994626448, + 76240820784, + 76240820784, + 76240820784, + 130413029777 + ], + [ + 25028216378, + 30000000001, + 30247150535, + 35033752582, + 36543556734, + 36964918605, + 36964918605, + 37060165421, + 38605723607, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52945460948, + 57874992775, + 57874992775, + 58994626448, + 60405401700, + 1184396401700 + ], + [ + 25336757328, + 30000000000, + 30284833238, + 34307503929, + 35043000000, + 37237546937, + 39311444217, + 40842266582, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 57874992775, + 58994626448, + 58994626448, + 111000000000 + ], + [ + 25049828602, + 30000000000, + 30427781684, + 35040188670, + 35810980771, + 37920119030, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45578337694, + 45655331036, + 49804364952, + 50000000000, + 53087361506, + 57874992775, + 58500000000, + 111000000000, + 136810794900 + ], + [ + 29977058846, + 30000000000, + 31000000000, + 34794395222, + 35409733858, + 36374604245, + 37500000000, + 44615380169, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45423083721, + 54079255176, + 57874992775, + 58500000000, + 111000000000 + ], + [ + 30000000000, + 31098525304, + 37779951988, + 37817193455, + 39254714046, + 39779951988, + 39779951988, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45050628873, + 49979951988, + 54779951988, + 57874992775, + 57874992775, + 58500000000, + 62087372132, + 80566886512, + 81505088270, + 118593926327 + ], + [ + 27118041649, + 30000000000, + 30000000001, + 31238649761, + 32689652405, + 35045282019, + 37060165421, + 37060165421, + 38203624467, + 41001341368, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47444655637, + 50000000000, + 50043014713, + 57874992775, + 57874992775, + 58500000000, + 120821441535 + ], + [ + 29946285627, + 30312648984, + 35080972066, + 37060165421, + 37060165421, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45326142274, + 45326142274, + 45326142274, + 45423083721, + 47000000000, + 57874992775, + 58500000000, + 66000000000, + 1184917013936 + ], + [ + 26404923820, + 30000000000, + 35849384376, + 38231115428, + 40131272595, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50127087296, + 57874992775, + 58500000000, + 58500000000, + 58500000000, + 59554349534, + 59554349534, + 59554349534, + 59554349534, + 61801168916, + 284927087296 + ], + [ + 29015084937, + 35071439011, + 37817193455, + 38203624467, + 45000000000, + 45000000000, + 45000000000, + 45067923028, + 45220048012, + 45220048012, + 45220048012, + 45220048012, + 45220048012, + 45220048012, + 45220048012, + 45220048012, + 45578337694, + 46630525453, + 51078091474, + 58500000000, + 93128563201 + ], + [ + 29073479842, + 30000000001, + 34707928599, + 35775017861, + 36379607168, + 43751938201, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45979817596, + 46000612578, + 47339606444, + 50000000000, + 50000000000, + 50165875786, + 58500000000, + 58500000000, + 58500000000, + 75131847914 + ], + [ + 25058861437, + 25058861437, + 25058861437, + 25058861437, + 25058861437, + 25058861437, + 25058861437, + 25058861437, + 25058861437, + 30000000000, + 36103566432, + 38211871755, + 38576122635, + 40457361437, + 45000000000, + 45000000000, + 45000000000, + 45072912704, + 52794339367, + 57874992775, + 1185058861437 + ], + [ + 29877507432, + 29877507432, + 30000000000, + 30000000000, + 35775017861, + 36103566432, + 38061642463, + 38061642463, + 38576122635, + 38961055581, + 43069568415, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46000612578, + 58500000000, + 60237818976, + 60237818976, + 115000000000 + ], + [ + 29781982407, + 29942475605, + 30000000000, + 30000000000, + 36095293970, + 38211871755, + 38211871755, + 44290140348, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46069427061, + 58500000000, + 58500000000, + 59692941222, + 62938528510, + 284938528510 + ], + [ + 26667873447, + 30000000000, + 36095293970, + 36103566432, + 44634684677, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45433139838, + 58500000000, + 58500000000, + 58500000000, + 60166303372, + 74873038442, + 74873038442, + 74873038442, + 74873038442, + 118184696821 + ], + [ + 25057147491, + 25057147491, + 25057147491, + 25057147491, + 25057147491, + 25057147491, + 25057147491, + 25057147491, + 25057147491, + 25057147491, + 30000000000, + 35123645432, + 37971765860, + 37971765860, + 38720272605, + 45000000000, + 45000000000, + 45000000000, + 47001023594, + 60166303372, + 235057147491 + ], + [ + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 25008948003, + 30000000000, + 37283951116, + 45000000000, + 45000000000, + 46000612578, + 60166303372, + 1185008948003 + ], + [ + 29703857367, + 29703857367, + 29703857367, + 30000000000, + 30000000001, + 35288218952, + 37971765860, + 38604756868, + 38791826480, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 55052784429, + 59531014063, + 60237818976, + 284860403470 + ], + [ + 27524645535, + 30000000000, + 30000000000, + 30000000001, + 33867889213, + 35553371616, + 36237450569, + 37971765860, + 37971765860, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 51319203962, + 55052784429, + 58500000000, + 60237818976, + 284858603099 + ], + [ + 29917166015, + 30000000000, + 33974313506, + 35553371616, + 37971765860, + 37971765860, + 39141829342, + 39141829342, + 43479444729, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45185468148, + 50000000000, + 55052784429, + 300000000000 + ], + [ + 25059381670, + 25059381670, + 25059381670, + 25059381670, + 25059381670, + 25059381670, + 25059381670, + 25059381670, + 25059381670, + 25059381670, + 30000000000, + 34347441842, + 35553371616, + 37199080717, + 45000000000, + 45000000000, + 45000000000, + 46581309204, + 55052784429, + 58994626448, + 235059381670 + ], + [ + 25007323296, + 25007323296, + 25007323296, + 25007323296, + 25007323296, + 25007323296, + 25007323296, + 25007323296, + 25007323296, + 25007323296, + 25007323296, + 25007323296, + 25007323296, + 30000000000, + 32405790042, + 36786862764, + 45000000000, + 45000000000, + 45000000000, + 46723337329, + 1032007323296 + ], + [ + 26758528893, + 29230649815, + 29230649815, + 30000000000, + 30000000000, + 30000000000, + 32823587617, + 34821453538, + 36379607168, + 41531837279, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46260043518, + 47127908100, + 54981268825, + 284823587617 + ], + [ + 29738553700, + 30000000001, + 32180413318, + 33797935370, + 35288218952, + 36000000001, + 36265725018, + 36379607168, + 44616279135, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47127908100, + 50877935370, + 59488372180, + 1184797935370 + ], + [ + 26280904930, + 28483496177, + 31712150769, + 34288063238, + 36265725018, + 36265725018, + 44742073938, + 44742073938, + 44742073938, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47127908100, + 52002908100, + 52002908100, + 54981268825, + 54981268825, + 60000000000, + 71597477591, + 120427513450 + ], + [ + 30000000000, + 30151622011, + 32625452883, + 36265725018, + 36265725018, + 38001464659, + 44942852509, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45259750052, + 50000000000, + 52002908100, + 52002908100, + 75353686641 + ], + [ + 25005160750, + 25005160750, + 25005160750, + 25005160750, + 25005160750, + 25005160750, + 25005160750, + 25005160750, + 25005160750, + 25005160750, + 30000000000, + 31712150769, + 39086524536, + 43932094857, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47127380072, + 144000000000 + ], + [ + 28263508989, + 28263508989, + 29968689668, + 30000000000, + 31712150769, + 33935161929, + 35288218952, + 36265725018, + 43932094857, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47127380072, + 52553872325, + 62928766856, + 64000000000, + 64000000000, + 88223544396, + 1184952167593 + ], + [ + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 25005383259, + 34005383259, + 39037681086, + 45000000000, + 45000000000, + 45044000000, + 47127908100, + 235005383259 + ], + [ + 26032404205, + 29775617211, + 30000000000, + 30000000001, + 34454917247, + 36265725018, + 38329084868, + 43402742893, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46500000000, + 47127380072, + 52002380072, + 53625000000, + 58500000000, + 144000000000 + ], + [ + 28483496177, + 30000000000, + 32790019991, + 34100000000, + 36265725018, + 36265725018, + 43402742893, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45007443313, + 47127380072, + 58500000000, + 58500000000, + 73513876220, + 485881003650 + ], + [ + 29494713821, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 36322666093, + 42208516299, + 45000000000, + 45000000000, + 46150838650, + 1159413588747 + ], + [ + 28838730979, + 29801455608, + 30000000000, + 30000000000, + 30788817405, + 33083534009, + 35390964486, + 43159776341, + 44637639169, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47127380072, + 53625000000, + 53625000000, + 58500000000, + 119691173877 + ], + [ + 27991183667, + 29672846913, + 29928660823, + 32895853073, + 36265725018, + 36300000000, + 36322666093, + 38731672001, + 43025682697, + 44978839137, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47126749559, + 53625000000, + 53625000000, + 58500000000, + 60124724046, + 1184895853073 + ], + [ + 25012488260, + 25012488260, + 25012488260, + 25012488260, + 25012488260, + 25012488260, + 25012488260, + 25012488260, + 25012488260, + 25012488260, + 30000000000, + 31859544073, + 34229572383, + 34493517063, + 40000000000, + 45000000000, + 45000000000, + 45000000000, + 47127380072, + 50000000000, + 185012488260 + ], + [ + 29044403006, + 29494713821, + 29494713821, + 30000000000, + 33083534009, + 34454917247, + 36265725018, + 36265725018, + 41889760239, + 42591686664, + 44765667055, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46263107244, + 52001749559, + 53625000000, + 60882693963, + 2685956991555 + ], + [ + 26346902371, + 30000000000, + 34229572383, + 35003612525, + 35540410517, + 38606279787, + 39029762228, + 39029762228, + 39094451568, + 42651381794, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45099762228, + 45099762228, + 45099762228, + 45099762228, + 53625000000, + 58500000000, + 630000000000 + ], + [ + 25043576313, + 29585064853, + 30000000001, + 33263285753, + 35003612525, + 35540410517, + 41409857461, + 41889760239, + 44598860748, + 44598860748, + 44598860748, + 44598860748, + 44598860748, + 44598860748, + 44598860748, + 44598860748, + 45000000000, + 45000000000, + 48043576313, + 53625000000, + 310000000000 + ], + [ + 27494594480, + 30000000000, + 30516757670, + 32877364917, + 35077600878, + 36209096449, + 36209096449, + 40000000000, + 44877600878, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45147287372, + 48750000000, + 52001749559, + 52001749559, + 52376928175, + 53625000000, + 118702066498 + ], + [ + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 25152802152, + 29590195519, + 34229572383, + 38426631358, + 45000000000, + 45000000000, + 53548841792, + 129694290692 + ], + [ + 28189081542, + 29466975949, + 30000000000, + 30000000000, + 30516757670, + 31287641173, + 32312190388, + 32312190388, + 32877364917, + 35000000000, + 36747885502, + 38303932198, + 44803396667, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 48750000000, + 53418471535, + 53548841792, + 235003396667 + ], + [ + 26948804348, + 30000000000, + 30000000000, + 30000000000, + 32475539451, + 33246888979, + 34133027921, + 36209096449, + 39000000000, + 39057886825, + 42370333468, + 45000000000, + 45000000000, + 45000000000, + 45092011039, + 48750000000, + 50000000000, + 53418471535, + 74608077851, + 118309225654, + 1185057886825 + ], + [ + 27516169475, + 30000000000, + 31640316816, + 34180278109, + 36872108638, + 37508074889, + 42370333468, + 45000000000, + 45000000000, + 45000000000, + 45099976263, + 47311029724, + 48750000000, + 50000000000, + 50000000000, + 53418471535, + 53625000000, + 74655328039, + 74655328039, + 133473951462, + 1185105137013 + ], + [ + 28564067344, + 28564067344, + 30000000000, + 30123513932, + 32160011327, + 33982338169, + 37508074889, + 37508074889, + 42846101016, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47000000000, + 51860489663, + 53418471535, + 63123513932, + 503533969876 + ], + [ + 26280802514, + 30000000000, + 32074110885, + 33564067344, + 37508074889, + 38401634339, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48750000000, + 50000000000, + 50000000000, + 51919290443, + 53418471535, + 74986079018, + 74986079018, + 75016149778, + 75016149778, + 344805097060 + ], + [ + 25101635903, + 25101635903, + 25101635903, + 25101635903, + 25101635903, + 25101635903, + 25101635903, + 25101635903, + 25101635903, + 25101635903, + 29416575734, + 30064499763, + 34834830017, + 37508074889, + 45000000000, + 45000000000, + 45285232433, + 51919290443, + 66001639634, + 74568024131, + 118046455396 + ], + [ + 29438453763, + 30000000000, + 32693606518, + 34043573268, + 36209096449, + 36223687026, + 38233846094, + 38233846094, + 38233846094, + 38233846095, + 43046556607, + 45000000000, + 45000000000, + 45000000000, + 45048595001, + 48545574150, + 50000000000, + 51919290443, + 53418471535, + 74522306525, + 118093767919 + ], + [ + 29429383318, + 30000000000, + 30000000000, + 30083433444, + 31254301977, + 34683145196, + 38241228553, + 40000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48545574150, + 49978296432, + 53418471535, + 53418471535, + 65083433444, + 74549821672, + 76184971923, + 118121283066, + 762699117360 + ], + [ + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 25146754911, + 30000000001, + 36209096449, + 38750000000, + 45000000000, + 45000000000, + 52200105630, + 118294361309 + ], + [ + 29339190547, + 30000000001, + 31254301977, + 32693606518, + 33953504149, + 33953504149, + 35000000000, + 44795973419, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45324170228, + 50000000000, + 51919290443, + 71596869119, + 73749241160, + 73749241160, + 73749241160, + 409146145378 + ], + [ + 29438453763, + 30000000000, + 30000000000, + 30023039183, + 30023039183, + 32693606518, + 33803584044, + 44124863601, + 44360657437, + 44360657437, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45070871590, + 50000000000, + 50000000000, + 51555569661, + 57677850662, + 115023642047 + ], + [ + 25095379931, + 25095379931, + 25095379931, + 25095379931, + 25095379931, + 25095379931, + 25095379931, + 25095379931, + 25095379931, + 25095379931, + 25095379931, + 28964993202, + 29540593021, + 30378008338, + 34053601064, + 43580401596, + 45000000000, + 45000000000, + 45000000000, + 52806086931, + 356556252813 + ], + [ + 25083377727, + 25083377727, + 25083377727, + 25083377727, + 25083377727, + 25083377727, + 25083377727, + 25083377727, + 25083377727, + 25083377727, + 25083377727, + 25083377727, + 25083377727, + 29438453763, + 30000000000, + 33863922588, + 44415628266, + 45000000000, + 45000000000, + 53467879399, + 133246243740 + ], + [ + 28437712144, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 32518277304, + 33953504149, + 38750000000, + 44376759311, + 44376759311, + 44931237139, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51412826243, + 53467879399, + 132663365837 + ], + [ + 28480991683, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 31640914371, + 36537446400, + 43580401596, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45080366889, + 51412826243, + 52800518011, + 132949262301 + ], + [ + 28493210989, + 29240019471, + 30000000000, + 30011519592, + 31640914371, + 33792556946, + 43111901601, + 44932204241, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45008513612, + 51412826243, + 51747833718, + 53467879399, + 53467879399, + 1184935600908 + ], + [ + 25000000000, + 25046863232, + 25046863232, + 25046863232, + 25046863232, + 25046863232, + 25046863232, + 25046863232, + 25046863232, + 25046863232, + 28538825247, + 29438453763, + 29519320925, + 30029000000, + 44415628266, + 45000000000, + 45000000000, + 45000000000, + 45578693823, + 130254757398, + 1185046863232 + ], + [ + 28554669543, + 30000000000, + 33466258299, + 36000000001, + 45000000000, + 45000000000, + 45085624966, + 45085624966, + 45085624966, + 45085624966, + 45085624966, + 45085624966, + 45085624966, + 45085624966, + 45085624966, + 45558096239, + 51412826243, + 52800518011, + 74645396956, + 74645396956, + 285012712262 + ], + [ + 27550449210, + 30000000000, + 33113934405, + 33953504149, + 33953504149, + 33953504149, + 36692229127, + 38523275923, + 39970347207, + 43111901601, + 44304201461, + 44414098081, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45003154957, + 45558096239, + 50000000000, + 50000000000, + 132920760210 + ], + [ + 29181073024, + 29997316301, + 29997316301, + 30000000001, + 33291677138, + 33732176720, + 33953504149, + 36090657576, + 38165620385, + 38165620385, + 39185143410, + 42431286457, + 42431286457, + 42699387448, + 44993919634, + 45000000000, + 45654144932, + 51412826243, + 51412826243, + 51622985715, + 144000000000 + ], + [ + 28538825247, + 30000000000, + 30073431804, + 36090657576, + 38339864543, + 42431286457, + 42431286457, + 42699387448, + 45000000000, + 45000000000, + 45000000000, + 45439513982, + 46050579295, + 46050579295, + 46050579295, + 46050579295, + 46050579295, + 46050579295, + 51412826243, + 51763494794, + 144000000000 + ], + [ + 28538825247, + 29353783302, + 30000000000, + 30000000000, + 32921944400, + 36123874057, + 38341697407, + 38908000000, + 39185143410, + 42699387448, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45654144932, + 48836243490, + 48836243490, + 52800518011, + 285113937006 + ], + [ + 29599698064, + 30000000000, + 30000000000, + 30000000000, + 30599698064, + 31000000000, + 33437315886, + 37019556958, + 38470991464, + 38750000000, + 42431286457, + 42886623415, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45963539002, + 48836243490, + 50000000000, + 60000000000, + 986243231063 + ], + [ + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45179489475, + 45654144932, + 45654144932, + 49213090353, + 52800518011, + 73630312857, + 73630312857, + 73630312857, + 73630312857, + 1185213090353 + ], + [ + 29467737393, + 29484379682, + 29615593142, + 30000000000, + 32281429385, + 34080905845, + 37646261457, + 38908000000, + 44414098086, + 44493955250, + 44493955250, + 44493955250, + 44493955250, + 44493955250, + 44493955250, + 44493955250, + 44493955250, + 45000000000, + 48836243490, + 56411865197, + 117547004593 + ], + [ + 26901388394, + 28091292751, + 28234366167, + 29415148599, + 30000000000, + 32921944400, + 33543550827, + 37646261457, + 44067136018, + 44067136018, + 44067136018, + 44067136018, + 44067136018, + 44067136018, + 44067136018, + 44067136018, + 44531476876, + 45000000000, + 47784473327, + 55908000000, + 160000000000 + ], + [ + 25000076912, + 30000000000, + 33543550827, + 34626747557, + 37521977450, + 37646261457, + 39307247255, + 42624200268, + 45000000000, + 45000000000, + 45000000000, + 45154438040, + 50000000000, + 50000000000, + 50000000000, + 52951811794, + 56384037083, + 56411865197, + 56411865197, + 107000000000, + 132472348779 + ], + [ + 25297207833, + 30000000000, + 30000000000, + 30691686939, + 35000000000, + 36000000001, + 36000000001, + 36000000001, + 37646261457, + 38286147344, + 42697207833, + 44414098086, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 55908000000, + 56411865197, + 285297207833 + ], + [ + 28543550827, + 30000000000, + 30691686939, + 32160011327, + 33543550827, + 33977430868, + 38361565349, + 39340983571, + 44356467001, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 56384037083, + 60573692051, + 74901078291, + 144000000000 + ], + [ + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 25390090037, + 32122270947, + 35483927636, + 43110090037, + 45000000000, + 45000000000, + 56384037083, + 310390090037 + ], + [ + 25222665918, + 25222665918, + 25222665918, + 25222665918, + 25222665918, + 25222665918, + 25222665918, + 25222665918, + 25222665918, + 25222665918, + 30000000000, + 35200767962, + 38072081327, + 42622665918, + 44356467001, + 45000000000, + 45000000000, + 45000000000, + 51061983403, + 57197522761, + 1185222665918 + ], + [ + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 25172482667, + 30000000000, + 42384882813, + 44356467001, + 45000000000, + 45000000000, + 52156172202, + 144000000000 + ], + [ + 25019091517, + 25019091517, + 25019091517, + 25019091517, + 25019091517, + 25019091517, + 25019091517, + 25019091517, + 25019091517, + 25019091517, + 30000000000, + 33700851708, + 36400460071, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 56384037083, + 57197522761, + 285019091517 + ], + [ + 28924473689, + 29105759419, + 30000000001, + 31440563725, + 32000000000, + 39491312582, + 43497655082, + 44953137202, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51008229087, + 57197522761, + 57283947208, + 57283947208, + 57500703554, + 73236176385 + ], + [ + 29092911192, + 30000000000, + 30000000000, + 30000000001, + 33493865049, + 42803372618, + 43948297304, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46503371808, + 56384037083, + 57448411751, + 486083372618 + ], + [ + 29090769195, + 30000000000, + 30000000000, + 33700851708, + 36000000001, + 40746231379, + 40746231379, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46503371808, + 51451239175, + 56412000000, + 57283947208, + 144000000000 + ], + [ + 29182021241, + 30000000000, + 34016382069, + 35168837522, + 38470991464, + 40807836129, + 44021368468, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45665748721, + 48836243490, + 56384037083, + 57283947208, + 105000000000 + ], + [ + 25201082534, + 25244326185, + 25244326185, + 25244326185, + 25244326185, + 25244326185, + 25244326185, + 25244326185, + 25244326185, + 25244326185, + 25244326185, + 25244326185, + 25244326185, + 25244326185, + 29253864759, + 31934286068, + 40366451692, + 45000000000, + 45000000000, + 45188407888, + 72338043701 + ], + [ + 26853560025, + 30000000000, + 30244034386, + 33506828008, + 37844832752, + 37844832752, + 38083322694, + 38345589678, + 41125687445, + 43950439301, + 43950439301, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45253256283, + 45569733936, + 57283947208, + 1185083322694 + ], + [ + 25147711671, + 25147711671, + 25147711671, + 25147711671, + 25147711671, + 25147711671, + 25147711671, + 25147711671, + 25147711671, + 25147711671, + 25147711671, + 25147711671, + 30000000001, + 35000000000, + 44125665567, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 52871807877, + 144000000000 + ], + [ + 29422307071, + 30000000001, + 33563570398, + 37864161291, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 53625000000, + 57153527736, + 235140065084 + ], + [ + 25144939431, + 30000000000, + 31628239141, + 34963912704, + 38062239827, + 40807836129, + 42472014860, + 42864939431, + 42864939431, + 42864939431, + 42864939431, + 42864939431, + 44847731598, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47181056866, + 51457856309, + 60000000000, + 144000000000 + ], + [ + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 25182843036, + 30000000001, + 42306056866, + 45000000000, + 45000000000, + 45000000000, + 46503371808, + 210182843036 + ], + [ + 25013938138, + 25013938138, + 25013938138, + 25013938138, + 25013938138, + 25013938138, + 25013938138, + 25013938138, + 25013938138, + 25013938138, + 29054946078, + 30000000001, + 34991214128, + 37863147666, + 40521808540, + 44918558207, + 45000000000, + 45000000000, + 51013938138, + 58500000000, + 1185013938138 + ], + [ + 28911921489, + 29982245929, + 32537244302, + 34463268714, + 34746932525, + 37573845715, + 37667256437, + 38137921292, + 39848578842, + 43985823766, + 44524951561, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45286305076, + 53625000000, + 144000000000 + ], + [ + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 25079593252, + 30000000000, + 33348198633, + 44194903071, + 45000000000, + 45000000000, + 45286305076, + 86840580228 + ], + [ + 29006127923, + 29006127923, + 29006127923, + 30000000000, + 32537244302, + 35000000000, + 42232999722, + 44194903071, + 44873378569, + 44913535595, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45286305076, + 45286305076, + 50000000000, + 51048954008, + 54070608120, + 58500000000, + 117168611150 + ], + [ + 27878723387, + 30000000001, + 30000000001, + 31676965518, + 32489049097, + 32878723387, + 33348198633, + 33505254729, + 35011582033, + 37325536021, + 41818085080, + 44173067536, + 44913535595, + 44931663328, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 509989904940 + ], + [ + 25109053443, + 25109053443, + 25109053443, + 25109053443, + 25109053443, + 25109053443, + 25109053443, + 25109053443, + 25109053443, + 25109053443, + 25109053443, + 25109053443, + 25109053443, + 30000000000, + 32537244302, + 42472397418, + 44964114012, + 45000000000, + 45000000000, + 54250364697, + 73360351867 + ], + [ + 27505826737, + 30000000000, + 30751488381, + 33348198633, + 33348198633, + 33348198633, + 33348198633, + 33348198633, + 35000000000, + 40602724243, + 44913535595, + 44913535595, + 44913535595, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46028996034, + 51116449684, + 160000000000 + ], + [ + 29054946078, + 30000000000, + 30029000000, + 35186523159, + 37980283258, + 39000000000, + 41301961119, + 44913535595, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 51178723283, + 117024201064 + ], + [ + 29054946078, + 29636045000, + 30000000000, + 33125896111, + 33243706101, + 33243706101, + 33243706101, + 33243706101, + 33243706101, + 33243706101, + 33544781072, + 37960541922, + 37960541922, + 38037466200, + 43897074480, + 43897074480, + 45000000000, + 45000000000, + 45286305076, + 46028996034, + 73135491371 + ], + [ + 25297065290, + 25297065290, + 25297065290, + 25297065290, + 25297065290, + 25297065290, + 25297065290, + 25297065290, + 25297065290, + 25297065290, + 25297065290, + 25297065290, + 25297065290, + 29165488209, + 35720000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46028996034, + 114762995857 + ], + [ + 27505826737, + 29296589910, + 30000000000, + 31213204794, + 34674762605, + 41301961119, + 42190645863, + 43930696518, + 43930696518, + 43930696518, + 43930696518, + 43930696518, + 43930696518, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50393848362, + 50973219088, + 1185124449039 + ], + [ + 25092478495, + 25092478495, + 25092478495, + 25092478495, + 25092478495, + 25092478495, + 25092478495, + 25092478495, + 25092478495, + 25092478495, + 25092478495, + 29054946078, + 30054946078, + 32840417113, + 41760625669, + 44492478495, + 45000000000, + 45000000000, + 45000000000, + 46028996034, + 72714958449 + ], + [ + 28834128026, + 30000000000, + 30000000000, + 30000000001, + 32840417113, + 33348198633, + 33583772601, + 40248758526, + 41760625669, + 44913535595, + 44913535595, + 45000000000, + 45000000000, + 45000000000, + 46028996034, + 50837354715, + 50973219088, + 50973219088, + 51039276477, + 60000000000, + 1185076247238 + ], + [ + 25151000129, + 27840417113, + 30000000000, + 30000000000, + 32467313320, + 36318682597, + 41760625669, + 44913535595, + 44913535595, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45010935045, + 45020420834, + 48345499136, + 50973219088, + 144000000000 + ], + [ + 29097242478, + 30000000001, + 32840417113, + 36000000000, + 37889735994, + 37889735995, + 44913535595, + 44913535595, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45137458594, + 50973219088, + 50973219088, + 59523172234, + 73059710061, + 73059710061, + 73059710061, + 73059710061, + 117070871415 + ], + [ + 25208715464, + 30000000000, + 30000000001, + 30000000001, + 30870886368, + 32420310358, + 32420310358, + 33401079438, + 34555711394, + 37771675040, + 44608715464, + 44913535595, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48345499136, + 50000000000, + 50000000000, + 50973219088, + 144000000000 + ], + [ + 28114535852, + 28114535852, + 30000000000, + 30000000001, + 32798954313, + 35000000000, + 37863229429, + 37863229429, + 41556131946, + 44913535595, + 44928535567, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45188430627, + 48345499136, + 50837354715, + 50973219088, + 50973219088, + 160000000000 + ], + [ + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 25302969403, + 29054946078, + 32231646107, + 44702969403, + 45000000000, + 45000000000, + 50973219088, + 144000000000 + ], + [ + 28972017395, + 31154147394, + 32467313320, + 33346511368, + 37735591395, + 42975702281, + 42975702281, + 42975702281, + 42975702281, + 44928535567, + 44928535567, + 44928535567, + 44928535567, + 44928535567, + 45000000000, + 45000000000, + 45000000000, + 45250977167, + 48026076436, + 50973219088, + 285154147394 + ], + [ + 25193886174, + 25193886174, + 25193886174, + 25193886174, + 25193886174, + 25193886174, + 25193886174, + 25193886174, + 25193886174, + 25193886174, + 25193886174, + 29054946078, + 31561126972, + 32763998601, + 35871678528, + 44992191978, + 45000000000, + 45000000000, + 45044000000, + 52001954579, + 144000000000 + ], + [ + 27763998601, + 29099883156, + 30000000000, + 30000000000, + 32763998601, + 35494485149, + 42439711973, + 44928535567, + 44928535567, + 44928535567, + 44992191978, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50807676985, + 52001954579, + 72683665323, + 1185179711973 + ], + [ + 29054946078, + 30000000000, + 33506722498, + 38750000000, + 38750000000, + 41645997901, + 43730346862, + 43730346862, + 43730346862, + 44992191978, + 44992191978, + 44992191978, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45486921308, + 58349606585, + 81595262619, + 414164735866 + ], + [ + 28309972597, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 32615655960, + 35125424644, + 41645997901, + 44928535567, + 44988905517, + 44992191978, + 45000000000, + 45000000000, + 45103140978, + 45250977167, + 51020198570, + 58349606585, + 285250852649 + ], + [ + 25306847838, + 25306847838, + 25306847838, + 25306847838, + 25306847838, + 25306847838, + 25306847838, + 25306847838, + 25306847838, + 25306847838, + 25306847838, + 25306847838, + 25306847838, + 29306847838, + 31493293920, + 33263511036, + 42464958895, + 45000000000, + 45000000000, + 45336909700, + 144000000000 + ], + [ + 25128388700, + 25128388700, + 25128388700, + 25128388700, + 25128388700, + 25128388700, + 25128388700, + 25128388700, + 25128388700, + 25128388700, + 25128388700, + 30000000000, + 30257850321, + 36000000001, + 44988905517, + 45000000000, + 45615026181, + 52001954579, + 58349606585, + 58349606585, + 1185128388700 + ], + [ + 27634673941, + 30000000000, + 30000000000, + 30257850321, + 30257850321, + 30257850321, + 30257850321, + 31493293920, + 37607874210, + 38072178475, + 44988905517, + 44988905517, + 44988905517, + 44988905517, + 45000000000, + 45000000000, + 45000000000, + 45054238025, + 48896932750, + 58349606585, + 116522436609 + ], + [ + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 25174733729, + 30000000000, + 30257850321, + 44988905517, + 44988905517, + 45000000000, + 285174733729 + ], + [ + 25041530884, + 25041530884, + 25041530884, + 25041530884, + 25041530884, + 25041530884, + 25041530884, + 25041530884, + 25041530884, + 25041530884, + 28152332787, + 30000000001, + 33226033655, + 33506722498, + 36300000000, + 43751976675, + 44988905517, + 44988905517, + 45615026181, + 51004599650, + 1185041530884 + ], + [ + 28869761463, + 28934338870, + 30000000000, + 30000000000, + 31676971193, + 33328817845, + 39000000000, + 44988905517, + 44988905517, + 44988905517, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45615026181, + 50967887110, + 51004599650, + 58349606585, + 58349606585, + 118803523453 + ], + [ + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 25100642763, + 28279424167, + 29796309134, + 31781078642, + 44900642763, + 44988905517, + 45044000000, + 114358100558 + ], + [ + 26504848673, + 28121704104, + 28121704104, + 28869480078, + 30000000000, + 30531942026, + 31781078642, + 33262135815, + 35558350173, + 44900922700, + 44988905517, + 44988905517, + 44988905517, + 44988905517, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45615026181, + 52001954579, + 284942922700 + ], + [ + 25058417666, + 25058417666, + 25058417666, + 25058417666, + 25058417666, + 25058417666, + 25058417666, + 25058417666, + 25058417666, + 25058417666, + 25058417666, + 26466955147, + 30000000001, + 36000000000, + 40075186658, + 44933968627, + 44988905517, + 45000000000, + 45000000000, + 50810987045, + 285058417666 + ], + [ + 25046966075, + 25046966075, + 25046966075, + 25046966075, + 25046966075, + 25046966075, + 25046966075, + 25046966075, + 25046966075, + 25046966075, + 25046966075, + 25046966075, + 25046966075, + 28882012328, + 30000000001, + 34774865349, + 44547795486, + 45000000000, + 45000000000, + 60000000000, + 1185046966075 + ], + [ + 27957321259, + 27957321259, + 27957321259, + 28837555123, + 30000000000, + 30000000000, + 31676971193, + 35452330892, + 37651901701, + 38750000000, + 40119417238, + 44988905517, + 44988905517, + 45000000000, + 45000000000, + 46577690911, + 50967887110, + 50967887110, + 60000000000, + 81566092513, + 9984862202297 + ], + [ + 26400625908, + 27741324377, + 27746518714, + 28074439901, + 30000000000, + 31781078642, + 38750000000, + 44812637869, + 44988905517, + 44988905517, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46577690911, + 46577690911, + 116591235680 + ], + [ + 25048232685, + 25048232685, + 25048232685, + 25048232685, + 25048232685, + 25048232685, + 25048232685, + 25048232685, + 25048232685, + 25048232685, + 27746518714, + 30000000000, + 33843936882, + 38750000000, + 44988905517, + 44988905517, + 45000000000, + 45000000000, + 46553611346, + 61683041888, + 182438097049 + ], + [ + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 25004044938, + 28000000000, + 32397076644, + 37876800544, + 42082005442, + 45000000000, + 56007222698, + 100000000000 + ], + [ + 27959007905, + 28742083523, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 33086815791, + 33086815791, + 37473257221, + 44656248085, + 44656248085, + 44963000000, + 44988905517, + 44988905517, + 45000000000, + 45000000000, + 45000000000, + 45548088932, + 51024000000, + 144000000000 + ], + [ + 26748469642, + 28869761463, + 30000000001, + 35000000000, + 42693091692, + 42693091692, + 42693091692, + 42693091692, + 42693091692, + 42693091692, + 42693091692, + 42693091692, + 42693091692, + 42693091692, + 43948060318, + 44815027209, + 44988905517, + 45000000000, + 45548088932, + 46577690911, + 1184979742673 + ], + [ + 26468221757, + 30000000000, + 30000000000, + 32043729733, + 33311893274, + 40109383833, + 43948060318, + 44901465800, + 44901465800, + 44901465800, + 44901465800, + 44901465800, + 44901465800, + 44956068367, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 52577235219, + 385061037541 + ], + [ + 27043729733, + 30000000000, + 32521000000, + 33858983558, + 38281888293, + 40068626357, + 42395266554, + 43948060318, + 44901465800, + 44956068367, + 44956068367, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45548088932, + 56000000000, + 73068626357, + 885068626357 + ], + [ + 25130708022, + 25130708022, + 25130708022, + 25130708022, + 25130708022, + 25130708022, + 25130708022, + 25130708022, + 25130708022, + 25130708022, + 28000000000, + 29036831487, + 30000000000, + 40130708022, + 43948060318, + 44956068367, + 45000000000, + 45000000000, + 45000000000, + 46282213815, + 885130708022 + ], + [ + 27079122019, + 27526345935, + 30000000000, + 31690032068, + 37079122019, + 37079122019, + 40477816649, + 41619778071, + 44385048341, + 44656248085, + 44914406555, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45548088932, + 46282213815, + 56641038903, + 885079122019 + ], + [ + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 25068622705, + 30000000000, + 39063352907, + 42395266554, + 45000000000, + 45000000000, + 46282213815, + 128671144644 + ], + [ + 26902652224, + 28513268579, + 28513268579, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 32842308397, + 32842308397, + 40035048102, + 40739955338, + 41913021711, + 41913021711, + 42470568513, + 44656248085, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 48799126139, + 100000000000 + ], + [ + 26845793024, + 27634673941, + 30000000000, + 30000000001, + 32499000000, + 36092685285, + 40000000000, + 40000000000, + 42000000000, + 42000000000, + 42431573334, + 44547795486, + 44901465800, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51107826417, + 56413423802, + 90000000000, + 1185013423802 + ], + [ + 25068181098, + 28068181098, + 32190454901, + 32499000000, + 36200920724, + 40035048102, + 40068181098, + 44656248085, + 44901465800, + 44901465800, + 44901465800, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46518223858, + 50000000000, + 51107826417, + 52178953404, + 110000000000 + ], + [ + 25105195065, + 25105195065, + 25105195065, + 25105195065, + 25105195065, + 25105195065, + 25105195065, + 25105195065, + 25105195065, + 25105195065, + 29000000000, + 32752257476, + 40268689536, + 44901465800, + 44901465800, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46455206728, + 285105195065 + ], + [ + 27079122019, + 27513069405, + 27513069405, + 27513069405, + 27513069405, + 27513069405, + 27513069405, + 27513069405, + 27513069405, + 27558962807, + 30000000000, + 33390741457, + 40059317204, + 41975103376, + 42550829532, + 44901465800, + 45000000000, + 45000000000, + 50000000000, + 52178953404, + 235059317204 + ], + [ + 27096253772, + 30000000000, + 31856465183, + 32905446638, + 36000000001, + 40785682351, + 41095614966, + 43948060318, + 44774770946, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45084969994, + 45084969994, + 52178953404, + 55000000000, + 55000000000, + 55000000000, + 2485024733093 + ], + [ + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 25096432632, + 30000000000, + 44774770946, + 45000000000, + 45084969994, + 54192507544, + 1185096432632 + ], + [ + 26983756894, + 28607465937, + 30000000000, + 30000000000, + 30000000001, + 30942135857, + 30942135857, + 32752257476, + 35810764340, + 40644380658, + 44774770946, + 44901465800, + 45000000000, + 45101749782, + 48401752079, + 56938143127, + 100000000000, + 149398497206, + 186064952079, + 186064952079, + 284963952079 + ], + [ + 27280602078, + 27397076644, + 28756534702, + 30000000000, + 30942135857, + 32521754895, + 33299958066, + 33299958066, + 33299958066, + 39949958066, + 44774770946, + 44858707261, + 44901465800, + 44901465800, + 45000000000, + 45000000000, + 49771025583, + 52178953404, + 90000000000, + 99979958066, + 6515000000000 + ], + [ + 27366939876, + 27499420429, + 30000000000, + 30942135857, + 31715946192, + 31715946192, + 31715946192, + 31715946192, + 31715946192, + 33864389113, + 44774770946, + 44901465800, + 44901465800, + 45000000000, + 45000000000, + 45084969994, + 48392976385, + 49771025583, + 52178953404, + 100000000000, + 436033115700 + ], + [ + 25083541792, + 25083541792, + 25083541792, + 25083541792, + 25083541792, + 25083541792, + 25083541792, + 25083541792, + 25083541792, + 25083541792, + 28516666357, + 31204796298, + 36003291270, + 44901465800, + 44901465800, + 45000000000, + 45000000000, + 47657000000, + 100000000000, + 100000000000, + 2529609923342 + ], + [ + 25039882469, + 25039882469, + 25039882469, + 25039882469, + 25039882469, + 25039882469, + 25039882469, + 25039882469, + 25039882469, + 25039882469, + 25039882469, + 25039882469, + 25039882469, + 27397076644, + 33685623082, + 44901465800, + 45000000000, + 45084969994, + 51884941721, + 100000000000, + 610696437702 + ], + [ + 28164830280, + 28864186268, + 28864186268, + 29652375509, + 30000000000, + 30509642122, + 31524030000, + 32662024455, + 35624959082, + 36537080563, + 38750000000, + 44752449022, + 44901465800, + 45000000000, + 45037000000, + 48392976385, + 51884941721, + 62864186268, + 87000000000, + 99780644476, + 300000000000 + ], + [ + 27260329484, + 29652375509, + 30351353620, + 31557488242, + 31606740771, + 42286005753, + 44981063179, + 45000000000, + 45000000000, + 49771025583, + 52002926789, + 408072101816, + 408072101816, + 408072101816, + 408072101816, + 408072101816, + 408072101816, + 408072101816, + 408072101816, + 408072101816, + 408072101816 + ], + [ + 27248292182, + 30000000000, + 33814039683, + 39942017926, + 44960720659, + 45000000000, + 45000000000, + 45000000000, + 52923318238, + 208157983034, + 408060064514, + 408060064514, + 408060064514, + 408060064514, + 408060064514, + 408060064514, + 408060064514, + 408060064514, + 408060064514, + 408060064514, + 4182065577881 + ], + [ + 27309404577, + 30000000000, + 30000000001, + 33598114337, + 35713064364, + 44586660225, + 44960720659, + 44981063179, + 45000000000, + 48392976385, + 52923318238, + 69838571580, + 69838571580, + 85039716557, + 100000000000, + 100000000000, + 100000000000, + 408997350194, + 408997350194, + 408997350194, + 1184833064364 + ], + [ + 28164479966, + 29435405960, + 31255724492, + 32560352849, + 33538981555, + 33538981555, + 37760088685, + 44675699985, + 44960720659, + 44981063179, + 44981063179, + 45000000000, + 45000000000, + 45000000000, + 46509479483, + 51884941721, + 52923318238, + 57198136488, + 100000000000, + 100000000000, + 1317834407205 + ], + [ + 27274712345, + 28547205202, + 30000000000, + 31500582008, + 31500582008, + 31500582008, + 31500582008, + 31524030000, + 33755406602, + 35757998061, + 41052906471, + 44774770946, + 44774770946, + 44774770946, + 44981063179, + 45000000000, + 45000000000, + 46900579574, + 50881368465, + 341978438640, + 1184858283762 + ], + [ + 27054764483, + 28325040006, + 28325040006, + 30000000000, + 31448100999, + 31524030000, + 33786847624, + 35901802753, + 41052906471, + 44981063179, + 45000000000, + 46900579574, + 52923318238, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 441925802753 + ], + [ + 27106501212, + 27135836538, + 27959842613, + 30000000000, + 30000000000, + 34641818683, + 39000000000, + 44551428926, + 44981063179, + 44981063179, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46900579574, + 48382845465, + 69629854393, + 179314300601, + 185742818683, + 185742818683, + 497880604538 + ], + [ + 27204143651, + 28426483178, + 30000000000, + 31553661389, + 40137644787, + 40137644787, + 40137644787, + 40137644787, + 42508656114, + 42508656114, + 42508656114, + 42508656114, + 42508656114, + 42508656114, + 44589022082, + 45000000000, + 45000000000, + 45033000000, + 62657644787, + 100000000000, + 989411050182 + ], + [ + 27183971558, + 28609669658, + 30000000000, + 32540107228, + 32540107228, + 33726725032, + 35862249178, + 35862249178, + 40659751818, + 44981063179, + 45000000000, + 45000000000, + 49472852098, + 51884970861, + 59786118564, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 151354924448, + 179314300601 + ], + [ + 27234986016, + 30000000000, + 31431906792, + 33787342506, + 33787342506, + 35941066673, + 42632893662, + 42632893662, + 44981063179, + 45000000000, + 45000000000, + 45033000000, + 48392976385, + 50000000000, + 51884970861, + 52231000000, + 59786118564, + 185789487152, + 185789487152, + 185789487152, + 1788695461774 + ], + [ + 27352301617, + 28735028840, + 30000000000, + 31502951945, + 35993120501, + 43748502575, + 45000000000, + 45000000000, + 46900579574, + 49374760169, + 51884970861, + 51884970861, + 59786118564, + 88459823438, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 106114500588, + 179314300601, + 3880357567220 + ], + [ + 27420821298, + 28531787817, + 30000000000, + 30000000001, + 32806718008, + 36000000001, + 36428337146, + 45000000000, + 45000000000, + 46029155858, + 46029155858, + 46029155858, + 46029155858, + 46029155858, + 46029155858, + 46900579574, + 48903103796, + 51884970861, + 78139600065, + 100000000000, + 127555350285 + ], + [ + 27352301617, + 30000000001, + 32498549596, + 42592769312, + 42592769312, + 44946000000, + 44981063179, + 45000000000, + 45000000000, + 51884970861, + 57211040136, + 73493467759, + 78073351190, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 185935735131 + ], + [ + 25000076912, + 30000000000, + 33663162031, + 41710077012, + 43519237253, + 44981063179, + 44981063179, + 46900579574, + 57690313237, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 109467357713, + 485889695209 + ], + [ + 27311121525, + 27905990670, + 30000000000, + 30000000001, + 32033046617, + 33690952236, + 33690952236, + 35817562474, + 41858986005, + 44799174107, + 44981063179, + 45000000000, + 45000000000, + 46900579574, + 50000000000, + 50000000000, + 50132217396, + 52766361984, + 57690313237, + 59927928766, + 1184778916780 + ], + [ + 27317567688, + 28387166171, + 30000000000, + 30103633864, + 31785157191, + 33329931929, + 37751363438, + 41858986005, + 44981063179, + 44981063179, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52231000000, + 57690313237, + 59927928766, + 65173660278, + 208077071280, + 208077071280, + 1025854961280 + ], + [ + 27352301617, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 31733100500, + 31811250168, + 33297030258, + 35919699951, + 42494897893, + 43081054257, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50881054257, + 57690313237, + 65040679227, + 87145484955, + 1184881054257 + ], + [ + 27352301617, + 30000000001, + 33287182577, + 35614553755, + 36294987581, + 42497340337, + 42497340337, + 44861397837, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 53686769772, + 58344414700, + 62920725005, + 65040679227, + 212780276347 + ], + [ + 26298175883, + 30000000000, + 30000000000, + 30000000001, + 35954238565, + 35954238565, + 36294987581, + 39000000000, + 43183462716, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50336974581, + 57690313237, + 60008462716, + 96415936390, + 179314300601 + ], + [ + 25027889287, + 28503535828, + 30000000001, + 30555564547, + 31858612607, + 35951060239, + 35998665136, + 35998665136, + 35998665136, + 43227889287, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 55047249345, + 65040679227, + 65040679227, + 80337433577, + 82915679227, + 408760270107 + ], + [ + 25091029204, + 25091029204, + 25091029204, + 25091029204, + 25091029204, + 25091029204, + 25091029204, + 25091029204, + 25091029204, + 25091029204, + 25091029204, + 30000000000, + 31854205659, + 34134877027, + 35951201796, + 43532204891, + 45000000000, + 45000000000, + 65040679227, + 80671909231, + 1185091029204 + ], + [ + 27366939876, + 30000000000, + 35931965445, + 40212114966, + 43271792853, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49988251061, + 57679687349, + 69683734710, + 82915679227, + 186172792853, + 186172792853, + 186172792853, + 200000000000, + 200000000000, + 200000000000, + 200000000000, + 300000000000 + ], + [ + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 25078448490, + 30000000000, + 32419882312, + 45000000000, + 45000000000, + 45000000000, + 57679687349, + 122689921673 + ], + [ + 25862839788, + 29781860221, + 29781860221, + 30000000000, + 30000000000, + 30555564547, + 33577822093, + 35000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48419451973, + 52029584492, + 57679687349, + 57679687349, + 57685841815, + 58028335073, + 80337433577, + 1184926234707 + ], + [ + 27224549696, + 30000000000, + 30000000001, + 31822516467, + 33526959688, + 35685695328, + 38750000001, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50950730009, + 57679687349, + 57679687349, + 57685841815, + 62918821534, + 100085757170 + ], + [ + 25013400400, + 25013400400, + 25013400400, + 25013400400, + 25013400400, + 25013400400, + 25013400400, + 25013400400, + 25013400400, + 25013400400, + 27545605145, + 33820211344, + 44658709387, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46616111125, + 52029584492, + 78404162309, + 165095604142 + ], + [ + 27366939876, + 30000000000, + 31821884900, + 31822516467, + 33870763669, + 36844583394, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49532677782, + 52029584492, + 56150482880, + 59927928766, + 91859742428, + 127344355026 + ], + [ + 25029850521, + 25029850521, + 25029850521, + 25029850521, + 25029850521, + 25029850521, + 25029850521, + 25029850521, + 25029850521, + 25029850521, + 25029850521, + 25029850521, + 25029850521, + 28477968863, + 32239010469, + 34043918307, + 45000000000, + 45000000000, + 45000000000, + 56150482880, + 2485029850521 + ], + [ + 27293826793, + 28557055075, + 28557055075, + 30000000001, + 34043918307, + 35845708451, + 37896589912, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45005000000, + 51709540393, + 56146394147, + 57685841815, + 62255062626, + 69552787403, + 111236446491, + 191203067963 + ], + [ + 27235496573, + 30000000000, + 30000000000, + 31593278921, + 32969300257, + 33983157728, + 34875611408, + 34875611408, + 37353037575, + 37353037575, + 38462196447, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49981858075, + 56146394147, + 57685841815, + 100099000000 + ], + [ + 25050686057, + 25050686057, + 25050686057, + 25050686057, + 25050686057, + 25050686057, + 25050686057, + 25050686057, + 25050686057, + 25050686057, + 25050686057, + 30929306304, + 34043918307, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52029584492, + 56146394147, + 100099000000 + ], + [ + 25022505054, + 25022505054, + 25022505054, + 25022505054, + 25022505054, + 25022505054, + 25022505054, + 25022505054, + 25022505054, + 25022505054, + 25022505054, + 25022505054, + 25022505054, + 27359594409, + 32969300257, + 42521231425, + 45000000000, + 45000000000, + 45000000000, + 46337023091, + 118836479393 + ], + [ + 27387166025, + 28669406432, + 30602780939, + 31484650128, + 32969300257, + 34875611408, + 35797045501, + 40021085084, + 43474736592, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46337023091, + 50539477019, + 60000000000, + 1184848168365 + ], + [ + 27220185281, + 29850287485, + 30000000000, + 30000000000, + 30000000001, + 32906265651, + 34043918307, + 35687481275, + 43208551971, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45078000000, + 46337023091, + 49884915265, + 55869784561, + 56146394147, + 58488100101, + 100050640949 + ], + [ + 25005689685, + 25005689685, + 25005689685, + 25005689685, + 25005689685, + 25005689685, + 25005689685, + 25005689685, + 25005689685, + 25005689685, + 27350124507, + 30086818493, + 35693108502, + 40053454953, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 45078000000, + 52827321672, + 144000000000 + ], + [ + 27366939876, + 30000000000, + 30000000001, + 32000000000, + 34885954588, + 35957781555, + 40257523547, + 43399000956, + 44901003334, + 45000000000, + 45078000000, + 49744696218, + 49816811141, + 49816811141, + 51907087217, + 69578466997, + 99923628701, + 99923628701, + 99923628701, + 99923628701, + 200000000000 + ], + [ + 27387166025, + 30000000000, + 30125882627, + 32969300257, + 42503460712, + 42503460712, + 42503460712, + 42503460712, + 42503460712, + 42503460712, + 42503460712, + 42503460712, + 43401388233, + 43401388233, + 45000000000, + 45000000000, + 46337023091, + 49240188065, + 50000000000, + 58288701967, + 1184973863834 + ], + [ + 27375027553, + 27837767367, + 27837767367, + 27837767367, + 29273438785, + 30000000000, + 30000000000, + 31563679177, + 31696688588, + 33007561843, + 34830205524, + 38993551213, + 43350450865, + 43399000956, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48993551213, + 327105948513 + ], + [ + 25101292283, + 29002947906, + 29101292283, + 30000000000, + 31778183339, + 35997254912, + 35997254912, + 35997254912, + 36000000000, + 42000000000, + 42396495806, + 43399000956, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46337023091, + 57854744925, + 175961152143 + ], + [ + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 25170149474, + 30555564547, + 32653180639, + 42413302191, + 45000000000, + 45000000000, + 48325056725, + 100099000000 + ], + [ + 27387166025, + 29181073024, + 30000000001, + 30000000001, + 34455530871, + 35748488499, + 35901402640, + 42011342764, + 42011342764, + 43306145503, + 43399000956, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46271104607, + 48595862227, + 52789140464, + 58000000000, + 58000000000, + 100000000000 + ], + [ + 25072156179, + 25072156179, + 25072156179, + 25072156179, + 25072156179, + 25072156179, + 25072156179, + 25072156179, + 25072156179, + 25072156179, + 25072156179, + 25072156179, + 27647084959, + 30000000000, + 35000000000, + 37391508931, + 43401388233, + 45000000000, + 45000000000, + 48744333692, + 100099000000 + ], + [ + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 25067378305, + 28067378305, + 30000000000, + 31700354598, + 43401388233, + 45000000000, + 48672581991, + 1185067378305 + ], + [ + 27232528705, + 30000000000, + 30715236132, + 34610259356, + 39927031658, + 42011342764, + 43399000956, + 43401388233, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47092601243, + 48672581991, + 52789140464, + 53562652663, + 58000000000, + 58000000000, + 90000000000, + 884917518859 + ], + [ + 27328365879, + 30000000000, + 30000000001, + 30715236132, + 35797101297, + 36952845004, + 42013356033, + 42315009846, + 43401388233, + 43401388233, + 44200694117, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49884915265, + 58461513007, + 112012407844, + 885013356033 + ], + [ + 27374913829, + 28462215611, + 30000000000, + 30000000001, + 32571487754, + 34927201214, + 35183374587, + 38580322597, + 41470627438, + 43401388233, + 45000000000, + 45000000000, + 47092601243, + 47383651822, + 48879000000, + 50000000000, + 50000000000, + 50000000000, + 58729529721, + 72799276319, + 885055126109 + ], + [ + 26802202561, + 27596587327, + 30000000000, + 30000000000, + 30169325617, + 33832280640, + 38580322597, + 38580322597, + 38580322597, + 41682813855, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 45147197488, + 47383651822, + 48126940161, + 48126940161, + 49066750574, + 90000000000, + 1185126940161 + ], + [ + 25154676320, + 25154676320, + 25154676320, + 25154676320, + 25154676320, + 25154676320, + 25154676320, + 25154676320, + 25154676320, + 25154676320, + 25154676320, + 27486716236, + 30000000000, + 34619641256, + 36000000000, + 38580322597, + 43401388233, + 45000000000, + 45000000000, + 48246499510, + 180000000000 + ], + [ + 25130408134, + 27387166025, + 29130408134, + 30000000000, + 30000000000, + 32495003355, + 33970502374, + 36027646765, + 40068701757, + 42130408134, + 42332039916, + 43401388233, + 43401388233, + 45000000000, + 45000000000, + 47383651822, + 57094875991, + 60000000000, + 70931814544, + 111911085726, + 523880350920 + ], + [ + 25187446411, + 25187446411, + 25187446411, + 25187446411, + 25187446411, + 25187446411, + 25187446411, + 25187446411, + 25187446411, + 25187446411, + 25187446411, + 25187446411, + 25187446411, + 27441303707, + 30000000001, + 35000000000, + 38580322597, + 43401388233, + 45000000000, + 46271104607, + 113127879948 + ], + [ + 25013729679, + 30000000000, + 31465916859, + 32947578348, + 41242505032, + 42013729679, + 43401388233, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45285574295, + 48013729679, + 69478709089, + 69478709089, + 69478709089, + 69478709089, + 105000000000, + 1185013729679 + ], + [ + 25336355663, + 27441303707, + 30824837838, + 31774167545, + 38580322597, + 42057555663, + 43057555663, + 43057555663, + 43057555663, + 43057555663, + 43057555663, + 43401388233, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 46372073700, + 57685841815, + 57685841815, + 71361171311, + 71361171311 + ], + [ + 25082963733, + 25082963733, + 25082963733, + 25082963733, + 25082963733, + 25082963733, + 25082963733, + 25082963733, + 25082963733, + 25082963733, + 28770109524, + 30000000000, + 30923147747, + 34923992733, + 43401388233, + 45000000000, + 45000000000, + 45285574295, + 57685841815, + 111682122575, + 1527080451773 + ], + [ + 27370327785, + 30000000000, + 30000000000, + 31370406686, + 31757329305, + 35680380959, + 38580322597, + 43401388233, + 43401388233, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 47383651822, + 51270946568, + 58258000000, + 72722775423, + 72722775423 + ], + [ + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 25095597285, + 30000000000, + 42520621288, + 43401388233, + 45000000000, + 45000000000, + 50000000000, + 126912606876 + ], + [ + 27292642995, + 30000000000, + 30824837838, + 31594343121, + 32000000000, + 37826447258, + 41778441165, + 43401388233, + 44224554036, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45285574295, + 46054192826, + 48973511241, + 50000000000, + 62000000000, + 191328632739 + ], + [ + 25050985125, + 25050985125, + 25050985125, + 25050985125, + 25050985125, + 25050985125, + 25050985125, + 25050985125, + 25050985125, + 25050985125, + 25050985125, + 25050985125, + 27480221449, + 29473872422, + 32480221449, + 35800867613, + 43401388233, + 45000000000, + 45000000000, + 48382727935, + 196783228135 + ], + [ + 27248204205, + 27627862087, + 30000000000, + 30000000000, + 30000000001, + 30824837838, + 31853000000, + 35656031292, + 35798367079, + 41220332173, + 43401388233, + 43401388233, + 44224554036, + 45000000000, + 45043044582, + 50000000000, + 50000000000, + 50562538647, + 50562538647, + 63048484591, + 1185048484591 + ], + [ + 27544744071, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 32480221449, + 41220332173, + 43401388233, + 45000000000, + 45098332430, + 1000000000000 + ], + [ + 27209342513, + 27480221449, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30804609425, + 33562645262, + 36990685223, + 43401388233, + 43401388233, + 44771869330, + 45000000000, + 45000000000, + 45000000000, + 48329465051, + 50562538647, + 1374640982969 + ], + [ + 27255227008, + 30824837838, + 30824837838, + 30824837838, + 30824837838, + 30824837838, + 30824837838, + 31594343121, + 31594343121, + 32525272911, + 35722963294, + 39044949191, + 43401388233, + 45000000000, + 46756354713, + 52593991185, + 144000000000, + 410056589694, + 410056590199, + 510661107330, + 16329206038530 + ], + [ + 27251641492, + 27319484684, + 28554976076, + 30000000000, + 31535549070, + 32604210110, + 33741585348, + 35590552578, + 38750000000, + 41317817854, + 43401388233, + 44837079875, + 45000000000, + 46756354713, + 50000000000, + 69878489099, + 69878489099, + 69878489099, + 441970480275, + 784850480275, + 1199306808346 + ], + [ + 27276932689, + 28036645602, + 28483972580, + 30129053230, + 30923147747, + 31560840267, + 35840516014, + 35892576766, + 41317817854, + 43401388233, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45028090458, + 45028090458, + 46756354713, + 47132483133, + 50562538647, + 85028008824 + ], + [ + 27387166025, + 30000000001, + 31566110504, + 35958305470, + 42904881052, + 44913560927, + 44913560927, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45028090458, + 45028090458, + 45285574295, + 46756354713, + 2240078253669 + ], + [ + 25064892920, + 27601578670, + 30000000000, + 30206209459, + 35064892920, + 42404746733, + 42404746733, + 42404746733, + 42404746733, + 42404746733, + 42404746733, + 42404746733, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45298700614, + 55250424407, + 56975997960, + 349013026384 + ], + [ + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 25060119888, + 27339560454, + 30804609425, + 39000000000, + 43401388233, + 45000000000, + 45000000000, + 112240935182 + ], + [ + 27185146242, + 30000000000, + 30000000001, + 32796239137, + 35905705676, + 37808547057, + 42904881052, + 43401388233, + 43401388233, + 45000000000, + 45000000000, + 45028090458, + 46373273957, + 47905705676, + 48530348550, + 48530348550, + 48530348550, + 50000000000, + 50562538647, + 50728725132, + 69550251886 + ], + [ + 27287966269, + 30000000001, + 30820883663, + 35747647858, + 35747647858, + 35747647858, + 35747647858, + 35753375496, + 35753375496, + 36300000000, + 43401388233, + 43401388233, + 44859627849, + 45000000000, + 45000000000, + 46373273957, + 46373273957, + 50728725132, + 52593991185, + 347953554942, + 1184960920132 + ], + [ + 25095943800, + 30000000000, + 30000000000, + 32568333077, + 34714157310, + 34714157310, + 35882671526, + 40000000000, + 41694358705, + 42327046137, + 42393605098, + 43401388233, + 43401388233, + 43401388233, + 45000000000, + 45000000000, + 45197787557, + 50000000000, + 54445865422, + 60000000000, + 71093056878 + ], + [ + 27387166025, + 29771041960, + 29771041960, + 31229348408, + 32000000000, + 34833156033, + 36000000001, + 36058505156, + 36058505156, + 40000000000, + 42338390642, + 42393605098, + 42393605098, + 43401388233, + 44224554036, + 45000000000, + 45028090458, + 46373273957, + 50728725132, + 56617445039, + 1185147010085 + ], + [ + 28139992965, + 29727185767, + 30000000000, + 30000000000, + 31969981905, + 35107117697, + 35107117697, + 40231325170, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45107471401, + 45107471401, + 45107471401, + 45107471401, + 48616460917, + 56617445039, + 70032119366 + ], + [ + 26298478583, + 28248717984, + 30000000000, + 35107117697, + 43401388233, + 43401388233, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45168717984, + 45168717984, + 45168717984, + 45168717984, + 45168717984, + 50728725132, + 56617445039, + 144000000000 + ], + [ + 27708936429, + 28829855102, + 30820883663, + 32944591585, + 32944591585, + 32944591585, + 34012946132, + 34012946132, + 39926970073, + 43401388233, + 43551540393, + 44130508041, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48898182859, + 50652911796, + 50652911796, + 113597077216 + ], + [ + 25216891324, + 25216891324, + 25216891324, + 25216891324, + 25216891324, + 25216891324, + 25216891324, + 25216891324, + 25216891324, + 25216891324, + 25216891324, + 30000000000, + 32798592597, + 34889525116, + 41697888895, + 43401388233, + 44130508041, + 45000000000, + 50728725132, + 56268349791, + 986216891324 + ], + [ + 27277174836, + 30000000000, + 35763921672, + 42797784023, + 43401388233, + 43551540393, + 43551540393, + 43551540393, + 43551540393, + 43551540393, + 43551540393, + 43551540393, + 43551540393, + 43551540393, + 43551540393, + 45000000000, + 45000000000, + 45000000000, + 49197784023, + 56268349791, + 986197784023 + ], + [ + 27271343678, + 27271343678, + 30000000000, + 33500123953, + 35191952865, + 35687221840, + 37791191381, + 40349211734, + 40349211734, + 42490817385, + 42750185929, + 42791952865, + 43401388233, + 44130508041, + 45000000000, + 45000000000, + 45000000000, + 48853410313, + 56268349791, + 74082379045, + 2433554054347 + ], + [ + 25245752587, + 25245752587, + 25245752587, + 25245752587, + 25245752587, + 25245752587, + 25245752587, + 25245752587, + 25245752587, + 25245752587, + 25245752587, + 25245752587, + 25245752587, + 27245706466, + 27468989812, + 38750000001, + 43401388233, + 43444000000, + 45284959753, + 57164227586, + 328410422234 + ], + [ + 25072742110, + 30000000000, + 30000000001, + 34902746635, + 35700000513, + 37809469612, + 42672742110, + 42750185929, + 43401388233, + 43401388233, + 43444000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48586291553, + 56268349791, + 57164227586, + 2661982201891 + ], + [ + 27188264755, + 29103042784, + 29103042784, + 29103042784, + 30000000001, + 35672738909, + 35737298576, + 42703042784, + 43401388233, + 43401388233, + 43444000000, + 43628659545, + 45000000000, + 45000000000, + 45000000000, + 56268349791, + 56647920134, + 69493469104, + 69493469104, + 69493469104, + 193652444467 + ], + [ + 25108095666, + 30000000000, + 30000000001, + 33607946768, + 36241064843, + 43288095666, + 43288095666, + 43288095666, + 43401388233, + 43551540393, + 43636322286, + 43858095666, + 43858095666, + 43858095666, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51128990936, + 250000000000 + ], + [ + 25003229017, + 25003229017, + 25003229017, + 25003229017, + 25003229017, + 25003229017, + 25003229017, + 25003229017, + 25003229017, + 25003229017, + 25003229017, + 25003229017, + 27317652932, + 30000000000, + 31417963493, + 34188706001, + 35780537716, + 43498911574, + 43551540393, + 45000000000, + 69571475499 + ], + [ + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 25008638071, + 27292761312, + 32000000000, + 43444000000, + 43551540393, + 50372230646, + 285008638071 + ], + [ + 27270322178, + 31886385170, + 36000000001, + 39734694187, + 39734694187, + 43412001931, + 43412001931, + 43412001931, + 43551540393, + 44912521336, + 45000000000, + 51128990936, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000 + ], + [ + 26938095634, + 30000000000, + 34265432569, + 35546049091, + 37540653495, + 39493874530, + 39493874530, + 39493874530, + 39493874530, + 39493874530, + 43187498104, + 43551540393, + 43551540393, + 45000000000, + 45000000000, + 45000000000, + 48267721059, + 81195015681, + 100000000000, + 100000000000, + 3008692627149 + ], + [ + 26746756421, + 30000000000, + 30000000001, + 33383213261, + 33582448635, + 37506550652, + 42831790711, + 43444000000, + 43444000000, + 43444000000, + 43551540393, + 44454725070, + 45000000000, + 45000000000, + 45000000000, + 50337280018, + 53146830006, + 76201003980, + 95980241066, + 127090487660, + 2143448084617 + ], + [ + 27000000000, + 31162943995, + 32595976434, + 35749146545, + 42538209519, + 42538209519, + 42538209519, + 42538209519, + 42831790711, + 43444000000, + 43444000000, + 45000000000, + 45000000000, + 45000000000, + 47011826315, + 50000000000, + 50546454173, + 51599740308, + 76045223717, + 76045224453, + 1372503546496 + ], + [ + 27387166025, + 27715456988, + 27715456988, + 30000000000, + 31227992553, + 31796704486, + 33462425077, + 34154910092, + 37715456988, + 41090999572, + 42693637615, + 43444000000, + 43444000000, + 43444000000, + 43551540393, + 45000000000, + 45000000000, + 48715456988, + 50000000000, + 50546454173, + 17640291730863 + ], + [ + 27387166025, + 28441606681, + 30000000001, + 31273526873, + 31273526873, + 31496906529, + 34884773549, + 35995411883, + 43311899266, + 43444000000, + 44554961546, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50625274334, + 62760991308, + 76058005506, + 83804895764, + 759155804628 + ], + [ + 28387166025, + 30000000000, + 30000000000, + 30029000000, + 31471961816, + 38750000000, + 43444000000, + 43444000000, + 43444000000, + 44868631108, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45060661546, + 50000000000, + 50000000000, + 50372230646, + 50546454173, + 69617505124, + 759155804629 + ], + [ + 27387166025, + 28655617748, + 28655617748, + 28655618111, + 30000000000, + 30983908711, + 30983908711, + 31956253837, + 33966608597, + 43444000000, + 43444000000, + 43551540393, + 43551540393, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48991472266, + 76280922909, + 76280922909, + 158420191011 + ], + [ + 27387166025, + 30000000000, + 30000000000, + 30572914610, + 31955125689, + 34072374457, + 36203683194, + 42693637615, + 43444000000, + 43551540393, + 43551540393, + 43551540393, + 44914793688, + 45000000000, + 45047788942, + 56617445039, + 56934487512, + 56934487512, + 56934487512, + 76349287731, + 200000000000 + ], + [ + 26850186819, + 30000000000, + 30000000001, + 31956253837, + 33883892866, + 35043242131, + 37035367553, + 43551540393, + 43551540393, + 43551540393, + 45000000000, + 45372783893, + 48609989608, + 50000000000, + 50337280018, + 56934487512, + 69918824271, + 70187379477, + 70187379477, + 70187379477, + 144000000000 + ], + [ + 25161955624, + 25161955624, + 25161955624, + 25161955624, + 25161955624, + 25161955624, + 25161955624, + 25161955624, + 25161955624, + 25161955624, + 30000000000, + 34268000000, + 43444000000, + 43551540393, + 43551540393, + 45000000000, + 45000000000, + 45000000000, + 50942994885, + 60000000000, + 1185161955624 + ], + [ + 25008638071, + 32768787163, + 34655544395, + 35845743798, + 41368309208, + 42334892492, + 42403257314, + 42403257314, + 42403257314, + 42403257314, + 42403257314, + 42403257314, + 42403257314, + 43444000000, + 44899024816, + 45000000000, + 45000000000, + 50000000000, + 58479197830, + 77707051118, + 90953147370 + ], + [ + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 25069931267, + 31958723455, + 35740183748, + 43444000000, + 45000000000, + 50546454173, + 200000000000 + ], + [ + 27097566310, + 30000000000, + 30000000000, + 30993370310, + 31175153594, + 34943160272, + 40568309208, + 42408627399, + 43444000000, + 43444000000, + 43444000000, + 44745376249, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 57100094727, + 57378913130, + 57378913130, + 111756909927 + ], + [ + 25000000000, + 25047513770, + 25047513770, + 25047513770, + 25047513770, + 25047513770, + 25047513770, + 25047513770, + 25047513770, + 25047513770, + 25047513770, + 30000000001, + 31372744345, + 43095286398, + 43444000000, + 43551540393, + 45000000000, + 45000000000, + 49691378659, + 57100094727, + 2506993126700 + ], + [ + 27302316720, + 28730190932, + 29482790823, + 30000000000, + 31372744345, + 33730190932, + 35811748544, + 35811748544, + 35963873738, + 36012331732, + 43444000000, + 43444000000, + 43444000000, + 44851439255, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 57100094727, + 57378913130, + 100000000000 + ], + [ + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 25103197113, + 31827745092, + 38750000001, + 43551540393, + 45000000000, + 50942994885, + 60000000000, + 200000000000 + ], + [ + 27387166025, + 30000000000, + 30000000001, + 31273948969, + 33681642215, + 36021446664, + 36021446664, + 43095286398, + 43444000000, + 43444000000, + 43444000000, + 43551540393, + 43551540393, + 43551540393, + 43604670048, + 45000000000, + 45000000000, + 45798086289, + 49934684221, + 57378913130, + 144000000000 + ], + [ + 27301006270, + 30000000000, + 30000000001, + 30527802961, + 31651058043, + 31827745092, + 35729348934, + 43444000000, + 43444000000, + 43444000000, + 43604670048, + 44813596347, + 45000000000, + 45000000000, + 45000000000, + 45798086289, + 45798086289, + 50942994885, + 57523550628, + 85059348934, + 1185059348934 + ], + [ + 25135307691, + 25135307691, + 25135307691, + 25135307691, + 25135307691, + 25135307691, + 25135307691, + 25135307691, + 25135307691, + 25135307691, + 27474959946, + 30527802961, + 31956253837, + 36189959556, + 43444000000, + 43444000000, + 43444000000, + 45000000000, + 45169514857, + 50000000000, + 110135307691 + ], + [ + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 25089206304, + 28541688108, + 30693837423, + 43444000000, + 44526769637, + 45000000000, + 50000000000, + 200000000000 + ], + [ + 27000000000, + 28387166025, + 30000000000, + 33768143155, + 35722840698, + 40255725360, + 43444000000, + 43444000000, + 44021001925, + 44680742205, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45879460189, + 47329460189, + 50942994885, + 69433176857, + 884929460189 + ], + [ + 27171955930, + 30000000000, + 30527802961, + 32589747793, + 34233957531, + 35622327596, + 35622327596, + 42251858334, + 42251858334, + 43152214732, + 43444000000, + 43444000000, + 44612322384, + 45000000000, + 45000000000, + 45000000000, + 45265302154, + 48640424274, + 50568656827, + 50920097596, + 884920097596 + ], + [ + 26392954402, + 30000000000, + 31532254404, + 34233957531, + 35673885606, + 43444000000, + 43444000000, + 43444000000, + 43444000000, + 44188528264, + 44526769637, + 45000000000, + 45000000000, + 45000000000, + 47371655604, + 50000000000, + 50000000000, + 50568656827, + 56961999202, + 69627289786, + 112344773112 + ], + [ + 27387166025, + 30000000000, + 30000000000, + 30000000000, + 30022231816, + 34777920282, + 35982713930, + 35982713930, + 42502956138, + 43444000000, + 43444000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47422231816, + 50568656827, + 57378913130, + 90000000000, + 200000000000 + ], + [ + 25093934802, + 25093934802, + 25093934802, + 25093934802, + 25093934802, + 25093934802, + 25093934802, + 25093934802, + 25093934802, + 25093934802, + 28892801265, + 30452160429, + 34233957531, + 42502956138, + 43444000000, + 45000000000, + 45000000000, + 45374171797, + 45378718809, + 50568656827, + 176195742733 + ], + [ + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 25046793388, + 31703854851, + 35919701837, + 43444000000, + 45000000000, + 45000000000, + 47446793388, + 285046793388 + ], + [ + 27243016704, + 30000000001, + 30000000001, + 33233910207, + 33233910207, + 33233910207, + 33233910207, + 33233910207, + 33233910207, + 39878082495, + 43444000000, + 43444000000, + 43444000000, + 44433758401, + 45000000000, + 45000000000, + 45000000000, + 45190534522, + 45378718809, + 50568656827, + 489878082495 + ], + [ + 27387166025, + 29903740692, + 30000000000, + 31607217111, + 35655618159, + 38750000000, + 43444000000, + 43444000000, + 43444000000, + 43444000000, + 44705956669, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45827654031, + 50000000000, + 51369492181, + 90000000000, + 1184903740692 + ], + [ + 27293200975, + 29849631225, + 29849631225, + 29849631225, + 29858893536, + 30000000000, + 30000000000, + 30000000000, + 32679972534, + 38750000000, + 43444000000, + 43444000000, + 43551540393, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50429351244, + 52099960543, + 1184952828338 + ], + [ + 27387166025, + 30000000000, + 30000000001, + 31256002438, + 32892375421, + 32892375421, + 32892375421, + 37905275029, + 41867325816, + 43444000000, + 43551540393, + 43551540393, + 45000000000, + 45000000000, + 45190839671, + 51369492181, + 52099960543, + 52099960543, + 52099960543, + 70018140222, + 284979809233 + ], + [ + 27387166025, + 27723199902, + 30000000000, + 31828000000, + 34233957531, + 41838563131, + 43444000000, + 43444000000, + 44021001925, + 44021001925, + 44953978011, + 45000000000, + 45000000000, + 45000000000, + 49776526298, + 49776526298, + 49776526298, + 49776526298, + 49776526298, + 60000000000, + 285069894151 + ], + [ + 25123375086, + 25123375086, + 25123375086, + 25123375086, + 25123375086, + 25123375086, + 25123375086, + 25123375086, + 25123375086, + 25123375086, + 25123375086, + 30000000000, + 31645929431, + 31645929431, + 38933535018, + 43595000000, + 45000000000, + 45000000000, + 45000000000, + 50537000000, + 4537909649280 + ], + [ + 27387166025, + 30000000000, + 32689746279, + 32689746279, + 38758387512, + 38758387512, + 38758387512, + 38758387512, + 38758387512, + 38758387512, + 43551540393, + 44021001925, + 44021001925, + 44021001925, + 44021001925, + 45000000000, + 45000000000, + 46120868394, + 46500000000, + 52099960543, + 144000000000 + ], + [ + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 25140416630, + 30000000000, + 40474855491, + 44019895014, + 45000000000, + 52099960543, + 111931789447 + ], + [ + 27294545359, + 28034966925, + 30701526301, + 30734592477, + 32910199330, + 34909881044, + 37558562956, + 38750000000, + 42288778513, + 42317271874, + 43444000000, + 44021001925, + 44897671180, + 45000000000, + 45000000000, + 45000000000, + 46120868394, + 49005766846, + 50000000000, + 56685000000, + 114128910308 + ], + [ + 25051025002, + 25051025002, + 25051025002, + 25051025002, + 25051025002, + 25051025002, + 25051025002, + 25051025002, + 25051025002, + 25051025002, + 25051025002, + 25051025002, + 28302070002, + 31375634479, + 40474855491, + 43444000000, + 44755044315, + 45000000000, + 48526932813, + 56922286545, + 113973115636 + ], + [ + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 25058623420, + 30000000000, + 30701526301, + 35754722694, + 43444000000, + 43551540393, + 50000000000, + 414307903670 + ], + [ + 27387166025, + 30000000000, + 30527150393, + 30527150393, + 30527150393, + 30527150393, + 31550526813, + 34895178284, + 38562434342, + 42246749395, + 42246749395, + 42453105003, + 43551540393, + 43551540393, + 44021001925, + 44764954497, + 45000000000, + 51048690384, + 51048690384, + 51083641011, + 164932106900 + ], + [ + 27269301110, + 30000000000, + 30000000001, + 35744127732, + 35744127732, + 42453105003, + 43551540393, + 44021001925, + 44021001925, + 44021001925, + 44021001925, + 44526769637, + 45000000000, + 45000000000, + 45000000000, + 46120868394, + 46120868394, + 46179104179, + 51048690384, + 51048690384, + 1184940758505 + ], + [ + 27353718399, + 31870427196, + 32953739651, + 36046617905, + 37888577941, + 42246749395, + 42246749395, + 42246749395, + 42246749395, + 42246749395, + 42246749395, + 42246749395, + 43551540393, + 44021001925, + 44609282936, + 45000000000, + 45000000000, + 45803677241, + 51048690384, + 51083641011, + 1185064939886 + ], + [ + 27040066095, + 30000000000, + 30000000000, + 30000000001, + 31025676927, + 34233957531, + 41930609476, + 43551540393, + 44585769158, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51083641011, + 69682464629, + 155769838498 + ], + [ + 25094707948, + 25094707948, + 25094707948, + 25094707948, + 25094707948, + 25094707948, + 25094707948, + 25094707948, + 25094707948, + 25094707948, + 25094707948, + 27416934087, + 30527150393, + 31922893350, + 38575571142, + 41889330391, + 43487000000, + 44135129291, + 44971332862, + 45000000000, + 100000000000 + ], + [ + 27387166025, + 30527150393, + 33511464313, + 38737892067, + 38737892067, + 38737892067, + 38737892067, + 38737892067, + 38737892067, + 38737892067, + 38737892067, + 38737892067, + 38737892067, + 41889330391, + 43444000000, + 44021001925, + 45000000000, + 45000000000, + 45000000000, + 51048690384, + 144000000000 + ], + [ + 27387166025, + 30000000000, + 30000000001, + 30527150393, + 31922893350, + 33751822399, + 39714624827, + 43444000000, + 43444000000, + 43444000000, + 43551540393, + 44585769158, + 44943771665, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49911265343, + 51346210149, + 51346210149, + 223176251510 + ], + [ + 27439480081, + 30000000000, + 30000000001, + 31838070276, + 32304619871, + 32923698019, + 38750000001, + 41885547028, + 43444000000, + 43444000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45568365463, + 49911265343, + 51411980643, + 191504381516 + ], + [ + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 25216907658, + 30000000000, + 31922893350, + 37111039978, + 43444000000, + 44585769158, + 49911265343, + 1185216907658 + ], + [ + 27361438183, + 28361438183, + 28361438430, + 31474285138, + 31474285138, + 31592029634, + 31592029634, + 31592029634, + 31592029634, + 31592029634, + 31592029634, + 33125089053, + 33411100434, + 38412741872, + 41885547028, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 49911265343, + 78164421172 + ], + [ + 28128885323, + 30000000000, + 32464567900, + 32464567900, + 32464567900, + 32464567900, + 32464567900, + 32464567900, + 32464567900, + 32464567900, + 32464567900, + 32464567900, + 39476828081, + 42309273958, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49911265343, + 120272485739 + ], + [ + 25033390078, + 25033390078, + 25033390078, + 25033390078, + 25033390078, + 25033390078, + 25033390078, + 25033390078, + 25033390078, + 25033390078, + 27416934087, + 33067598095, + 39972343342, + 43487973448, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49100788558, + 77904504755, + 180000000000 + ], + [ + 27303099263, + 28993825305, + 30000000000, + 30000000000, + 31922893350, + 42101397142, + 43444000000, + 44870450219, + 44870450219, + 44870450219, + 44870450219, + 44870450219, + 44870450219, + 44870450219, + 44870450219, + 44870450219, + 44870450219, + 45000000000, + 45000000000, + 49524845633, + 144000000000 + ], + [ + 27268891450, + 28416934087, + 28975660227, + 31698589244, + 32015028309, + 32015028309, + 32015028309, + 32015028309, + 32015028309, + 35000000000, + 35863619252, + 42101397142, + 43487000000, + 44585769158, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47242155248, + 49524845633, + 125000000000 + ], + [ + 27431738330, + 29896220486, + 30000000000, + 31622657269, + 42101397142, + 43444000000, + 43551540393, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 285025105809 + ], + [ + 27339646338, + 28978235919, + 30000000001, + 30094906619, + 30624285291, + 33278620900, + 33278620900, + 39963562159, + 39963562159, + 42417931350, + 42578235919, + 42578235919, + 43444000000, + 43444000000, + 43638889188, + 45000000000, + 45000000000, + 45000000000, + 47242155248, + 49524845633, + 112369695481 + ], + [ + 25093538035, + 30000000000, + 30094906619, + 32000000000, + 34704408335, + 34704408335, + 34704408335, + 34704408335, + 34704408335, + 35990787162, + 42417931350, + 43444000000, + 44311794098, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47242155248, + 50000000000, + 63093538035, + 1185093538035 + ], + [ + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 25130010255, + 30094906619, + 35000000000, + 43444000000, + 43638889188, + 47242155248, + 125000000000 + ], + [ + 27424433213, + 27989175705, + 29989175705, + 30000000000, + 30000000000, + 31627000000, + 35924612457, + 35924612457, + 35924612457, + 38750000000, + 39145847895, + 42589175705, + 43444000000, + 44251931366, + 44311794098, + 45000000000, + 45000000000, + 45000000000, + 49524845633, + 49524845633, + 284989175705 + ], + [ + 25067642964, + 25067642964, + 25067642964, + 25067642964, + 25067642964, + 25067642964, + 25067642964, + 25067642964, + 25067642964, + 25067642964, + 25067642964, + 30000000000, + 31609893967, + 35000000000, + 36000000001, + 39047242251, + 43444000000, + 44311794098, + 45000000000, + 45000000000, + 178360146893 + ], + [ + 27356121910, + 30183428089, + 31737469107, + 33822484346, + 38750000001, + 41691864647, + 42851868338, + 43487000000, + 44311794098, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45126554488, + 54701499252, + 523219912675 + ], + [ + 25014034814, + 30000000000, + 30000000000, + 30014034814, + 31704851837, + 34165901023, + 42446197294, + 42446197294, + 42451464630, + 43444000000, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50049000000, + 54701499252, + 100000000000, + 3031030856124 + ], + [ + 27435372999, + 27509045601, + 30114675970, + 31605099310, + 33140025255, + 34867933676, + 42822465551, + 43233726519, + 43444000000, + 44578197527, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47242155248, + 50416007696, + 285062848307 + ], + [ + 27435372999, + 28742088375, + 28742088375, + 30000000000, + 31699565445, + 33742088375, + 36000000000, + 36119029195, + 41370004354, + 43233726519, + 43444000000, + 43661637862, + 44557776349, + 45000000000, + 45000000000, + 48788325136, + 50000000000, + 50049000000, + 53904430619, + 69107905860, + 112383043750 + ], + [ + 27435372999, + 30000000000, + 30000000000, + 30000000001, + 30000000001, + 31054577459, + 32662743819, + 35593711421, + 39540098171, + 42372524692, + 43444000000, + 43444000000, + 43661637862, + 44555568399, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45153316821, + 52002926789, + 285186706899 + ], + [ + 27435372999, + 30000000000, + 30000000000, + 31054577459, + 31882608145, + 36034302962, + 37888577941, + 42372524692, + 43444000000, + 43487000000, + 43661637862, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48513408261, + 49627659529, + 69819960940, + 1185187273332 + ], + [ + 27435372999, + 30000000000, + 31054577459, + 32603804910, + 32603804910, + 34165901023, + 36300000002, + 43113132562, + 43487000000, + 44282815834, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48615393641, + 51530258964, + 56181029818, + 63242394491, + 131583840304 + ], + [ + 27435372999, + 28265298766, + 29027771018, + 30000000000, + 31380623700, + 33090514909, + 33823610634, + 35963698086, + 39435153987, + 43113132562, + 43487000000, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45240192957, + 197337170126 + ], + [ + 27493296890, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 31054577459, + 33090514909, + 35998717702, + 42192978508, + 43487000000, + 43487000000, + 44311794098, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 56047592829, + 80000000000, + 534525614053 + ], + [ + 27486575004, + 29736913305, + 30000000000, + 30000000001, + 31790033481, + 35920589850, + 42116119354, + 43487000000, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45652460036, + 49627659529, + 49627659529, + 56996875000, + 100000000000 + ], + [ + 25371644560, + 31636110634, + 35975733639, + 42135772363, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48744643710, + 100000000000, + 1185371644560 + ], + [ + 30000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 57067607305, + 119035703841 + ], + [ + 25087853055, + 29771352284, + 30000000000, + 30000000001, + 30965206549, + 31561385765, + 31707853055, + 33708055820, + 35564327181, + 42097755549, + 43487000000, + 43487000000, + 44127127572, + 45000000000, + 48290434980, + 54583992230, + 56996875000, + 57067607305, + 57502575000, + 110402095354, + 194590685199 + ], + [ + 27246500579, + 28128205469, + 30000000000, + 32165630014, + 35670159601, + 37979690679, + 43487000000, + 44770598032, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49128205469, + 57067607305, + 1185128205469 + ], + [ + 27510528376, + 30000000000, + 30000000001, + 31466759189, + 31466759189, + 31466759189, + 31466759189, + 33862656367, + 43062083730, + 43487000000, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 57067607305, + 57516550000, + 57516550000, + 178329924493 + ], + [ + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 25233587990, + 31466759189, + 43487000000, + 44176697848, + 45000000000, + 57516550000, + 60000000000, + 178329924493 + ], + [ + 27189200334, + 28453387311, + 30000000000, + 31054577459, + 33758828790, + 34012946132, + 39694558521, + 42121652330, + 42121652330, + 42121652330, + 42121652330, + 42121652330, + 42121652330, + 42121652330, + 43487000000, + 43487000000, + 44316493795, + 45000000000, + 45000000000, + 48270129929, + 110000000000 + ], + [ + 27377497978, + 30000000000, + 30000000000, + 30753706281, + 31836320814, + 31860330448, + 31860330448, + 31860330448, + 31860330448, + 31860330448, + 35574000001, + 38780591537, + 43138243185, + 43487000000, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50070330448, + 100000000000 + ], + [ + 25110570707, + 25110570707, + 25110570707, + 25110570707, + 25110570707, + 25110570707, + 25110570707, + 25110570707, + 25110570707, + 25110570707, + 25110570707, + 31692842645, + 35775531334, + 42142717146, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 57516550000, + 127316462798 + ], + [ + 27439480081, + 29964351168, + 29964351168, + 31505000000, + 35775531334, + 35922182292, + 38283248064, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 54899920984, + 57516550000, + 112186651632 + ], + [ + 27473546231, + 31450537198, + 35775531334, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46049777748, + 46049777748, + 46049777748, + 57516550000, + 285119777748 + ], + [ + 27239509699, + 29957957047, + 30000000000, + 30000000001, + 31462075860, + 34607962205, + 35782479226, + 43487000000, + 44280575440, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45437199482, + 50000000000, + 50416007696, + 144000000000 + ], + [ + 27397538215, + 30000000000, + 30030740959, + 30188482403, + 31000000000, + 34604676500, + 35354781724, + 43487000000, + 43487000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45941680117, + 47585278104, + 52030740959, + 57516550000, + 116404362249 + ], + [ + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 25100867436, + 28439480081, + 34903827156, + 43487000000, + 44100867436, + 45000000000, + 57516550000, + 185100867436 + ], + [ + 27315572588, + 30106516776, + 30106516776, + 30106516776, + 31537920663, + 34430605713, + 39131400001, + 41925177111, + 43487000000, + 43487000000, + 43595000000, + 43975513566, + 45000000000, + 45000000000, + 45437199482, + 45532172586, + 47585278104, + 48037022487, + 48037022487, + 57003507308, + 1184948775332 + ], + [ + 25066118766, + 25066118766, + 25066118766, + 25066118766, + 25066118766, + 25066118766, + 25066118766, + 25066118766, + 25066118766, + 25066118766, + 30000000000, + 31620312911, + 34337044475, + 36013119620, + 36013119620, + 43487000000, + 45000000000, + 45000000000, + 45941680117, + 52035935479, + 100000000000 + ], + [ + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 25020169724, + 31073695993, + 43487000000, + 45000000000, + 45000000000, + 58500000000, + 235020169724 + ], + [ + 27266385916, + 27419047896, + 27486575004, + 30000000001, + 31636110634, + 35092841260, + 37739173487, + 40739173487, + 43487000000, + 43487000000, + 44251248224, + 45000000000, + 45000000000, + 45000000000, + 45139261890, + 45532172586, + 47881248224, + 47881248224, + 51881248224, + 57295970169, + 104881248224 + ], + [ + 27417657907, + 28095726042, + 28095726042, + 30000000000, + 30000000001, + 32782487452, + 35092841260, + 35809401798, + 43487000000, + 43909049531, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45139261890, + 51576156917, + 54990954460, + 57516550000, + 58500000000, + 91215043287, + 284997201669 + ], + [ + 25082636677, + 25082636677, + 25082636677, + 25082636677, + 25082636677, + 25082636677, + 25082636677, + 25082636677, + 25082636677, + 25082636677, + 29775215989, + 31620520960, + 35092841260, + 41612938585, + 43909049531, + 44765558788, + 45000000000, + 50000000000, + 52032781917, + 58500000000, + 1185082636677 + ], + [ + 25034067700, + 25034067700, + 25034067700, + 25034067700, + 25034067700, + 25034067700, + 25034067700, + 25034067700, + 25034067700, + 25034067700, + 25034067700, + 25034067700, + 25034067700, + 30000000000, + 34343558281, + 41612938585, + 43909049531, + 45000000000, + 46701156917, + 51576156917, + 285034067700 + ], + [ + 27214581550, + 29775215989, + 30522756413, + 30522756413, + 30522756413, + 30522756413, + 30522756413, + 32313894076, + 35000000000, + 35892116161, + 41612938585, + 43909049531, + 44529678666, + 45000000000, + 45000000000, + 45000000000, + 45139261890, + 46431585834, + 52032781917, + 69455762141, + 1184846756555 + ], + [ + 25000076912, + 29876952385, + 30000000000, + 31261874818, + 33140735824, + 35518399811, + 35834630822, + 39077343523, + 42335021230, + 42335021230, + 43530000000, + 43909049531, + 43909049531, + 45000000000, + 45000000000, + 45000000000, + 46701156917, + 47977466496, + 55672216722, + 59369062252, + 3526977466496 + ], + [ + 25062084296, + 25062084296, + 25062084296, + 25062084296, + 25062084296, + 25062084296, + 25062084296, + 25062084296, + 25062084296, + 25062084296, + 25062084296, + 25062084296, + 29369073213, + 35919248622, + 42383590207, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47019443603, + 189953705429 + ], + [ + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 25062241081, + 30000000001, + 34337044475, + 43530000000, + 44815428577, + 46815156030, + 54732000000, + 112470924777 + ], + [ + 26681269147, + 27447027728, + 27451826334, + 27934729259, + 32305980533, + 36472744686, + 39892800848, + 43909049531, + 43909049531, + 43909049531, + 43909049531, + 44575722959, + 44627502082, + 44815428577, + 45000000000, + 45000000000, + 45000000000, + 46431585834, + 48451587886, + 62892800848, + 62892800848 + ], + [ + 25059463143, + 25059463143, + 25059463143, + 25059463143, + 25059463143, + 25059463143, + 25059463143, + 25059463143, + 25059463143, + 25059463143, + 25059463143, + 27934729259, + 30518213584, + 35916627469, + 36300000000, + 42094619145, + 45000000000, + 45000000000, + 45000000000, + 45045428329, + 120000000000 + ], + [ + 27377141136, + 30000000000, + 30000000001, + 31758794046, + 34042276691, + 38189106696, + 42094619145, + 43909049531, + 44741958309, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45484472239, + 49971946243, + 72379945587, + 112704957331, + 1062093988410 + ], + [ + 27642148185, + 30000000000, + 30000000000, + 31948219595, + 38064432715, + 43909049531, + 43909049531, + 43909049531, + 44787602923, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46815156030, + 55679627564, + 73319313171, + 76000000000, + 91654946764, + 104383854207, + 340100973989 + ], + [ + 27447027728, + 28892760433, + 30000000000, + 30070595344, + 38055051075, + 43909049531, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45484472239, + 50000000000, + 71715821484, + 112233289099, + 116899721234, + 185070595344, + 13335163075320 + ], + [ + 26872442263, + 30000000000, + 31550784755, + 35752996221, + 39922068514, + 43909049531, + 44708096846, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 87281174937, + 108897521579, + 184585775427, + 402032354565, + 4938674949866 + ], + [ + 27063870821, + 28315079946, + 30000000000, + 31477489239, + 37979690679, + 40760971884, + 41994660514, + 43909049531, + 44708096846, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45484472239, + 55791370679, + 72713458980, + 72713458980, + 72713458980, + 78000000000, + 280390520449, + 4953752881353 + ], + [ + 26872442263, + 28445049153, + 30000000000, + 33748131547, + 35650846741, + 35823127881, + 35825745412, + 41469417636, + 44533829115, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45184994970, + 60000000000, + 160325818461 + ], + [ + 27374112711, + 29117490362, + 30000000000, + 31661581003, + 35878548967, + 42376432384, + 42376432384, + 42376432384, + 42376432384, + 42376432384, + 42524959214, + 44708096846, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45184994970, + 48752338194, + 60040412286, + 203816925546 + ], + [ + 27437479631, + 29117490362, + 30000000000, + 31391499479, + 31406433344, + 34846561717, + 35966504012, + 40258276612, + 43909049531, + 44629349290, + 44834400675, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 52019325521, + 284792357722 + ], + [ + 27195141844, + 31806892017, + 31806892017, + 32519313327, + 36048337708, + 39000000000, + 43122035380, + 44776977925, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46701156917, + 52019325521, + 61901555131, + 85000000000, + 85000000000, + 438387107557 + ], + [ + 27477381798, + 30000000000, + 30000000000, + 30000000001, + 35987892651, + 39812082939, + 40500080509, + 43909049531, + 44634716134, + 44776977925, + 45000000000, + 45000000000, + 45044000000, + 45184994970, + 48427306509, + 50000000000, + 52019325521, + 70167354443, + 70747055253, + 70747055253, + 144000000000 + ], + [ + 25892760433, + 26903848240, + 29234088465, + 30000000000, + 31901522852, + 37901914252, + 44527000000, + 44787602923, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48813754572, + 50000000000, + 52019325521, + 79425761343, + 112904187980, + 257553349631, + 1471088742137 + ], + [ + 25020292909, + 25020292909, + 25020292909, + 25020292909, + 25020292909, + 25020292909, + 25020292909, + 25020292909, + 25020292909, + 25020292909, + 25020292909, + 25020292909, + 25020292909, + 30000000000, + 38020292909, + 42268146872, + 44787602923, + 45000000000, + 45184994970, + 73451173713, + 1185020292909 + ], + [ + 27311646584, + 28833441109, + 33683377405, + 33683377405, + 36018115179, + 38085584448, + 44776977925, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45184994970, + 57082000000, + 58500000000, + 82000000000, + 127434616425 + ], + [ + 27405227138, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 34746041690, + 38750000000, + 43923000004, + 45000000000, + 45000000000, + 45184994970, + 52019325521, + 341626577457 + ], + [ + 27237782900, + 27820596178, + 30000000000, + 30000000000, + 30000000000, + 33836046638, + 35945442404, + 36300000000, + 40500080509, + 41577061986, + 43030868540, + 44708096846, + 44776977925, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52019325521, + 58446180219, + 2145481274740 + ], + [ + 27067015787, + 28402303274, + 29515730632, + 30000000000, + 31744192140, + 33879749766, + 39879749766, + 44708096846, + 44776977925, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49879749766, + 58446180219, + 58500000000, + 62879749766, + 112691865332, + 2588650897412 + ], + [ + 27363453470, + 30000000000, + 30000000000, + 34830303167, + 36300000000, + 36852995502, + 42664556883, + 43852995502, + 44708096846, + 44810718811, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48703704249, + 57166763210, + 57641791964, + 58446180219, + 60000000000, + 139552282436, + 139552282436 + ], + [ + 27407321950, + 27454593847, + 28505456003, + 29876571073, + 29876571073, + 29876571073, + 29876571073, + 30000000000, + 30000000000, + 31658367746, + 39000000000, + 42875072407, + 43896863982, + 44708096846, + 44862796282, + 45000000000, + 45000000000, + 45000000000, + 57245004752, + 60000000000, + 208931761771 + ], + [ + 27437479631, + 27561830090, + 30000000001, + 31822857496, + 31841788335, + 33583381605, + 33583381605, + 36913399542, + 43977345961, + 44708096846, + 44787602923, + 44787602923, + 44946605002, + 45000000000, + 45000000000, + 45000000000, + 45099277447, + 48854072154, + 52261995434, + 70146314219, + 1058827386360 + ], + [ + 25087782258, + 25087782258, + 25087782258, + 25087782258, + 25087782258, + 25087782258, + 25087782258, + 25087782258, + 25087782258, + 25087782258, + 28679414834, + 30372801201, + 33087782258, + 44087782258, + 44787602923, + 45000000000, + 45000000000, + 50000000000, + 58446180219, + 75138203090, + 121204223190 + ], + [ + 27000000000, + 30000000000, + 30372801201, + 33679414834, + 36000000001, + 39000000000, + 44037619039, + 44787602923, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47131595196, + 57356665642, + 102583709089, + 102583709089, + 140055821432 + ], + [ + 25113424716, + 30000000000, + 32011048035, + 35113424716, + 44113424716, + 44787602923, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46143424716, + 46143424716, + 51463424716, + 70033692056, + 78488883784, + 93375459069, + 103946981303, + 1147956530682 + ], + [ + 27437479631, + 28762517427, + 30000000001, + 31101564189, + 35921201036, + 36897903649, + 36897903649, + 37966001501, + 42366811589, + 42460133670, + 44787602923, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 52985032276, + 60000000000, + 75507133875, + 112150656308, + 171769130542 + ], + [ + 27437479631, + 30000000000, + 30944477166, + 35803861185, + 36300000002, + 36913399542, + 44014995287, + 44787602923, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51176780771, + 59000000000, + 77000000000, + 118593743253, + 882836568317 + ], + [ + 27319512181, + 30000000000, + 30484412296, + 30701535416, + 33762517427, + 35772462637, + 39667814891, + 44708096846, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49913001395, + 51176780771, + 53882032550, + 92872549806, + 1184983596739 + ], + [ + 25049859267, + 30000000000, + 30000000000, + 32440637887, + 34296849538, + 36013545504, + 42908981523, + 44787602923, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48553732430, + 48553732430, + 48553732430, + 48553732430, + 48553732430, + 56480970949, + 60000000000, + 74852746813, + 78000000000 + ], + [ + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 25098113960, + 30000000000, + 34841859232, + 44965463494, + 45000000000, + 50000000000, + 112459762636 + ], + [ + 27351811716, + 30000000000, + 30000000001, + 30776535416, + 33429219306, + 35908850822, + 38750000001, + 42908981523, + 43952000000, + 44965463494, + 44986724856, + 45000000000, + 45000000000, + 45000000000, + 51176780771, + 52985032276, + 53126780771, + 58430970949, + 100086370974, + 100086370974, + 144000000000 + ], + [ + 27437479631, + 28492255709, + 30000000000, + 31690669004, + 35109025287, + 35109025287, + 37524285795, + 41025573545, + 44787602923, + 44965463494, + 44965463494, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 53126780771, + 57641791964, + 144000000000 + ], + [ + 25158032473, + 25158032473, + 25158032473, + 25158032473, + 25158032473, + 25158032473, + 25158032473, + 25158032473, + 29769213644, + 37524285795, + 40127263317, + 40127263317, + 40127263317, + 40127263317, + 40127263317, + 40127263317, + 45000000000, + 45000000000, + 49467820972, + 58430970949, + 1185158032473 + ], + [ + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 25178174878, + 30000000000, + 33492255709, + 37966001501, + 45000000000, + 45000000000, + 51176780771, + 408492952248 + ], + [ + 25023405710, + 25023405710, + 25023405710, + 25023405710, + 25023405710, + 25023405710, + 25023405710, + 25023405710, + 25023405710, + 27437479631, + 30000000000, + 30944477166, + 35821178994, + 41025573545, + 42738383563, + 45000000000, + 45000000000, + 45000000000, + 51176780771, + 58430970949, + 360028597077 + ], + [ + 27259593059, + 30791866375, + 33601510132, + 35715482490, + 35777919185, + 39943427206, + 42050801892, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 52016348251, + 58430970949, + 58430970949, + 62980145901, + 1184980145901 + ], + [ + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 25091360587, + 31811977693, + 40557279477, + 45000000000, + 45114014626, + 235091360587 + ], + [ + 26375864571, + 29718612986, + 30982856245, + 35226533555, + 35226533555, + 35226533555, + 35931656721, + 39907357412, + 42259304753, + 42259304753, + 42259304753, + 42259304753, + 42259304753, + 42321340627, + 44869431529, + 45000000000, + 45000000000, + 45000000000, + 49982856245, + 50458728627, + 69897523705 + ], + [ + 27333335123, + 27474088945, + 29933473296, + 30000000000, + 30000000001, + 30000000001, + 30791866375, + 31498098806, + 33632814040, + 34843565004, + 36300000000, + 44964651043, + 44965463494, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 48619473891, + 50458728627, + 60000000000, + 69848140756 + ], + [ + 25066848468, + 30000000000, + 30791866375, + 34843565004, + 35224516381, + 35882191320, + 41000000000, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46096848468, + 46096848468, + 46096848468, + 46096848468, + 46096848468, + 50458728627, + 50458728627, + 935066848468 + ], + [ + 25089447884, + 25089447884, + 25089447884, + 25089447884, + 25089447884, + 25089447884, + 25089447884, + 25089447884, + 25089447884, + 25089447884, + 30000000000, + 31089447884, + 38750000000, + 42949221060, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 45131490837, + 58545883695, + 144000000000 + ], + [ + 25040559995, + 27411191158, + 27437479631, + 29698597756, + 30791866375, + 38112227157, + 44965463494, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45599267413, + 57153737742, + 72391781371, + 1418193975855 + ], + [ + 27415207702, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 31067175955, + 33113980508, + 42084996498, + 43089766186, + 43498936306, + 44965463494, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45599267413, + 48666966843, + 5483021046363 + ], + [ + 25079759991, + 25079759991, + 25079759991, + 25079759991, + 25079759991, + 25079759991, + 25079759991, + 25079759991, + 25079759991, + 25079759991, + 25079759991, + 25079759991, + 25079759991, + 27784383061, + 31523953332, + 35956063555, + 44965463494, + 45000000000, + 45000000000, + 45059467082, + 100201939613 + ], + [ + 27152432736, + 30000000000, + 31523953332, + 35769431548, + 36692204564, + 42170970762, + 43498936306, + 43498936306, + 43498936306, + 43498936306, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45599267413, + 48311466236, + 50000000000, + 60000000000, + 60000000000, + 74866126113 + ], + [ + 27335160472, + 30000000000, + 30000000000, + 30000000001, + 31545587744, + 32913459218, + 40046251574, + 43182925795, + 43498936306, + 43498936306, + 45000000000, + 47964856796, + 48311466236, + 48311466236, + 58430970949, + 63137447187, + 69705464148, + 69705464148, + 69705464148, + 69705464148, + 1184964856796 + ], + [ + 27418187007, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 31523953332, + 34843565004, + 38750000000, + 40000000000, + 43498936306, + 44928854136, + 44965463494, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45010264292, + 48311466236, + 48311466236, + 85047883331 + ], + [ + 25123648883, + 25123648883, + 25123648883, + 25123648883, + 25123648883, + 25123648883, + 25123648883, + 25123648883, + 25123648883, + 25123648883, + 30000000000, + 30000000000, + 30123648883, + 42370303676, + 43498936306, + 44965463494, + 45000000000, + 45000000000, + 48311466236, + 58430970949, + 144000000000 + ], + [ + 27410173102, + 27437479631, + 27740268562, + 30000000000, + 30276457660, + 31523953332, + 35943720475, + 36043352317, + 42298574863, + 42389596300, + 44965463494, + 44965463494, + 44988422657, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45010812336, + 48311466236, + 53137154299, + 1185076204915 + ], + [ + 28437479631, + 30000000000, + 30000000001, + 31523953332, + 35839286575, + 35839286575, + 35839286575, + 38750000000, + 42462689678, + 42916666666, + 43498936306, + 43498936306, + 44965463494, + 44965463494, + 45000000000, + 45000000000, + 46092309910, + 48669816233, + 53137154299, + 90000000000, + 986062689678 + ], + [ + 27000000000, + 27000000000, + 27000000000, + 30000000000, + 41978863526, + 42468586096, + 42511711658, + 43498936306, + 45000000000, + 45000000000, + 46092309910, + 46092309910, + 46092309910, + 46092309910, + 46092309910, + 46092309910, + 46092309910, + 46092309910, + 46092309910, + 51538076297, + 85542665011 + ], + [ + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 25108082276, + 30000000001, + 39463742075, + 43498936306, + 45000000000, + 48108082276, + 235108082276 + ], + [ + 27284211950, + 30000000000, + 30000000000, + 30000000000, + 31769168014, + 39447661699, + 42370381202, + 43498936306, + 43498936306, + 43498936306, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51538076297, + 51538076297, + 66012998646, + 118784355541 + ], + [ + 27300876499, + 29236423572, + 30000000000, + 30000000001, + 30723616379, + 31599314699, + 35777967320, + 42387045751, + 43498936306, + 43498936306, + 44789826669, + 44937186484, + 45000000000, + 45000000000, + 45000000000, + 46017045751, + 50000000000, + 53137154299, + 53137154299, + 53941000000, + 1184987045751 + ], + [ + 25072575927, + 25072575927, + 25072575927, + 25072575927, + 25072575927, + 25072575927, + 25072575927, + 25072575927, + 25072575927, + 25072575927, + 30000000000, + 32000000000, + 35982801621, + 41199273285, + 43498936306, + 43498936306, + 45000000000, + 45000000000, + 48628031441, + 53480930656, + 144000000000 + ], + [ + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 25026021697, + 30000000000, + 39447661699, + 43498936306, + 44965463494, + 45000000000, + 45000000000, + 112341511662 + ], + [ + 27221784889, + 29236423572, + 30000000000, + 30000000000, + 35789855471, + 35789855471, + 41870188827, + 42263659485, + 43498936306, + 44895649683, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 50000000000, + 50000000000, + 53590653230, + 69740652795, + 112179149450 + ], + [ + 27327362119, + 29962458415, + 30000000001, + 30138228831, + 33030399290, + 35000000000, + 41245114748, + 42272595228, + 43498936306, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50261000000, + 51891057395, + 52321821127, + 53590653230, + 1184962458415 + ], + [ + 25064569212, + 25064569212, + 25064569212, + 25064569212, + 25064569212, + 25064569212, + 25064569212, + 25064569212, + 25064569212, + 25064569212, + 27425542406, + 30000000000, + 35943994062, + 41199273285, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 48411178652, + 53480930656, + 105000000000 + ], + [ + 27418187007, + 28168360649, + 30000000000, + 31743254194, + 36029445923, + 37963169673, + 41197306789, + 41877633055, + 44962269968, + 44965463494, + 44965463494, + 44965463494, + 44965463494, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 47091820407, + 48526662528, + 53590653230, + 112396631699 + ], + [ + 27418187007, + 27452108608, + 28914732205, + 28914732205, + 28914732205, + 28914732205, + 29759107593, + 30000000000, + 30000000000, + 30816092973, + 41877633055, + 43995000000, + 44965463494, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45014301490, + 50000000000, + 52321821127, + 105000000000 + ], + [ + 25117558741, + 28168360649, + 30000000001, + 30000000001, + 32000000000, + 33300672509, + 33304564161, + 36191818246, + 43995000000, + 43995000000, + 43995000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47091820407, + 47091820407, + 47091820407, + 47147589748, + 52321821127, + 144000000000 + ], + [ + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 25162473680, + 27516091475, + 39000000000, + 43995000000, + 45000000000, + 45000000000, + 47065150719, + 235162473680 + ], + [ + 25016318441, + 25016318441, + 25016318441, + 25016318441, + 25016318441, + 25016318441, + 25016318441, + 25016318441, + 25016318441, + 25016318441, + 27472047033, + 30000000000, + 30816092973, + 35820369915, + 43995000000, + 43995000000, + 44965463494, + 45000000000, + 47091820407, + 58000000000, + 111918203239 + ], + [ + 27279122266, + 29729713096, + 29978494000, + 30000000001, + 30816092973, + 34203327572, + 37978494000, + 41943124440, + 43995000000, + 43995000000, + 43995000000, + 43995000000, + 43995000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45010000000, + 47091820407, + 90000000000 + ], + [ + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 25062770563, + 29729713096, + 41943124440, + 43995000000, + 43995000000, + 45000000000, + 47091820407, + 1185062770563 + ], + [ + 26999947163, + 29729713096, + 30816092973, + 31733657247, + 35797828314, + 42255713327, + 42255713327, + 42255713327, + 42255713327, + 42255713327, + 42255713327, + 42255713327, + 43995000000, + 43995000000, + 45000000000, + 45000000000, + 45000000000, + 45010000000, + 51435682660, + 51435682660, + 112581048238 + ], + [ + 27266820974, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 33137458255, + 36300000002, + 41130873475, + 43995000000, + 43995000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45014824975, + 45014824975, + 47133457052, + 1184911404530 + ], + [ + 27418187007, + 27987814193, + 30000000000, + 30000000001, + 32475561304, + 34875518017, + 35990935360, + 36300000002, + 36300000002, + 41130873475, + 43995000000, + 43995000000, + 44427872977, + 44427872977, + 45000000000, + 45000000000, + 45000000000, + 46991918136, + 50000000000, + 60000000000, + 637161852478 + ], + [ + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 25071557847, + 29865412590, + 32394932548, + 40000000000, + 43995000000, + 45014824975, + 48674360696, + 112579360766 + ], + [ + 25103060809, + 25103060809, + 25103060809, + 25103060809, + 25103060809, + 25103060809, + 25103060809, + 25103060809, + 25103060809, + 25103060809, + 25103060809, + 25103060809, + 25103060809, + 27773381081, + 36019508185, + 36111199781, + 41130873475, + 43995000000, + 45000000000, + 45000000000, + 69963806437 + ], + [ + 27265766420, + 30000000000, + 30000000000, + 30000000001, + 31602799567, + 35735092252, + 35835584636, + 38675332534, + 42363283344, + 43893726733, + 44842932345, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48424201603, + 53522744739, + 111959024740 + ], + [ + 27235959352, + 27235959352, + 27235959352, + 30000000000, + 30000000001, + 30419172962, + 32000000000, + 39000000000, + 40966990509, + 43995000000, + 43995000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45014824975, + 46991918136, + 56769863283, + 112021631255 + ], + [ + 25074921510, + 25074921510, + 25074921510, + 25074921510, + 25074921510, + 25074921510, + 25074921510, + 25074921510, + 25074921510, + 27376642051, + 30000000000, + 30834040045, + 34221874432, + 39549994665, + 43995000000, + 45000000000, + 45000000000, + 45000000000, + 45087875759, + 48611000000, + 113266632311 + ], + [ + 27418187007, + 29173252572, + 30000000000, + 31768013434, + 42604170978, + 43785487709, + 44952000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45034758164, + 48328341069, + 49544416144, + 62877031976, + 116788005783, + 658959085673 + ], + [ + 27317048069, + 27554793276, + 28563244881, + 30000000000, + 30000000001, + 35126203159, + 42604170978, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044725714, + 45179079075, + 71071352275, + 79242906145, + 111987376001, + 1600600830865 + ], + [ + 27402756154, + 30000000000, + 30000000000, + 32039487311, + 35333290389, + 35939813151, + 42604170978, + 43785487709, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45010000000, + 45179079075, + 63115698540, + 160585357317, + 4130553012205 + ], + [ + 25149522133, + 25149522133, + 25149522133, + 25149522133, + 25149522133, + 25149522133, + 25149522133, + 25149522133, + 25149522133, + 25149522133, + 25149522133, + 25149522133, + 25149522133, + 27945195471, + 35973636745, + 44952000000, + 45000000000, + 49547272011, + 69471282059, + 73880689205, + 8616340328715 + ], + [ + 27265045931, + 27637421246, + 30000000000, + 32420586499, + 35723442700, + 35736048243, + 43041037404, + 43785487709, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48411037855, + 50000000000, + 56887292476, + 104606615322 + ], + [ + 27295120788, + 29814161099, + 30000000000, + 30000000001, + 31513814553, + 31513814553, + 32420586499, + 35755618481, + 36495673105, + 38383174044, + 42831571746, + 42831571746, + 43785487709, + 44260167810, + 45000000000, + 45000000000, + 45179079075, + 46780822775, + 50000000000, + 85717123240, + 1184992632321 + ], + [ + 27323227880, + 27420586499, + 27420586499, + 28563244881, + 30000000000, + 30000000000, + 35418521861, + 41254563006, + 42253234021, + 43995000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46780822775, + 49544416144, + 50000000000, + 129604852375, + 246748399964 + ], + [ + 27278739174, + 30000000000, + 30000000001, + 33253095719, + 35816395324, + 41407291477, + 43995000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46780822775, + 55749830472, + 75774512440, + 2382796728215 + ], + [ + 27278739174, + 30000000000, + 30000000001, + 31557718030, + 33253095719, + 35765053020, + 40918108761, + 43904980717, + 43904980717, + 43904980717, + 43904980717, + 43904980717, + 45000000000, + 45000000000, + 45000000000, + 46780822775, + 50000000000, + 53625000000, + 71131244613, + 71131244613, + 1185024980717 + ], + [ + 27311145941, + 30000000001, + 31543564894, + 31575935983, + 31575935983, + 40918108761, + 44818000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48913842448, + 53625000000, + 118800930748 + ], + [ + 27366692596, + 27484341900, + 30000000000, + 30000000000, + 31551563805, + 32484341900, + 36000000000, + 40918108761, + 41407291477, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46780822775, + 53625000000, + 70000000000, + 71038821404, + 144000000000 + ], + [ + 25045032459, + 25045032459, + 25045032459, + 25045032459, + 25045032459, + 25045032459, + 25045032459, + 25045032459, + 25045032459, + 25045032459, + 27637952693, + 32484341900, + 35962509176, + 40038267466, + 41226512850, + 45000000000, + 45000000000, + 45000000000, + 52048594693, + 57795260817, + 154472936236 + ], + [ + 27418187007, + 30000000000, + 30000000001, + 31595966733, + 31595966733, + 31595966733, + 32658789324, + 35913457050, + 36284931644, + 41195980332, + 42604170978, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 52048594693, + 52048594693, + 57795260817, + 70786369684, + 93911317312, + 284995980332 + ], + [ + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 25070707372, + 30000000001, + 35385074898, + 45000000000, + 45000000000, + 45000000000, + 57439379550, + 4279631095799 + ], + [ + 26935626948, + 30000000000, + 30000000000, + 30000000000, + 31248587634, + 32645826399, + 41488183986, + 44790861014, + 44917199515, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48462469204, + 57795260817, + 58144118733, + 4722000000000 + ], + [ + 27057750672, + 27057750672, + 28021067014, + 30000000000, + 30000000000, + 30568400116, + 32661356756, + 33263413144, + 37412706794, + 44919354553, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45014824975, + 45014824975, + 52501453358, + 58144118733, + 60000000000, + 71776855682, + 1065852682265 + ], + [ + 27373197074, + 30000000000, + 30000000001, + 31551563805, + 33049247707, + 41488183986, + 42370712264, + 42370712264, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47138000000, + 48774360159, + 51343855510, + 52078690193, + 57795260817, + 63062979483, + 187990281275, + 803909294315 + ], + [ + 27164897403, + 27421444968, + 27602467529, + 30000000000, + 30000000001, + 30568400116, + 40206012760, + 42343572259, + 42343572259, + 42343572259, + 42343572259, + 42343572259, + 42343572259, + 42343572259, + 44818000000, + 45000000000, + 45000000000, + 45000000000, + 48679520301, + 52501453358, + 4102199462611 + ], + [ + 27266001200, + 27902677486, + 27902677486, + 27902677486, + 27902677486, + 30000000000, + 32661356756, + 35940792710, + 35955588926, + 42151457518, + 44038000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45049622172, + 48659979683, + 52501453358, + 124969232139, + 1606361966559 + ], + [ + 27388604718, + 28240073549, + 29171428349, + 30000000000, + 30000000001, + 30171428349, + 30807373454, + 31171428349, + 32970713718, + 35997677379, + 41488183986, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45601670088, + 50000000000, + 53636854417, + 53636854417, + 65171428349, + 1070383088696 + ], + [ + 27286280448, + 28240073549, + 30000000000, + 30000000001, + 35479000860, + 41000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45109931057, + 45601670088, + 48614560646, + 48614560646, + 48614560646, + 52022979896, + 60000000000, + 72838309264, + 1177421397567 + ], + [ + 27402756154, + 29842135678, + 30000000000, + 30628657903, + 30628657903, + 30628657903, + 30628657903, + 30628657903, + 40157117888, + 42258653392, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45601670088, + 49685722490, + 57636660984, + 436493580073 + ], + [ + 26198458088, + 30000000000, + 30000000001, + 34235755897, + 38750000000, + 41956070577, + 42201768725, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45601670088, + 51244335464, + 56182670780, + 60000000000, + 90878804032, + 1185278701697 + ], + [ + 27526168802, + 30341033176, + 31074458835, + 31827463246, + 32000000000, + 34971033176, + 34971033176, + 34971033176, + 34971033176, + 34971033176, + 34971033176, + 35963195927, + 42287091790, + 45000000000, + 45000000000, + 45000000000, + 45247035701, + 56182670780, + 57636660984, + 57795260817, + 85341033176 + ], + [ + 27388604718, + 27525990067, + 30000000000, + 30314328952, + 32525990067, + 33372621604, + 35308383123, + 36379625654, + 36379625654, + 38750000000, + 44038000000, + 45000000000, + 45000000000, + 45000000000, + 56182670780, + 56182670780, + 57636660984, + 90000000000, + 138238573620, + 4195607057700, + 4195607057700 + ], + [ + 25454903545, + 27640039171, + 30000000000, + 30845419587, + 35947488142, + 35947488142, + 39229955797, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49807969761, + 56182670780, + 90000000000, + 115000000000, + 115000000000, + 115000000000, + 138313851511, + 1185454903545 + ], + [ + 27418187007, + 27418187007, + 30000000000, + 30000000001, + 30628657903, + 33714414691, + 33861091698, + 36000000001, + 42516746143, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45543684060, + 50000000000, + 69979401753, + 122725482286, + 500000000000 + ], + [ + 27418187007, + 30628657903, + 30628657903, + 30628657903, + 33825149368, + 35000000000, + 40606565259, + 44038000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45520118868, + 48642960897, + 58692797277, + 111428676695, + 2171501051235 + ], + [ + 27402756154, + 28307445545, + 30000000000, + 31314328952, + 33307445545, + 33714414691, + 42390280168, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45150000000, + 50000000000, + 56182670780, + 70034355616, + 500000000000, + 1576240893363 + ], + [ + 27398076360, + 30000000000, + 35846737257, + 41146108031, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45484068656, + 64307664309, + 112996796514, + 164804210261, + 389416348334, + 4488672152150 + ], + [ + 27214175658, + 30000000001, + 31523745388, + 33504567570, + 35580789285, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50049000000, + 54927935783, + 69047243797, + 69047243797, + 69047243797, + 110880311936, + 212574328440, + 560029573379, + 8254163001903 + ], + [ + 27418187007, + 30000000000, + 30000000000, + 30000000001, + 33263413144, + 34272733758, + 41000000000, + 42461168317, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49770779261, + 50000000000, + 54927935783, + 54927935783, + 54927935783, + 74000000000, + 74572386892, + 136609950687, + 12053991708674 + ], + [ + 27244713366, + 30000000000, + 30000000000, + 33231821370, + 33754286638, + 35856140612, + 36000000001, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45346887063, + 54927935783, + 69485804203, + 3228156872023 + ], + [ + 25439234905, + 25439234905, + 25439234905, + 25439234905, + 25439234905, + 25439234905, + 25439234905, + 25439234905, + 25439234905, + 25439234905, + 30000000000, + 30000000001, + 31706236126, + 35883730291, + 45000000000, + 45000000000, + 45374476741, + 50000000000, + 54927935783, + 60000000000, + 1185439234905 + ], + [ + 27000000000, + 31742000000, + 35982082114, + 43791919295, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48485092628, + 54927935783, + 169251043873 + ], + [ + 28313215367, + 35690313204, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45216673587, + 45216673587, + 45233692870, + 58144118733, + 74210558001, + 74297611742, + 885306673587 + ], + [ + 27185822015, + 30000000000, + 30206869913, + 30206869913, + 33611822055, + 44038000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45006869913, + 50000000000, + 58187350000, + 58500000000, + 111280248953, + 255100478594, + 1001325476156 + ], + [ + 27225707908, + 30000000000, + 31371993665, + 35539540231, + 35594149323, + 38062437006, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51107350846, + 58500000000, + 74572386892, + 171917583228, + 4988617179850 + ], + [ + 27050970084, + 30000000001, + 33789718003, + 36899622266, + 41171854405, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 54927935783, + 76395595261, + 111434615565, + 161831218020, + 1521808658463 + ], + [ + 27035120029, + 30000000000, + 35627673769, + 44809519303, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 64769039303, + 64769039303, + 76219126565, + 91076191988, + 259672825713, + 316546171215, + 385864314686, + 573323341612, + 2136677822101 + ], + [ + 27418187007, + 30000000000, + 34006165224, + 36899622266, + 40746070466, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 58243292728, + 59800000000, + 59800000000, + 59800000000, + 62000000000, + 124000000000, + 290723814326, + 4487853214395 + ], + [ + 26957250223, + 30000000000, + 33714414691, + 34006165224, + 34272733758, + 35203627082, + 42253389300, + 43509247836, + 44553629607, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48389497679, + 53625000000, + 67662905341, + 75943147038, + 109240544760, + 500000000000 + ], + [ + 26077782083, + 29213277101, + 29213277101, + 29213277101, + 31146908876, + 33536948247, + 37565820273, + 38529234621, + 42287982116, + 44574183171, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 53625000000, + 58500000000, + 70000000000, + 75963700602, + 500000000000 + ], + [ + 26215074921, + 30000000000, + 31170843622, + 34272733758, + 34947914540, + 35945592660, + 36500809046, + 38750000000, + 39801492844, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 53625000000, + 58500000000, + 60000000000, + 69965153832, + 69965153832, + 69965153832, + 69965153832, + 2001623876265 + ], + [ + 27417168349, + 30000000000, + 30000000001, + 31217084860, + 32810394886, + 33829669303, + 34272733758, + 35873701838, + 35991161988, + 41170109894, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 53625000000, + 57247360446, + 79321149568, + 79321149568, + 132000000000, + 1184667161988 + ], + [ + 27000000000, + 30000000000, + 30000000001, + 32810394886, + 32810394886, + 32810394886, + 34623778641, + 38844456445, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46081888083, + 46081888083, + 46081888083, + 46081888083, + 48927787468, + 60125000000, + 1184731888083 + ], + [ + 27418187007, + 32810394886, + 36300000002, + 44100000000, + 44792302081, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 54000000000, + 107233966580, + 4583609834856 + ], + [ + 26176923840, + 27418187007, + 30000000000, + 34526324843, + 43923000004, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48863624765, + 50000000000, + 52272774099, + 52272774099, + 62707784878, + 78113357226, + 284707784878 + ], + [ + 27381398698, + 30000001000, + 30823387697, + 31772092656, + 34599419129, + 35271031932, + 40454421538, + 42365371598, + 42365371598, + 42365371598, + 42365371598, + 42365371598, + 44491630682, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 60125000000, + 60125000000, + 78100672122, + 3217999768378 + ], + [ + 26610464121, + 30000000000, + 31558851157, + 31585364682, + 31630049861, + 34526324843, + 37791428275, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 58500000000, + 60125000000, + 105547407295, + 112662819113 + ], + [ + 27104454607, + 30000000001, + 31601182954, + 34526324843, + 40753102092, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 54519665309, + 84891929693, + 471458319584 + ], + [ + 27324059797, + 30000000000, + 30000000001, + 32333783598, + 35148916087, + 38170109895, + 42723087233, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 58500000000, + 70000000000, + 70059832134 + ], + [ + 27000000000, + 27000000000, + 30148916087, + 34436076444, + 36178699304, + 42723087233, + 42723087233, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45223374130, + 57643745769, + 110000000000, + 1184583677039 + ], + [ + 27329359499, + 27425527576, + 30000000001, + 31622477138, + 35491012300, + 36000000000, + 38584022964, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46724483351, + 57643745769, + 58500000000, + 58500000000, + 500000000000 + ], + [ + 27417168349, + 33265000000, + 45000000000, + 45126320749, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 53126010136, + 56844830846, + 500000000000 + ], + [ + 27346444144, + 30000000000, + 30000000001, + 32346444144, + 36007040000, + 43232607075, + 44766882368, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45736518450, + 52923054280, + 57643745769, + 57643745769, + 58500000000, + 500000000000 + ], + [ + 27256645775, + 30000000001, + 31652177062, + 34960132857, + 35923213019, + 36802120630, + 36802120630, + 44940199285, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 57643745769, + 58500000000, + 58500000000, + 59627815563, + 70156097679, + 70156097679, + 70156097679, + 500000000000 + ], + [ + 27256356011, + 29960132857, + 33914615563, + 36059877273, + 44905415619, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47946561219, + 57643745769, + 58500000000, + 60351277050, + 68861683032, + 500000000000 + ], + [ + 26255420416, + 27466654961, + 30000000000, + 31740213082, + 34272733758, + 35842684338, + 35927691836, + 36109653648, + 36109653648, + 38736192768, + 44940199285, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52623372641, + 58500000000, + 500000000000 + ], + [ + 27000000000, + 30000000000, + 30000000001, + 35927691836, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45055046755, + 50000000000, + 57643745769, + 57643745769, + 58500000000, + 61140953295, + 97256616861 + ], + [ + 27556777010, + 30000000000, + 30000000000, + 32761962644, + 35827460599, + 39530509029, + 39530509029, + 39986159456, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45093781998, + 47800194290, + 60000000000, + 78920402820, + 284761962644 + ], + [ + 27417168349, + 27619494581, + 30000000001, + 34272733758, + 34795170541, + 36178457454, + 39530509029, + 39530509029, + 39530509029, + 40136818863, + 44342934382, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46506651374, + 61140953295, + 61140953295, + 70414308947 + ], + [ + 27599175400, + 30000000000, + 30000000000, + 34272733758, + 36091685029, + 36091685029, + 39530509029, + 41112368003, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45237053806, + 64749648488, + 317664671170 + ], + [ + 27418187007, + 27779301445, + 30000000000, + 32063760519, + 35927691836, + 36046918854, + 36122179938, + 39530509029, + 40025340599, + 40136818863, + 40136818863, + 44692755811, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45310530057, + 55806620942, + 61140953295, + 112498061854 + ], + [ + 27418187007, + 27592780095, + 27592780095, + 33999273303, + 34795170541, + 36300000000, + 39530509029, + 40025340599, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45075666694, + 49007448114, + 50000000000, + 50000000000, + 58480564768, + 58480564768, + 125557845716 + ], + [ + 25075148822, + 30000000000, + 36036000000, + 39986159456, + 39986159456, + 41078624335, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48130768054, + 51775148822, + 58480564768, + 58480564768, + 58480564768, + 61140953295, + 390665083903 + ], + [ + 27520874772, + 29368043347, + 30000000000, + 35000000000, + 36623872957, + 37473841224, + 41276592027, + 43895950649, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48510000000, + 51501961068, + 61140953295, + 144000000000 + ], + [ + 27419722672, + 30000000000, + 36056684487, + 41868625488, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45169730844, + 46176684487, + 46176684487, + 46176684487, + 46176684487, + 46176684487, + 58286453674, + 63076684487, + 1185076684487 + ], + [ + 27404831214, + 30000000001, + 35377440940, + 35964489475, + 37928579042, + 41868625488, + 41868625488, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48576350306, + 51461793029, + 54441995253, + 61140953295, + 80631556019, + 564232723079 + ], + [ + 27447152543, + 27447152543, + 27447152543, + 27447152543, + 30000000000, + 30000000000, + 34849861080, + 35940729628, + 36130926604, + 40174879880, + 42438095694, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48605265512, + 56705919805, + 58286453674, + 175553943330 + ], + [ + 25038284481, + 29322579387, + 30000000000, + 34926828800, + 39530509029, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 56705919805, + 56919466130, + 60000000000, + 69721289521, + 69721289521, + 69721289521, + 144000000000, + 192485903821, + 1518762132533 + ], + [ + 26609275537, + 30000000000, + 34322579387, + 36833223697, + 39530509029, + 41276491426, + 43983869080, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48502825351, + 54441995253, + 58286453674, + 81355371494, + 500000000000 + ], + [ + 25074180731, + 25074180731, + 25074180731, + 25074180731, + 25074180731, + 25074180731, + 25074180731, + 25074180731, + 25074180731, + 25074180731, + 25074180731, + 25074180731, + 25074180731, + 34150635108, + 36833223697, + 45000000000, + 45000000000, + 45000000000, + 48507374833, + 58286453674, + 500000000000 + ], + [ + 27260586871, + 30000000000, + 30000000001, + 31411715812, + 36833223697, + 40715891889, + 42288796068, + 42288796068, + 42288796068, + 42288796068, + 42288796068, + 42288796068, + 42288796068, + 44457203215, + 45000000000, + 45000000000, + 45000000000, + 56705919805, + 56919466130, + 56919466130, + 500000000000 + ], + [ + 27251346263, + 30000000000, + 31417675092, + 35000000000, + 37276226000, + 40715891889, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45289000000, + 45319999418, + 45319999418, + 46975019935, + 57667381100, + 60000000000, + 1184899999418 + ], + [ + 27303178068, + 27309159290, + 30000000000, + 31622480622, + 34503671949, + 37388112999, + 42853496028, + 44457203215, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 56919466130, + 57667381100, + 485961675548 + ], + [ + 25033942560, + 25033942560, + 25033942560, + 25033942560, + 25033942560, + 25033942560, + 25033942560, + 25033942560, + 25033942560, + 25033942560, + 30000000001, + 31812193347, + 36747399275, + 41031252978, + 45000000000, + 45000000000, + 45000000000, + 45430020219, + 56919466130, + 57667381100, + 112593112322 + ], + [ + 27355197377, + 27499441720, + 30000000000, + 34042571883, + 36000000000, + 36003386370, + 36003386370, + 36747399275, + 37054724849, + 40175179727, + 42375478911, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 51191489838, + 57667381100, + 57667381100, + 70019164974 + ], + [ + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 25107077310, + 27419722672, + 31878772889, + 36137077310, + 45000000000, + 45000000000, + 50000000000, + 144000000000 + ], + [ + 27346100235, + 27400324329, + 27419722672, + 27960320123, + 33703967251, + 34665696863, + 35823256257, + 35823256258, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45346662455, + 50558183225, + 53179000000, + 56919466130, + 58286453674, + 112280332741 + ], + [ + 25072425687, + 25072425687, + 25072425687, + 25072425687, + 25072425687, + 25072425687, + 25072425687, + 25072425687, + 25072425687, + 25072425687, + 27419722672, + 30000000001, + 33871680866, + 34274653340, + 41820891351, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 51142967459, + 351519518080 + ], + [ + 27348897276, + 30000000000, + 30000000001, + 30000000001, + 31580161812, + 33421825594, + 33533799697, + 35811426348, + 36790721670, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50036251914, + 51142967459, + 51191489838, + 69955057012 + ], + [ + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 25089097221, + 30000000000, + 33980455778, + 45000000000, + 46134650605, + 51142967459, + 351536189614 + ], + [ + 27301107143, + 30000000000, + 30000000000, + 31642073584, + 34918213201, + 40658647372, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45268000000, + 51142967459, + 69652662928, + 69652662928, + 69652662928, + 69652662928, + 69725010474, + 2430862343848 + ], + [ + 25031772330, + 25031772330, + 25031772330, + 25031772330, + 25031772330, + 25031772330, + 25031772330, + 25031772330, + 25031772330, + 25031772330, + 27419722672, + 28056533017, + 31715776956, + 33474805691, + 35891937241, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52772030647, + 2965357594093 + ], + [ + 27419722672, + 29970867562, + 30000000000, + 30000000000, + 33421825594, + 35855302347, + 35949121894, + 38750000001, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45032679022, + 45468240640, + 48655143746, + 50558183225, + 52772030647, + 1385752435754 + ], + [ + 25079502370, + 25079502370, + 25079502370, + 25079502370, + 25079502370, + 25079502370, + 25079502370, + 25079502370, + 25079502370, + 25079502370, + 25079502370, + 25079502370, + 25079502370, + 28343619561, + 35000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49079502370, + 500000000000 + ], + [ + 27283230282, + 29164974480, + 30000000000, + 30000000001, + 31600622743, + 33641422833, + 35728226986, + 35728226986, + 35728226986, + 37501763978, + 38229202875, + 38229202875, + 38750000001, + 42461653714, + 43307521299, + 45000000000, + 45000000000, + 45000000000, + 46315366465, + 52772030647, + 1184895279940 + ], + [ + 27419722672, + 27453955770, + 29970867562, + 34232174509, + 37549654712, + 42167346559, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46315366465, + 51142967459, + 73076111098, + 115000000000, + 115000000000, + 115000000000, + 115000000000, + 115000000000, + 115000000000, + 115000000000, + 500000000000 + ], + [ + 27224894804, + 32453955770, + 33787783643, + 35728226986, + 39914487588, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48671338600, + 51142967459, + 69565115106, + 115000000000, + 115000000000, + 115000000000, + 115000000000, + 115000000000, + 500000000000 + ], + [ + 26120583638, + 27419722672, + 27419722672, + 27419722672, + 27419722672, + 27419722672, + 29615227086, + 31000000000, + 32344579739, + 35628401369, + 43563857824, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46315366465, + 50000000000, + 50000000000, + 68236764906, + 131195405293, + 578337418456 + ], + [ + 27124577710, + 27124577710, + 27124577710, + 30000000000, + 31469351614, + 33609439542, + 33724507191, + 35718882925, + 39800357960, + 40724507191, + 44111739073, + 44111739073, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 54127385153, + 258737330412, + 695316998204 + ], + [ + 27348094344, + 28783430759, + 30000000000, + 30000000001, + 32327734910, + 34596699311, + 40991602365, + 44111739073, + 44909233830, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46315366465, + 48727749587, + 53065135996, + 57667381100, + 75000000000, + 1184828371090 + ], + [ + 27455068868, + 30000000000, + 30000000000, + 30929386334, + 31894123363, + 37539386334, + 40991602365, + 44111739073, + 44111739073, + 44111739073, + 44969066211, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45268000000, + 49116045071, + 50252823306, + 54865476216, + 98012062522 + ], + [ + 27177484518, + 27365164511, + 28081041270, + 31869594257, + 33536066853, + 36190663168, + 36315299847, + 42519723254, + 43307521299, + 44111739073, + 44111739073, + 44111739073, + 44111739073, + 44111739073, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 46223779533, + 50252823306, + 105000000000 + ], + [ + 25076909434, + 25076909434, + 25076909434, + 25076909434, + 25076909434, + 25076909434, + 25076909434, + 25076909434, + 25076909434, + 25076909434, + 29076909434, + 33536066853, + 41076909434, + 42519723254, + 44987812213, + 45000000000, + 45000000000, + 45000000000, + 45086966874, + 54215076251, + 885076909434 + ], + [ + 27454095508, + 27454095508, + 27454095508, + 30000000000, + 30000000000, + 30652604060, + 33536066853, + 37632699681, + 37632699681, + 37632699681, + 37632699681, + 37632699681, + 41022699681, + 44221801176, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48758204188, + 185022699681 + ], + [ + 25694085547, + 30000000001, + 35852961432, + 38750000000, + 44111739073, + 44969159860, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45128388278, + 50252823306, + 70022258223, + 70022258223, + 70022258223, + 70022258223, + 175565651856 + ], + [ + 27419722672, + 27436705472, + 30000000000, + 30652604060, + 34088304146, + 35970319825, + 40158082879, + 44255507923, + 44969066211, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45169482674, + 57734515511, + 69887938216, + 106000000000, + 1185093892234 + ], + [ + 27419722672, + 27860308653, + 30937299662, + 34479845779, + 35965093172, + 35965093172, + 35965093172, + 35965093172, + 35965093172, + 37632699681, + 37632699681, + 37632699681, + 38750000000, + 44969066211, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 57912576916, + 63165093172, + 110000000000 + ], + [ + 25127272484, + 28733204816, + 30777733139, + 31866642455, + 34274653340, + 35981037034, + 42378137125, + 42378137125, + 42378137125, + 42378137125, + 42378137125, + 42378137125, + 42378137125, + 44969066211, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46223779533, + 57170105596, + 146137372484 + ], + [ + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 25122126655, + 30000000000, + 41122126655, + 45000000000, + 45000000000, + 48782132964, + 486122126655 + ], + [ + 27275911024, + 28534876125, + 29085174410, + 30708708640, + 33181178840, + 35689016236, + 36315350384, + 40983460836, + 40983460836, + 42069030249, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46312248138, + 50641938162, + 53026257283, + 58290460836, + 111860811400 + ], + [ + 25092271971, + 25092271971, + 25092271971, + 25092271971, + 25092271971, + 25092271971, + 25092271971, + 25092271971, + 25092271971, + 25092271971, + 27389867988, + 30937299662, + 33027066348, + 37632699681, + 38750000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50641938162, + 500000000000 + ], + [ + 27419722672, + 30000000000, + 30045573224, + 33358622847, + 34274653340, + 35969087427, + 38750000000, + 41327622748, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47930739982, + 50227000000, + 50641938162, + 68716347785, + 106000000000, + 500000000000 + ], + [ + 27400829377, + 33181178840, + 38750000000, + 42436261836, + 42436261836, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45203233942, + 46315366465, + 50227000000, + 53711254792, + 57912576916, + 88541741697, + 500000000000 + ], + [ + 27419722672, + 27521739792, + 30000000000, + 30937299662, + 30937299662, + 32135763001, + 33198847287, + 35000000000, + 35940531185, + 42040599522, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45247590926, + 48793213125, + 50641938162, + 55083680226, + 69895889240, + 500000000000 + ], + [ + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 25219839385, + 34181478744, + 45000000000, + 45000000000, + 48793213125, + 500000000000 + ], + [ + 27375448017, + 27477465137, + 30000000000, + 30937299662, + 33097505578, + 34274653340, + 36103315689, + 36718991579, + 42298270930, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46316398258, + 46316398258, + 49883476304, + 50000000000, + 50000000000, + 115218641187 + ], + [ + 27419722672, + 30000000000, + 30000000001, + 30166390598, + 30937299662, + 32135763001, + 33554165880, + 35892949391, + 42146258367, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45237004264, + 46316398258, + 48466215528, + 55253521962, + 69566157172, + 1185166390598 + ], + [ + 27431214932, + 30000000000, + 30937299662, + 33764789602, + 42146258367, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46316398258, + 48793213125, + 52776707097, + 69631098219, + 69631098219, + 69631098219, + 603824600870 + ], + [ + 27419722672, + 27576176632, + 29417557701, + 32017402620, + 33246413739, + 33733877247, + 38750000000, + 40000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45276308813, + 46000000000, + 52776707097, + 53711254792, + 85259769649 + ], + [ + 25294672590, + 25294672590, + 25294672590, + 25294672590, + 25294672590, + 25294672590, + 25294672590, + 25294672590, + 25294672590, + 25294672590, + 30000000000, + 30000000001, + 31842810833, + 33246413739, + 35998671080, + 45000000000, + 45000000000, + 45000000000, + 46316398258, + 46316398258, + 53711254792 + ], + [ + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 25251456676, + 30000000001, + 32757030083, + 35891316620, + 45000000000, + 45000000000, + 46021456676, + 144000000000 + ], + [ + 25106040679, + 25106040679, + 25106040679, + 25106040679, + 25106040679, + 25106040679, + 25106040679, + 25106040679, + 25106040679, + 25106040679, + 25106040679, + 27274227785, + 32017402620, + 33246413739, + 38750000000, + 45000000000, + 45000000000, + 45000000000, + 45876040679, + 52071447800, + 285106040679 + ], + [ + 25093636039, + 29731277031, + 29731277031, + 29731277031, + 29731277031, + 29731277031, + 29731277031, + 29731277031, + 33246413739, + 43241254784, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 50000000000, + 52071447800, + 52071447800, + 144000000000 + ], + [ + 25251456676, + 25251456676, + 27171569180, + 30000000000, + 30047986071, + 30047986071, + 32000000000, + 33298551203, + 36300000000, + 41635545124, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 52071447800, + 53625000000, + 1185003303184 + ], + [ + 27195298056, + 30000000000, + 32906161089, + 34274653340, + 41635545124, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45043650114, + 50000000000, + 53625000000, + 53625000000, + 53625000000, + 68097861352, + 125530626062, + 291616046434 + ], + [ + 27169947772, + 27791032305, + 28031071034, + 28031071034, + 30000000000, + 32906161089, + 34274653340, + 40660039758, + 44000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52071447800, + 100466040006, + 1185027914890 + ], + [ + 27224645921, + 30000000000, + 31461480324, + 35947608575, + 38912540928, + 40741186640, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 52071447800, + 63076474508, + 77788946848, + 500000000000 + ], + [ + 25111498550, + 25111498550, + 25111498550, + 25111498550, + 25111498550, + 25111498550, + 25111498550, + 25111498550, + 25111498550, + 25111498550, + 25111498550, + 25111498550, + 25111498550, + 27224645921, + 28504110272, + 33862077499, + 45000000000, + 45000000000, + 45000000000, + 48700416133, + 500000000000 + ], + [ + 27273021574, + 30000000000, + 31286009580, + 31630212226, + 35799942750, + 40741186640, + 40741186640, + 41958627921, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48589779719, + 52034463220, + 90043848640, + 500000000000 + ], + [ + 25048833746, + 25048833746, + 25048833746, + 25048833746, + 25048833746, + 25048833746, + 25048833746, + 25048833746, + 25048833746, + 25048833746, + 27392081910, + 30000000000, + 34274653340, + 35818702692, + 40741186640, + 45000000000, + 45000000000, + 45000000000, + 45090764788, + 50000000000, + 500000000000 + ], + [ + 26345861744, + 30000000000, + 31646067830, + 37939262589, + 37939262589, + 37939262589, + 37939262589, + 37939262589, + 37939262589, + 41290483338, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 58500000000, + 69994093460, + 69994093460, + 69994093460, + 500000000000 + ], + [ + 27402184132, + 31000000000, + 34795383963, + 35597932399, + 36019234320, + 41290483338, + 42294872511, + 42294872511, + 42294872511, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48587628595, + 58500000000, + 500000000000 + ], + [ + 27406982485, + 29865638516, + 30000000000, + 31613666539, + 34916679894, + 35881160271, + 42294872511, + 42294872511, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52034463220, + 58500000000, + 58500000000, + 58500000000, + 986036093559 + ], + [ + 27432483122, + 30000000000, + 34795383963, + 34795383963, + 34795383963, + 34795383963, + 34795383963, + 34795383963, + 34795383963, + 35948227481, + 44811594196, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48867896571, + 48867896571, + 48867896571, + 50000000000, + 52036237029, + 108051540691 + ], + [ + 27331720061, + 31525742818, + 35000000000, + 35868495370, + 42012382267, + 42258826638, + 42258826638, + 42258826638, + 42258826638, + 42258826638, + 42258826638, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46313663650, + 58500000000, + 112098820507 + ], + [ + 27314383841, + 30000000000, + 32587225493, + 35786295532, + 39627012648, + 44832399226, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 52036237029, + 58500000000, + 284926035265 + ], + [ + 27245483405, + 27406982485, + 28289850998, + 30000000000, + 32771000000, + 35358311323, + 35761460916, + 43931801412, + 44681801412, + 44681801412, + 44681801412, + 44681801412, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52036237029, + 56977847480, + 562048406634 + ], + [ + 27224645921, + 27406982485, + 30000000000, + 33701818351, + 34274554727, + 34725944467, + 35908977035, + 42294872511, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49235224330, + 50000000000, + 52777426621, + 55015442723, + 110000000000 + ], + [ + 25053483204, + 30000000000, + 30000000001, + 30000000001, + 30000000001, + 33331389233, + 42493451457, + 44053483204, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48636006068, + 57547886771, + 59000000000, + 1185053483204 + ], + [ + 27392081910, + 29943345931, + 32167000000, + 34240102387, + 34725944467, + 35996019108, + 38750000000, + 41374547667, + 43625631363, + 44036981970, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48687502049, + 58438768114, + 144000000000 + ], + [ + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 25088103536, + 35832875222, + 45000000000, + 45000000000, + 45000000000, + 45426598271, + 57547886771, + 69955463642 + ], + [ + 27202999889, + 30000000000, + 31658659518, + 34229381160, + 35660461836, + 35660461836, + 35836106213, + 38750000000, + 42283720180, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48915690150, + 52777426621, + 57444472230, + 57444472230, + 1184915690150 + ], + [ + 27337329148, + 31791633921, + 32817993341, + 34938657290, + 37301444719, + 44972190045, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46313663650, + 57444472230, + 285048664553 + ], + [ + 27337329148, + 30000000000, + 34760664216, + 41017620707, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45067328443, + 57444472230, + 58438768114, + 185112901667, + 185112901667, + 185112901667, + 500000000000 + ], + [ + 27340792943, + 32942874798, + 35795542526, + 39848143940, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 58396585459, + 58438768114, + 69946677376, + 69946677376, + 69946677376, + 500000000000 + ], + [ + 25076559042, + 25076559042, + 25076559042, + 25076559042, + 25076559042, + 25076559042, + 25076559042, + 25076559042, + 25076559042, + 25076559042, + 30000000000, + 34725944467, + 35827113111, + 39848143940, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45030985818, + 52028633650, + 500000000000 + ], + [ + 27283698509, + 31711520955, + 33193988639, + 34175991178, + 35707942428, + 43409647597, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45003177691, + 50000000000, + 52028633650, + 57444472230, + 58396585459, + 92488894446, + 100000000000, + 500000000000 + ], + [ + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 25110680343, + 30000000000, + 35193203152, + 43456021719, + 45000000000, + 45000000000, + 52028633650, + 1185110680343 + ], + [ + 27209639674, + 30000000000, + 30000000001, + 33733877247, + 35190797494, + 35190797494, + 36300000002, + 43662610430, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 58396585459, + 58500000000, + 175134458328, + 184945405773, + 584945405773 + ], + [ + 25030349209, + 25030349209, + 25030349209, + 25030349209, + 25030349209, + 25030349209, + 25030349209, + 25030349209, + 25030349209, + 25030349209, + 25030349209, + 27383504928, + 32622519273, + 35849187646, + 39980418736, + 45000000000, + 45000000000, + 45000000000, + 48439586086, + 58500000000, + 1185030349209 + ], + [ + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 25021958377, + 30000000001, + 35488151116, + 45000000000, + 45044000000, + 58500000000, + 677368146037 + ], + [ + 27245983386, + 30000000001, + 32216991132, + 34573459264, + 37892827667, + 37892827667, + 37892827667, + 40778149091, + 44861532461, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45008153165, + 52028633650, + 52777426621, + 53625000000, + 58500000000, + 78835469005, + 222987827667 + ], + [ + 27308428410, + 28308428410, + 30000000000, + 30000000000, + 32955272691, + 35655272691, + 39994062300, + 40014375125, + 40014375125, + 40014375125, + 40014375125, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48485006269, + 53625000000, + 53625000000, + 53625000000, + 69678365793 + ], + [ + 27493273753, + 30271494826, + 34938657290, + 35879164338, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46795386071, + 47160971111, + 50000000000, + 50000000000, + 53000000000, + 78987949815, + 81000000000 + ], + [ + 27338571619, + 27555589360, + 30000000000, + 30000000000, + 32000000000, + 37301444719, + 42409275054, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 45076328878, + 47160971111, + 50000000000, + 53000000000, + 58300000001, + 94018305628, + 636064581422 + ], + [ + 27338571619, + 30000000000, + 30000000000, + 30000000001, + 30533632327, + 36000000001, + 41000000000, + 42271510765, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45148482946, + 50000000000, + 50000000000, + 50000000000, + 53625000000, + 58500000000, + 69946376008, + 77142095822, + 65537058412091 + ], + [ + 25234845073, + 25234845073, + 25234845073, + 25234845073, + 25234845073, + 25234845073, + 25234845073, + 25234845073, + 25234845073, + 25234845073, + 30000000000, + 34175991178, + 39052971077, + 42339510271, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52028633650, + 53625000000, + 985234845073 + ], + [ + 27292557842, + 27533132803, + 30000000000, + 33228530050, + 34175991178, + 36186609845, + 39052971077, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45090138055, + 50000000000, + 50000000000, + 56879671916, + 69652947563, + 69652947563, + 69652947563, + 75013746383, + 1185186609845 + ], + [ + 27272708215, + 27340792943, + 30000000000, + 31266816163, + 33508857757, + 35854760345, + 39003596994, + 43827885000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45135465139, + 53625000000, + 56879671916, + 74993896883, + 74993896883, + 111114847513 + ], + [ + 27340792943, + 27387226598, + 30000000000, + 30000000000, + 30000000001, + 33710354062, + 34175991178, + 35818063217, + 35818063217, + 42238196221, + 42238196221, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48464318147, + 56879671916, + 56879671916, + 56879671916, + 68303794328, + 500000000000 + ], + [ + 25030349209, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 25292552663, + 31881023953, + 35896552663, + 45000000000, + 45000000000, + 50000000000, + 642139060594 + ], + [ + 25166835017, + 25166835017, + 25166835017, + 25166835017, + 25166835017, + 25166835017, + 25166835017, + 25166835017, + 25166835017, + 25166835017, + 25166835017, + 28340867625, + 31543951287, + 35696134349, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45966835017, + 53625000000, + 500000000000 + ], + [ + 27191845109, + 30000000000, + 31535040686, + 33192119350, + 34636704155, + 36300000000, + 40446627131, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45112309623, + 45943604829, + 50000000000, + 53625000000, + 53625000000, + 114711768037, + 500000000000 + ], + [ + 25206659032, + 25206659032, + 25206659032, + 25206659032, + 25206659032, + 25206659032, + 25206659032, + 25206659032, + 25206659032, + 25206659032, + 25206659032, + 25206659032, + 25206659032, + 27340792943, + 30000000000, + 35664547368, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 985206659032 + ], + [ + 27076904457, + 27340792943, + 30729923502, + 35000000000, + 35486552514, + 36045182416, + 42048240280, + 42048240280, + 42048240280, + 42048240280, + 42048240280, + 42048240280, + 42048240280, + 43018824933, + 44998314968, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 52727413772, + 529912057763 + ], + [ + 27121380705, + 30000000000, + 34627905930, + 38184284441, + 42763286635, + 44982336056, + 44982336056, + 44982336056, + 44982336056, + 44982336056, + 44982336056, + 44982336056, + 44982336056, + 44982336056, + 44982336056, + 45000000000, + 45000000000, + 49013631262, + 52727413772, + 53625000000, + 103663652925 + ], + [ + 27036722112, + 27340792943, + 30000000001, + 41230188825, + 44658709387, + 45000000000, + 45000000000, + 45065991607, + 48566975264, + 48566975264, + 48566975264, + 48566975264, + 48566975264, + 48566975264, + 48566975264, + 48566975264, + 48566975264, + 48566975264, + 50000000000, + 51197493388, + 191385550600 + ], + [ + 27988051187, + 30000000000, + 30000000000, + 31966614510, + 31966614510, + 32558268184, + 33266816164, + 35695498524, + 37412411789, + 39988051187, + 42173957926, + 44751714768, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48988051187, + 52650450388, + 53625000000, + 100000000000, + 284988051187 + ], + [ + 25077801144, + 30000000000, + 30000000000, + 30729923502, + 32000000000, + 35849690074, + 39216465182, + 42173957926, + 42173957926, + 44751714768, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45162110994, + 45877801144, + 52727413772, + 58500000000, + 1185077801144 + ], + [ + 25138502358, + 25138502358, + 25138502358, + 25138502358, + 25138502358, + 25138502358, + 25138502358, + 25138502358, + 25138502358, + 25138502358, + 27491244114, + 30000000000, + 32438800377, + 35961792465, + 39216465182, + 45000000000, + 45000000000, + 45000000000, + 45107207152, + 48498501171, + 69843985870 + ], + [ + 27333833143, + 30000000000, + 31966614510, + 35816254442, + 35923954393, + 40042553622, + 44751714768, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 50000000000, + 51197493388, + 51197493388, + 69626647882, + 69626647882, + 69626647882, + 111889639681, + 1139410282488 + ], + [ + 27280259623, + 27280259623, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 31915773872, + 34210000000, + 39216465182, + 44360188896, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 53625000000, + 72682588026, + 72682588026, + 985080190362 + ], + [ + 25088185266, + 25088185266, + 25088185266, + 25088185266, + 25088185266, + 25088185266, + 25088185266, + 25088185266, + 25088185266, + 25088185266, + 25088185266, + 25088185266, + 25088185266, + 28492061359, + 33492471354, + 44360188896, + 45000000000, + 45000000000, + 45000000000, + 51197493388, + 500000000000 + ], + [ + 27167652763, + 28101259518, + 30000000001, + 35000000000, + 38094500940, + 39216465182, + 41158200565, + 42895028937, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48463513021, + 50000000000, + 50000000000, + 53050457624, + 53050457624, + 69428125894, + 3390232142685 + ], + [ + 27241175793, + 30000000000, + 31513330702, + 35712194116, + 36991598941, + 43923000004, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 52727413772, + 55000000001, + 58735062505, + 142984036451, + 500000000000 + ], + [ + 27340663493, + 29080101586, + 29787548923, + 29787548923, + 29787548923, + 29787548923, + 30000000000, + 30080101586, + 35783075460, + 37689229164, + 43018824933, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47080101586, + 50000000000, + 50930005522, + 52727413772, + 500000000000 + ], + [ + 25140514824, + 25140514824, + 25140514824, + 25140514824, + 25140514824, + 25140514824, + 25140514824, + 25140514824, + 25140514824, + 25140514824, + 30000000000, + 33802226503, + 35843488696, + 44738543456, + 45000000000, + 45000000000, + 45000000000, + 47902066344, + 50930005522, + 58621189928, + 1185140514824 + ], + [ + 26935551842, + 26935551842, + 27338571619, + 28409049814, + 30000000000, + 32678172437, + 33440956563, + 35871955769, + 41292773505, + 44751714768, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46468848248, + 50930005522, + 53625000000, + 58735062505, + 500000000000 + ], + [ + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 25156844086, + 27354900881, + 38494370618, + 38494370618, + 45000000000, + 45000000000, + 50149011396, + 985156844086 + ], + [ + 27189558494, + 27338571619, + 27560984712, + 28189558494, + 30000000000, + 30000000001, + 32678172437, + 35701665740, + 38750000000, + 44751714768, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48357582885, + 50000000000, + 50000000000, + 50149011396, + 53050457624, + 500000000000 + ], + [ + 25043032200, + 25043032200, + 25043032200, + 25043032200, + 25043032200, + 25043032200, + 25043032200, + 25043032200, + 25043032200, + 25043032200, + 27287086324, + 30000000001, + 33820847422, + 35735897148, + 37600000000, + 45000000000, + 45000000000, + 50000000000, + 51384778314, + 57285699937, + 1185043032200 + ], + [ + 25009770480, + 30000000000, + 30000000001, + 35627843520, + 35801328864, + 36398224921, + 44751714768, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52261368456, + 118823744819 + ], + [ + 25073106885, + 30000000000, + 32503540907, + 35864665269, + 36083106885, + 36083106885, + 36083106885, + 38533305540, + 39712988855, + 42181727533, + 42347069920, + 44983106885, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48463816581, + 50930005522, + 50930005522, + 52981118103, + 745738208382 + ], + [ + 27232878617, + 30000000000, + 32767240312, + 34421955938, + 35997771971, + 42276059278, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45715520650, + 52981118103, + 108736640061, + 108736640061, + 360098601788 + ], + [ + 27069510568, + 30000000000, + 30000000000, + 33518985155, + 41940638668, + 44861119440, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46294277383, + 48251223331, + 50000000000, + 50149011396, + 54574172648, + 69505751128, + 69505751128, + 69505751128, + 69505751128, + 110000000000 + ], + [ + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 25022544301, + 30000000000, + 31581472820, + 42276059278, + 45000000000, + 45000000000, + 50149011396, + 69555842839 + ], + [ + 27048059757, + 29000301287, + 30000000000, + 30000000001, + 31409800162, + 32450201637, + 35570850766, + 39868861468, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46294277383, + 46294277383, + 48211064631, + 50000000000, + 50000000000, + 50000000000, + 50149011396, + 984850871643 + ], + [ + 27215622069, + 29000301287, + 30000000000, + 30000000001, + 33492471354, + 33492471354, + 35384903274, + 35788989897, + 44238972800, + 44238972800, + 44238972800, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47175974328, + 50000000000, + 54471995052, + 113683823042 + ], + [ + 27328466928, + 28286031092, + 29400205556, + 29400205556, + 29400205556, + 30000000000, + 30704900081, + 30726424613, + 32940241964, + 35742728952, + 37455711597, + 43923000004, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 48402515702, + 50000000000, + 51881100780, + 200000000000 + ], + [ + 27328466928, + 27450201637, + 30000000000, + 30000000000, + 30000000001, + 31793789496, + 32450201637, + 33704900081, + 35808621836, + 36300000002, + 41175302455, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45827309052, + 52780000000, + 52981118103, + 69534288101, + 500000000000 + ], + [ + 25109208059, + 25109208059, + 25109208059, + 25109208059, + 25109208059, + 25109208059, + 25109208059, + 25109208059, + 25109208059, + 25109208059, + 25109208059, + 25109208059, + 29109208059, + 35949225154, + 45000000000, + 45000000000, + 45000000000, + 48659229428, + 57637797724, + 64328797589, + 500000000000 + ], + [ + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 25108098116, + 30000000000, + 30000000001, + 35899208270, + 45000000000, + 45000000000, + 51759993058, + 500000000000 + ], + [ + 27176689637, + 27797451469, + 28328466928, + 30000000000, + 32797451469, + 32966363621, + 34917838811, + 34917838811, + 34917838811, + 34917838811, + 34917838811, + 34917838811, + 34917838811, + 35697617920, + 38264730143, + 45000000000, + 45000000000, + 45000000000, + 48286319071, + 51759993058, + 500000000000 + ], + [ + 27237669057, + 29831255343, + 30000000000, + 35681520830, + 39658410188, + 39658410188, + 39658410188, + 39658410188, + 42381766954, + 42381766954, + 42381766954, + 42381766954, + 42381766954, + 42381766954, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48384491374, + 57637797724, + 1185018410188 + ], + [ + 27217782556, + 30000000000, + 30704900082, + 33592688775, + 35615494738, + 39592384096, + 39592384096, + 39592384096, + 39592384096, + 39592384096, + 44918582952, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48294399340, + 48294399340, + 48294399340, + 51759993058, + 54557745727, + 118766358435 + ], + [ + 27252281763, + 28320902534, + 29843205606, + 30000000000, + 30000000001, + 31545574027, + 43742225023, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48658617950, + 49308099327, + 50000000000, + 52007326898, + 52670029317, + 60000000000, + 70000593742 + ], + [ + 27331061607, + 29047243414, + 30000000000, + 30000000000, + 30000000001, + 33782722551, + 35815041266, + 35819311503, + 41050895418, + 43847243414, + 44177407296, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45012770517, + 45012770517, + 48615259680, + 58800000000, + 227266795287 + ], + [ + 25090216058, + 25090216058, + 25090216058, + 25090216058, + 25090216058, + 25090216058, + 25090216058, + 25090216058, + 25090216058, + 25090216058, + 28476457963, + 31582154364, + 40035234056, + 41442996381, + 45000000000, + 45000000000, + 45000000000, + 48669578915, + 48669578915, + 72902386526, + 112248941773 + ], + [ + 27328466928, + 27738756244, + 30000000000, + 30000000001, + 31669983947, + 31669983947, + 31669983947, + 31678304780, + 31745080567, + 31745080567, + 31745080567, + 31745080567, + 35916928971, + 36053438685, + 41442996381, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45943438685, + 97939481169 + ], + [ + 27026582316, + 28353096511, + 30000000000, + 30668291958, + 31688417956, + 31688417956, + 31688417956, + 31688417956, + 31696738789, + 31696738789, + 32796838648, + 35745484889, + 41050895418, + 43871872694, + 45000000000, + 45000000000, + 45000000000, + 47881043221, + 50000000000, + 54345911333, + 118885847033 + ], + [ + 27328466928, + 30000000000, + 30000000001, + 33294863627, + 33762361691, + 35831980256, + 40071821221, + 41050895418, + 45000000000, + 45000000000, + 45000000000, + 45123534911, + 47881043221, + 47881043221, + 50000000000, + 50000000000, + 50000000000, + 50876113103, + 57355271090, + 71648610279, + 667247799232 + ], + [ + 27328466928, + 30000000000, + 32974887485, + 33818476232, + 35925644769, + 35925644769, + 35947765580, + 36000000000, + 41442996381, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46017731689, + 48602623040, + 54345911333, + 57355271090, + 60000000000, + 75210179741, + 985217731689 + ], + [ + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 25244144040, + 30000000000, + 35952057120, + 42238250870, + 45000000000, + 48554657393, + 57355271090, + 639947918989 + ], + [ + 25079439094, + 25079439094, + 25079439094, + 25079439094, + 25079439094, + 25079439094, + 25079439094, + 25079439094, + 25079439094, + 25079439094, + 25079439094, + 27328466928, + 30000000000, + 32790268186, + 40000000000, + 44588629954, + 45000000000, + 45000000000, + 45000000000, + 52836045668, + 1371785198133 + ], + [ + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 25055012613, + 30000000000, + 35055012613, + 35361444747, + 44588629954, + 47881043221, + 500000000000 + ], + [ + 27011201746, + 27543134384, + 27543134384, + 27543134384, + 29612154490, + 34917838811, + 35361444747, + 35428066325, + 41962331227, + 44588629954, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 47881043221, + 50226123744, + 50226123744, + 500000000000 + ], + [ + 25050640435, + 25050640435, + 25050640435, + 25050640435, + 25050640435, + 25050640435, + 25050640435, + 25050640435, + 25050640435, + 25050640435, + 27360547877, + 30000000000, + 30000000676, + 32938054412, + 38750000000, + 42182387716, + 44588629954, + 45000000000, + 45000000000, + 50226123744, + 1185050640435 + ], + [ + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 25007170812, + 30000000000, + 35889076496, + 41962331227, + 45000000000, + 45000000000, + 50226123744, + 500000000000 + ], + [ + 26017483632, + 27428149266, + 30000000000, + 30000000000, + 31154771218, + 32622843634, + 32662929617, + 41907081618, + 41962331227, + 42228010163, + 42228010163, + 42228010163, + 44841460757, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47311775120, + 50226123744, + 69636138596, + 984832962456 + ], + [ + 27203817832, + 30000000000, + 31635691966, + 32622843634, + 35709199460, + 44895807669, + 44895807669, + 44895807669, + 44895807669, + 44895807669, + 44895807669, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45513519309, + 45605164518, + 50000000000, + 50226123744, + 500000000000 + ], + [ + 27330174525, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 31330687171, + 35008878409, + 35794433748, + 39810874865, + 41907081618, + 42127792511, + 45000000000, + 45000000000, + 45605164518, + 50000000000, + 63008878409, + 69651470641, + 69651470641, + 69651470641, + 79021544636, + 304832001074 + ], + [ + 25051493628, + 27328466928, + 30000000000, + 30000000000, + 32792903693, + 33748352722, + 35471061116, + 40590716334, + 40590716334, + 41434265451, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 48468233367, + 180000000000 + ], + [ + 26199311658, + 27443076852, + 27792903693, + 27792903693, + 30000000000, + 30000000000, + 30000000001, + 31603591129, + 36217981987, + 36972854819, + 39123043617, + 39830791974, + 41434265451, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45605164518, + 69737159025, + 73054530999, + 118911956326 + ], + [ + 25164685717, + 25164685717, + 25164685717, + 25164685717, + 25164685717, + 25164685717, + 25164685717, + 25164685717, + 25164685717, + 25164685717, + 25164685717, + 26199311658, + 30000000000, + 30000000000, + 30000000001, + 41689355539, + 45000000000, + 45000000000, + 45368611877, + 50000000000, + 210164685717 + ], + [ + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 25155803578, + 27589483631, + 30000000000, + 35939309800, + 45000000000, + 45153261779, + 285155803578 + ], + [ + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 25028048136, + 28256058299, + 31533657278, + 38028048136, + 45000000000, + 45000000000, + 45334749369, + 111712078625 + ], + [ + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 25067173495, + 26542082169, + 29336545249, + 30000000000, + 35740785691, + 45000000000, + 45334749369, + 985067173495 + ], + [ + 27219657904, + 27921713890, + 30000000000, + 32414218592, + 32414218592, + 32414218592, + 35525940176, + 35679246707, + 38740123492, + 42228010163, + 44794314977, + 44911943410, + 45000000000, + 45334749369, + 48471735259, + 49210044600, + 50000000000, + 56631773361, + 56631773361, + 60000000000, + 1184921713890 + ], + [ + 25042701178, + 25042701178, + 25042701178, + 25042701178, + 25042701178, + 25042701178, + 25042701178, + 25042701178, + 25042701178, + 25042701178, + 25042701178, + 25042701178, + 27299882857, + 29489397352, + 31420138254, + 32256411390, + 42228010163, + 44794314977, + 45000000000, + 47851871705, + 144000000000 + ], + [ + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 25049526775, + 30000000000, + 31500337954, + 43694148197, + 45000000000, + 45000000000, + 69805864709 + ], + [ + 25103927731, + 27130048314, + 28038456134, + 30000000000, + 30000000001, + 30220128081, + 35573873440, + 40513056021, + 41907081618, + 41907081618, + 41907081618, + 45000000000, + 45000000000, + 46106286194, + 49210044600, + 49210044600, + 49210044600, + 49210044600, + 49210044600, + 81789240476, + 144000000000 + ], + [ + 25000000000, + 25031584008, + 25031584008, + 25031584008, + 25031584008, + 25031584008, + 25031584008, + 25031584008, + 25031584008, + 25031584008, + 25031584008, + 30000000000, + 31409021084, + 32635106051, + 35694534766, + 38031584008, + 41907081618, + 45000000000, + 45000000000, + 50000000000, + 500000000000 + ], + [ + 25083675070, + 28261826810, + 29310787185, + 29310787185, + 30220128081, + 32635106051, + 35642632191, + 37824289385, + 39955829384, + 41907081618, + 42161306433, + 42161306433, + 42161306433, + 42161306433, + 42161306433, + 42161306433, + 45000000000, + 45605164518, + 69205634641, + 69310485015, + 500000000000 + ], + [ + 26888035350, + 27204007611, + 30000000000, + 30000000000, + 30000000001, + 36300000000, + 41971478958, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48320869021, + 48320869021, + 69588949402, + 69588949402, + 69588949402, + 69588949402, + 93878734294, + 136020038055, + 1184971478958, + 3770949908487 + ], + [ + 27200878481, + 30000000000, + 31418120841, + 31655768905, + 35028454878, + 35882257638, + 37203263841, + 38828454878, + 40582207325, + 45000000000, + 45000000000, + 45010044690, + 45019576469, + 48507837656, + 48507837656, + 49588454878, + 54685078390, + 84000000000, + 500000000000, + 785028454878, + 3770949908487 + ], + [ + 25103927731, + 27091466025, + 30000000000, + 30220128081, + 32635106051, + 34684362042, + 35750828579, + 35750828579, + 35750828579, + 38891466025, + 42299814684, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 50000000000, + 50000000000, + 500000000000 + ], + [ + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 25148955847, + 26893405010, + 31148955847, + 35810406581, + 41907081618, + 45000000000, + 50000000000, + 500000000000 + ], + [ + 26626183210, + 26626183210, + 27575309716, + 30000000000, + 31626183210, + 34001098101, + 40048496078, + 40602632722, + 42228010163, + 43598587121, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 111530076098 + ], + [ + 25015584069, + 25015584069, + 25015584069, + 25015584069, + 25015584069, + 25015584069, + 25015584069, + 25015584069, + 25015584069, + 25015584069, + 28124996525, + 28812928022, + 30000000001, + 34001098101, + 35477891229, + 40602632722, + 43598587121, + 43598587121, + 45000000000, + 50082490919, + 513434500524 + ], + [ + 27022524475, + 28812928022, + 30000000000, + 31410265013, + 32650419601, + 34929779547, + 35432909001, + 35970601841, + 35970601841, + 38770601841, + 39680442997, + 39939274815, + 41907081618, + 41907081618, + 44946562117, + 47587275585, + 50082490919, + 50082490919, + 56631773361, + 111526703840, + 513434500524 + ], + [ + 26191759281, + 30000000000, + 30000000000, + 30703129194, + 38850341262, + 40756319524, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 118864315601 + ], + [ + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 25024961144, + 30000000000, + 35617953268, + 40884617085, + 45000000000, + 45000000000, + 1185024961144 + ], + [ + 26135766753, + 27072229115, + 30000000000, + 30000000000, + 30000000001, + 31294527610, + 34475061393, + 35257243399, + 36135766753, + 38565390250, + 40602632722, + 41890623544, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50082490919, + 56494348769, + 62890623544, + 68766975478, + 634822954411 + ], + [ + 27022524475, + 30000000000, + 30000000001, + 31274205137, + 32635106051, + 33310385328, + 35320471291, + 40602632722, + 40884617085, + 40884617085, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45686474294, + 47953851436, + 51170850422, + 68830203370, + 68830203370, + 73017679455, + 123072055495 + ], + [ + 27022524475, + 30000000000, + 30000000001, + 31211545002, + 33310385328, + 35439219465, + 40602632722, + 40884617085, + 41917641078, + 44988704783, + 45000000000, + 45000000000, + 45000000000, + 45309719342, + 48038488464, + 48785400176, + 48785400176, + 49042000000, + 50000000000, + 51170850422, + 118856117807 + ], + [ + 27022524475, + 28610285681, + 30000000000, + 30000000001, + 33394322546, + 33778155593, + 39983653357, + 41416343698, + 41416343698, + 41416343698, + 41907081618, + 41936772108, + 44835178495, + 45000000000, + 45000000000, + 45000000000, + 48464953690, + 48464953690, + 51170850422, + 56699864363, + 144000000000 + ], + [ + 25175751626, + 25175751626, + 25175751626, + 25175751626, + 25175751626, + 25175751626, + 25175751626, + 25175751626, + 25175751626, + 25175751626, + 25175751626, + 27022524475, + 30385326519, + 35552208834, + 39983653357, + 41395849352, + 44835178495, + 45013000000, + 51170850422, + 51286767844, + 118989725965 + ], + [ + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 25160371654, + 30703129194, + 34475061393, + 35536828862, + 41395849352, + 45109731219, + 118974345993 + ], + [ + 26817126644, + 30000000000, + 30000000000, + 31188342967, + 31958941433, + 31958941433, + 31958941433, + 31958941433, + 31958941433, + 31958941433, + 31958941433, + 35306903227, + 39460450863, + 41362494844, + 41907081618, + 44920959446, + 45000000000, + 47989512943, + 50578968006, + 69344987426, + 985018941433 + ], + [ + 25087319249, + 25087319249, + 25087319249, + 25087319249, + 25087319249, + 25087319249, + 25087319249, + 25087319249, + 25087319249, + 25087319249, + 27303454711, + 30000000000, + 31290378861, + 37541667254, + 41395849352, + 44794880216, + 45000000000, + 46120085495, + 48328559404, + 50578968006, + 2516061992603 + ], + [ + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 25052671759, + 30677397713, + 41810797530, + 45000000000, + 47845900990, + 2516097691585 + ], + [ + 26711693280, + 27022524475, + 30000000000, + 30677397713, + 30677397713, + 30677397713, + 30677397713, + 30677397713, + 30677397713, + 32520694704, + 34724250820, + 41395849352, + 41907081618, + 43923000004, + 45000000000, + 45000000000, + 45238188662, + 48850111980, + 51051920805, + 60000000000, + 2508731924900 + ], + [ + 25103927731, + 27587875814, + 30000000000, + 31012632051, + 31159601025, + 34296908618, + 37981181918, + 40225689966, + 40365697557, + 41907081618, + 42192862265, + 42192862265, + 44794880216, + 44876226071, + 45000000000, + 46981181918, + 48084191476, + 50578968006, + 51051920805, + 63737900121, + 2508757415136 + ], + [ + 25082141917, + 25082141917, + 25082141917, + 25082141917, + 25082141917, + 25082141917, + 25082141917, + 25082141917, + 25082141917, + 25082141917, + 30000000000, + 31128891387, + 33740313522, + 40225689966, + 40982618801, + 43279704619, + 45000000000, + 45000000000, + 45020824581, + 47991510505, + 118896116256 + ], + [ + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 25027541179, + 27031124221, + 35496214200, + 38750000000, + 41281042056, + 41907081618, + 118841515518 + ], + [ + 26845595990, + 26917116509, + 28162022884, + 28906047609, + 30000000000, + 30000000000, + 30918499369, + 31656052869, + 32409908314, + 35619518813, + 38687778584, + 40225689966, + 41395849352, + 41395849352, + 44730295983, + 44918463601, + 45000000000, + 45000000000, + 45013000000, + 64796851515, + 126963275126 + ], + [ + 25026536991, + 25026536991, + 25026536991, + 25026536991, + 25026536991, + 25026536991, + 25026536991, + 25026536991, + 25026536991, + 25026536991, + 26953750928, + 30000000000, + 31155262739, + 32409908314, + 35318667672, + 38687778584, + 41395849352, + 41756923782, + 45000000000, + 45013000000, + 985026536991 + ], + [ + 26910721970, + 26953750928, + 27994247436, + 30000000000, + 31656052869, + 35295963919, + 40365697557, + 41114862471, + 41756923782, + 41756923782, + 42013802855, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45013000000, + 48001115571, + 67718303421, + 234984512221 + ], + [ + 25123845451, + 26953750928, + 28066138237, + 30000000001, + 30918499369, + 30918499369, + 30918499369, + 30918499369, + 31199675201, + 33153675896, + 38687778584, + 41756923782, + 41756923782, + 42890180075, + 45000000000, + 45000000000, + 48137693215, + 69161544875, + 69161544875, + 69161544875, + 115066138237 + ], + [ + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 25111657062, + 30000000000, + 38266116667, + 42890180075, + 45000000000, + 118925631401 + ], + [ + 26284055021, + 27992953103, + 30000000000, + 34868085621, + 35244878920, + 40889816307, + 41756923782, + 41890579518, + 41890579518, + 41890579518, + 41890579518, + 41890579518, + 41890579518, + 41890579518, + 41890579518, + 42890180075, + 44969533143, + 45000000000, + 45000000000, + 45018879409, + 1185003334287 + ], + [ + 26852570029, + 26925576261, + 28410214956, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 31093400077, + 31850262401, + 35280195464, + 38038650830, + 39217447974, + 41395849352, + 41756923782, + 44170159160, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 118852625169 + ], + [ + 26284055021, + 27040769621, + 27992953103, + 30000000000, + 30338698857, + 37691575490, + 39217447974, + 39217447974, + 40275393601, + 40310011810, + 42890180075, + 44170159160, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45020824581, + 45020824581, + 45020824581, + 110507206534 + ], + [ + 25164993277, + 25164993277, + 25164993277, + 25164993277, + 25164993277, + 25164993277, + 25164993277, + 25164993277, + 25164993277, + 25164993277, + 25164993277, + 26934092098, + 29400272307, + 30000000000, + 30000000001, + 39217447974, + 40365697557, + 42654865994, + 45016037430, + 51051920805, + 985164993277 + ], + [ + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 25143618495, + 26284055021, + 31959182946, + 38803251214, + 40343618495, + 41886925431, + 45044000000, + 110590311848 + ], + [ + 26284055021, + 27991741749, + 28991741749, + 28991741749, + 29991741749, + 30000000001, + 31046490996, + 35000000000, + 40191741749, + 40365697557, + 41815564451, + 44969533143, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45815318455, + 1500000000000 + ], + [ + 26581076569, + 26916387144, + 30000000000, + 30318758837, + 31178479440, + 38606190907, + 40231132402, + 40295693762, + 44170159160, + 44870760748, + 44870760748, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45815318455, + 50000000000, + 50000000000, + 50000000000, + 79405362134, + 285031132402 + ], + [ + 25356311831, + 28087611831, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30187142763, + 31211445423, + 31270156128, + 33181296934, + 34073913365, + 39533165524, + 40287611831, + 40365697557, + 41395849352, + 41536562398, + 45000000000, + 45000000000, + 45815318455, + 49938655984, + 1185087611831 + ], + [ + 25150310397, + 25150310397, + 25150310397, + 25150310397, + 25150310397, + 25150310397, + 25150310397, + 25150310397, + 25150310397, + 25150310397, + 25150310397, + 26270156128, + 30000000000, + 30187142763, + 34058910352, + 40295693762, + 40350310397, + 41395849352, + 41395849352, + 45000000000, + 144000000000 + ], + [ + 25119138929, + 25119138929, + 25119138929, + 25119138929, + 25119138929, + 25119138929, + 25119138929, + 25119138929, + 25119138929, + 25119138929, + 25119138929, + 25119138929, + 25119138929, + 26998728497, + 27661827657, + 35374646410, + 41395849352, + 42890180075, + 45000000000, + 45815318455, + 118933113268 + ], + [ + 26747448062, + 26892765662, + 30000000000, + 31275704273, + 34935615285, + 39217447974, + 39405234192, + 40135615285, + 41395849352, + 41395849352, + 42041000000, + 44716581525, + 44716581525, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47561511059, + 50000000000, + 64307664308, + 110042394181 + ], + [ + 25052999188, + 25052999188, + 25052999188, + 25052999188, + 25052999188, + 25052999188, + 25052999188, + 25052999188, + 25052999188, + 25052999188, + 25052999188, + 25052999188, + 25883571447, + 27786430288, + 30000000000, + 36300000000, + 40295693762, + 41978898888, + 45000000000, + 47872383540, + 985052999188 + ], + [ + 25881173378, + 27050601119, + 28340601243, + 30000000000, + 31043617173, + 35130718439, + 37315392090, + 40295693762, + 41395849352, + 41811832777, + 43645201004, + 44523354515, + 44523354515, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47650747769, + 47869985471, + 47869985471, + 200000000000 + ], + [ + 26893013200, + 29080132896, + 30000000001, + 33283555364, + 35251532560, + 35355923879, + 35355923879, + 35355923879, + 40295693762, + 40295693762, + 40295693762, + 41395849352, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47420928412, + 47420928412, + 47919800750, + 47919800750, + 269299595764 + ], + [ + 25052999188, + 26101561912, + 27869708240, + 30000000000, + 30000000001, + 31237347545, + 31518143220, + 33504876313, + 39777214830, + 40295693762, + 41074917874, + 44523354515, + 45000000000, + 45000000000, + 47198433208, + 47420928412, + 68711662906, + 68711662906, + 68711662906, + 68711662906, + 110730330885 + ], + [ + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 25196966635, + 31069452230, + 39777214830, + 41395849352, + 45000000000, + 45000000000, + 119010940974 + ], + [ + 25053964861, + 25053964861, + 25053964861, + 25053964861, + 25053964861, + 25053964861, + 25053964861, + 25053964861, + 25053964861, + 25053964861, + 25053964861, + 25053964861, + 27869708240, + 30926450456, + 36053964861, + 40295693762, + 41948000000, + 45000000000, + 45000000000, + 47671734249, + 68544324045 + ], + [ + 26378078007, + 27648419397, + 30000000000, + 33489644232, + 35061489402, + 38143120767, + 39790368675, + 40295693762, + 41395849352, + 41395849352, + 41856198223, + 42208559494, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46048571304, + 49086340535, + 50227248645, + 144000000000 + ], + [ + 26702387345, + 30000000000, + 30000000000, + 30000000001, + 35021337095, + 35315609852, + 39207638594, + 39207638594, + 39207638594, + 39207638594, + 39790368675, + 41395849352, + 42033538294, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48124241944, + 56872963210, + 985107638594 + ], + [ + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 25140325631, + 30000000000, + 34395859370, + 41395849352, + 45000000000, + 48772363845, + 48772363845, + 1185140325631 + ], + [ + 26669367231, + 27564515949, + 27689579886, + 30000000000, + 30904987990, + 35095710747, + 41074917874, + 41395849352, + 41395849352, + 41395849352, + 42777001518, + 42777001518, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45985290439, + 49086340535, + 110037520815 + ], + [ + 26338553396, + 26791715386, + 30000000000, + 30000000000, + 30000000001, + 34594483253, + 38143120767, + 41395849352, + 41395849352, + 41684076792, + 41684076792, + 42031204756, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48772363845, + 285105305056 + ], + [ + 26389221052, + 26389221052, + 26752860751, + 28875616014, + 30910196338, + 35176864864, + 41395849352, + 41846758257, + 42866686978, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 100000000000, + 903643856462 + ], + [ + 25160826286, + 25160826286, + 25160826286, + 25160826286, + 25160826286, + 25160826286, + 25160826286, + 25160826286, + 25160826286, + 25160826286, + 25160826286, + 26802969292, + 30000000000, + 30000000000, + 33434310077, + 41395849352, + 41395849352, + 42777001518, + 45000000000, + 47420928412, + 187232136433 + ], + [ + 26730843735, + 30000000000, + 30000000000, + 30990289274, + 33436264555, + 33436264555, + 35258889178, + 39428870796, + 40648078220, + 40648078220, + 41395849352, + 41480654967, + 42848278652, + 45000000000, + 45000000000, + 45000000000, + 47653952426, + 48772363845, + 60000000000, + 109916921599, + 285137804803 + ], + [ + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 25153758956, + 26749011644, + 30998933879, + 35065405674, + 41395849352, + 43748358841, + 45000000000, + 425715438679 + ], + [ + 26647531057, + 26652808172, + 30000000000, + 30000000000, + 30266662679, + 30756167294, + 31652808172, + 32276711019, + 34915471596, + 34937272678, + 36995123134, + 41395849352, + 41395849352, + 42777001518, + 45000000000, + 45000000000, + 45000000000, + 47386102506, + 53210816779, + 59328385825, + 985003824469 + ], + [ + 26685205476, + 30000000000, + 35007446844, + 35007446845, + 35659272148, + 39256000000, + 41593038932, + 41593038932, + 41593038932, + 41593038932, + 41593038932, + 41593038932, + 41593038932, + 41593038932, + 41593038932, + 41593038932, + 41827588130, + 42848278652, + 45000000000, + 59685553013, + 77923834718 + ], + [ + 25150841608, + 25150841608, + 25150841608, + 25150841608, + 25150841608, + 25150841608, + 25150841608, + 25150841608, + 25150841608, + 25150841608, + 25150841608, + 25150841608, + 27283991877, + 30000000000, + 38747208993, + 41395849352, + 45000000000, + 45000000000, + 49803244540, + 49803244540, + 118964815947 + ], + [ + 26634221685, + 30000000000, + 30029000000, + 30953049926, + 35112063541, + 39256000000, + 41395849352, + 41611206841, + 41727019266, + 41944382223, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48552326101, + 49803244540, + 170146692620, + 10791146692620, + 20548146692620 + ], + [ + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 25152733872, + 26827746881, + 30000000000, + 32638051545, + 41395849352, + 45000000000, + 33206152733872 + ], + [ + 26322763444, + 26693566848, + 30000000000, + 31000000000, + 39256000000, + 41395849352, + 41829306262, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47415808893, + 60000000000, + 300000000000 + ], + [ + 26547942865, + 26720378091, + 30000000000, + 31128989584, + 31651715427, + 36757626720, + 39973106637, + 41395849352, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 986045365082 + ], + [ + 25000076912, + 26749011644, + 27903331828, + 28579423488, + 30000000000, + 30000000000, + 31128989584, + 36757626720, + 36757626720, + 36757626720, + 36757626720, + 36757626720, + 36757626720, + 36757626720, + 40145864143, + 41395849352, + 42917077321, + 45000000000, + 47169775371, + 49803244540, + 884903331828 + ], + [ + 26120219453, + 26747448062, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 30959189054, + 31651715427, + 35126197207, + 39446077165, + 39977573140, + 40816009848, + 41395849352, + 41534282800, + 41829306262, + 45000000000, + 45000000000, + 47136521862, + 48340176194, + 48340176194, + 1034816009848 + ], + [ + 26227736485, + 26227736485, + 26624256094, + 30000000000, + 30000000001, + 30766041189, + 34964401937, + 35116541168, + 36300000000, + 38453480869, + 39977573140, + 41395849352, + 41829306262, + 45000000000, + 45000000000, + 45000000000, + 45263746119, + 48340176194, + 55323210151, + 2639027984918, + 2639027984918 + ], + [ + 25031221446, + 28321221570, + 30000000000, + 30000000001, + 30766166139, + 31167909755, + 33649536322, + 35126197207, + 40096265603, + 41031221446, + 41395849352, + 41395849352, + 41829306262, + 45000000000, + 45000000000, + 45000000000, + 45598662031, + 49803244540, + 60404449834, + 81442283678, + 2639027984918 + ], + [ + 26885393858, + 30133331340, + 31651715427, + 35241165951, + 39977573140, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45598662031, + 49370867193, + 68936201167, + 68936201167, + 68936201167, + 683321137356 + ], + [ + 25334738420, + 27236435092, + 30000000000, + 32042864814, + 36757626720, + 39977573140, + 41066038420, + 41796398447, + 41827270078, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45598662031, + 49370867193, + 119932719420 + ], + [ + 25937577425, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 31515112324, + 32726928856, + 32726928856, + 39977573140, + 40698247903, + 41395849352, + 41796398447, + 41796398447, + 45000000000, + 45000000000, + 45000000000, + 45957378117, + 54188939955, + 144000000000 + ], + [ + 25055745289, + 26685205476, + 30000000000, + 30000000000, + 30000000001, + 30412928857, + 32880530503, + 36007342424, + 41675013009, + 41796398447, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45598662031, + 47612179459, + 54188939955, + 692908203156, + 693011973718 + ], + [ + 26429635737, + 30000000000, + 30000000000, + 30000000001, + 31914166505, + 31983369806, + 31983369806, + 41437000000, + 41675013009, + 42058962131, + 45000000000, + 45000000000, + 45000000000, + 45147771992, + 50000000000, + 52556651225, + 54064073581, + 62441792200, + 71897876033, + 117000000000, + 985133062431 + ], + [ + 27209946519, + 30000000000, + 30000000000, + 30029000000, + 35244462585, + 41675013009, + 42135846219, + 45000000000, + 45000000000, + 45000000000, + 45598662031, + 49053394232, + 56801885336, + 56801885336, + 56801885336, + 109985762970, + 180000000000, + 180000000000, + 180000000000, + 180000000000, + 180000000000 + ], + [ + 26763559468, + 30000000000, + 30702163964, + 34375341499, + 35066483803, + 36300000002, + 41675013009, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47616945917, + 49092385507, + 55696362310, + 144000000000, + 180000000000, + 180000000000, + 180000000000, + 180000000000, + 180000000000 + ], + [ + 26647684106, + 30000000000, + 30811463845, + 32407345475, + 33057630971, + 35140279082, + 41437000000, + 41447105936, + 41447105936, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 52556651225, + 73004188832, + 109773817525, + 180000000000, + 180000000000, + 180000000000, + 185809092558 + ], + [ + 25264831444, + 25264831444, + 25264831444, + 25264831444, + 25264831444, + 25264831444, + 25264831444, + 25264831444, + 25264831444, + 25264831444, + 30000000000, + 30000000000, + 30000000000, + 30884000000, + 35082377454, + 40515148226, + 41922506093, + 45000000000, + 45000000000, + 55696362310, + 102000000000 + ], + [ + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 25214187970, + 30000000000, + 32558422149, + 41447105936, + 42187338695, + 45310856142, + 56867711271, + 323977968757 + ], + [ + 25052111310, + 25052111310, + 25052111310, + 25052111310, + 25052111310, + 25052111310, + 25052111310, + 25052111310, + 25052111310, + 25052111310, + 25052111310, + 27647684106, + 32558422149, + 34753389237, + 41437000000, + 41922506093, + 45000000000, + 45000000000, + 55696362310, + 58694565160, + 485052111310 + ], + [ + 26417654162, + 26647684106, + 30000000000, + 30000000000, + 31000000000, + 33820685966, + 37034801500, + 40371249757, + 41578672083, + 41876641790, + 45000000000, + 45000000000, + 45000000000, + 49853000000, + 56867711271, + 58694565160, + 58694565160, + 120611647349, + 180000000000, + 180000000000, + 985034801500 + ], + [ + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 25112597731, + 27904790606, + 30702163964, + 33820685966, + 35008367650, + 41827270078, + 54064073581, + 433715983400 + ], + [ + 25052111310, + 30000000000, + 30000000000, + 30810527056, + 33820685966, + 34257536706, + 40608260000, + 40608260000, + 41111018212, + 41743243599, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 53819565160, + 58694565160, + 92738255310, + 121000000000, + 1184945553996 + ], + [ + 25049399731, + 30000000000, + 30000000000, + 30000000000, + 31398633715, + 32311127464, + 35049399731, + 40928021480, + 41437000000, + 41827270078, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47194611090, + 50000000000, + 53819565160, + 106261515874, + 245254380871, + 327484372050 + ], + [ + 26546093867, + 27901608776, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 32702848894, + 34804450843, + 35002684528, + 37668896597, + 41447105936, + 41578672083, + 45000000000, + 49853000000, + 50000000000, + 53722927471, + 74911599657, + 74911599657, + 750375220487 + ], + [ + 26516196861, + 27904790606, + 27904790606, + 30000000000, + 32913053199, + 35019113100, + 41111018212, + 41447105936, + 41857185909, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46663592094, + 53739356043, + 68095551523, + 68299544997, + 68299544997, + 68299544997, + 285098465255 + ], + [ + 26142355357, + 26611200848, + 26611200848, + 26611200848, + 26611200848, + 26611200848, + 30000000000, + 32065902041, + 40711547266, + 41447105936, + 41579808266, + 41579808266, + 41579808266, + 41579808266, + 41579808266, + 41910347317, + 45000000000, + 47308743490, + 50000000000, + 50000000000, + 180000000000 + ], + [ + 26376408447, + 26632782681, + 27536479385, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 30332979353, + 34812422201, + 40711547266, + 41447105936, + 41450287065, + 41450287065, + 41450287065, + 41857185909, + 45000000000, + 47268507977, + 50000000000, + 53284070279, + 60000000000, + 235072422201 + ], + [ + 26128886027, + 26632782681, + 30000000000, + 30000000000, + 30000000000, + 32913053199, + 34888662008, + 40511048617, + 41437000000, + 41447628612, + 41857185909, + 45000000000, + 45000000000, + 45000000000, + 47761743284, + 49131793386, + 50000000000, + 52036594262, + 60000000000, + 80648019042, + 985131793386 + ], + [ + 26595523520, + 27953313176, + 30000000000, + 30000000001, + 30082979353, + 30332979353, + 30772550269, + 35387411499, + 40711547266, + 41437000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47409902068, + 48787466734, + 50000000000, + 52036594262, + 67500000000, + 180000000000 + ], + [ + 25233942328, + 25233942328, + 25233942328, + 25233942328, + 25233942328, + 25233942328, + 25233942328, + 25233942328, + 25233942328, + 25233942328, + 27648242809, + 30230721940, + 32991301915, + 35002348328, + 38750000000, + 41437000000, + 41929969764, + 45000000000, + 45000000000, + 50000000000, + 935000000000 + ], + [ + 26053991028, + 30000000000, + 30000000001, + 30041489677, + 30781517084, + 32780733086, + 34886286188, + 35189125611, + 41437000000, + 41437000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48787466734, + 50000000000, + 54139310158, + 54139310158, + 56867711271, + 935189125611 + ], + [ + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 25221065241, + 30070000000, + 41437000000, + 45000000000, + 47297074991, + 54139310158, + 215221065241 + ], + [ + 26376452465, + 26546093867, + 30000000000, + 33087515377, + 36783725697, + 41437000000, + 41857185909, + 41857185909, + 41867515377, + 41867515377, + 41867515377, + 41867515377, + 41867515377, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45021476957, + 52036594262, + 55212332536, + 285087515377 + ], + [ + 25116269443, + 25116269443, + 25116269443, + 25116269443, + 25116269443, + 25116269443, + 25116269443, + 25116269443, + 25116269443, + 25116269443, + 25116269443, + 30000000000, + 30000000000, + 34744631350, + 41437000000, + 41877501101, + 45000000000, + 45000000000, + 47505827841, + 55212332536, + 210116269443 + ], + [ + 26409463620, + 26546093867, + 30000000000, + 30000000001, + 30041489676, + 30041489676, + 30577100075, + 31409463620, + 34734233639, + 41393763801, + 41716000000, + 41857185909, + 41857185909, + 41884434994, + 45000000000, + 47211032403, + 47211032403, + 50000000000, + 50684573762, + 51839264333, + 1185084434994 + ], + [ + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 25124415409, + 30000000000, + 35000000000, + 41857185909, + 45000000000, + 45000000000, + 51839264333, + 985124415409 + ], + [ + 25000000000, + 28959579253, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 32209135095, + 34675368561, + 37783252909, + 41393763801, + 41737449600, + 41759579253, + 41857185909, + 41857185909, + 41857185909, + 45000000000, + 45000000000, + 45000000000, + 45414467613, + 46959579253, + 16208066021419 + ], + [ + 25055098364, + 25055098364, + 25055098364, + 25055098364, + 25055098364, + 25055098364, + 25055098364, + 25055098364, + 25055098364, + 25055098364, + 29505062587, + 30000000000, + 32690028590, + 41312151539, + 41816330022, + 41857185909, + 45000000000, + 45151766536, + 50000000000, + 50684573762, + 87784488176 + ], + [ + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 25007907544, + 30000000000, + 30000000000, + 32207419963, + 41769139202, + 41857185909, + 45414467613, + 68174776006 + ], + [ + 26307388208, + 28845729335, + 30000000000, + 30000000001, + 32113343370, + 34348411736, + 40811129944, + 41857185909, + 41958676614, + 43524276270, + 43524276270, + 43524276270, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46845729335, + 50000000000, + 250000000000 + ], + [ + 25388550427, + 28419374763, + 29505062587, + 29505062587, + 29505062587, + 29505062587, + 29505062587, + 30609128081, + 32567186605, + 34641092526, + 35000000000, + 41363985827, + 41667350427, + 41716000000, + 41716000000, + 41716000000, + 41844742603, + 43450593697, + 43524276270, + 45414467613, + 284867350427 + ], + [ + 26234176938, + 26601657091, + 30000000000, + 33156702827, + 39105546969, + 41716000000, + 41737449600, + 43524276270, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47040371613, + 67970856572, + 1184922024164 + ], + [ + 27555250862, + 29290637514, + 30000000001, + 34944947874, + 40960708233, + 41488000000, + 41737449600, + 41768408692, + 43524276270, + 44876951469, + 44876951469, + 44876951469, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45414467613, + 55213000000, + 984929388362 + ], + [ + 26499837615, + 27692186725, + 30000000000, + 30669270548, + 31884567013, + 33058050460, + 35000000000, + 41737449600, + 41857185909, + 42299858773, + 42299858773, + 44876951469, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45426776200, + 50000000000, + 50000000000, + 80546343882 + ], + [ + 25114837507, + 25114837507, + 25114837507, + 25114837507, + 25114837507, + 25114837507, + 25114837507, + 25114837507, + 25114837507, + 25114837507, + 25114837507, + 26546093867, + 30000000000, + 30000000000, + 30856615161, + 35000000000, + 41857185909, + 45000000000, + 45000000000, + 45000000000, + 285114837507 + ], + [ + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 25090529045, + 30000000000, + 35090529045, + 42063679770, + 45000000000, + 55000000001, + 485090529045 + ], + [ + 26279822321, + 28044087319, + 30000000000, + 30000000000, + 30000000000, + 30693708808, + 31432965117, + 31633933799, + 34696016249, + 36300000002, + 39950900698, + 41857185909, + 41857185909, + 44876951469, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48272959739, + 54730399015, + 200000000000 + ], + [ + 25081401429, + 25081401429, + 25081401429, + 25081401429, + 25081401429, + 25081401429, + 25081401429, + 25081401429, + 25081401429, + 25081401429, + 25081401429, + 25081401429, + 29752531293, + 30000000001, + 35421165289, + 41857185909, + 42054552154, + 44876951469, + 45000000000, + 54730399015, + 67793224075 + ], + [ + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 25083652262, + 30000000000, + 34881517351, + 36000000000, + 43237105080, + 44876951469, + 48272959739, + 485083652262 + ], + [ + 26413998637, + 30000000000, + 30000000000, + 30000000000, + 31507505490, + 40282271145, + 41316777729, + 41857185909, + 43524276270, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 50000000000, + 51119785519, + 54730399015, + 984915777729 + ], + [ + 26078369224, + 26335373706, + 27920352966, + 29752531294, + 30000000000, + 30437313457, + 31507505490, + 31854847430, + 35000000000, + 41373550310, + 41857185909, + 42909262423, + 45000000000, + 45000000000, + 45000000000, + 47259174616, + 51119785519, + 51119785519, + 51119785519, + 55000000001, + 1096589522464 + ], + [ + 25042793514, + 25042793514, + 25042793514, + 25042793514, + 25042793514, + 25042793514, + 25042793514, + 25042793514, + 25042793514, + 25042793514, + 25042793514, + 28332793638, + 30000000001, + 33502793514, + 39994907345, + 41857185909, + 41857185909, + 45000000000, + 45000000000, + 50000000000, + 1185042793514 + ], + [ + 25012823241, + 25012823241, + 25012823241, + 25012823241, + 25012823241, + 25012823241, + 25012823241, + 25012823241, + 25012823241, + 25012823241, + 25012823241, + 25012823241, + 25012823241, + 26321691995, + 30000000000, + 34838665268, + 41857185909, + 45000000000, + 45109491413, + 50000000000, + 109383930317 + ], + [ + 25904912029, + 30000000000, + 30944855057, + 31776681083, + 34483881857, + 34483881857, + 34483881857, + 36000000000, + 41362823396, + 41362823396, + 41362823396, + 41521535023, + 41857185909, + 41857185909, + 43912685177, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 238833444783 + ], + [ + 26199553947, + 26733734782, + 27557418754, + 27918139795, + 30000000000, + 32399290985, + 37442107116, + 38867951086, + 40165021624, + 41857185909, + 41857185909, + 43476449627, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47039394004, + 50000000000, + 50000000000, + 67618679544 + ], + [ + 26313895684, + 27332622849, + 28603236626, + 30000000000, + 30000000000, + 30000000000, + 31149943068, + 31149943068, + 31149943068, + 37442107116, + 40205393000, + 41786592955, + 41857185909, + 44532227870, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47035290100, + 47035290100, + 300000000000 + ], + [ + 26510421422, + 27918139795, + 30000000000, + 30483400720, + 30668062706, + 33022697178, + 34680775585, + 37442107116, + 37452242320, + 40165021624, + 41786592955, + 41857185909, + 44496660866, + 45000000000, + 45000000000, + 45000000000, + 46994374181, + 50000000001, + 51119785519, + 68094787495, + 180000000000 + ], + [ + 25102169636, + 27652376293, + 27890780561, + 30000000000, + 30000000001, + 30857924976, + 31833033757, + 34891212911, + 35522422410, + 40249550635, + 41786592955, + 41786592955, + 41786592955, + 41786592955, + 41786592955, + 41857185909, + 44519680298, + 45000000000, + 45000000000, + 53666067514, + 985102169636 + ], + [ + 26429586002, + 30000000000, + 30000000000, + 30000000000, + 30680795779, + 35028143116, + 36300000002, + 39003372069, + 40249550635, + 41786592955, + 41786592955, + 43846442063, + 44519680298, + 45000000000, + 45000000000, + 45000000000, + 45245870964, + 47320712859, + 60000000000, + 109640503316, + 285167895128 + ], + [ + 26429586002, + 27890780561, + 27908487816, + 30000000000, + 31832154840, + 31832154840, + 33554025303, + 35001110934, + 38044963700, + 40248232260, + 41786592955, + 43048240957, + 44496660866, + 44519680298, + 45000000000, + 45000000000, + 47242558394, + 50000000000, + 50000000000, + 70000000000, + 485212067659 + ], + [ + 26553163407, + 26553163407, + 30000000000, + 30000000000, + 30000000000, + 31832154840, + 40205393000, + 41786592955, + 41857185909, + 43940671626, + 44496660866, + 44519680298, + 45000000000, + 45000000000, + 47274870332, + 48242423302, + 48242423302, + 48242423302, + 50000000000, + 50000000000, + 151947533119 + ], + [ + 26437312752, + 26446551192, + 26570984923, + 29874176274, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 30941523634, + 34599788343, + 34782814549, + 35175396210, + 37937244528, + 41376685710, + 41786592955, + 41786592955, + 45000000000, + 46301567299, + 53693898460, + 60000000000, + 1185301567299 + ], + [ + 26446440368, + 26518187137, + 26518187137, + 26607575953, + 30000000000, + 30167015676, + 30951936247, + 31846762849, + 34768436746, + 36015937473, + 38884706204, + 41786592955, + 41786592955, + 41786592955, + 41899000000, + 45000000000, + 45000000000, + 45000000000, + 47481204997, + 53693898460, + 67698592414 + ], + [ + 25422485218, + 27446440368, + 30000000000, + 30000000000, + 31287986140, + 35000000000, + 38935576349, + 41222485218, + 41269417624, + 41786592955, + 41786592955, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48242423302, + 53693898460, + 67712231356, + 885422485218 + ], + [ + 26429586002, + 30000000001, + 30628237655, + 30811271069, + 31032194093, + 31745883696, + 31745883696, + 34827308774, + 41253461090, + 41786592955, + 44658709387, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47453461090, + 50000000000, + 53693898460, + 53693898460, + 55268082376, + 985453461090 + ], + [ + 25525205357, + 25525205357, + 25525205357, + 25525205357, + 25525205357, + 25525205357, + 25525205357, + 25525205357, + 25525205357, + 25525205357, + 26745883696, + 30000000000, + 30000000001, + 31745883696, + 41786592955, + 43965829365, + 45000000000, + 45000000000, + 47773020058, + 50049000000, + 885525205357 + ], + [ + 26446440368, + 27294841839, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 32118812242, + 35472220482, + 40921896792, + 41488000000, + 43912844490, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48242423302, + 50000000000, + 53693898460, + 54322570842, + 55203342912, + 285472220482 + ], + [ + 26417492450, + 30000000000, + 30334031353, + 30622608104, + 32294841839, + 34601739452, + 34687832572, + 39285948862, + 41488000000, + 41488000000, + 44104755980, + 44104755980, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48613000000, + 50000000000, + 53693898460, + 169964664190 + ], + [ + 25544673510, + 25544673510, + 25544673510, + 25544673510, + 25544673510, + 25544673510, + 25544673510, + 25544673510, + 25544673510, + 25544673510, + 25544673510, + 25544673510, + 25544673510, + 26446440368, + 30000000000, + 35000000000, + 41488000000, + 45000000000, + 45000000000, + 49424664978, + 485544673510 + ], + [ + 26295263272, + 28267613395, + 30000000000, + 32000000000, + 35374028261, + 41174028261, + 41899000000, + 42972471116, + 42972471116, + 42972471116, + 43409445977, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48242423302, + 51984001736, + 235374028261 + ], + [ + 25327783793, + 25327783793, + 25327783793, + 25327783793, + 25327783793, + 25327783793, + 25327783793, + 25327783793, + 25327783793, + 25327783793, + 25327783793, + 26446440368, + 30000000000, + 34754706542, + 41786592955, + 45000000000, + 45000000000, + 45000000000, + 48242423302, + 49424664978, + 485327783793 + ], + [ + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 25310567843, + 29461346397, + 32502144642, + 34554499188, + 41786592955, + 45000000000, + 51812212905, + 1185310567843 + ], + [ + 25152518204, + 25152518204, + 25152518204, + 25152518204, + 25152518204, + 25152518204, + 25152518204, + 25152518204, + 25152518204, + 25152518204, + 25152518204, + 30000000000, + 30000000000, + 34494906094, + 34494906094, + 41488000000, + 41899000000, + 45000000000, + 45000000000, + 51812212905, + 985152518204 + ], + [ + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 25132493530, + 30000000000, + 31110966022, + 34474881420, + 41786592955, + 45000000000, + 45184274070, + 485132493530 + ], + [ + 25880845945, + 30000000000, + 30000000000, + 32665145970, + 32665145970, + 34959610934, + 41899000000, + 41899000000, + 41899000000, + 44532227870, + 44975664260, + 45000000000, + 45000000000, + 45000000000, + 49424664978, + 49424664978, + 51015808986, + 51015808986, + 51015808986, + 51812212905, + 284959610934 + ], + [ + 25534939433, + 30000000000, + 30000000000, + 30000000000, + 30803385902, + 34673764190, + 40967398879, + 40967398879, + 40967398879, + 40967398879, + 40967398879, + 40967398879, + 40967398879, + 41899000000, + 43301347464, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 132200741229 + ], + [ + 25126799872, + 25126799872, + 25126799872, + 25126799872, + 25126799872, + 25126799872, + 25126799872, + 25126799872, + 25126799872, + 25126799872, + 25126799872, + 25126799872, + 25126799872, + 30000000000, + 30000000001, + 35000000000, + 41899000000, + 43307089743, + 45000000000, + 45000000000, + 285126799872 + ], + [ + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 25140841267, + 29635331850, + 30564155647, + 38740102641, + 41899000000, + 45000000000, + 111933755322 + ], + [ + 25009739870, + 25009739870, + 25009739870, + 25009739870, + 25009739870, + 25009739870, + 25009739870, + 25009739870, + 25009739870, + 25009739870, + 27791224525, + 30000000000, + 38740102641, + 38750000000, + 39426531505, + 40961618866, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 285009739870 + ], + [ + 25319175818, + 26268153307, + 27791224525, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30193076438, + 38740102641, + 38750000000, + 40118825544, + 40961618866, + 41192958948, + 41899000000, + 41899000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 984962554206 + ], + [ + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 25067595756, + 27693931372, + 32800385760, + 39185654247, + 40270144273, + 41899000000, + 45000000000, + 68067595756 + ], + [ + 26342000282, + 26848983198, + 30000000000, + 30000000000, + 30000000001, + 30546505819, + 34477712364, + 34680703697, + 38740102641, + 40394098167, + 41899000000, + 44268478890, + 45000000000, + 45000000000, + 47123131261, + 60000000000, + 173799873442, + 173799873442, + 173799873442, + 173799873442, + 173799873442 + ], + [ + 26008440798, + 26405120390, + 26405120390, + 26405120390, + 26405120390, + 26405120390, + 26423381612, + 27065181386, + 28434043252, + 30000000000, + 30584135443, + 34568499098, + 34568499098, + 34568499098, + 40077702361, + 40942262758, + 41899000000, + 41899000000, + 45000000000, + 45000000000, + 200000000000 + ], + [ + 26308243939, + 26417492450, + 28434043252, + 30000000000, + 30467747527, + 38407749643, + 40077702361, + 41497718955, + 41899000000, + 43085371975, + 43085371975, + 43423485172, + 44268478890, + 45000000000, + 45000000000, + 67682654552, + 67682654552, + 67682654552, + 67682654552, + 67682654552, + 144000000000 + ], + [ + 25078279063, + 25078279063, + 25078279063, + 25078279063, + 25078279063, + 25078279063, + 25078279063, + 25078279063, + 25078279063, + 25078279063, + 30000000000, + 30000000000, + 30000000000, + 31684001888, + 38407749643, + 41082487122, + 44265765876, + 45000000000, + 45735320394, + 50000000000, + 1185078279063 + ], + [ + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 25027834932, + 30000000000, + 38000000000, + 41899000000, + 45000000000, + 45000000000, + 45000000000, + 330763794093 + ], + [ + 26098460407, + 27519333906, + 27868179036, + 30000000000, + 30000000000, + 30000000000, + 31098460407, + 34857394218, + 38740102641, + 40270144273, + 41692914717, + 41692914717, + 42769868629, + 43834909893, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47045261953, + 682958655011 + ], + [ + 27868179036, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 34432815933, + 34943536506, + 39185654247, + 39185654247, + 41828000000, + 43099240157, + 43208091276, + 44742605941, + 44742605941, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46805135789, + 53186116051, + 984943536506 + ], + [ + 25049159186, + 25049159186, + 25049159186, + 25049159186, + 25049159186, + 25049159186, + 25049159186, + 25049159186, + 25049159186, + 25049159186, + 25049159186, + 26469731690, + 30000000000, + 30657580742, + 39185654247, + 39449760379, + 42042034437, + 44268478890, + 45000000000, + 47141470794, + 67890304194 + ], + [ + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 25038370421, + 28202560195, + 30000000000, + 31299840253, + 39185654247, + 44742605941, + 47038370421, + 180000000000 + ], + [ + 26207527537, + 27101904857, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 37000000000, + 39449760379, + 41828000000, + 43099240157, + 43099240157, + 44742605941, + 45000000000, + 45000000000, + 45000000000, + 47066399443, + 47066399443, + 50000000000, + 50000000000, + 50099000000, + 1184873097321 + ], + [ + 26171700414, + 26256930118, + 27476868541, + 27643465380, + 30000000000, + 30000000000, + 32973829798, + 34554456976, + 38740102641, + 39185654247, + 39449760379, + 41277070029, + 41502775929, + 44268478890, + 44742605941, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 200000000000 + ], + [ + 25073092043, + 25073092043, + 25073092043, + 25073092043, + 25073092043, + 25073092043, + 25073092043, + 25073092043, + 25073092043, + 25073092043, + 26424925033, + 27643465380, + 30000000001, + 34695291631, + 39185654247, + 41280974831, + 41899000000, + 45000000000, + 45000000000, + 45436989528, + 80000000000 + ], + [ + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 25030706352, + 27030706352, + 30000000001, + 39830706352, + 41967152146, + 45000000000, + 45441496687, + 185030706352 + ], + [ + 26172184799, + 27526528499, + 30000000000, + 32213890271, + 34431786676, + 37573738779, + 39674175411, + 41648395366, + 41648395366, + 42007814638, + 43109358127, + 43835897456, + 44742605941, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45441496687, + 45441496687, + 45441496687, + 984874175411 + ], + [ + 26114436341, + 27519248529, + 27539139532, + 27987786745, + 30000000000, + 30000000000, + 30000000000, + 30408787303, + 36300000000, + 39780000847, + 41648395366, + 41648395366, + 43832473423, + 44827482643, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47108871249, + 54908541186, + 1184980000847 + ], + [ + 25053836961, + 27025000000, + 27521882401, + 29053836961, + 30000000000, + 30000000000, + 32213890271, + 32547884464, + 39531357129, + 41648395366, + 41863000000, + 43553996197, + 44742605941, + 45000000000, + 45000000000, + 47309764911, + 67506284493, + 67506284493, + 67506284493, + 67506284493, + 101449119686 + ], + [ + 25130973900, + 25130973900, + 25130973900, + 25130973900, + 25130973900, + 25130973900, + 25130973900, + 25130973900, + 25130973900, + 25130973900, + 25130973900, + 25130973900, + 25130973900, + 30000000000, + 31220635532, + 39280410456, + 39930973900, + 43553996197, + 45000000000, + 45000000000, + 979019631481 + ], + [ + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 25144048038, + 27527865616, + 34427709760, + 39280410456, + 42080493832, + 45000000000, + 285144048038 + ], + [ + 25011169791, + 25011169791, + 25011169791, + 25011169791, + 25011169791, + 25011169791, + 25011169791, + 25011169791, + 25011169791, + 25011169791, + 25011169791, + 30000000000, + 30000000000, + 33260325454, + 35615276975, + 39811169791, + 43553996197, + 44269350085, + 45000000000, + 46926563697, + 647603608178 + ], + [ + 26168621561, + 28633896267, + 30000000000, + 30000000000, + 30000000001, + 31225160688, + 34335930949, + 37868595238, + 39280410456, + 39337741032, + 41118347838, + 41118347838, + 41935160420, + 41935160420, + 43106872296, + 44269350085, + 44269350085, + 45000000000, + 45000000000, + 45000000000, + 108323429726 + ], + [ + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 25040688797, + 27526528499, + 30000000001, + 39280410456, + 40399844184, + 44269350085, + 45000000000, + 67532209451 + ], + [ + 26005461117, + 26256930118, + 28633896267, + 30000000000, + 30000000000, + 30000000001, + 30000000001, + 39280410456, + 39280410456, + 39337741032, + 41815950693, + 44269350085, + 44269350085, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 49319311403, + 984879504899 + ], + [ + 26150353670, + 28024397452, + 30000000000, + 30000000000, + 30000000001, + 34460780938, + 34460780938, + 34550973410, + 37742903875, + 39606844324, + 41183838075, + 41183838075, + 41183838075, + 41648395366, + 43553996197, + 44269350085, + 44742605941, + 45000000000, + 45000000000, + 49319311403, + 67568690716 + ], + [ + 25082550909, + 25082550909, + 25082550909, + 25082550909, + 25082550909, + 25082550909, + 25082550909, + 25082550909, + 25082550909, + 25082550909, + 25082550909, + 25082550909, + 26321547932, + 30000000000, + 30102550909, + 37831475359, + 39902742579, + 41927689745, + 45000000000, + 45000000000, + 144000000000 + ], + [ + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 25084278318, + 26387648510, + 30104278318, + 30322830157, + 37831475359, + 45000000000, + 47158410378, + 126276414202 + ], + [ + 26076886708, + 27568755484, + 30000000000, + 30000000000, + 30000000000, + 34368616987, + 39474264175, + 41109918343, + 41109918343, + 41109918343, + 41109918343, + 41109918343, + 41109918343, + 41109918343, + 41643510945, + 41769458170, + 44301184818, + 45000000000, + 45000000000, + 46733533284, + 1184938053926 + ], + [ + 26208365821, + 27512964647, + 28278303552, + 30000000000, + 30000000001, + 32272263193, + 32405903391, + 34393168556, + 34962605494, + 38321781854, + 39358174238, + 39474264175, + 39474264175, + 41794009738, + 43220501063, + 45000000000, + 45000000000, + 46750809320, + 64962605494, + 64962605494, + 112004919493 + ], + [ + 25091678489, + 25091678489, + 25091678489, + 25091678489, + 25091678489, + 25091678489, + 25091678489, + 25091678489, + 25091678489, + 25091678489, + 25091678489, + 25091678489, + 27568755484, + 30000000001, + 31127820552, + 35000000000, + 39337741032, + 43220501063, + 45000000000, + 50000000000, + 285091678489 + ], + [ + 25723280572, + 26534487184, + 27572024020, + 30000000000, + 30000000000, + 30000000000, + 32000000000, + 34526411942, + 36300000002, + 37831475359, + 39337741032, + 41285272857, + 41756357461, + 43220501063, + 43923000004, + 45000000000, + 45000000000, + 45000000000, + 45044000000, + 60000000000, + 4985087962942 + ], + [ + 25793500608, + 30000000000, + 30000000000, + 30000000001, + 31196868629, + 34463741914, + 39295302943, + 39337741032, + 43264984254, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 64307664308, + 77812273813, + 151634108575, + 1540779376067 + ], + [ + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 25222237250, + 28222237250, + 30609030667, + 35222237250, + 42456349588, + 45000000000, + 68099135250, + 417397567140 + ], + [ + 25056180762, + 27536222482, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 34463741914, + 39474264175, + 42456349588, + 43049690335, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46947262695, + 50000000000, + 64307664308, + 1626258928609 + ], + [ + 26104784936, + 30000000000, + 30000000000, + 30000000000, + 31468673625, + 35103695403, + 39474264175, + 42456349588, + 42456349588, + 43565208409, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 1185103695403 + ], + [ + 26223326783, + 27253469930, + 30000000000, + 30475060418, + 37142955210, + 38402422091, + 39337741032, + 39474264175, + 39474264175, + 39474264175, + 39474264175, + 41118267001, + 41375000000, + 42456349588, + 42456349588, + 44957293101, + 45000000000, + 45000000000, + 46589901300, + 48355967971, + 100000000000 + ], + [ + 26221383691, + 30000000000, + 30000000000, + 30374801053, + 35000000000, + 39358174238, + 39474264175, + 39474264175, + 39703010437, + 42456349588, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47945285180, + 47945285180, + 47945285180, + 47945285180, + 47945285180, + 48355967971, + 144000000000 + ], + [ + 25102173397, + 25102173397, + 25102173397, + 25102173397, + 25102173397, + 25102173397, + 25102173397, + 25102173397, + 25102173397, + 25102173397, + 25102173397, + 26235290087, + 30000000000, + 36499283757, + 39358174238, + 41937693896, + 45000000000, + 45000000000, + 45000000000, + 49405306558, + 118916147736 + ], + [ + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 25086883282, + 30000000000, + 30000000000, + 30029000000, + 39358174238, + 45000000000, + 985086883282 + ], + [ + 26073333097, + 29104776469, + 30000000000, + 30000000001, + 31614304085, + 34297175155, + 39358174238, + 39358174238, + 39358174238, + 41095482863, + 41774843740, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 47214828018, + 49449676579, + 55877449472, + 126087239493 + ], + [ + 25044843758, + 25044843758, + 25044843758, + 25044843758, + 25044843758, + 25044843758, + 25044843758, + 25044843758, + 25044843758, + 25044843758, + 29104776469, + 30000000000, + 30000000000, + 30326566979, + 38617727769, + 39358174238, + 45000000000, + 45000000000, + 48355967971, + 55877449472, + 90000000000 + ], + [ + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 25005759330, + 30000000000, + 33402907208, + 39358174238, + 45000000000, + 45000000000, + 55877449472 + ], + [ + 25973118454, + 28877634356, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30598434315, + 31054174289, + 34398347422, + 36300000000, + 39358174238, + 39358174238, + 39358174238, + 43765579277, + 45000000000, + 45000000000, + 45000000000, + 50000000000, + 50000000000, + 52212309144, + 284877634356 + ], + [ + 25005294363, + 25005294363, + 25005294363, + 25005294363, + 25005294363, + 25005294363, + 25005294363, + 25005294363, + 25005294363, + 25005294363, + 26221383691, + 30000000000, + 30000000000, + 33402907208, + 39358174238, + 41814457402, + 43765579277, + 45000000000, + 45000000000, + 49405306558, + 126272555251 + ], + [ + 26221383691, + 26712051130, + 30000000000, + 30000000000, + 32143801110, + 34426348146, + 36300000000, + 39347319989, + 39474264175, + 41173584837, + 41367598913, + 44269350085, + 44513267636, + 45000000000, + 48362015571, + 67398847635, + 67398847635, + 67398847635, + 67398847635, + 94000000000, + 884967598913 + ], + [ + 25037225664, + 25037225664, + 25037225664, + 25037225664, + 25037225664, + 25037225664, + 25037225664, + 25037225664, + 25037225664, + 25037225664, + 25037225664, + 25037225664, + 25037225664, + 29037225664, + 30000000000, + 30431212640, + 30431212640, + 34649724866, + 39474264175, + 45000000000, + 985037225664 + ], + [ + 26073013873, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 31468673625, + 35856924545, + 39358174238, + 39474264175, + 39474264175, + 41256924545, + 41395385862, + 43765579277, + 44772646227, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 46646477678, + 58000000000, + 284856924545 + ], + [ + 25094528339, + 26687947613, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30162344159, + 34327457427, + 35059918419, + 38899280462, + 39474264175, + 39474264175, + 39474264175, + 41375000000, + 45000000000, + 45000000000, + 45000000000, + 47824098074, + 90000000000, + 90000000000 + ], + [ + 26155560720, + 26221383691, + 26263974362, + 30000000000, + 30000000001, + 30350565948, + 34392392327, + 37971402693, + 38899280462, + 39474264175, + 40485000000, + 41371402693, + 41948551081, + 42884697756, + 44513267636, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48355967971, + 88382550558 + ], + [ + 25110159999, + 25110159999, + 25110159999, + 25110159999, + 25110159999, + 25110159999, + 25110159999, + 25110159999, + 25110159999, + 25110159999, + 25110159999, + 25110159999, + 27474619145, + 30029000000, + 38721469007, + 41510159999, + 42884697756, + 43765579277, + 45000000000, + 50000000000, + 1185110159999 + ], + [ + 26263974362, + 27896683965, + 30000000000, + 31132449616, + 31132449616, + 31132449616, + 31132449616, + 31132449616, + 32102449616, + 34602426813, + 35291910543, + 39187042532, + 40455973650, + 40485000000, + 42884697756, + 42884697756, + 45000000000, + 45000000000, + 45000000000, + 48256194559, + 285102449616 + ], + [ + 26221383691, + 27287854863, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 30000000001, + 30000000001, + 32139381839, + 34367159821, + 35211619194, + 38975012458, + 39315985417, + 39566647917, + 40485000000, + 41576631171, + 43512018164, + 45000000000, + 45000000000, + 77176631171 + ], + [ + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 25228115747, + 30000000000, + 39347319989, + 42005592825, + 45000000000, + 45000000000, + 47345489968, + 119042090086 + ], + [ + 26149929276, + 27139381839, + 27139381839, + 28759306416, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 30000000001, + 32897950273, + 35103177240, + 40485000000, + 40485000000, + 41893990329, + 41893990329, + 42884697756, + 45000000000, + 47345489968, + 62000000000, + 90000000000, + 985062586085 + ], + [ + 25129020295, + 25129020295, + 25129020295, + 25129020295, + 25129020295, + 25129020295, + 25129020295, + 25129020295, + 25129020295, + 25129020295, + 25129020295, + 28129020295, + 30000000000, + 30000000001, + 34157718134, + 39474264175, + 40709072758, + 42894924314, + 45000000000, + 47345489968, + 77486026098 + ], + [ + 26221383691, + 29060652404, + 30000000000, + 30000000001, + 35211619194, + 40455973650, + 41087343191, + 41087343191, + 41087343191, + 41087343191, + 41087343191, + 41087343191, + 41087343191, + 41087343191, + 41087343191, + 42884697756, + 45000000000, + 45000000000, + 45000000000, + 45430564077, + 939180446547 + ], + [ + 26221383691, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000001, + 31492344073, + 34554203440, + 35103177240, + 39336623506, + 40455973650, + 40455973650, + 41984367250, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 45000000000, + 48163646313, + 52937865815, + 1185163646313 + ], + [ + 26221383691, + 30000000000, + 30000000000, + 32812156748, + 39513000000, + 41074861832, + 41074861832, + 41074861832, + 42246868089, + 43957624867, + 45000000000, + 45000000000, + 45000000000, + 45430564077, + 50000000000, + 67382102895, + 67382102895, + 67382102895, + 80911947300, + 80911947300, + 108474466291 + ], + [ + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 25197838037, + 28740955276, + 30290432775, + 38750000000, + 39738516109, + 45000000000, + 67427288763 + ], + [ + 25068959221, + 25068959221, + 25068959221, + 25068959221, + 25068959221, + 25068959221, + 25068959221, + 25068959221, + 25068959221, + 25068959221, + 28892188809, + 29958959221, + 30000000000, + 32246567947, + 39539823959, + 40455973650, + 40455973650, + 43957624867, + 46747360333, + 52984688146, + 285068959221 + ], + [ + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 25024763040, + 29024763040, + 30000000000, + 34669351584, + 41127988354, + 45019003710, + 985024763040 + ], + [ + 26040103682, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30085159872, + 31893983684, + 34141382236, + 38750000000, + 39505018842, + 39777250320, + 40455973650, + 40455973650, + 40455973650, + 41127988354, + 41127988354, + 41598020652, + 45000000000, + 46423679212, + 180000000000 + ] + ], + "BaseFee": [ + 23832279279, + 23703600512, + 23617570138, + 23475356120, + 23495478005, + 23638178312, + 23620839988, + 23503412050, + 23353652079, + 23264202727, + 23353078589, + 23382094043, + 23413752083, + 23272743737, + 23336961269, + 23159985213, + 23114387867, + 22994488546, + 22929830791, + 22901901637, + 22831530280, + 22792555479, + 22697540438, + 22558930153, + 22406530371, + 22244917685, + 22118037587, + 22009853089, + 21907841165, + 21852252620, + 21770386616, + 21812314037, + 21841098566, + 21743791755, + 21523468467, + 21354744832, + 21253694669, + 21153952896, + 21123917442, + 21069996854, + 20939207307, + 20989272064, + 20858463131, + 20793480197, + 20677730835, + 20523029100, + 20476875188, + 20560643709, + 20716517461, + 20804794915, + 20798603192, + 20868565157, + 20920112107, + 20909458744, + 20886547307, + 20935107514, + 20986608852, + 20920885775, + 20911020880, + 20853722026, + 20841397564, + 20790783087, + 20956010298, + 21110529265, + 21270457254, + 21386455515, + 21507460689, + 21507747410, + 21495822664, + 21446613621, + 21412292948, + 21408782626, + 21296119116, + 21216087428, + 21286457506, + 21180061657, + 21111760636, + 21044144109, + 20970883686, + 20923121975, + 20829550229, + 20871094998, + 20850961016, + 20790225353, + 20778588718, + 20803977036, + 20745112097, + 20744045295, + 20879677469, + 20756301703, + 20827273451, + 20770784129, + 20726254915, + 20673490966, + 20708074041, + 20647626584, + 20633591547, + 20566683258, + 20479395527, + 20363878866, + 20393465347, + 20254419868, + 20125729741, + 20143861486, + 20110721799, + 20034376472, + 20048724772, + 20000379194, + 19970980040, + 19968616586, + 19876990950, + 19740533130, + 19640418057, + 19610418737, + 19531880291, + 19473603495, + 19364670281, + 19264992363, + 19299844861, + 19124284211, + 19318372109, + 19279446301, + 19193627247, + 19130071590, + 19010083265, + 19184766180, + 19273977780, + 19340047530, + 19277380941, + 19218339799, + 19230411839, + 19221085023, + 19418405478, + 19437231190, + 19495465242, + 19417147261, + 19440858820, + 19499242432, + 19640563665, + 19617233322, + 19588351088, + 19473903685, + 19420216513, + 19413354434, + 19564360820, + 19582102502, + 19609504227, + 19534716220, + 19558780969, + 19620693909, + 19575857953, + 19571887467, + 19546503599, + 19851762567, + 19981726583, + 20108810475, + 20087083744, + 20136886529, + 20246241541, + 20274064713, + 20189556583, + 20153723724, + 20044393958, + 19963647553, + 19909688171, + 19754911320, + 19750528076, + 19653247769, + 19653745746, + 19534004250, + 19462787965, + 19334026539, + 19198561904, + 19150097388, + 19118252572, + 19244682465, + 19136183832, + 18979165158, + 18902714234, + 18854276121, + 18741209371, + 18667373640, + 18601927630, + 18468947475, + 18425331979, + 18358899906, + 18248530306, + 18152936496, + 18025275504, + 17919174327, + 17895185468, + 17792901522, + 17706945918, + 17637987373, + 17731993864, + 17660216231, + 17601640924, + 17515780939, + 17468458664, + 17373730658, + 17433574895, + 17383942428, + 17265422850, + 17200739610, + 17107581623, + 17129489461, + 17069219900, + 16943876103, + 16908316391, + 16792180881, + 16716014033, + 16679044572, + 16620255400, + 16521927534, + 16421522840, + 16392455901, + 16318573316, + 16268234903, + 16170610593, + 16068360813, + 15948075910, + 15850748835, + 15759786264, + 15655331036, + 15603598300, + 15474953026, + 15395635048, + 15326142274, + 15220048012, + 15156985287, + 15082986064, + 15072912704, + 15092519119, + 15034124214, + 14941138563, + 15126439663, + 15061471490, + 15009238684, + 14942852509, + 14991051997, + 15139596530, + 15141396901, + 15025686494, + 14940618330, + 14992676704, + 15176412383, + 15202064630, + 15101723699, + 15050442619, + 14994839250, + 15047832407, + 14994616741, + 15149722628, + 15118996350, + 15032807750, + 15162360831, + 15104146927, + 14987511740, + 15034332945, + 14930237772, + 14956423687, + 14922399122, + 14847197848, + 14996603333, + 14942113175, + 14894862987, + 14876486068, + 14898901192, + 14898364097, + 14944081703, + 14916566556, + 14853245089, + 15015829772, + 14976960817, + 14904620069, + 14916622273, + 15094449355, + 15076618398, + 15064399092, + 14953136768, + 14987287738, + 15029652793, + 15002683699, + 14869420705, + 14886062994, + 14756768937, + 14786909647, + 14740873859, + 14793462653, + 14775799732, + 14702792167, + 14670348027, + 14609909963, + 14777334082, + 14827517333, + 14980908483, + 15023823615, + 14916627382, + 14857528109, + 14786852025, + 14755673815, + 14916677306, + 14852288329, + 14859934916, + 14855060569, + 14817156964, + 14986061862, + 15024825350, + 14920406748, + 15070703134, + 14939854005, + 14890946557, + 14875750440, + 14813476841, + 14756293899, + 14702934710, + 14875550961, + 14907521505, + 14923752762, + 14848999871, + 14865225105, + 14791284536, + 14762923923, + 14697030597, + 14845852606, + 14806113826, + 14820288027, + 14804051383, + 14749147351, + 14693152162, + 14871611300, + 14889843678, + 14825266271, + 14958469116, + 15010450886, + 14899357237, + 15057077300, + 14941582334, + 14953033925, + 15137797703, + 15036362002, + 14951767315, + 14995955062, + 15164039942, + 15020257327, + 14938962459, + 14931373643, + 14869291978, + 14920877981, + 14931377295, + 15097347776, + 14986576198, + 14931818902, + 14894804935, + 14940682796, + 14975266907, + 14903567368, + 15036047921, + 15020041934, + 14933704136, + 14916458208, + 14960117531, + 15135813732, + 15052089664, + 15064126966, + 15166935636, + 15239911315, + 15141716238, + 15194197247, + 15358181317, + 15342355213, + 15390330342, + 15311512848, + 15240467695, + 15210844142, + 15165264869, + 15110304791, + 15221083220, + 15145038720, + 15118945743, + 15079274995, + 15016537284, + 14972110713, + 14908970796, + 14928207147, + 14921551510, + 15073765293, + 15081178466, + 14986599600, + 15034207166, + 14970149479, + 15154291549, + 15070231589, + 14949313943, + 14977494946, + 15151831635, + 15116294687, + 14994310315, + 15046371299, + 15026136166, + 15006448787, + 14898707717, + 14829850526, + 14994559991, + 14927843821, + 14932621695, + 15082481141, + 14986643967, + 14944873891, + 14873059839, + 14845323680, + 14869591866, + 14812553589, + 14986270321, + 14942444337, + 14917036267, + 14959282577, + 14904402715, + 15053805607, + 14949014875, + 14951515409, + 14896227561, + 15126838387, + 15083454426, + 15149519725, + 15124228528, + 15006439073, + 14935107080, + 14939880112, + 15094294324, + 15039079868, + 14904056200, + 14852989915, + 14820372420, + 14751282016, + 14692224788, + 14783108676, + 14802215977, + 14808047135, + 14754247413, + 14927257890, + 14896957216, + 14891904334, + 14996770983, + 14991361929, + 15113614830, + 15308184453, + 15293449348, + 15251790481, + 15284543012, + 15239008692, + 15150368892, + 15016091289, + 14947726467, + 14887690357, + 14838044376, + 14884083860, + 14930068733, + 15056839728, + 14952486230, + 14968933165, + 14896802887, + 15065315779, + 14940651066, + 14864692309, + 14910793696, + 15070539811, + 15079902404, + 15028344396, + 14977768184, + 14906065198, + 14953206612, + 15121917505, + 15096259308, + 15047171662, + 15020190767, + 14930105849, + 14876624914, + 14901612488, + 14859583370, + 14994233154, + 14948974998, + 14941376580, + 15097565658, + 15059241495, + 14935060114, + 14935069531, + 14905292052, + 14922107933, + 14918748490, + 14852977996, + 14783092342, + 14944476332, + 14871114677, + 14966609922, + 15006174695, + 15024339773, + 14974894191, + 15021764081, + 14906461965, + 14869989745, + 15010824295, + 14932357036, + 14953347916, + 14985965186, + 14937151693, + 14880970805, + 14813293101, + 14812726668, + 14757605509, + 14734701234, + 14699681618, + 14683499229, + 14628355440, + 14682922111, + 14912146945, + 14871794531, + 14836991568, + 14766412010, + 14932451996, + 14929669552, + 14889429293, + 14920797267, + 14880222252, + 15042042953, + 14969259041, + 14899132564, + 15051224668, + 14933881234, + 14979830276, + 15118751776, + 15002798331, + 14917363323, + 14965932300, + 15153243445, + 15022533504, + 14937915704, + 14937758919, + 15107199152, + 14940536857, + 14957723309, + 14912078695, + 14929404656, + 15077931486, + 15239028116, + 15200872119, + 15148068565, + 15207642278, + 15125808582, + 15122889375, + 15031177747, + 14979707091, + 15166558891, + 15072978337, + 15179403822, + 15120250234, + 15147004498, + 15103136018, + 15022654039, + 14912217742, + 14962380961, + 14886575284, + 14898435811, + 14985004713, + 15016403261, + 14950140733, + 14901886040, + 15035808648, + 14893998106, + 14841967527, + 14821825122, + 14976594290, + 15019854099, + 14908639413, + 15017143755, + 15066526704, + 14933151532, + 14910552116, + 14959440005, + 14932824045, + 14920240009, + 15106872017, + 15035143204, + 14952116669, + 14876351117, + 14923795085, + 14937310322, + 14888288342, + 14891917724, + 15029618798, + 15012954249, + 14927424073, + 14973978303, + 15136340515, + 15037541585, + 14935430788, + 14970554077, + 14918522555, + 14882441259, + 14837526320, + 14983681559, + 15021506000, + 14937229437, + 15084413966, + 15088595470, + 15012185807, + 14928442153, + 14896939191, + 15080862740, + 15018256225, + 14925078490, + 14935241836, + 14873796841, + 14884301460, + 14850477867, + 15026937917, + 15007367679, + 14945436994, + 14906002525, + 14975019283, + 15013043591, + 14957496936, + 14954967541, + 15004019668, + 14929292628, + 15101056710, + 14978932986, + 14937020517, + 14871786255, + 14885456318, + 14828571651, + 14796530908, + 14743608259, + 14721298303, + 14658966824, + 14620374346, + 14545096455, + 14483253857, + 14414881132, + 14428299994, + 14434991779, + 14618892481, + 14642723194, + 14588354773, + 14560765095, + 14606272673, + 14693326413, + 14793130087, + 14835202293, + 14899924695, + 15076393391, + 15253929534, + 15352372918, + 15331819354, + 15379079250, + 15332838012, + 15268111917, + 15284091310, + 15292215122, + 15304900226, + 15396077659, + 15380259387, + 15386342332, + 15416322961, + 15372918818, + 15264572739, + 15487047166, + 15426113971, + 15426403735, + 15376627359, + 15276772599, + 15238037356, + 15175319785, + 15095784206, + 15065289297, + 15000726697, + 14924851178, + 14898038932, + 14923315513, + 14938206971, + 14869073396, + 14961715519, + 14927761070, + 14925819269, + 15105959862, + 15100000582, + 15038324452, + 14966057440, + 15020281534, + 14892922690, + 15039679877, + 14927574313, + 14963748086, + 14910902779, + 15041931042, + 14968227670, + 15004862563, + 14920497630, + 15104720060, + 15075590440, + 15115325498, + 15179862993, + 15275492809, + 15171628910, + 15070613666, + 14918958730, + 14923090566, + 14977300319, + 14958414453, + 14906107766, + 14834906828, + 14872727516, + 14877873345, + 15016539164, + 14907728029, + 14954426776, + 14896766640, + 14852409656, + 14780160615, + 14896684311, + 14833609402, + 14768668355, + 14740230351, + 14705327410, + 14748543324, + 14893959321, + 14906363961, + 14996696816, + 14972889050, + 14972085110, + 14923525492, + 14888501450, + 15070226590, + 14951166254, + 14985805064, + 14968704794, + 14963906441, + 14938405804, + 15051830162, + 15073964735, + 15068198588, + 15041598143, + 14946516796, + 14963018030, + 14911896464, + 15084309850, + 14951335447, + 14887098333, + 14903528210, + 14923440958, + 14965527103, + 14889319657, + 15054594227, + 14969650791, + 14978041623, + 15107172333, + 15044727309, + 14954691523, + 14892375916, + 14820221848, + 14765154927, + 14813390155, + 14833239655, + 14766956500, + 14707447337, + 14833164983, + 14856395171, + 14793340968, + 14971335823, + 14986368738, + 15007973128, + 15011948813, + 14922198856, + 14861497642, + 14899335716, + 14919809638, + 14911814734, + 15092820368, + 14975960276, + 14919898414, + 14859485176, + 14905482505, + 14843155914, + 15008498301, + 14956967800, + 14990229520, + 14926893115, + 14948848916, + 15048880560, + 14977455699, + 15149128357, + 15051027200, + 14997458201, + 14931565317, + 14890791941, + 14891901884, + 15042569232, + 14981589812, + 15047615904, + 15057774977, + 14952756586, + 14909783942, + 14946561315, + 14928127306, + 14853920788, + 14782268311, + 14755855960, + 14920560906, + 14944987387, + 15073121142, + 14949359565, + 14992829188, + 15167037544, + 15024192331, + 14991121591, + 14948506372, + 14902018013, + 14835314283, + 14844196422, + 14971951864, + 14932826505, + 15078286110, + 14957298822, + 14950473225, + 15089077318, + 14968415992, + 15012127851, + 15028521042, + 14971545122, + 14908533975, + 14851044153, + 14996012764, + 14984415931, + 15029398159, + 14949658738, + 14975038856, + 15109376456, + 15046148564, + 14957856532, + 14884110353, + 14824248374, + 14839628346, + 14981058567, + 14912680751, + 14947328241, + 15064976699, + 15018818082, + 14917858083, + 14972458821, + 15093952391, + 14973463009, + 15015487779, + 14933861763, + 14888342938, + 14996665713, + 14961349170, + 14889988190, + 14835006723, + 14856381505, + 15008258251, + 14968867598, + 14912388169, + 14849689603, + 14880861071, + 15064384715, + 14947000812, + 14949398881, + 14899583602, + 14873530698, + 14803033365, + 14946035139, + 14951428696, + 14892361406, + 14859674369, + 15014709561, + 14894694944, + 14844027288, + 14839173714, + 14862195197, + 14846241044, + 14996175531, + 14926001365, + 14849158392, + 14853307380, + 14847266128, + 14981446161, + 14954634918, + 15096668172, + 15183990152, + 15076473120, + 14968778554, + 14893466607, + 14933961580, + 15042621883, + 14944254711, + 14866937569, + 14790053481, + 14751062207, + 14770047500, + 14735168556, + 14785812030, + 14947888690, + 14965198500, + 14887402269, + 15054446004, + 14950600269, + 14917963317, + 14901534745, + 14887342286, + 14927577799, + 14868206614, + 14837912633, + 14766057672, + 14810874389, + 14778934759, + 14912484623, + 14883730557, + 14915565006, + 14875584591, + 15040420747, + 14944901636, + 14992092456, + 15154270665, + 15132649573, + 15077975836, + 15070611638, + 14956659709, + 14885162493, + 14909470955, + 15051780540, + 14918598571, + 14916347738, + 15084222271, + 15027449690, + 14957206486, + 14987176759, + 15166555217, + 15132048914, + 15072711653, + 15005625819, + 14897830364, + 14832104872, + 14787932341, + 14716254217, + 14698432701, + 14626796756, + 14577514782, + 14546538910, + 14474794643, + 14527779518, + 14503742561, + 14455326490, + 14625971739, + 14672216207, + 14689432157, + 14847481796, + 14867506470, + 15040389066, + 14878942407, + 14873200128, + 14859158733, + 14990260130, + 15037445794, + 14932404244, + 15089006558, + 15051376934, + 15017138836, + 14921720937, + 14972165068, + 15142605782, + 15056463494, + 14950840814, + 14961629579, + 15126902679, + 15046859283, + 14926907957, + 14969293648, + 15125824589, + 15019999153, + 14946163039, + 14869026100, + 14855951962, + 14988830209, + 15015216514, + 14959311203, + 15120495101, + 14975602548, + 14917449091, + 14915721682, + 15061946074, + 15037394506, + 14908321511, + 14912037058, + 14841817022, + 14777762750, + 14943819238, + 14896304597, + 14911732999, + 14874099172, + 14897826603, + 14913116718, + 15045877197, + 14955156242, + 14994240670, + 15122365644, + 14994705637, + 15032401087, + 14962774336, + 15143075455, + 15131849767, + 15028597307, + 14889840001, + 14897550384, + 14823368829, + 14771884253, + 14937413915, + 14870979705, + 14893341672, + 14836353687, + 14802623897, + 14802161963, + 14931040779, + 14975236960, + 15112320788, + 15024853268 + ], + "GasUsedRatio": [ + 0.32722086666666667, + 0.3838584888888889, + 0.3073108888888889, + 0.5274287777777777, + 0.6943527111111111, + 0.4765283777777778, + 0.34091615555555554, + 0.2961011333333333, + 0.37743333333333334, + 0.6222490888888889, + 0.5397589777777778, + 0.5433262, + 0.30728133333333335, + 0.5882990444444445, + 0.25732771111111113, + 0.43699844444444447, + 0.3340090888888889, + 0.4100198222222222, + 0.46102313333333333, + 0.40167264444444445, + 0.4453740666666667, + 0.366602, + 0.3045810666666667, + 0.28381984444444447, + 0.2691920222222222, + 0.31747906666666664, + 0.3434805111111111, + 0.35168544444444444, + 0.4188038, + 0.38011706666666667, + 0.5616285555555556, + 0.5422286666666667, + 0.35743308888888886, + 0.17575364444444444, + 0.24915026666666668, + 0.34857673333333333, + 0.3498267333333333, + 0.45456477777777776, + 0.4183172888888889, + 0.30136373333333333, + 0.5765106444444444, + 0.30057022222222224, + 0.4003064666666667, + 0.3218682222222222, + 0.26059, + 0.4280357111111111, + 0.6309082888888888, + 0.7425974666666667, + 0.6363587555555555, + 0.49047646666666667, + 0.6076410222222223, + 0.5790424444444444, + 0.4837043111111111, + 0.46493615555555556, + 0.5743984444444444, + 0.5787214888888889, + 0.39978664444444445, + 0.48491093333333335, + 0.41231593333333333, + 0.48108813333333333, + 0.42228624444444446, + 0.7543084, + 0.7359517333333333, + 0.7424238444444444, + 0.6745117333333334, + 0.6810569111111111, + 0.5004266, + 0.48225793333333333, + 0.4267444, + 0.44879091111111113, + 0.49475393333333334, + 0.3316003111111111, + 0.3797426888888889, + 0.6061384444444444, + 0.34005477777777776, + 0.39680706666666665, + 0.3975107333333333, + 0.38859924444444444, + 0.4271192, + 0.3568905777777778, + 0.5638243555555555, + 0.46913015555555554, + 0.40678888888888887, + 0.4820890666666667, + 0.5390992, + 0.40945586666666667, + 0.4983544222222222, + 0.7092277333333333, + 0.31091544444444447, + 0.6094171777777778, + 0.41320715555555554, + 0.4313971555555556, + 0.41853586666666664, + 0.5535303111111111, + 0.4065910888888889, + 0.4782482888888889, + 0.396234, + 0.36418775555555555, + 0.3194998888888889, + 0.5464924888888889, + 0.28181955555555555, + 0.2966822, + 0.5288295555555556, + 0.4473551777777778, + 0.37852, + 0.5229178888888889, + 0.42283506666666665, + 0.45296224444444444, + 0.4962129777777778, + 0.35316857777777777, + 0.28031633333333333, + 0.3377104444444444, + 0.4511223111111111, + 0.37184208888888887, + 0.4045223777777778, + 0.3209954888888889, + 0.33528284444444445, + 0.5578915333333333, + 0.20891264444444443, + 0.8247605333333333, + 0.43552117777777777, + 0.35755764444444443, + 0.39403873333333334, + 0.29928844444444447, + 0.7940467555555556, + 0.6488040666666667, + 0.6096936, + 0.396312, + 0.4019930888888889, + 0.5201008666666667, + 0.4844798888888889, + 0.8285066666666666, + 0.5310232888888888, + 0.5958721777777778, + 0.37144828888888887, + 0.5390773111111111, + 0.5961004666666667, + 0.7319207777777778, + 0.4619883111111111, + 0.4528867555555556, + 0.31303597777777775, + 0.4117799111111111, + 0.4886928888888889, + 0.7489113555555555, + 0.5290187777777777, + 0.5447784, + 0.3779563111111111, + 0.5394206888888889, + 0.6012953777777778, + 0.4268756444444444, + 0.49350957777777776, + 0.45849742222222223, + 0.999746, + 0.7094951777777778, + 0.7035201777777778, + 0.46542533333333336, + 0.579339, + 0.6737786222222222, + 0.5439756444444445, + 0.3666148, + 0.4432057111111111, + 0.32640664444444445, + 0.3710918888888889, + 0.41350777777777775, + 0.2512337111111111, + 0.4928998, + 0.34238548888888887, + 0.5008108222222222, + 0.3050382888888889, + 0.3833356888888889, + 0.2882952, + 0.2757907111111111, + 0.4192197555555556, + 0.446787, + 0.7116174888888889, + 0.3195888, + 0.2374294888888889, + 0.3710992, + 0.41800015555555553, + 0.30809997777777776, + 0.3739279111111111, + 0.3878110888888889, + 0.27124064444444446, + 0.42443013333333335, + 0.3846248, + 0.3076231555555556, + 0.33236995555555554, + 0.2749591777777778, + 0.3116401777777778, + 0.4571607777777778, + 0.31709682222222224, + 0.3454114222222222, + 0.3753780888888889, + 0.6705527777777778, + 0.37046666666666667, + 0.3938625777777778, + 0.3439054888888889, + 0.4135458, + 0.32647031111111113, + 0.6102247777777777, + 0.4088976888888889, + 0.28183162222222224, + 0.3801150888888889, + 0.3266902666666667, + 0.5409789555555555, + 0.38740902222222223, + 0.26501553333333333, + 0.43284235555555556, + 0.2802066, + 0.35485273333333334, + 0.4292281777777778, + 0.38720855555555556, + 0.31068331111111114, + 0.3055341777777778, + 0.4433583555555556, + 0.35577251111111113, + 0.4012886, + 0.3079706888888889, + 0.29765804444444444, + 0.2604536666666667, + 0.3047120888888889, + 0.31636184444444443, + 0.2879052888888889, + 0.39425662222222224, + 0.2361731111111111, + 0.33598171111111114, + 0.3555584888888889, + 0.278482, + 0.36741124444444445, + 0.3437700444444444, + 0.4786284, + 0.5416246888888889, + 0.37618786666666665, + 0.30208086666666667, + 0.8968663555555556, + 0.36255975555555553, + 0.3890248, + 0.35846333333333336, + 0.6032188222222222, + 0.8170841555555556, + 0.5038053777777778, + 0.2554563111111111, + 0.3188314888888889, + 0.6114992666666667, + 0.8921609111111111, + 0.5540886666666667, + 0.28878462222222223, + 0.3913372666666667, + 0.38177704444444444, + 0.6130909777777778, + 0.3868341111111111, + 0.8310113555555556, + 0.4350984222222222, + 0.3175781555555556, + 0.7757767333333333, + 0.37714017777777775, + 0.25289395555555555, + 0.5999684666666667, + 0.27843742222222223, + 0.5561243111111112, + 0.42720277777777776, + 0.3387363333333333, + 0.8220119777777778, + 0.383728, + 0.3988090888888889, + 0.4605191777777778, + 0.5482159555555556, + 0.4988464222222222, + 0.5981962444444444, + 0.4410813777777778, + 0.36415862222222223, + 0.8502742888888889, + 0.4171669777777778, + 0.34543566666666664, + 0.5257685555555556, + 0.8814849333333333, + 0.4621986444444444, + 0.47406462222222223, + 0.26365506666666666, + 0.5730837333333333, + 0.5904554444444444, + 0.44257944444444447, + 0.21575646666666667, + 0.5358153333333333, + 0.2220615111111111, + 0.5653600222222223, + 0.40037504444444444, + 0.6141615777777778, + 0.46179302222222224, + 0.3418872666666667, + 0.4293867111111111, + 0.36816822222222223, + 0.8667080666666667, + 0.6086707555555556, + 0.8310410444444445, + 0.5916689555555555, + 0.2716773333333333, + 0.37321686666666665, + 0.3477785333333333, + 0.4325277111111111, + 0.8491614, + 0.36186955555555556, + 0.5164749555555556, + 0.4895033777777778, + 0.41835002222222223, + 0.8647769111111111, + 0.5827723555555555, + 0.2776083777777778, + 0.8223427111111111, + 0.22216477777777777, + 0.39524406666666667, + 0.4673442, + 0.3660400222222222, + 0.3764736888888889, + 0.3842870666666667, + 0.8756882666666667, + 0.5687744222222222, + 0.5348414888888889, + 0.3397124, + 0.5349658222222222, + 0.3408299777777778, + 0.4386436222222222, + 0.3571701333333333, + 0.8240317333333333, + 0.4143436888888889, + 0.5306342666666667, + 0.4649418, + 0.38132106666666665, + 0.37851188888888887, + 0.8886635333333334, + 0.5392315333333333, + 0.36121566666666666, + 0.7875153111111111, + 0.6112023333333333, + 0.2631652222222222, + 0.8387422666666666, + 0.25454473333333333, + 0.5245255777777778, + 0.8954007555555555, + 0.28557366666666667, + 0.31996775555555557, + 0.5945712888888889, + 0.8586778, + 0.19658193333333332, + 0.32680484444444446, + 0.4837443777777778, + 0.3669504, + 0.6110175333333333, + 0.5225173111111111, + 0.8556976222222222, + 0.26521104444444443, + 0.3830798, + 0.4206763111111111, + 0.598564, + 0.5740723555555556, + 0.34678835555555554, + 0.7844538888888889, + 0.46593575555555555, + 0.31605846666666665, + 0.46304535555555554, + 0.5936615333333334, + 0.8758178, + 0.32299133333333335, + 0.5255907111111111, + 0.7183915111111111, + 0.6539679333333334, + 0.29381491111111113, + 0.6109116222222222, + 0.8453614666666667, + 0.4670250444444444, + 0.6000631333333334, + 0.3361204888888889, + 0.35152055555555556, + 0.4378002222222222, + 0.40411204444444443, + 0.38402955555555557, + 0.7346021333333334, + 0.3401280666666667, + 0.4448680666666667, + 0.4160348888888889, + 0.36686317777777777, + 0.40532768888888887, + 0.3650506, + 0.5412881111111111, + 0.4857330222222222, + 0.8264299333333334, + 0.5157373777777777, + 0.2993178222222222, + 0.6016536222222222, + 0.3636545333333333, + 0.8936197333333333, + 0.32249788888888886, + 0.24324451111111112, + 0.5603233111111111, + 0.8724771111111111, + 0.42494753333333335, + 0.24176873333333335, + 0.6111055777777777, + 0.45696475555555555, + 0.4580733111111111, + 0.27025115555555557, + 0.35210595555555557, + 0.8554117333333333, + 0.3576205333333333, + 0.5102420666666667, + 0.8211426888888889, + 0.2966654444444444, + 0.4108110888888889, + 0.3462315777777778, + 0.4403245111111111, + 0.5523115555555556, + 0.3772511777777778, + 0.8752854222222223, + 0.4064189111111111, + 0.44558733333333334, + 0.5906267111111111, + 0.38260428888888887, + 0.8207704888888889, + 0.27724546666666666, + 0.5053526666666667, + 0.3816701111111111, + 0.995397, + 0.4082236, + 0.6401595111111111, + 0.4465779555555556, + 0.25077984444444446, + 0.34789037777777776, + 0.5102267111111111, + 0.8307426, + 0.382945, + 0.21269802222222223, + 0.3903572888888889, + 0.4297272888888889, + 0.3508206888888889, + 0.3718869777777778, + 0.6979471777777778, + 0.5413602888888889, + 0.5126060222222222, + 0.38373948888888887, + 0.8752367111111111, + 0.43504355555555557, + 0.48914595555555557, + 0.7253394, + 0.4884582, + 0.7609564666666667, + 0.9119615333333333, + 0.46919795555555555, + 0.41283302222222223, + 0.5687185555555555, + 0.40466851111111113, + 0.3138675777777778, + 0.21638424444444446, + 0.3543113333333333, + 0.3714750666666667, + 0.3932896, + 0.5992896, + 0.5988650666666666, + 0.7717115333333333, + 0.2782196, + 0.5351982888888889, + 0.3458027111111111, + 0.8619845555555555, + 0.23520164444444444, + 0.33731095555555557, + 0.5992448666666667, + 0.8428305555555555, + 0.5198800444444445, + 0.3905923777777778, + 0.3923075777777778, + 0.3468065777777778, + 0.6012021111111111, + 0.8610428666666666, + 0.4457038222222222, + 0.39594742222222223, + 0.4426212, + 0.30807717777777777, + 0.3853732222222222, + 0.5537489111111111, + 0.4097458888888889, + 0.7899672888888889, + 0.4034121333333333, + 0.4837347111111111, + 0.8345107111111111, + 0.41877013333333335, + 0.23612188888888888, + 0.5000201777777777, + 0.43619853333333336, + 0.5361018222222222, + 0.4927957777777778, + 0.35892544444444446, + 0.34943484444444445, + 0.8493374444444445, + 0.34291366666666667, + 0.7054888222222222, + 0.5845931555555556, + 0.5387362222222222, + 0.3946869777777778, + 0.6001567333333333, + 0.2543785333333333, + 0.4217043555555556, + 0.8030738888888889, + 0.3327238888888889, + 0.5449834, + 0.5698006, + 0.3957670222222222, + 0.37964315555555556, + 0.35446604444444446, + 0.4987763777777778, + 0.3809215111111111, + 0.45033497777777776, + 0.42394635555555554, + 0.46477226666666666, + 0.3798242, + 0.6193663555555555, + 0.9995732222222222, + 0.4134076888888889, + 0.4251136222222222, + 0.3477760222222222, + 0.8598219777777778, + 0.49403726666666664, + 0.4137497111111111, + 0.5674152888888889, + 0.4129804888888889, + 0.8479963111111111, + 0.34516164444444447, + 0.35008962222222223, + 0.8266597777777778, + 0.2505193111111111, + 0.5984586222222222, + 0.7967649111111111, + 0.25457562222222224, + 0.3177726444444444, + 0.6041878, + 0.9005067333333333, + 0.2239720888888889, + 0.3197528, + 0.4996641333333333, + 0.8629786444444445, + 0.1469766888888889, + 0.5368103555555556, + 0.4023496, + 0.5371799777777778, + 0.8183555333333333, + 0.8418965111111111, + 0.4198773111111111, + 0.388841, + 0.6258483111111112, + 0.3278051111111111, + 0.49382415555555553, + 0.3059384, + 0.3904236888888889, + 0.8991571777777778, + 0.30255391111111113, + 0.7259417777777778, + 0.37529715555555554, + 0.5566218444444444, + 0.4073221777777778, + 0.32947757777777775, + 0.26475784444444445, + 0.6076448222222223, + 0.3378746222222222, + 0.5254952444444444, + 0.6859393111111111, + 0.5670506, + 0.35879435555555556, + 0.3967133333333333, + 0.7875826222222222, + 0.19819133333333333, + 0.38821144444444444, + 0.456572, + 0.8341432888888889, + 0.5924318222222222, + 0.26305562222222223, + 0.7328944222222222, + 0.6052300222222222, + 0.21672266666666667, + 0.4515720888888889, + 0.6049198222222222, + 0.4430653333333333, + 0.4730332888888889, + 0.9002766888888889, + 0.34806106666666664, + 0.32329073333333336, + 0.3378492, + 0.6020550666666666, + 0.5289797333333334, + 0.39498086666666665, + 0.5078007777777778, + 0.7958943555555555, + 0.46451902222222224, + 0.3176930666666667, + 0.5997985555555555, + 0.8469746444444445, + 0.29112746666666667, + 0.2827074666666667, + 0.5752536222222222, + 0.3887810888888889, + 0.42260617777777776, + 0.4034245777777778, + 0.8152120888888889, + 0.5807800222222222, + 0.3204674, + 0.8153131555555555, + 0.5088706222222222, + 0.3379498444444444, + 0.3214918888888889, + 0.4324715333333333, + 0.8950847555555556, + 0.3671555777777778, + 0.30146246666666665, + 0.5217906444444445, + 0.36834897777777775, + 0.5226, + 0.4272821111111111, + 0.8802383777777778, + 0.458325, + 0.3679460666666667, + 0.415566, + 0.6481642222222223, + 0.5812538444444444, + 0.3816034222222222, + 0.4945886222222222, + 0.6049596444444445, + 0.34062502222222224, + 0.8681655111111111, + 0.24121286666666666, + 0.4104609777777778, + 0.3602468, + 0.5294142222222222, + 0.3777122222222222, + 0.4308562, + 0.3855458222222222, + 0.45157775555555557, + 0.36450873333333333, + 0.415754, + 0.3352372888888889, + 0.36394293333333333, + 0.348934, + 0.5297889111111111, + 0.5148414666666666, + 0.9076775777777778, + 0.5521642, + 0.3811840222222222, + 0.4394812, + 0.6000114, + 0.6907207777777777, + 0.7173583777777778, + 0.5910091777777777, + 0.6396082666666667, + 0.8789950888888889, + 0.8768246444444444, + 0.7065165111111111, + 0.4571588, + 0.5986390888888888, + 0.4037836, + 0.3649150888888889, + 0.5334907555555556, + 0.5170086666666667, + 0.5265444444444445, + 0.6906368444444444, + 0.4671224888888889, + 0.5126561111111111, + 0.5623527111111111, + 0.40990506666666665, + 0.27446868888888887, + 0.9663859111111112, + 0.37409722222222225, + 0.5006010888888889, + 0.3967456, + 0.2921942, + 0.4188619333333333, + 0.3682926, + 0.3322843555555556, + 0.43535697777777776, + 0.36286335555555554, + 0.3381400666666667, + 0.44251253333333335, + 0.5542924222222222, + 0.5319316888888889, + 0.35190495555555557, + 0.6993767777777777, + 0.4273784888888889, + 0.49583744444444444, + 0.8862098888888889, + 0.48737604444444443, + 0.36929562222222223, + 0.34622326666666664, + 0.6159404222222222, + 0.228668, + 0.815333, + 0.26147244444444445, + 0.5775451333333333, + 0.38699022222222224, + 0.7811972222222222, + 0.3432044444444444, + 0.5783203333333333, + 0.3200798, + 0.8951019555555556, + 0.43828764444444446, + 0.5843430888888889, + 0.6366295333333334, + 0.701593, + 0.2824198, + 0.28693864444444445, + 0.1779853777777778, + 0.5088624666666667, + 0.6162434888888889, + 0.4596490888888889, + 0.3881021777777778, + 0.34714788888888887, + 0.5815820444444444, + 0.5110717111111112, + 0.7982486888888889, + 0.26812524444444447, + 0.6002406222222222, + 0.37661684444444443, + 0.404716, + 0.34433708888888886, + 0.7522813111111111, + 0.36450695555555557, + 0.35990506666666666, + 0.43838197777777776, + 0.42422817777777777, + 0.5940413777777778, + 0.8155099333333333, + 0.5266516444444445, + 0.6939206222222222, + 0.4491989111111111, + 0.4982818222222222, + 0.396213, + 0.4248991555555556, + 0.8905836, + 0.24718822222222223, + 0.5741374888888889, + 0.46348486666666666, + 0.4897421111111111, + 0.44546742222222224, + 0.7429696666666666, + 0.5470578222222222, + 0.48775924444444446, + 0.4435092222222222, + 0.29772075555555555, + 0.5353286, + 0.39067111111111114, + 0.8699883777777778, + 0.2179068222222222, + 0.3625147777777778, + 0.5353162222222222, + 0.5427555111111111, + 0.5902443777777778, + 0.33704962222222223, + 0.8552067111111111, + 0.3194444888888889, + 0.5179367333333333, + 0.7758827111111111, + 0.367729, + 0.30849468888888887, + 0.36665726666666665, + 0.3449589111111111, + 0.3810988444444444, + 0.6045385111111111, + 0.5428790444444445, + 0.3570062222222222, + 0.3710436222222222, + 0.7735324888888889, + 0.5501151333333333, + 0.3641841111111111, + 0.8850269777777777, + 0.5321316222222222, + 0.5461312888888888, + 0.5084769555555556, + 0.30868582222222224, + 0.3698289111111111, + 0.5814735111111111, + 0.5439728, + 0.48285253333333333, + 0.8884289333333333, + 0.2522316666666667, + 0.3802093777777778, + 0.3704264888888889, + 0.5990555555555556, + 0.3661934666666667, + 0.8564576444444445, + 0.39013051111111113, + 0.5711624888888889, + 0.36479426666666664, + 0.5470684444444445, + 0.7141310444444444, + 0.3481218888888889, + 0.8667862666666667, + 0.2927777111111111, + 0.3861069111111111, + 0.3594046888888889, + 0.41261813333333336, + 0.5023852444444444, + 0.8237568444444444, + 0.3702787111111111, + 0.6410287555555556, + 0.5216041111111112, + 0.2768203777777778, + 0.40803537777777776, + 0.5789331333333333, + 0.4605335111111111, + 0.3409305777777778, + 0.3456381111111111, + 0.44282371111111113, + 0.8571841777777778, + 0.5523872666666667, + 0.7743582222222222, + 0.2372561111111111, + 0.5930493333333333, + 0.8718222444444444, + 0.19861966666666667, + 0.4295626888888889, + 0.4090336888888889, + 0.4004832, + 0.3567630666666667, + 0.5191589111111111, + 0.7754055555555556, + 0.4163762, + 0.8117097333333333, + 0.24323386666666666, + 0.48539715555555557, + 0.7966682666666667, + 0.24410877777777779, + 0.5934487333333334, + 0.5349438888888889, + 0.3786820444444444, + 0.3653207333333333, + 0.3766026, + 0.8123683111111111, + 0.47525351111111114, + 0.5960618888888889, + 0.3302219777777778, + 0.5543265777777778, + 0.7870645777777778, + 0.36609026666666666, + 0.31222137777777775, + 0.34223155555555557, + 0.3713001111111111, + 0.5331996, + 0.8049784666666666, + 0.35394288888888886, + 0.5743474444444444, + 0.7518678, + 0.401953, + 0.28488853333333336, + 0.6171229555555555, + 0.7596630444444444, + 0.24455595555555557, + 0.5898117333333334, + 0.3260441111111111, + 0.4024631111111111, + 0.7328216666666667, + 0.4246412888888889, + 0.34736995555555555, + 0.3818396, + 0.5461066888888889, + 0.8271359111111111, + 0.4160128444444444, + 0.37925995555555553, + 0.3654572222222222, + 0.5671722444444445, + 0.8946516666666666, + 0.2506512888888889, + 0.5051340222222223, + 0.3933676888888889, + 0.4440458888888889, + 0.3483268888888889, + 0.8091296666666666, + 0.5115478, + 0.3735804222222222, + 0.4297636444444444, + 0.8338650666666667, + 0.24421964444444444, + 0.3911448, + 0.4895369111111111, + 0.5496447777777778, + 0.4656488888888889, + 0.8231729555555556, + 0.35025693333333335, + 0.3352556, + 0.5089410888888889, + 0.48698471111111113, + 0.7891954, + 0.44273184444444447, + 0.8039234444444444, + 0.6850940444444444, + 0.2734096888888889, + 0.27141695555555556, + 0.3389994, + 0.5870072222222222, + 0.7328337111111111, + 0.29074462222222225, + 0.3344414888888889, + 0.3345126, + 0.41563784444444446, + 0.5411854666666667, + 0.4244331333333333, + 0.6099811777777778, + 0.8507722888888889, + 0.5370563333333334, + 0.33364875555555557, + 0.8590552222222222, + 0.27926364444444446, + 0.43014444444444444, + 0.46475964444444445, + 0.4695226888888889, + 0.5864853111111111, + 0.3727269777777778, + 0.4347999777777778, + 0.3450348888888889, + 0.5971237555555555, + 0.43099204444444444, + 0.7891680444444444, + 0.438298, + 0.5684440222222222, + 0.4142256222222222, + 0.8545915777777778, + 0.29677353333333334, + 0.6010449111111111, + 0.8461626666666666, + 0.45434455555555553, + 0.3843851111111111, + 0.48437095555555554, + 0.2580415555555556, + 0.3470306222222222, + 0.5522581333333333, + 0.8054371777777778, + 0.21685588888888888, + 0.49517202222222223, + 0.8601407777777778, + 0.3795614, + 0.35042155555555554, + 0.5641195111111111, + 0.8830014666666667, + 0.42719495555555553, + 0.3745184888888889, + 0.35757395555555554, + 0.27012257777777776, + 0.3588240222222222, + 0.40469855555555556, + 0.3448938, + 0.4612477111111111, + 0.34404117777777776, + 0.3921826, + 0.43200295555555557, + 0.34217437777777776, + 0.6171357555555556, + 0.44705435555555556, + 0.3931783111111111, + 0.8777602666666666, + 0.6011777555555555, + 0.5375478666666667, + 0.8443011555555555, + 0.5431581333333333, + 0.8721029555555555, + 0.15650535555555556, + 0.48765013333333335, + 0.46978964444444443, + 0.7823339333333333, + 0.6007281555555556, + 0.2764693777777778, + 0.8355972666666667, + 0.420197, + 0.42720804444444443, + 0.2966741333333333, + 0.6081786888888889, + 0.8642828444444445, + 0.31796044444444443, + 0.27551662222222223, + 0.5230917111111111, + 0.8534868444444444, + 0.3306732888888889, + 0.24490075555555554, + 0.5908655777777778, + 0.8346176666666667, + 0.2761170666666667, + 0.3426926888888889, + 0.33484844444444445, + 0.4718628222222222, + 0.7862222444444444, + 0.5563327333333333, + 0.3808562, + 0.8447942666666667, + 0.19335913333333332, + 0.37573717777777776, + 0.49629446666666666, + 0.8137079555555555, + 0.44783873333333335, + 0.22532902222222223, + 0.5079752444444444, + 0.3493136, + 0.36189448888888887, + 0.8595813333333333, + 0.39825435555555555, + 0.5331430444444445, + 0.41923926666666667, + 0.5510469777777778, + 0.5328426222222222, + 0.7848724, + 0.3070520888888889, + 0.5836301333333334, + 0.7734382666666667, + 0.22986235555555556, + 0.5804453555555555, + 0.3517830888888889, + 0.8855993333333333, + 0.47627813333333335, + 0.2816474, + 0.20454768888888888, + 0.5165705111111111, + 0.3406577111111111, + 0.3888574888888889, + 0.8585831777777778, + 0.3576798666666667, + 0.5481194222222222, + 0.3775549777777778, + 0.42724942222222223, + 0.4990014, + 0.7786162, + 0.5947206444444444, + 0.7929290888888889, + 0.3147894888888889 + ] +}` + +const infuraFeesJSON = `{ + "low": { + "suggestedMaxPriorityFeePerGas": "30", + "suggestedMaxFeePerGas": "44.97523696", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 8000 + }, + "medium": { + "suggestedMaxPriorityFeePerGas": "30", + "suggestedMaxFeePerGas": "50.216569896", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 6000 + }, + "high": { + "suggestedMaxPriorityFeePerGas": "30", + "suggestedMaxFeePerGas": "55.457902832", + "minWaitTimeEstimate": 2000, + "maxWaitTimeEstimate": 4000 + }, + "estimatedBaseFee": "14.97523696", + "networkCongestion": 0.23245, + "latestPriorityFeeRange": [ + "25.02476304", + "45.01900371" + ], + "historicalPriorityFeeRange": [ + "25.005294363", + "10791.14669262" + ], + "historicalBaseFeeRange": [ + "14.45532649", + "15.183990152" + ], + "priorityFeeTrend": "down", + "baseFeeTrend": "up", + "version": "0.0.1" +}` diff --git a/examples/gas-comparison/data/types.go b/examples/gas-comparison/data/types.go new file mode 100644 index 0000000..1f1fdf6 --- /dev/null +++ b/examples/gas-comparison/data/types.go @@ -0,0 +1,17 @@ +package data + +import ( + "math/big" + + "github.com/ethereum/go-ethereum" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" +) + +type GasData struct { + LatestBlock *ethclient.BlockWithFullTxs `json:"latestBlock"` + FeeHistory *ethereum.FeeHistory `json:"feeHistory"` + GasPrice *big.Int `json:"gasPrice"` + MaxPriorityFeePerGas *big.Int `json:"maxPriorityFeePerGas"` + InfuraSuggestedFees *infura.GasResponse `json:"infuraSuggestedFees"` +} diff --git a/examples/gas-comparison/go.mod b/examples/gas-comparison/go.mod new file mode 100644 index 0000000..66912a0 --- /dev/null +++ b/examples/gas-comparison/go.mod @@ -0,0 +1,33 @@ +module gas-comparison + +go 1.23.0 + +replace github.com/status-im/go-wallet-sdk => ../../ + +require ( + github.com/ethereum/go-ethereum v1.16.3 + github.com/status-im/go-wallet-sdk v0.0.0-00010101000000-000000000000 +) + +require ( + github.com/Microsoft/go-winio v0.6.2 // indirect + github.com/StackExchange/wmi v1.2.1 // indirect + github.com/bits-and-blooms/bitset v1.20.0 // indirect + github.com/consensys/gnark-crypto v0.18.0 // indirect + github.com/crate-crypto/go-eth-kzg v1.3.0 // indirect + github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a // indirect + github.com/deckarep/golang-set/v2 v2.6.0 // indirect + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect + github.com/ethereum/c-kzg-4844/v2 v2.1.0 // indirect + github.com/ethereum/go-verkle v0.2.2 // indirect + github.com/go-ole/go-ole v1.3.0 // indirect + github.com/gorilla/websocket v1.4.2 // indirect + github.com/holiman/uint256 v1.3.2 // indirect + github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect + github.com/supranational/blst v0.3.14 // indirect + github.com/tklauser/go-sysconf v0.3.12 // indirect + github.com/tklauser/numcpus v0.6.1 // indirect + golang.org/x/crypto v0.41.0 // indirect + golang.org/x/sync v0.16.0 // indirect + golang.org/x/sys v0.35.0 // indirect +) diff --git a/examples/gas-comparison/go.sum b/examples/gas-comparison/go.sum new file mode 100644 index 0000000..85db30b --- /dev/null +++ b/examples/gas-comparison/go.sum @@ -0,0 +1,183 @@ +github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ= +github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= +github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= +github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= +github.com/StackExchange/wmi v1.2.1 h1:VIkavFPXSjcnS+O8yTq7NI32k0R5Aj+v39y29VYDOSA= +github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= +github.com/VictoriaMetrics/fastcache v1.12.2 h1:N0y9ASrJ0F6h0QaC3o6uJb3NIZ9VKLjCM7NQbSmF7WI= +github.com/VictoriaMetrics/fastcache v1.12.2/go.mod h1:AmC+Nzz1+3G2eCPapF6UcsnkThDcMsQicp4xDukwJYI= +github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bits-and-blooms/bitset v1.20.0 h1:2F+rfL86jE2d/bmw7OhqUg2Sj/1rURkBn3MdfoPyRVU= +github.com/bits-and-blooms/bitset v1.20.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cockroachdb/errors v1.11.3 h1:5bA+k2Y6r+oz/6Z/RFlNeVCesGARKuC6YymtcDrbC/I= +github.com/cockroachdb/errors v1.11.3/go.mod h1:m4UIW4CDjx+R5cybPsNrRbreomiFqt8o1h1wUVazSd8= +github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce h1:giXvy4KSc/6g/esnpM7Geqxka4WSqI1SZc7sMJFd3y4= +github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce/go.mod h1:9/y3cnZ5GKakj/H4y9r9GTjCvAFta7KLgSHPJJYc52M= +github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b h1:r6VH0faHjZeQy818SGhaone5OnYfxFR/+AzdY3sf5aE= +github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b/go.mod h1:Vz9DsVWQQhf3vs21MhPMZpMGSht7O/2vFW2xusFUVOs= +github.com/cockroachdb/pebble v1.1.5 h1:5AAWCBWbat0uE0blr8qzufZP5tBjkRyy/jWe1QWLnvw= +github.com/cockroachdb/pebble v1.1.5/go.mod h1:17wO9el1YEigxkP/YtV8NtCivQDgoCyBg5c4VR/eOWo= +github.com/cockroachdb/redact v1.1.5 h1:u1PMllDkdFfPWaNGMyLD1+so+aq3uUItthCFqzwPJ30= +github.com/cockroachdb/redact v1.1.5/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= +github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 h1:zuQyyAKVxetITBuuhv3BI9cMrmStnpT18zmgmTxunpo= +github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ= +github.com/consensys/gnark-crypto v0.18.0 h1:vIye/FqI50VeAr0B3dx+YjeIvmc3LWz4yEfbWBpTUf0= +github.com/consensys/gnark-crypto v0.18.0/go.mod h1:L3mXGFTe1ZN+RSJ+CLjUt9x7PNdx8ubaYfDROyp2Z8c= +github.com/cpuguy83/go-md2man/v2 v2.0.5 h1:ZtcqGrnekaHpVLArFSe4HK5DoKx1T0rq2DwVB0alcyc= +github.com/cpuguy83/go-md2man/v2 v2.0.5/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/crate-crypto/go-eth-kzg v1.3.0 h1:05GrhASN9kDAidaFJOda6A4BEvgvuXbazXg/0E3OOdI= +github.com/crate-crypto/go-eth-kzg v1.3.0/go.mod h1:J9/u5sWfznSObptgfa92Jq8rTswn6ahQWEuiLHOjCUI= +github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a h1:W8mUrRp6NOVl3J+MYp5kPMoUZPp7aOYHtaua31lwRHg= +github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a/go.mod h1:sTwzHBvIzm2RfVCGNEBZgRyjwK40bVoun3ZnGOCafNM= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dchest/siphash v1.2.3 h1:QXwFc8cFOR2dSa/gE6o/HokBMWtLUaNDVd+22aKHeEA= +github.com/dchest/siphash v1.2.3/go.mod h1:0NvQU092bT0ipiFN++/rXm69QG9tVxLAlQHIXMPAkHc= +github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM= +github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= +github.com/decred/dcrd/crypto/blake256 v1.0.0 h1:/8DMNYp9SGi5f0w7uCm6d6M4OU2rGFK09Y2A4Xv7EE0= +github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= +github.com/emicklei/dot v1.6.2 h1:08GN+DD79cy/tzN6uLCT84+2Wk9u+wvqP+Hkx/dIR8A= +github.com/emicklei/dot v1.6.2/go.mod h1:DeV7GvQtIw4h2u73RKBkkFdvVAz0D9fzeJrgPW6gy/s= +github.com/ethereum/c-kzg-4844/v2 v2.1.0 h1:gQropX9YFBhl3g4HYhwE70zq3IHFRgbbNPw0Shwzf5w= +github.com/ethereum/c-kzg-4844/v2 v2.1.0/go.mod h1:TC48kOKjJKPbN7C++qIgt0TJzZ70QznYR7Ob+WXl57E= +github.com/ethereum/go-ethereum v1.16.3 h1:nDoBSrmsrPbrDIVLTkDQCy1U9KdHN+F2PzvMbDoS42Q= +github.com/ethereum/go-ethereum v1.16.3/go.mod h1:Lrsc6bt9Gm9RyvhfFK53vboCia8kpF9nv+2Ukntnl+8= +github.com/ethereum/go-verkle v0.2.2 h1:I2W0WjnrFUIzzVPwm8ykY+7pL2d4VhlsePn4j7cnFk8= +github.com/ethereum/go-verkle v0.2.2/go.mod h1:M3b90YRnzqKyyzBEWJGqj8Qff4IDeXnzFw0P9bFw3uk= +github.com/ferranbt/fastssz v0.1.4 h1:OCDB+dYDEQDvAgtAGnTSidK1Pe2tW3nFV40XyMkTeDY= +github.com/ferranbt/fastssz v0.1.4/go.mod h1:Ea3+oeoRGGLGm5shYAeDgu6PGUlcvQhE2fILyD9+tGg= +github.com/getsentry/sentry-go v0.27.0 h1:Pv98CIbtB3LkMWmXi4Joa5OOcwbmnX88sF5qbK3r3Ps= +github.com/getsentry/sentry-go v0.27.0/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY= +github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= +github.com/go-ole/go-ole v1.3.0 h1:Dt6ye7+vXGIKZ7Xtk4s6/xVdGDQynvom7xCFEdWr6uE= +github.com/go-ole/go-ole v1.3.0/go.mod h1:5LS6F96DhAwUc7C+1HLexzMXY1xGRSryjyPPKW6zv78= +github.com/gofrs/flock v0.12.1 h1:MTLVXXHf8ekldpJk3AKicLij9MdwOWkZ+a/jHHZby9E= +github.com/gofrs/flock v0.12.1/go.mod h1:9zxTsyu5xtJ9DK+1tFZyibEV7y3uwDxPPfbxeeHCoD0= +github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/golang-jwt/jwt/v4 v4.5.2 h1:YtQM7lnr8iZ+j5q71MGKkNw9Mn7AjHM68uc9g5fXeUI= +github.com/golang-jwt/jwt/v4 v4.5.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= +github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= +github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= +github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb h1:PBC98N2aIaM3XXiurYmW7fx4GZkL8feAMVq7nEjURHk= +github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc= +github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/hashicorp/go-bexpr v0.1.10 h1:9kuI5PFotCboP3dkDYFr/wi0gg0QVbSNz5oFRpxn4uE= +github.com/hashicorp/go-bexpr v0.1.10/go.mod h1:oxlubA2vC/gFVfX1A6JGp7ls7uCDlfJn732ehYYg+g0= +github.com/holiman/billy v0.0.0-20240216141850-2abb0c79d3c4 h1:X4egAf/gcS1zATw6wn4Ej8vjuVGxeHdan+bRb2ebyv4= +github.com/holiman/billy v0.0.0-20240216141850-2abb0c79d3c4/go.mod h1:5GuXa7vkL8u9FkFuWdVvfR5ix8hRB7DbOAaYULamFpc= +github.com/holiman/bloomfilter/v2 v2.0.3 h1:73e0e/V0tCydx14a0SCYS/EWCxgwLZ18CZcZKVu0fao= +github.com/holiman/bloomfilter/v2 v2.0.3/go.mod h1:zpoh+gs7qcpqrHr3dB55AMiJwo0iURXE7ZOP9L9hSkA= +github.com/holiman/uint256 v1.3.2 h1:a9EgMPSC1AAaj1SZL5zIQD3WbwTuHrMGOerLjGmM/TA= +github.com/holiman/uint256 v1.3.2/go.mod h1:EOMSn4q6Nyt9P6efbI3bueV4e1b3dGlUCXeiRV4ng7E= +github.com/huin/goupnp v1.3.0 h1:UvLUlWDNpoUdYzb2TCn+MuTWtcjXKSza2n6CBdQ0xXc= +github.com/huin/goupnp v1.3.0/go.mod h1:gnGPsThkYa7bFi/KWmEysQRf48l2dvR5bxr2OFckNX8= +github.com/jackpal/go-nat-pmp v1.0.2 h1:KzKSgb7qkJvOUTqYl9/Hg/me3pWgBmERKrTGD7BdWus= +github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= +github.com/klauspost/compress v1.16.0 h1:iULayQNOReoYUe+1qtKOqw9CwJv3aNQu8ivo7lw1HU4= +github.com/klauspost/compress v1.16.0/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= +github.com/klauspost/cpuid/v2 v2.0.9 h1:lgaqFMSdTdQYdZ04uHyN2d/eKdOMyi2YLSvlQIBFYa4= +github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= +github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= +github.com/leanovate/gopter v0.2.11 h1:vRjThO1EKPb/1NsDXuDrzldR28RLkBflWYcU9CvzWu4= +github.com/leanovate/gopter v0.2.11/go.mod h1:aK3tzZP/C+p1m3SPRE4SYZFGP7jjkuSI4f7Xvpt0S9c= +github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= +github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU= +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= +github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= +github.com/minio/sha256-simd v1.0.0 h1:v1ta+49hkWZyvaKwrQB8elexRqm6Y0aMLjCNsrYxo6g= +github.com/minio/sha256-simd v1.0.0/go.mod h1:OuYzVNI5vcoYIAmbIvHPl3N3jUzVedXbKy5RFepssQM= +github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= +github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/pointerstructure v1.2.0 h1:O+i9nHnXS3l/9Wu7r4NrEdwA2VFTicjUEN1uBnDo34A= +github.com/mitchellh/pointerstructure v1.2.0/go.mod h1:BRAsLI5zgXmw97Lf6s25bs8ohIXc3tViBH44KcwB2g4= +github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec= +github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= +github.com/pion/dtls/v2 v2.2.7 h1:cSUBsETxepsCSFSxC3mc/aDo14qQLMSL+O6IjG28yV8= +github.com/pion/dtls/v2 v2.2.7/go.mod h1:8WiMkebSHFD0T+dIU+UeBaoV7kDhOW5oDCzZ7WZ/F9s= +github.com/pion/logging v0.2.2 h1:M9+AIj/+pxNsDfAT64+MAVgJO0rsyLnoJKCqf//DoeY= +github.com/pion/logging v0.2.2/go.mod h1:k0/tDVsRCX2Mb2ZEmTqNa7CWsQPc+YYCB7Q+5pahoms= +github.com/pion/stun/v2 v2.0.0 h1:A5+wXKLAypxQri59+tmQKVs7+l6mMM+3d+eER9ifRU0= +github.com/pion/stun/v2 v2.0.0/go.mod h1:22qRSh08fSEttYUmJZGlriq9+03jtVmXNODgLccj8GQ= +github.com/pion/transport/v2 v2.2.1 h1:7qYnCBlpgSJNYMbLCKuSY9KbQdBFoETvPNETv0y4N7c= +github.com/pion/transport/v2 v2.2.1/go.mod h1:cXXWavvCnFF6McHTft3DWS9iic2Mftcz1Aq29pGcU5g= +github.com/pion/transport/v3 v3.0.1 h1:gDTlPJwROfSfz6QfSi0ZmeCSkFcnWWiiR9ES0ouANiM= +github.com/pion/transport/v3 v3.0.1/go.mod h1:UY7kiITrlMv7/IKgd5eTUcaahZx5oUN3l9SzK5f5xE0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v1.15.0 h1:5fCgGYogn0hFdhyhLbw7hEsWxufKtY9klyvdNfFlFhM= +github.com/prometheus/client_golang v1.15.0/go.mod h1:e9yaBhRPU2pPNsZwE+JdQl0KEt1N9XgF6zxWmaC0xOk= +github.com/prometheus/client_model v0.3.0 h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4= +github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= +github.com/prometheus/common v0.42.0 h1:EKsfXEYo4JpWMHH5cg+KOUWeuJSov1Id8zGR8eeI1YM= +github.com/prometheus/common v0.42.0/go.mod h1:xBwqVerjNdUDjgODMpudtOMwlOwf2SaTr1yjz4b7Zbc= +github.com/prometheus/procfs v0.9.0 h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJfhI= +github.com/prometheus/procfs v0.9.0/go.mod h1:+pB4zwohETzFnmlpe6yd2lSc+0/46IYZRB/chUwxUZY= +github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY= +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= +github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= +github.com/rs/cors v1.7.0 h1:+88SsELBHx5r+hZ8TCkggzSstaWNbDvThkVK8H6f9ik= +github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= +github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= +github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible h1:Bn1aCHHRnjv4Bl16T8rcaFjYSrGrIZvpiGO6P3Q4GpU= +github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= +github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= +github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/supranational/blst v0.3.14 h1:xNMoHRJOTwMn63ip6qoWJ2Ymgvj7E2b9jY2FAwY+qRo= +github.com/supranational/blst v0.3.14/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= +github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 h1:epCh84lMvA70Z7CTTCmYQn2CKbY8j86K7/FAIr141uY= +github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= +github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFAEVmqU= +github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI= +github.com/tklauser/numcpus v0.6.1 h1:ng9scYS7az0Bk4OZLvrNXNSAO2Pxr1XXRAPyjhIx+Fk= +github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= +github.com/urfave/cli/v2 v2.27.5 h1:WoHEJLdsXr6dDWoJgMq/CboDmyY/8HMMH1fTECbih+w= +github.com/urfave/cli/v2 v2.27.5/go.mod h1:3Sevf16NykTbInEnD0yKkjDAeZDS0A6bzhBH5hrMvTQ= +github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 h1:gEOO8jv9F4OT7lGCjxCBTO/36wtF6j2nSip77qHd4x4= +github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1/go.mod h1:Ohn+xnUBiLI6FVj/9LpzZWtj1/D6lUovWYBkxHVV3aM= +go.uber.org/mock v0.6.0 h1:hyF9dfmbgIX5EfOdasqLsWD6xqpNZlXblLB/Dbnwv3Y= +go.uber.org/mock v0.6.0/go.mod h1:KiVJ4BqZJaMj4svdfmHM0AUx4NJYO8ZNpPnZn1Z+BBU= +golang.org/x/crypto v0.41.0 h1:WKYxWedPGCTVVl5+WHSSrOBT0O8lx32+zxmHxijgXp4= +golang.org/x/crypto v0.41.0/go.mod h1:pO5AFd7FA68rFak7rOAGVuygIISepHftHnr8dr6+sUc= +golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa h1:FRnLl4eNAQl8hwxVVC17teOw8kdjVDVAiFMtgUdTSRQ= +golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa/go.mod h1:zk2irFbV9DP96SEBUUAy67IdHUaZuSnrz1n472HUCLE= +golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw= +golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= +golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI= +golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/text v0.28.0 h1:rhazDwis8INMIwQ4tpjLDzUhx6RlXqZNPEM0huQojng= +golang.org/x/text v0.28.0/go.mod h1:U8nCwOR8jO/marOQ0QbDiOngZVEBB7MAiitBuMjXiNU= +golang.org/x/time v0.9.0 h1:EsRrnYcQiGH+5FfbgvV4AP7qEZstoyrHB0DzarOQ4ZY= +golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= +google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= +google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= +gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc= +gopkg.in/natefinch/lumberjack.v2 v2.2.1/go.mod h1:YD8tP3GAjkrDg1eZH7EGmyESg/lsYskCTPBJVb9jqSc= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/examples/gas-comparison/main.go b/examples/gas-comparison/main.go new file mode 100644 index 0000000..d0a40bb --- /dev/null +++ b/examples/gas-comparison/main.go @@ -0,0 +1,773 @@ +package main + +import ( + "context" + "flag" + "fmt" + "math/big" + "os" + "strconv" + "strings" + "time" + + "gas-comparison/data" + data_arbitrum "gas-comparison/data/arbitrum" + data_base "gas-comparison/data/base" + data_ethereum "gas-comparison/data/ethereum" + data_optimism "gas-comparison/data/optimism" + data_optimismsepolia "gas-comparison/data/optimismsepolia" + data_polygon "gas-comparison/data/polygon" + "gas-comparison/old" + + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" +) + +// NetworkInfo represents information about a network to test +type NetworkInfo struct { + Name string + ChainID int + RPC string + ChainParameters gas.ChainParameters + SuggestionsConfig gas.SuggestionsConfig + LocalData *data.GasData +} + +type GasDataClient interface { + gas.EthClient + SuggestGasPrice(ctx context.Context) (*big.Int, error) + SuggestGasTipCap(ctx context.Context) (*big.Int, error) + BlockNumber(ctx context.Context) (uint64, error) + BlockByNumber(ctx context.Context, number *big.Int) (*ethclient.BlockWithFullTxs, error) + EstimateGas(ctx context.Context, msg ethereum.CallMsg) (uint64, error) + GetGasSuggestions(ctx context.Context, networkID int) (*infura.GasResponse, error) + Close() +} + +// mustGetGasData is a helper function to handle the error from GetGasData functions +func mustGetGasData(getDataFunc func() (*data.GasData, error)) *data.GasData { + gasData, err := getDataFunc() + if err != nil { + fmt.Printf("Error loading gas data: %v\n", err) + os.Exit(1) + } + return gasData +} + +func main() { + // Define command line flags + var ( + infuraToken = flag.String("infura-api-key", "", "Infura API key for gas suggestions (required for network mode)") + fake = flag.Bool("fake", false, "Use local data if set. Otherwise fetch data from the network") + help = flag.Bool("help", false, "Show help message") + ) + + flag.Usage = func() { + fmt.Fprintf(os.Stderr, "Usage: %s [options]\n\n", os.Args[0]) + flag.PrintDefaults() + } + + flag.Parse() + + if *help { + flag.Usage() + os.Exit(0) + } + + // Validate required arguments + if !*fake && *infuraToken == "" { + fmt.Fprintf(os.Stderr, "Error: -infura-api-key flag is required in network mode\n\n") + flag.Usage() + os.Exit(1) + } + + fmt.Println("🔥 Multi-Network Gas Fee Comparison Tool") + fmt.Println("Comparing our current implementation, old implementation, and Infura's Gas API across multiple networks") + fmt.Println(strings.Repeat("=", 80)) + + ethereumParams := gas.ChainParameters{ + ChainClass: gas.ChainClassL1, + NetworkBlockTime: 12, + } + ethereumConfig := gas.DefaultConfig(ethereumParams.ChainClass) + + arbitrumParams := gas.ChainParameters{ + ChainClass: gas.ChainClassArbStack, + NetworkBlockTime: 0.25, + } + arbitrumConfig := gas.DefaultConfig(arbitrumParams.ChainClass) + + optimismParams := gas.ChainParameters{ + ChainClass: gas.ChainClassOPStack, + NetworkBlockTime: 2.0, + } + optimismConfig := gas.DefaultConfig(optimismParams.ChainClass) + + baseParams := gas.ChainParameters{ + ChainClass: gas.ChainClassOPStack, + NetworkBlockTime: 2.0, + } + baseConfig := gas.DefaultConfig(baseParams.ChainClass) + + polygonParams := gas.ChainParameters{ + ChainClass: gas.ChainClassL1, + NetworkBlockTime: 2.25, + } + polygonConfig := gas.DefaultConfig(polygonParams.ChainClass) + + bscParams := gas.ChainParameters{ + ChainClass: gas.ChainClassL1, + NetworkBlockTime: 0.75, + } + bscConfig := gas.DefaultConfig(bscParams.ChainClass) + + lineaParams := gas.ChainParameters{ + ChainClass: gas.ChainClassLineaStack, + NetworkBlockTime: 2.00, + } + lineaConfig := gas.DefaultConfig(lineaParams.ChainClass) + + statusNetworkSepoliaParams := gas.ChainParameters{ + ChainClass: gas.ChainClassLineaStack, + NetworkBlockTime: 2.00, + } + statusNetworkSepoliaConfig := gas.DefaultConfig(statusNetworkSepoliaParams.ChainClass) + + optimismSepoliaParams := gas.ChainParameters{ + ChainClass: gas.ChainClassOPStack, + NetworkBlockTime: 2.0, + } + optimismSepoliaConfig := gas.DefaultConfig(optimismSepoliaParams.ChainClass) + + // Define networks to test + networks := []NetworkInfo{ + { + Name: "Ethereum Mainnet", + ChainID: infura.Ethereum, + RPC: "https://mainnet.infura.io/v3/" + *infuraToken, + ChainParameters: ethereumParams, + SuggestionsConfig: ethereumConfig, + LocalData: mustGetGasData(data_ethereum.GetGasData), + }, + { + Name: "Arbitrum One", + ChainID: infura.ArbitrumOne, + RPC: "https://arbitrum-mainnet.infura.io/v3/" + *infuraToken, + ChainParameters: arbitrumParams, + SuggestionsConfig: arbitrumConfig, + LocalData: mustGetGasData(data_arbitrum.GetGasData), + }, + { + Name: "Optimism", + ChainID: infura.Optimism, + RPC: "https://optimism-mainnet.infura.io/v3/" + *infuraToken, + ChainParameters: optimismParams, + SuggestionsConfig: optimismConfig, + LocalData: mustGetGasData(data_optimism.GetGasData), + }, + { + Name: "Base", + ChainID: infura.Base, + RPC: "https://base-mainnet.infura.io/v3/" + *infuraToken, + ChainParameters: baseParams, + SuggestionsConfig: baseConfig, + LocalData: mustGetGasData(data_base.GetGasData), + }, + { + Name: "Polygon", + ChainID: infura.Polygon, + RPC: "https://polygon-mainnet.infura.io/v3/" + *infuraToken, + ChainParameters: polygonParams, + SuggestionsConfig: polygonConfig, + LocalData: mustGetGasData(data_polygon.GetGasData), + }, + { + Name: "BNB Smart Chain", + ChainID: infura.BNB, + RPC: "https://bsc-mainnet.infura.io/v3/" + *infuraToken, + ChainParameters: bscParams, + SuggestionsConfig: bscConfig, + }, + { + Name: "Linea", + ChainID: infura.Linea, + RPC: "https://linea-mainnet.infura.io/v3/" + *infuraToken, + ChainParameters: lineaParams, + SuggestionsConfig: lineaConfig, + }, + { + Name: "Optimism Sepolia", + ChainID: infura.OptimismSepolia, + RPC: "https://optimism-sepolia.infura.io/v3/" + *infuraToken, + ChainParameters: optimismSepoliaParams, + SuggestionsConfig: optimismSepoliaConfig, + LocalData: mustGetGasData(data_optimismsepolia.GetGasData), + }, + { + Name: "Status Network Sepolia", + ChainID: 1660990954, + RPC: "https://public.sepolia.rpc.status.network", + ChainParameters: statusNetworkSepoliaParams, + SuggestionsConfig: statusNetworkSepoliaConfig, + }, + } + + // Test each network + for i, network := range networks { + fmt.Printf("\n%s %s (%d)\n", getNetworkEmoji(network.ChainID), network.Name, network.ChainID) + fmt.Println(strings.Repeat("-", 60)) + + var client GasDataClient + if *fake { + if network.LocalData == nil { + fmt.Printf("❌ No local data found for %s\n", network.Name) + continue + } + client = data.NewFakeClient(network.LocalData) + } else { + var err error + client, err = NewRealClient(network) + if err != nil { + fmt.Printf("❌ Error creating RPC client: %v\n", err) + continue + } + } + + err := compareNetwork(network, client) + if err != nil { + fmt.Printf("❌ Error testing %s: %v\n", network.Name, err) + continue + } + + // Add spacing between networks (except for the last one) + if i < len(networks)-1 { + fmt.Println() + } + } + + fmt.Println("\n" + strings.Repeat("=", 80)) + fmt.Println("✅ Multi-network comparison complete!") +} + +func displayComparison(current *gas.FeeSuggestions, oldFees *old.SuggestedFees, infura *infura.GasResponse, gasPrice *big.Int, gasTipCap *big.Int) { + fmt.Println("\n📋 COMPARISON RESULTS") + fmt.Println(strings.Repeat("=", 60)) + + oldFeesValid := oldFees != nil && oldFees.EIP1559Enabled + infuraFeesValid := infura != nil + + // Use wei values directly instead of converting to gwei + currentLowPriority := current.Low.MaxPriorityFeePerGas + currentLowMaxFee := current.Low.MaxFeePerGas + currentMediumPriority := current.Medium.MaxPriorityFeePerGas + currentMediumMaxFee := current.Medium.MaxFeePerGas + currentHighPriority := current.High.MaxPriorityFeePerGas + currentHighMaxFee := current.High.MaxFeePerGas + currentBaseFee := current.EstimatedBaseFee + + oldLowPriority := big.NewInt(0) + oldLowMaxFee := big.NewInt(0) + oldMediumPriority := big.NewInt(0) + oldMediumMaxFee := big.NewInt(0) + oldHighPriority := big.NewInt(0) + oldHighMaxFee := big.NewInt(0) + oldBaseFee := big.NewInt(0) + if oldFeesValid { + oldLowPriority = oldFees.MaxFeesLevels.LowPriority.ToInt() + oldLowMaxFee = oldFees.MaxFeesLevels.Low.ToInt() + oldMediumPriority = oldFees.MaxFeesLevels.MediumPriority.ToInt() + oldMediumMaxFee = oldFees.MaxFeesLevels.Medium.ToInt() + oldHighPriority = oldFees.MaxFeesLevels.HighPriority.ToInt() + oldHighMaxFee = oldFees.MaxFeesLevels.High.ToInt() + oldBaseFee = oldFees.CurrentBaseFee + } + + infuraLowPriority := big.NewInt(0) + infuraLowMaxFee := big.NewInt(0) + infuraMediumPriority := big.NewInt(0) + infuraMediumMaxFee := big.NewInt(0) + infuraHighPriority := big.NewInt(0) + infuraHighMaxFee := big.NewInt(0) + infuraBaseFee := big.NewInt(0) + if infuraFeesValid { + infuraLowPriority = stringToWei(infura.Low.SuggestedMaxPriorityFeePerGas) + infuraLowMaxFee = stringToWei(infura.Low.SuggestedMaxFeePerGas) + infuraMediumPriority = stringToWei(infura.Medium.SuggestedMaxPriorityFeePerGas) + infuraMediumMaxFee = stringToWei(infura.Medium.SuggestedMaxFeePerGas) + infuraHighPriority = stringToWei(infura.High.SuggestedMaxPriorityFeePerGas) + infuraHighMaxFee = stringToWei(infura.High.SuggestedMaxFeePerGas) + infuraBaseFee = stringToWei(infura.EstimatedBaseFee) + } + + fmt.Printf("\n") + fmt.Printf("📋 NODE SUGGESTIONS\n") + fmt.Printf("═══════════════════════════════════════════════════════════════════════════\n") + fmt.Printf(" Gas Price: %20s wei\n", gasPrice.String()) + fmt.Printf(" Gas Tip Cap: %20s wei\n", gasTipCap.String()) + fmt.Printf("═══════════════════════════════════════════════════════════════════════════\n") + fmt.Printf("\n") + + fmt.Printf("🔸 BASE FEE\n") + fmt.Printf(" Current Implementation: %20s wei\n", currentBaseFee.String()) + if oldFeesValid { + fmt.Printf(" Old Implementation: %20s wei\n", oldBaseFee.String()) + fmt.Printf(" Current vs Old: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentBaseFee, oldBaseFee).String(), + percentDiffWei(currentBaseFee, oldBaseFee)) + } + if infuraFeesValid { + fmt.Printf(" Infura: %20s wei\n", infuraBaseFee.String()) + fmt.Printf(" Current vs Infura: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentBaseFee, infuraBaseFee).String(), + percentDiffWei(currentBaseFee, infuraBaseFee)) + } + fmt.Printf("\n") + + fmt.Printf("🔸 LOW PRIORITY FEES\n") + fmt.Printf(" Current Implementation: %20s wei\n", currentLowPriority.String()) + if oldFeesValid { + fmt.Printf(" Old Implementation: %20s wei\n", oldLowPriority.String()) + fmt.Printf(" Current vs Old: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentLowPriority, oldLowPriority).String(), + percentDiffWei(currentLowPriority, oldLowPriority)) + } + if infuraFeesValid { + fmt.Printf(" Infura: %20s wei\n", infuraLowPriority.String()) + fmt.Printf(" Current vs Infura: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentLowPriority, infuraLowPriority).String(), + percentDiffWei(currentLowPriority, infuraLowPriority)) + } + fmt.Printf("\n") + + fmt.Printf("🔸 MEDIUM PRIORITY FEES\n") + fmt.Printf(" Current Implementation: %20s wei\n", currentMediumPriority.String()) + if oldFeesValid { + fmt.Printf(" Old Implementation: %20s wei\n", oldMediumPriority.String()) + fmt.Printf(" Current vs Old: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentMediumPriority, oldMediumPriority).String(), + percentDiffWei(currentMediumPriority, oldMediumPriority)) + } + if infuraFeesValid { + fmt.Printf(" Infura: %20s wei\n", infuraMediumPriority.String()) + fmt.Printf(" Current vs Infura: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentMediumPriority, infuraMediumPriority).String(), + percentDiffWei(currentMediumPriority, infuraMediumPriority)) + } + fmt.Printf("\n") + + fmt.Printf("🔸 HIGH PRIORITY FEES\n") + fmt.Printf(" Current Implementation: %20s wei\n", currentHighPriority.String()) + if oldFeesValid { + fmt.Printf(" Old Implementation: %20s wei\n", oldHighPriority.String()) + fmt.Printf(" Current vs Old: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentHighPriority, oldHighPriority).String(), + percentDiffWei(currentHighPriority, oldHighPriority)) + } + if infuraFeesValid { + fmt.Printf(" Infura: %20s wei\n", infuraHighPriority.String()) + fmt.Printf(" Current vs Infura: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentHighPriority, infuraHighPriority).String(), + percentDiffWei(currentHighPriority, infuraHighPriority)) + } + fmt.Printf("\n") + + fmt.Printf("🔸 LOW MAX FEES\n") + fmt.Printf(" Current Implementation: %20s wei\n", currentLowMaxFee.String()) + if oldFeesValid { + fmt.Printf(" Old Implementation: %20s wei\n", oldLowMaxFee.String()) + fmt.Printf(" Current vs Old: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentLowMaxFee, oldLowMaxFee).String(), + percentDiffWei(currentLowMaxFee, oldLowMaxFee)) + } + if infuraFeesValid { + fmt.Printf(" Infura: %20s wei\n", infuraLowMaxFee.String()) + fmt.Printf(" Current vs Infura: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentLowMaxFee, infuraLowMaxFee).String(), + percentDiffWei(currentLowMaxFee, infuraLowMaxFee)) + } + fmt.Printf("\n") + + fmt.Printf("🔸 MEDIUM MAX FEES\n") + fmt.Printf(" Current Implementation: %20s wei\n", currentMediumMaxFee.String()) + if oldFeesValid { + fmt.Printf(" Old Implementation: %20s wei\n", oldMediumMaxFee.String()) + fmt.Printf(" Current vs Old: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentMediumMaxFee, oldMediumMaxFee).String(), + percentDiffWei(currentMediumMaxFee, oldMediumMaxFee)) + } + if infuraFeesValid { + fmt.Printf(" Infura: %20s wei\n", infuraMediumMaxFee.String()) + fmt.Printf(" Current vs Infura: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentMediumMaxFee, infuraMediumMaxFee).String(), + percentDiffWei(currentMediumMaxFee, infuraMediumMaxFee)) + } + fmt.Printf("\n") + + fmt.Printf("🔸 HIGH MAX FEES\n") + fmt.Printf(" Current Implementation: %20s wei\n", currentHighMaxFee.String()) + if oldFeesValid { + fmt.Printf(" Old Implementation: %20s wei\n", oldHighMaxFee.String()) + fmt.Printf(" Current vs Old: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentHighMaxFee, oldHighMaxFee).String(), + percentDiffWei(currentHighMaxFee, oldHighMaxFee)) + } + if infuraFeesValid { + fmt.Printf(" Infura: %20s wei\n", infuraHighMaxFee.String()) + fmt.Printf(" Current vs Infura: %+20s wei (%+.1f%%)\n", + new(big.Int).Sub(currentHighMaxFee, infuraHighMaxFee).String(), + percentDiffWei(currentHighMaxFee, infuraHighMaxFee)) + } + fmt.Printf("\n") + + fmt.Printf("🔸 LOW WAIT TIME\n") + fmt.Printf(" Wait Time (Current): %.1f-%.1f seconds\n", + current.LowInclusion.MinTimeUntilInclusion, current.LowInclusion.MaxTimeUntilInclusion) + if oldFeesValid { + fmt.Printf(" Wait Time (Old): %d seconds\n", oldFees.MaxFeesLevels.LowEstimatedTime) + } + if infuraFeesValid { + fmt.Printf(" Wait Time (Infura): %.1f-%.1f seconds\n", + float64(infura.Low.MinWaitTimeEstimate)/1000, float64(infura.Low.MaxWaitTimeEstimate)/1000) + } + fmt.Printf("\n") + + fmt.Printf("🔸 MEDIUM WAIT TIME\n") + fmt.Printf(" Wait Time (Current): %.1f-%.1f seconds\n", + current.MediumInclusion.MinTimeUntilInclusion, current.MediumInclusion.MaxTimeUntilInclusion) + if oldFeesValid { + fmt.Printf(" Wait Time (Old): %d seconds\n", oldFees.MaxFeesLevels.MediumEstimatedTime) + } + if infuraFeesValid { + fmt.Printf(" Wait Time (Infura): %.1f-%.1f seconds\n", + float64(infura.Medium.MinWaitTimeEstimate)/1000, float64(infura.Medium.MaxWaitTimeEstimate)/1000) + } + fmt.Printf("\n") + + fmt.Printf("🔸 HIGH WAIT TIME\n") + fmt.Printf(" Wait Time (Current): %.1f-%.1f seconds\n", + current.HighInclusion.MinTimeUntilInclusion, current.HighInclusion.MaxTimeUntilInclusion) + if oldFeesValid { + fmt.Printf(" Wait Time (Old): %d seconds\n", oldFees.MaxFeesLevels.HighEstimatedTime) + } + if infuraFeesValid { + fmt.Printf(" Wait Time (Infura): %.1f-%.1f seconds\n", + float64(infura.High.MinWaitTimeEstimate)/1000, float64(infura.High.MaxWaitTimeEstimate)/1000) + } + fmt.Printf("\n") + + fmt.Printf("🔸 NETWORK CONGESTION\n") + fmt.Printf(" Current Implementation: %.3f\n", current.NetworkCongestion) + if infuraFeesValid { + fmt.Printf(" Infura: %.3f\n", infura.NetworkCongestion) + fmt.Printf(" Difference: %+.3f\n", current.NetworkCongestion-infura.NetworkCongestion) + } + fmt.Printf("\n") +} + +func hexToWei(hexStr string) *big.Int { + if hexStr == "" || hexStr == "0x0" { + return big.NewInt(0) + } + + wei, err := hexutil.DecodeBig(hexStr) + if err != nil { + return big.NewInt(0) + } + + return wei +} + +func stringToWei(str string) *big.Int { + if str == "" { + return big.NewInt(0) + } + + // Try parsing as decimal first (Infura format) + if val, err := strconv.ParseFloat(str, 64); err == nil { + // Convert from gwei to wei if it's a small number (likely gwei) + if val < 1000 { + val = val * 1e9 // Convert gwei to wei + } + return big.NewInt(int64(val)) + } + + // Fall back to hex parsing + return hexToWei(str) +} + +func percentDiffWei(a, b *big.Int) float64 { + if b.Sign() == 0 { + return 0 + } + + // Convert to float64 for percentage calculation + aFloat := new(big.Float).SetInt(a) + bFloat := new(big.Float).SetInt(b) + + diff := new(big.Float).Sub(aFloat, bFloat) + percent := new(big.Float).Quo(diff, bFloat) + percent.Mul(percent, big.NewFloat(100)) + + result, _ := percent.Float64() + return result +} + +// compareNetwork compares gas fees for a specific network +func compareNetwork(network NetworkInfo, client GasDataClient) error { + ctx, cancel := context.WithTimeout(context.Background(), 45*time.Second) + defer cancel() + + gasPrice, err := client.SuggestGasPrice(ctx) + if err != nil { + return fmt.Errorf("failed to get gas price: %w", err) + } + + gasTipCap, err := client.SuggestGasTipCap(ctx) + if err != nil { + return fmt.Errorf("failed to get gas tip cap: %w", err) + } + + // Create a simple 0-valued ETH transfer call message for testing + callMsg := ðereum.CallMsg{ + From: common.HexToAddress("0xd8da6bf26964af9d7eed9e03e53415d37aa96045"), // vitalik.eth + To: &common.Address{}, // Zero address for ETH transfer + Data: []byte{}, // No data for simple ETH transfer + Value: big.NewInt(0), // 0 ETH value + } + + // Get our suggestions using GetTxSuggestions + fmt.Printf("📊 Fetching our gas suggestions for %s...\n", network.Name) + txSuggestions, err := gas.GetTxSuggestions(ctx, client, network.ChainParameters, network.SuggestionsConfig, callMsg) + if err != nil { + return fmt.Errorf("failed to get our suggestions: %w", err) + } + + // Get old estimator suggestions + fmt.Printf("📊 Fetching old estimator suggestions for %s...\n", network.Name) + oldFeeManager := old.NewFeeManager(client) + oldSuggestions, _, _, err := oldFeeManager.SuggestedFees(ctx, uint64(network.ChainID), old.ZeroAddress()) + if err != nil { + fmt.Printf("⚠️ Old estimator not available for %s: %v\n", network.Name, err) + oldSuggestions = nil + } + + // Get Infura's suggestions for this network + fmt.Printf("📊 Fetching Infura's gas suggestions for %s...\n", network.Name) + infuraSuggestions, err := client.GetGasSuggestions(ctx, network.ChainID) + if err != nil { + fmt.Printf("⚠️ Infura API not available for %s: %v\n", network.Name, err) + } + + if infuraSuggestions == nil && oldSuggestions == nil { + fmt.Printf("📊 Showing only our implementation results:\n") + displayOurSuggestions(txSuggestions.FeeSuggestions, gasPrice, gasTipCap) + } else { + // Display comparison + fmt.Printf("📊 Showing our implementation vs old implementation:\n") + displayComparison(txSuggestions.FeeSuggestions, oldSuggestions, infuraSuggestions, gasPrice, gasTipCap) + } + + return nil +} + +// displayOurSuggestions displays only our suggestions when Infura is not available +func displayOurSuggestions(suggestions *gas.FeeSuggestions, gasPrice *big.Int, gasTipCap *big.Int) { + ourLow := suggestions.Low.MaxPriorityFeePerGas + ourMedium := suggestions.Medium.MaxPriorityFeePerGas + ourHigh := suggestions.High.MaxPriorityFeePerGas + ourBaseFee := suggestions.EstimatedBaseFee + + // Use wei values directly for max fees + ourLowMaxFee := suggestions.Low.MaxFeePerGas + ourMediumMaxFee := suggestions.Medium.MaxFeePerGas + ourHighMaxFee := suggestions.High.MaxFeePerGas + + fmt.Printf("📋 NODE SUGGESTIONS\n") + fmt.Printf("═══════════════════════════════════════════════════════════════════════════\n") + fmt.Printf("Gas Price: %20s wei\n", gasPrice.String()) + fmt.Printf("Gas Tip Cap: %20s wei\n", gasTipCap.String()) + fmt.Printf("═══════════════════════════════════════════════════════════════════════════\n") + + fmt.Printf("📋 OUR IMPLEMENTATION RESULTS\n") + + // Priority Fee Table + fmt.Printf("\n🔸 PRIORITY FEES (wei)\n") + fmt.Printf("═══════════════════════════════════════════════════════════════════════════\n") + fmt.Printf("Priority Level │ Fee (wei) │ Competitiveness │ Fee Category\n") + fmt.Printf("───────────────┼─────────────────────┼─────────────────┼──────────────────\n") + fmt.Printf("Low │ %20s │ %15s │ %s\n", ourLow.String(), getFeeCompetitivenessWei(ourLow), getFeeCategoryEmojiWei(ourLow)) + fmt.Printf("Medium │ %20s │ %15s │ %s\n", ourMedium.String(), getFeeCompetitivenessWei(ourMedium), getFeeCategoryEmojiWei(ourMedium)) + fmt.Printf("High │ %20s │ %15s │ %s\n", ourHigh.String(), getFeeCompetitivenessWei(ourHigh), getFeeCategoryEmojiWei(ourHigh)) + fmt.Printf("═══════════════════════════════════════════════════════════════════════════\n") + + // Max Fee Table + fmt.Printf("\n🔸 MAX FEES (wei)\n") + fmt.Printf("═══════════════════════════════════════════════════════════════════════════\n") + fmt.Printf("Priority Level │ Max Fee │ Priority Fee │ Base Fee │ Fee Breakdown\n") + fmt.Printf("───────────────┼─────────────────────┼─────────────────┼───────────────┼──────────────────\n") + fmt.Printf("Low │ %20s │ %15s │ %13s │ %s + %s\n", + ourLowMaxFee.String(), ourLow.String(), ourBaseFee.String(), ourLow.String(), new(big.Int).Sub(ourLowMaxFee, ourLow).String()) + fmt.Printf("Medium │ %20s │ %15s │ %13s │ %s + %s\n", + ourMediumMaxFee.String(), ourMedium.String(), ourBaseFee.String(), ourMedium.String(), new(big.Int).Sub(ourMediumMaxFee, ourMedium).String()) + fmt.Printf("High │ %20s │ %15s │ %13s │ %s + %s\n", + ourHighMaxFee.String(), ourHigh.String(), ourBaseFee.String(), ourHigh.String(), new(big.Int).Sub(ourHighMaxFee, ourHigh).String()) + fmt.Printf("═══════════════════════════════════════════════════════════════════════════\n") + + // Wait Time Table + fmt.Printf("\n🔸 WAIT TIME ESTIMATES (seconds)\n") + fmt.Printf("═══════════════════════════════════════════════════════════════════════════\n") + fmt.Printf("Priority Level │ Min Time │ Max Time │ Average │ Time Category\n") + fmt.Printf("───────────────┼──────────┼──────────┼─────────┼──────────────────\n") + fmt.Printf("Low │ %8.0f │ %8.0f │ %7.1f │ %s\n", + suggestions.LowInclusion.MinTimeUntilInclusion, suggestions.LowInclusion.MaxTimeUntilInclusion, + (suggestions.LowInclusion.MinTimeUntilInclusion+suggestions.LowInclusion.MaxTimeUntilInclusion)/2, + getTimeCategory(int(suggestions.LowInclusion.MinTimeUntilInclusion), int(suggestions.LowInclusion.MaxTimeUntilInclusion))) + fmt.Printf("Medium │ %8.0f │ %8.0f │ %7.1f │ %s\n", + suggestions.MediumInclusion.MinTimeUntilInclusion, suggestions.MediumInclusion.MaxTimeUntilInclusion, + (suggestions.MediumInclusion.MinTimeUntilInclusion+suggestions.MediumInclusion.MaxTimeUntilInclusion)/2, + getTimeCategory(int(suggestions.MediumInclusion.MinTimeUntilInclusion), int(suggestions.MediumInclusion.MaxTimeUntilInclusion))) + fmt.Printf("High │ %8.0f │ %8.0f │ %7.1f │ %s\n", + suggestions.HighInclusion.MinTimeUntilInclusion, suggestions.HighInclusion.MaxTimeUntilInclusion, + (suggestions.HighInclusion.MinTimeUntilInclusion+suggestions.HighInclusion.MaxTimeUntilInclusion)/2, + getTimeCategory(int(suggestions.HighInclusion.MinTimeUntilInclusion), int(suggestions.HighInclusion.MaxTimeUntilInclusion))) + fmt.Printf("═══════════════════════════════════════════════════════════════════════════\n") + + fmt.Printf("\n🔸 Base Fee: %20s wei\n", ourBaseFee.String()) + fmt.Printf("🔸 Network Congestion: %.1f%%\n", suggestions.NetworkCongestion*100) +} + +// Update helper functions to work with wei values +func getFeeCompetitivenessWei(feeWei *big.Int) string { + // Convert wei to gwei for comparison (1 gwei = 1e9 wei) + feeGwei := new(big.Float).Quo(new(big.Float).SetInt(feeWei), big.NewFloat(1e9)) + feeFloat, _ := feeGwei.Float64() + + if feeFloat >= 5.0 { + return "Very High" + } else if feeFloat >= 3.0 { + return "High" + } else if feeFloat >= 1.5 { + return "Medium" + } else if feeFloat >= 0.5 { + return "Low" + } else { + return "Very Low" + } +} + +func getFeeCategoryEmojiWei(feeWei *big.Int) string { + // Convert wei to gwei for comparison (1 gwei = 1e9 wei) + feeGwei := new(big.Float).Quo(new(big.Float).SetInt(feeWei), big.NewFloat(1e9)) + feeFloat, _ := feeGwei.Float64() + + if feeFloat >= 5.0 { + return "🚀 Premium" + } else if feeFloat >= 3.0 { + return "⚡ Fast" + } else if feeFloat >= 1.5 { + return "🟢 Standard" + } else if feeFloat >= 0.5 { + return "🟡 Economy" + } else { + return "🟠 Slow" + } +} + +// getNetworkEmoji returns an emoji for the network +func getNetworkEmoji(chainID int) string { + switch chainID { + case infura.Ethereum: + return "🔷" // Ethereum blue diamond + case infura.ArbitrumOne: + return "🔵" // Arbitrum blue circle + case infura.Optimism: + return "🔴" // Optimism red circle + case infura.Polygon: + return "🟣" // Polygon purple circle + case infura.Base: + return "🔵" // Base blue circle + default: + return "⚪" // Default white circle + } +} + +// getStatusEmoji returns a status emoji based on percentage difference +func getStatusEmoji(percentDiff float64) string { + absDiff := percentDiff + if absDiff < 0 { + absDiff = -absDiff + } + + if absDiff <= 5 { + return "✅ Excellent" + } else if absDiff <= 15 { + return "🟢 Good" + } else if absDiff <= 30 { + return "🟡 Fair" + } else if absDiff <= 50 { + return "🟠 Poor" + } else { + return "🔴 Very Different" + } +} + +// getTimeComparisonStatus returns a comparison status for wait times +func getTimeComparisonStatus(ourMin, ourMax, infuraMin, infuraMax int) string { + infuraMinSec := float64(infuraMin) / 1000 + infuraMaxSec := float64(infuraMax) / 1000 + + // Check if our ranges overlap with Infura's ranges + ourMinFloat := float64(ourMin) + ourMaxFloat := float64(ourMax) + + // Calculate overlap + overlapMin := ourMinFloat + if infuraMinSec > overlapMin { + overlapMin = infuraMinSec + } + + overlapMax := ourMaxFloat + if infuraMaxSec < overlapMax { + overlapMax = infuraMaxSec + } + + if overlapMax > overlapMin { + // There's overlap + overlapPercent := (overlapMax - overlapMin) / ((ourMaxFloat - ourMinFloat + infuraMaxSec - infuraMinSec) / 2) * 100 + if overlapPercent > 80 { + return "✅ Very Similar" + } else if overlapPercent > 50 { + return "🟢 Similar" + } else { + return "🟡 Some Overlap" + } + } else { + // No overlap + if ourMaxFloat < infuraMinSec { + return "🔵 Ours Faster" + } else { + return "🔴 Ours Slower" + } + } +} + +// getTimeCategory returns a category description for wait times +func getTimeCategory(minTime, maxTime int) string { + avgTime := (minTime + maxTime) / 2 + + if avgTime <= 15 { + return "⚡ Instant" + } else if avgTime <= 60 { + return "🟢 Fast" + } else if avgTime <= 180 { + return "🟡 Moderate" + } else if avgTime <= 300 { + return "🟠 Slow" + } else { + return "🔴 Very Slow" + } +} diff --git a/examples/gas-comparison/old/common.go b/examples/gas-comparison/old/common.go new file mode 100644 index 0000000..8600df7 --- /dev/null +++ b/examples/gas-comparison/old/common.go @@ -0,0 +1,108 @@ +package old + +import ( + "fmt" + "math/big" + "time" + + ethereum "github.com/ethereum/go-ethereum" + ethCommon "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/common/hexutil" + gethParams "github.com/ethereum/go-ethereum/params" +) + +const ( + UnknownChainID uint64 = 0 + EthereumMainnet uint64 = 1 + EthereumSepolia uint64 = 11155111 + OptimismMainnet uint64 = 10 + OptimismSepolia uint64 = 11155420 + ArbitrumMainnet uint64 = 42161 + ArbitrumSepolia uint64 = 421614 + BSCMainnet uint64 = 56 + BSCTestnet uint64 = 97 + AnvilMainnet uint64 = 31337 + BaseMainnet uint64 = 8453 + BaseSepolia uint64 = 84532 + StatusNetworkSepolia uint64 = 1660990954 + TestnetChainID uint64 = 777333 +) + +var AverageBlockDurationForChain = map[uint64]time.Duration{ + UnknownChainID: time.Duration(12000) * time.Millisecond, + EthereumMainnet: time.Duration(12000) * time.Millisecond, + OptimismMainnet: time.Duration(2000) * time.Millisecond, + ArbitrumMainnet: time.Duration(250) * time.Millisecond, + BaseMainnet: time.Duration(2000) * time.Millisecond, + BSCMainnet: time.Duration(3000) * time.Millisecond, + StatusNetworkSepolia: time.Duration(2000) * time.Millisecond, +} + +func GweiToEth(val *big.Float) *big.Float { + return new(big.Float).Quo(val, big.NewFloat(1000000000)) +} + +func WeiToGwei(val *big.Int) *big.Float { + result := new(big.Float) + result.SetInt(val) + + unit := new(big.Int) + unit.SetInt64(gethParams.GWei) + + return result.Quo(result, new(big.Float).SetInt(unit)) +} + +func GetBlockCreationTimeForChain(chainID uint64) time.Duration { + blockDuration, found := AverageBlockDurationForChain[chainID] + if !found { + blockDuration = AverageBlockDurationForChain[UnknownChainID] + } + return blockDuration +} + +// Special functions to hardcode the nature of some special chains (eg. Status Network), where we cannot deduce EIP-1559 compatibility in a generic way + +// IsPartiallyOrFullyGaslessChain returns true if the chain is fully or partially (no base or no priority fee) gasless +func IsPartiallyOrFullyGaslessChain(chainID uint64) bool { + return chainID == StatusNetworkSepolia +} + +// IsPartiallyOrFullyGaslessChainEIP1559Compatible throws an error if the chain is not partially or fully gasless, if it is, returns true if the chain is EIP-1559 compatible +func IsPartiallyOrFullyGaslessChainEIP1559Compatible(chainID uint64) (bool, error) { + if !IsPartiallyOrFullyGaslessChain(chainID) { + return false, fmt.Errorf("chain %d is not supposed to be gasless", chainID) // for non-gasless chains, we should not use this function + } + return chainID == StatusNetworkSepolia, nil +} + +func ZeroAddress() ethCommon.Address { + return ethCommon.Address{} +} + +func ZeroBigIntValue() *big.Int { + return big.NewInt(0) +} + +func ZeroHash() ethCommon.Hash { + return ethCommon.Hash{} +} + +func ToCallArg(msg ethereum.CallMsg) interface{} { + arg := map[string]interface{}{ + "from": msg.From, + "to": msg.To, + } + if len(msg.Data) > 0 { + arg["data"] = hexutil.Bytes(msg.Data) + } + if msg.Value != nil { + arg["value"] = (*hexutil.Big)(msg.Value) + } + if msg.Gas != 0 { + arg["gas"] = hexutil.Uint64(msg.Gas) + } + if msg.GasPrice != nil { + arg["gasPrice"] = (*hexutil.Big)(msg.GasPrice) + } + return arg +} diff --git a/examples/gas-comparison/old/estimated_time.go b/examples/gas-comparison/old/estimated_time.go new file mode 100644 index 0000000..c8c236e --- /dev/null +++ b/examples/gas-comparison/old/estimated_time.go @@ -0,0 +1,270 @@ +package old + +import ( + "context" + "math" + "math/big" + "sort" + + ethereum "github.com/ethereum/go-ethereum" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" +) + +const ( + inclusionThreshold = 0.95 + + priorityFeePercentileHigh = 0.3 + priorityFeePercentileMedium = 0.2 + priorityFeePercentileLow = 0.1 + + baseFeePercentileFirstBlock = 0.55 + baseFeePercentileSecondBlock = 0.45 + baseFeePercentileThirdBlock = 0.35 + baseFeePercentileFourthBlock = 0.3 + baseFeePercentileFifthBlock = 0.2 + baseFeePercentileSixthBlock = 0.1 +) + +type TransactionEstimation int + +const ( + Unknown TransactionEstimation = iota + LessThanOneMinute + LessThanThreeMinutes + LessThanFiveMinutes + MoreThanFiveMinutes +) + +func (f *FeeManager) TransactionEstimatedTime(ctx context.Context, chainID uint64, maxFeePerGas *big.Int) TransactionEstimation { + feeHistory, err := f.getFeeHistory(ctx, chainID, nil, nil) + if err != nil { + return Unknown + } + + return f.estimatedTime(feeHistory, maxFeePerGas) +} + +func (f *FeeManager) estimatedTime(feeHistory *ethereum.FeeHistory, maxFeePerGas *big.Int) TransactionEstimation { + fees := sortBigIntSlice(feeHistory.BaseFee) + if len(fees) == 0 { + return Unknown + } + + // pEvent represents the probability of the transaction being included in a block, + // we assume this one is static over time, in reality it is not. + pEvent := 0.0 + for idx, fee := range fees { + if fee.Cmp(maxFeePerGas) == 1 || idx == len(fees)-1 { + pEvent = float64(idx) / float64(len(fees)) + break + } + } + + // Probability of next 4 blocks including the transaction (less than 1 minute) + // Generalising the formula: P(AUB) = P(A) + P(B) - P(A∩B) for 4 events and in our context P(A) == P(B) == pEvent + // The factors are calculated using the combinations formula + probability := pEvent*4 - 6*(math.Pow(pEvent, 2)) + 4*(math.Pow(pEvent, 3)) - (math.Pow(pEvent, 4)) + if probability >= inclusionThreshold { + return LessThanOneMinute + } + + // Probability of next 12 blocks including the transaction (less than 5 minutes) + // Generalising the formula: P(AUB) = P(A) + P(B) - P(A∩B) for 20 events and in our context P(A) == P(B) == pEvent + // The factors are calculated using the combinations formula + probability = pEvent*12 - + 66*(math.Pow(pEvent, 2)) + + 220*(math.Pow(pEvent, 3)) - + 495*(math.Pow(pEvent, 4)) + + 792*(math.Pow(pEvent, 5)) - + 924*(math.Pow(pEvent, 6)) + + 792*(math.Pow(pEvent, 7)) - + 495*(math.Pow(pEvent, 8)) + + 220*(math.Pow(pEvent, 9)) - + 66*(math.Pow(pEvent, 10)) + + 12*(math.Pow(pEvent, 11)) - + math.Pow(pEvent, 12) + if probability >= inclusionThreshold { + return LessThanThreeMinutes + } + + // Probability of next 20 blocks including the transaction (less than 5 minutes) + // Generalising the formula: P(AUB) = P(A) + P(B) - P(A∩B) for 20 events and in our context P(A) == P(B) == pEvent + // The factors are calculated using the combinations formula + probability = pEvent*20 - + 190*(math.Pow(pEvent, 2)) + + 1140*(math.Pow(pEvent, 3)) - + 4845*(math.Pow(pEvent, 4)) + + 15504*(math.Pow(pEvent, 5)) - + 38760*(math.Pow(pEvent, 6)) + + 77520*(math.Pow(pEvent, 7)) - + 125970*(math.Pow(pEvent, 8)) + + 167960*(math.Pow(pEvent, 9)) - + 184756*(math.Pow(pEvent, 10)) + + 167960*(math.Pow(pEvent, 11)) - + 125970*(math.Pow(pEvent, 12)) + + 77520*(math.Pow(pEvent, 13)) - + 38760*(math.Pow(pEvent, 14)) + + 15504*(math.Pow(pEvent, 15)) - + 4845*(math.Pow(pEvent, 16)) + + 1140*(math.Pow(pEvent, 17)) - + 190*(math.Pow(pEvent, 18)) + + 20*(math.Pow(pEvent, 19)) - + math.Pow(pEvent, 20) + if probability >= inclusionThreshold { + return LessThanFiveMinutes + } + + return MoreThanFiveMinutes +} + +func sortBigIntSlice(values []*big.Int) []*big.Int { + sort.Slice(values, func(i, j int) bool { return values[i].Cmp(values[j]) < 0 }) + return values +} + +func removeDuplicatesFromSortedArray(array []*big.Int) []*big.Int { + if len(array) == 0 { + return array + } + + uniqueArray := []*big.Int{array[0]} + for i := 1; i < len(array); i++ { + if array[i].Cmp(array[i-1]) != 0 { + uniqueArray = append(uniqueArray, array[i]) + } + } + return uniqueArray +} + +func calculateTimeForInclusion(chainID uint64, expectedInclusionInBlock int) uint { + blockCreationTime := GetBlockCreationTimeForChain(chainID) + blockCreationTimeInSeconds := uint(blockCreationTime.Seconds()) + + // the client will decide how to display estimated times, status-go sends it in the steps of 5 (for example the client + // should display "more than 1 minute" if the expected inclusion time is 60 seconds or more. + expectedInclusionTime := uint(expectedInclusionInBlock) * blockCreationTimeInSeconds + return (expectedInclusionTime/5 + 1) * 5 +} + +func getBaseFeePercentileIndex(sortedBaseFees []*big.Int, percentile float64, networkCongestion float64) int { + // calculate the index of the base fee for the given percentile corrected by the network congestion + index := int(float64(len(sortedBaseFees)) * percentile * networkCongestion) + if index >= len(sortedBaseFees) { + return len(sortedBaseFees) - 1 + } + return index +} + +// TransactionEstimatedTimeV2 returns the estimated time in seconds for a transaction to be included in a block +func (f *FeeManager) TransactionEstimatedTimeV2(ctx context.Context, chainID uint64, maxFeePerGas *big.Int, priorityFee *big.Int) uint { + feeHistory, err := f.getFeeHistory(ctx, chainID, nil, []float64{RewardPercentiles2}) + if err != nil { + return 0 + } + + return estimatedTimeV2(feeHistory, maxFeePerGas, priorityFee, chainID, 0) +} + +func estimatedTimeV2(feeHistory *ethereum.FeeHistory, txMaxFeePerGas *big.Int, txPriorityFee *big.Int, chainID uint64, rewardIndex int) uint { + sortedBaseFees := sortBigIntSlice(feeHistory.BaseFee) + if len(sortedBaseFees) == 0 { + return 0 + } + uniqueBaseFees := removeDuplicatesFromSortedArray(sortedBaseFees) + + var mediumPriorityFees []*big.Int // based on 50th percentile in the last 100 blocks + for _, fee := range feeHistory.Reward { + mediumPriorityFees = append(mediumPriorityFees, fee[rewardIndex]) + } + mediumPriorityFeesSorted := sortBigIntSlice(mediumPriorityFees) + if len(mediumPriorityFeesSorted) == 0 { + return 0 + } + uniqueMediumPriorityFees := removeDuplicatesFromSortedArray(mediumPriorityFeesSorted) + + txBaseFee := new(big.Int).Sub(txMaxFeePerGas, txPriorityFee) + + return estimateV2(txBaseFee, txPriorityFee, uniqueBaseFees, uniqueMediumPriorityFees, chainID) +} + +func (f *FeeManager) TransactionEstimatedTimeV2Legacy(ctx context.Context, chainID uint64, gasPrice *big.Int) uint { + latestBlockNum, err := f.ethClient.BlockNumber(ctx) + if err != nil { + return 0 + } + + gasPrices := []*big.Int{} + for i := uint64(0); i < uint64(blocksToCheck); i++ { + blockNum := big.NewInt(0).SetUint64(latestBlockNum - i) + block, err := f.ethClient.BlockByNumber(ctx, blockNum) + if err != nil { + return 0 + } + if block == nil { + continue + } + for _, tx := range block.Transactions { + // Accept all transactions with a GasPrice (legacy or access list) + if tx.Type != nil && (*tx.Type != ethclient.LegacyTxType && *tx.Type != ethclient.AccessListTxType) { + continue + } + if tx.GasPrice != nil { + gasPrices = append(gasPrices, tx.GasPrice) + } + } + } + + sort.Slice(gasPrices, func(i, j int) bool { return gasPrices[i].Cmp(gasPrices[j]) < 0 }) + + uniqueGasPrices := removeDuplicatesFromSortedArray(gasPrices) + + return estimateV2(gasPrice, nil, uniqueGasPrices, nil, chainID) +} + +func estimateV2(txBaseFee *big.Int, txPriorityFee *big.Int, uniqueBaseFees []*big.Int, uniqueMediumPriorityFees []*big.Int, chainID uint64) uint { + // results are not good if we include the network congestion, cause we reduced the number of blocks we are looking at + // and also removed duplicates from the arrays, thus for now we will ignore it and use `1.0` for the network congestion + networkCongestion := 1.0 // calculateNetworkCongestion(feeHistory) + + priorityFeeForFirstTwoBlock := new(big.Int) + priorityFeeForSecondTwoBlocks := new(big.Int) + priorityFeeForThirdTwoBlocks := new(big.Int) + if len(uniqueMediumPriorityFees) > 0 { + // Priority fee for the first two blocks has to be higher than 60th percentile of the mediumPriorityFeesSorted + priorityFeePercentileIndex := int(float64(len(uniqueMediumPriorityFees)) * priorityFeePercentileHigh) + priorityFeeForFirstTwoBlock = uniqueMediumPriorityFees[priorityFeePercentileIndex] + + // Priority fee for the second two blocks has to be higher than 50th percentile of the mediumPriorityFeesSorted + priorityFeePercentileIndex = int(float64(len(uniqueMediumPriorityFees)) * priorityFeePercentileMedium) + priorityFeeForSecondTwoBlocks = uniqueMediumPriorityFees[priorityFeePercentileIndex] + // Priority fee for the third two blocks has to be higher than 40th percentile of the mediumPriorityFeesSorted + priorityFeePercentileIndex = int(float64(len(uniqueMediumPriorityFees)) * priorityFeePercentileLow) + priorityFeeForThirdTwoBlocks = uniqueMediumPriorityFees[priorityFeePercentileIndex] + } + + // To include the transaction in the block `inclusionInBlock` its base fee has to be in a higher than `baseFeePercentile` + // and its priority fee has to be higher than the `priorityFee` + inclusions := []struct { + inclusionInBlock int + baseFeePercentile float64 + priorityFee *big.Int + }{ + {1, baseFeePercentileFirstBlock, priorityFeeForFirstTwoBlock}, + {2, baseFeePercentileSecondBlock, priorityFeeForFirstTwoBlock}, + {3, baseFeePercentileThirdBlock, priorityFeeForSecondTwoBlocks}, + {4, baseFeePercentileFourthBlock, priorityFeeForSecondTwoBlocks}, + {5, baseFeePercentileFifthBlock, priorityFeeForThirdTwoBlocks}, + {6, baseFeePercentileSixthBlock, priorityFeeForThirdTwoBlocks}, + } + + // check priority fee for L1 chains only + checkPriorityFee := chainID == EthereumMainnet || chainID == EthereumSepolia || chainID == AnvilMainnet + for _, p := range inclusions { + baseFeePercentileIndex := getBaseFeePercentileIndex(uniqueBaseFees, p.baseFeePercentile, networkCongestion) + if txBaseFee.Cmp(uniqueBaseFees[baseFeePercentileIndex]) >= 0 && (!checkPriorityFee || txPriorityFee.Cmp(p.priorityFee) >= 0) { + return calculateTimeForInclusion(chainID, p.inclusionInBlock) + } + } + + return calculateTimeForInclusion(chainID, 10) +} diff --git a/examples/gas-comparison/old/fees.go b/examples/gas-comparison/old/fees.go new file mode 100644 index 0000000..330dd58 --- /dev/null +++ b/examples/gas-comparison/old/fees.go @@ -0,0 +1,199 @@ +package old + +import ( + "context" + "errors" + "fmt" + "math/big" + + eth "github.com/ethereum/go-ethereum" + ethereum "github.com/ethereum/go-ethereum" + ethCommon "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" +) + +const ( + RewardPercentiles1 = 10.0 + RewardPercentiles2 = 45.0 + RewardPercentiles3 = 90.0 +) + +type GasFeeMode int + +const ( + GasFeeLow GasFeeMode = iota + GasFeeMedium + GasFeeHigh + GasFeeCustom +) + +var ( + ErrCustomFeeModeNotAvailableInSuggestedFees = errors.New("custom fee mode is not available in suggested fees") + ErrEIP1559IncompaibleChain = errors.New("EIP-1559 is not supported on this chain") + ErrInvalidRewardData = errors.New("invalid reward data") +) + +// NonEIP1559Fees represents the fees for non EIP-1559 compatible chains +type NonEIP1559Fees struct { + GasPrice *hexutil.Big `json:"gasPrice"` // Gas price for the transaction used for non EIP-1559 compatible chains (in base unit of the chain eg. WEI for ETH or BNB) + EstimatedTime uint `json:"estimatedTime"` // Estimated time for the transaction in seconds, used for non EIP-1559 compatible chains +} + +// MaxFeesLevels represents the max fees levels for low, medium and high fee modes and should be used for EIP-1559 compatible chains +type MaxFeesLevels struct { + Low *hexutil.Big `json:"low"` // Low max fee per gas in WEI + LowPriority *hexutil.Big `json:"lowPriority"` // Low priority fee in WEI + LowEstimatedTime uint `json:"lowEstimatedTime"` // Estimated time for low fees in seconds + Medium *hexutil.Big `json:"medium"` // Medium max fee per gas in WEI + MediumPriority *hexutil.Big `json:"mediumPriority"` // Medium priority fee in WEI + MediumEstimatedTime uint `json:"mediumEstimatedTime"` // Estimated time for medium fees in seconds + High *hexutil.Big `json:"high"` // High max fee per gas in WEI + HighPriority *hexutil.Big `json:"highPriority"` // High priority fee in WEI + HighEstimatedTime uint `json:"highEstimatedTime"` // Estimated time for high fees in seconds +} + +type MaxPriorityFeesSuggestedBounds struct { + Lower *big.Int // Lower bound for priority fee per gas in WEI + Upper *big.Int // Upper bound for priority fee per gas in WEI +} + +type SuggestedFees struct { + // Fields that need to be removed once clients stop using them + GasPrice *big.Int // TODO: remove once clients stop using this field, used for EIP-1559 incompatible chains, not in use anymore + BaseFee *big.Int // TODO: remove once clients stop using this field, current network base fee (in ETH WEI), kept for backward compatibility + MaxPriorityFeePerGas *big.Int // TODO: remove once clients stop using this field, kept for backward compatibility + L1GasFee *big.Float // TODO: remove once clients stop using this field, not in use anymore + + // Fields in use + NonEIP1559Fees *NonEIP1559Fees // Fees for non EIP-1559 compatible chains + MaxFeesLevels *MaxFeesLevels // Max fees levels for low, medium and high fee modes, should be used for EIP-1559 compatible chains + MaxPriorityFeeSuggestedBounds *MaxPriorityFeesSuggestedBounds // Lower and upper bounds for priority fee per gas in WEI + CurrentBaseFee *big.Int // Current network base fee (in ETH WEI) + EIP1559Enabled bool // TODO: remove it since all chains we have support EIP-1559 +} + +type EthClient interface { + FeeHistory(ctx context.Context, blockCount uint64, lastBlock *big.Int, rewardPercentiles []float64) (*ethereum.FeeHistory, error) + BlockNumber(ctx context.Context) (uint64, error) + SuggestGasPrice(ctx context.Context) (*big.Int, error) + BlockByNumber(ctx context.Context, number *big.Int) (*ethclient.BlockWithFullTxs, error) + LineaEstimateGas(ctx context.Context, msg eth.CallMsg) (*ethclient.LineaEstimateGasResult, error) +} + +type LineaEstimateGasResponse struct { + BaseFeePerGas *big.Int `json:"baseFeePerGas"` + GasLimit *big.Int `json:"gasLimit"` + PriorityFeePerGas *big.Int `json:"priorityFeePerGas"` +} + +type LineaEthClient interface { + LineaEstimateGas(ctx context.Context, msg eth.CallMsg) (*LineaEstimateGasResponse, error) +} + +type FeeManager struct { + ethClient EthClient +} + +func NewFeeManager(ethClient EthClient) *FeeManager { + return &FeeManager{ethClient: ethClient} +} + +func (f *FeeManager) IsEIP1559Enabled(ctx context.Context, chainID uint64) (bool, error) { + eip1559Enabled, err := IsPartiallyOrFullyGaslessChainEIP1559Compatible(chainID) + if err == nil { + return eip1559Enabled, nil + } + + block, err := f.ethClient.BlockByNumber(ctx, nil) + if err != nil { + return false, err + } + return block.BaseFeePerGas != nil && block.BaseFeePerGas.Cmp(big.NewInt(0)) > 0, nil +} + +func (f *FeeManager) SuggestedFees(ctx context.Context, chainID uint64, address ethCommon.Address) (suggestedFees *SuggestedFees, noBaseFee bool, noPriorityFee bool, err error) { + feeHistory, err := f.getFeeHistory(ctx, chainID, nil, []float64{RewardPercentiles1, RewardPercentiles2, RewardPercentiles3}) + if err != nil { + fmt.Printf("err: %v\n", err) + suggestedFees, err = f.getNonEIP1559SuggestedFees(ctx, chainID) + return + } + + var ( + lowPriorityFeePerGasLowerBound *big.Int + mediumPriorityFeePerGas *big.Int + maxPriorityFeePerGasUpperBound *big.Int + baseFee *big.Int + ) + + if chainID == StatusNetworkSepolia { + baseFee, lowPriorityFeePerGasLowerBound, err = f.getGaslessParamsForAccount(ctx, chainID, address) + if err != nil { + return + } + + mediumPriorityFeePerGas = new(big.Int).Set(lowPriorityFeePerGasLowerBound) + maxPriorityFeePerGasUpperBound = new(big.Int).Set(lowPriorityFeePerGasLowerBound) + + noBaseFee = baseFee == nil || baseFee.Cmp(ZeroBigIntValue()) == 0 + noPriorityFee = lowPriorityFeePerGasLowerBound == nil || lowPriorityFeePerGasLowerBound.Cmp(ZeroBigIntValue()) == 0 + } else { + lowPriorityFeePerGasLowerBound, mediumPriorityFeePerGas, maxPriorityFeePerGasUpperBound, baseFee, err = getEIP1559SuggestedFees(chainID, feeHistory) + if err != nil { + fmt.Printf("err: %v\n", err) + suggestedFees, err = f.getNonEIP1559SuggestedFees(ctx, chainID) + return + } + } + + suggestedFees = &SuggestedFees{ + GasPrice: big.NewInt(0), + BaseFee: baseFee, + CurrentBaseFee: baseFee, + MaxPriorityFeePerGas: mediumPriorityFeePerGas, + MaxPriorityFeeSuggestedBounds: &MaxPriorityFeesSuggestedBounds{ + Lower: lowPriorityFeePerGasLowerBound, + Upper: maxPriorityFeePerGasUpperBound, + }, + EIP1559Enabled: true, + } + + if chainID == EthereumMainnet || chainID == EthereumSepolia || chainID == AnvilMainnet { + networkCongestion := calculateNetworkCongestion(feeHistory) + + baseFeeFloat := new(big.Float).SetUint64(baseFee.Uint64()) + baseFeeFloat.Mul(baseFeeFloat, big.NewFloat(networkCongestion)) + additionBasedOnCongestion := new(big.Int) + baseFeeFloat.Int(additionBasedOnCongestion) + + mediumBaseFee := new(big.Int).Add(baseFee, additionBasedOnCongestion) + + highBaseFee := new(big.Int).Mul(baseFee, big.NewInt(2)) + highBaseFee.Add(highBaseFee, additionBasedOnCongestion) + + suggestedFees.MaxFeesLevels = &MaxFeesLevels{ + Low: (*hexutil.Big)(new(big.Int).Add(baseFee, lowPriorityFeePerGasLowerBound)), + LowPriority: (*hexutil.Big)(new(big.Int).Set(lowPriorityFeePerGasLowerBound)), + Medium: (*hexutil.Big)(new(big.Int).Add(mediumBaseFee, mediumPriorityFeePerGas)), + MediumPriority: (*hexutil.Big)(new(big.Int).Set(mediumPriorityFeePerGas)), + High: (*hexutil.Big)(new(big.Int).Add(highBaseFee, maxPriorityFeePerGasUpperBound)), + HighPriority: (*hexutil.Big)(new(big.Int).Set(maxPriorityFeePerGasUpperBound)), + } + } else { + suggestedFees.MaxFeesLevels = &MaxFeesLevels{ + Low: (*hexutil.Big)(new(big.Int).Add(baseFee, lowPriorityFeePerGasLowerBound)), + LowPriority: (*hexutil.Big)(new(big.Int).Set(lowPriorityFeePerGasLowerBound)), + Medium: (*hexutil.Big)(new(big.Int).Add(new(big.Int).Mul(baseFee, big.NewInt(4)), mediumPriorityFeePerGas)), + MediumPriority: (*hexutil.Big)(new(big.Int).Set(mediumPriorityFeePerGas)), + High: (*hexutil.Big)(new(big.Int).Add(new(big.Int).Mul(baseFee, big.NewInt(10)), maxPriorityFeePerGasUpperBound)), + HighPriority: (*hexutil.Big)(new(big.Int).Set(maxPriorityFeePerGasUpperBound)), + } + } + + suggestedFees.MaxFeesLevels.LowEstimatedTime = estimatedTimeV2(feeHistory, suggestedFees.MaxFeesLevels.Low.ToInt(), suggestedFees.MaxFeesLevels.LowPriority.ToInt(), chainID, 1) + suggestedFees.MaxFeesLevels.MediumEstimatedTime = estimatedTimeV2(feeHistory, suggestedFees.MaxFeesLevels.Medium.ToInt(), suggestedFees.MaxFeesLevels.MediumPriority.ToInt(), chainID, 1) + suggestedFees.MaxFeesLevels.HighEstimatedTime = estimatedTimeV2(feeHistory, suggestedFees.MaxFeesLevels.High.ToInt(), suggestedFees.MaxFeesLevels.HighPriority.ToInt(), chainID, 1) + + return +} diff --git a/examples/gas-comparison/old/fees_history.go b/examples/gas-comparison/old/fees_history.go new file mode 100644 index 0000000..034a0e9 --- /dev/null +++ b/examples/gas-comparison/old/fees_history.go @@ -0,0 +1,63 @@ +package old + +import ( + "context" + "math/big" + + ethereum "github.com/ethereum/go-ethereum" + ethCommon "github.com/ethereum/go-ethereum/common" +) + +func isEIP1559Compatible(fh *ethereum.FeeHistory, chainID uint64) bool { + // Since the Status Network is gasless chain, but EIP-1559 compatible, we should not rely on checking the BaseFeePerGas, that's why we have this special case. + eip1559Enabled, err := IsPartiallyOrFullyGaslessChainEIP1559Compatible(chainID) + if err == nil { + return eip1559Enabled + } + + if len(fh.BaseFee) == 0 { + return false + } + + for _, fee := range fh.BaseFee { + if fee.Cmp(big.NewInt(0)) != 0 { + return true + } + } + + return false +} + +func (f *FeeManager) getFeeHistory(ctx context.Context, chainID uint64, newestBlock *big.Int, rewardPercentiles []float64) (*ethereum.FeeHistory, error) { + blockCount := uint64(10) // use the last 10 blocks for L1 chains + if chainID != EthereumMainnet && + chainID != EthereumSepolia && + chainID != AnvilMainnet { + blockCount = 50 // use the last 50 blocks for L2 chains + } + + return f.ethClient.FeeHistory(ctx, blockCount, newestBlock, rewardPercentiles) +} + +func (f *FeeManager) getGaslessParamsForAccount(ctx context.Context, chainID uint64, address ethCommon.Address) (baseFee *big.Int, priorityFee *big.Int, err error) { + if !IsPartiallyOrFullyGaslessChain(chainID) { + return nil, nil, nil + } + + toAddress := ZeroAddress() + msg := ethereum.CallMsg{ + From: address, + To: &toAddress, + Value: ZeroBigIntValue(), + } + + result, err := f.ethClient.LineaEstimateGas(ctx, msg) + if err != nil { + return + } + + baseFee = result.BaseFeePerGas + priorityFee = result.PriorityFeePerGas + + return +} diff --git a/examples/gas-comparison/old/suggested_priority.go b/examples/gas-comparison/old/suggested_priority.go new file mode 100644 index 0000000..9d6ba46 --- /dev/null +++ b/examples/gas-comparison/old/suggested_priority.go @@ -0,0 +1,177 @@ +package old + +import ( + "context" + "errors" + "math/big" + "sort" + "strings" + + ethereum "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common/hexutil" +) + +const ( + // To get closer to MM values, we don't want to increase the base fee + baseFeeIncreaseFactor = 1.025 // 2.5% increase + + priorityWeight = 0.7 + gasUsedWeight = 0.3 + + blocksToCheck = 5 // Number of blocks to check for estimating time in case of non-EIP1559 chains +) + +func hexStringToBigInt(value string) (*big.Int, error) { + valueWitoutPrefix := strings.TrimPrefix(value, "0x") + val, success := new(big.Int).SetString(valueWitoutPrefix, 16) + if !success { + return nil, errors.New("failed to convert hex string to big.Int") + } + return val, nil +} + +func scaleBaseFeePerGas(value string) (*big.Int, error) { + val, err := hexStringToBigInt(value) + if err != nil { + return nil, err + } + if baseFeeIncreaseFactor > 0 { + valueDouble := new(big.Float).SetInt(val) + valueDouble.Mul(valueDouble, big.NewFloat(baseFeeIncreaseFactor)) + scaledValue := new(big.Int) + valueDouble.Int(scaledValue) + return scaledValue, nil + } + return val, nil +} + +func (f *FeeManager) getNonEIP1559SuggestedFees(ctx context.Context, chainID uint64) (*SuggestedFees, error) { + gasPrice, err := f.ethClient.SuggestGasPrice(ctx) + if err != nil { + return nil, err + } + + estimatedTime := f.TransactionEstimatedTimeV2Legacy(ctx, chainID, gasPrice) + + return &SuggestedFees{ + GasPrice: gasPrice, + NonEIP1559Fees: &NonEIP1559Fees{ + GasPrice: (*hexutil.Big)(gasPrice), + EstimatedTime: estimatedTime, + }, + EIP1559Enabled: false, + }, nil +} + +// getEIP1559SuggestedFees returns suggested fees for EIP-1559 compatible chains +// source https://github.com/brave/brave-core/blob/master/components/brave_wallet/browser/eth_gas_utils.cc +func getEIP1559SuggestedFees(chainID uint64, feeHistory *ethereum.FeeHistory) (lowPriorityFee, avgPriorityFee, highPriorityFee, suggestedBaseFee *big.Int, err error) { + if feeHistory == nil || !isEIP1559Compatible(feeHistory, chainID) { + return nil, nil, nil, nil, ErrEIP1559IncompaibleChain + } + + pendingBaseFee := feeHistory.BaseFee[len(feeHistory.BaseFee)-1] + suggestedBaseFee = new(big.Int) + suggestedBaseFee.Set(pendingBaseFee) + suggestedBaseFeeFloat := new(big.Float).SetInt(suggestedBaseFee) + suggestedBaseFeeFloat.Mul(suggestedBaseFeeFloat, big.NewFloat(baseFeeIncreaseFactor)) + suggestedBaseFeeFloat.Int(suggestedBaseFee) + + fallbackPriorityFee := big.NewInt(2e9) // 2 Gwei in wei (2,000,000,000 wei) + lowPriorityFee = new(big.Int).Set(fallbackPriorityFee) + avgPriorityFee = new(big.Int).Set(fallbackPriorityFee) + highPriorityFee = new(big.Int).Set(fallbackPriorityFee) + + if len(feeHistory.Reward) == 0 { + return lowPriorityFee, avgPriorityFee, highPriorityFee, suggestedBaseFee, nil + } + + priorityFees := make([][]*big.Int, 3) + for i := 0; i < 3; i++ { + currentPriorityFees := []*big.Int{} + invalidData := false + + for _, r := range feeHistory.Reward { + if len(r) != 3 { + invalidData = true + break + } + + fee := r[i] + if fee == nil { + invalidData = true + break + } + currentPriorityFees = append(currentPriorityFees, fee) + } + + if invalidData { + return nil, nil, nil, nil, ErrInvalidRewardData + } + + sort.Slice(currentPriorityFees, func(a, b int) bool { + return currentPriorityFees[a].Cmp(currentPriorityFees[b]) < 0 + }) + + percentileIndex := int(float64(len(currentPriorityFees)) * 0.5) + if i == 0 { + lowPriorityFee = currentPriorityFees[percentileIndex] + } else if i == 1 { + avgPriorityFee = currentPriorityFees[percentileIndex] + } else { + highPriorityFee = currentPriorityFees[percentileIndex] + } + + priorityFees[i] = currentPriorityFees + } + + // Adjust low priority fee if it's equal to avg + lowIndex := int(float64(len(priorityFees[0])) * 0.5) + for lowIndex > 0 && lowPriorityFee.Cmp(avgPriorityFee) == 0 { + lowIndex-- + lowPriorityFee = priorityFees[0][lowIndex] + } + + // Adjust high priority fee if it's equal to avg + highIndex := int(float64(len(priorityFees[2])) * 0.5) + for highIndex < len(priorityFees[2])-1 && highPriorityFee.Cmp(avgPriorityFee) == 0 { + highIndex++ + highPriorityFee = priorityFees[2][highIndex] + } + + return lowPriorityFee, avgPriorityFee, highPriorityFee, suggestedBaseFee, nil +} + +func calculateNetworkCongestion(feeHistory *ethereum.FeeHistory) float64 { + if len(feeHistory.BaseFee) == 0 || len(feeHistory.Reward) == 0 || len(feeHistory.GasUsedRatio) == 0 { + return 0.0 + } + + var totalBaseFee uint64 + for _, baseFee := range feeHistory.BaseFee { + totalBaseFee = totalBaseFee + baseFee.Uint64() + } + avgBaseFee := float64(totalBaseFee) / float64(len(feeHistory.BaseFee)) + + var totalPriorityFee uint64 + var countPriorityFees int + for _, rewardSet := range feeHistory.Reward { + for _, reward := range rewardSet { + totalPriorityFee = totalPriorityFee + reward.Uint64() + countPriorityFees++ + } + } + avgPriorityFee := float64(totalPriorityFee) / float64(countPriorityFees) + + var totalGasUsedRatio float64 + for _, gasUsedRatio := range feeHistory.GasUsedRatio { + totalGasUsedRatio += gasUsedRatio + } + avgGasUsedRatio := totalGasUsedRatio / float64(len(feeHistory.GasUsedRatio)) + + priorityFeeRatio := avgPriorityFee / avgBaseFee + + congestionScore := (priorityFeeRatio * priorityWeight) + (avgGasUsedRatio * gasUsedWeight) + + return congestionScore +} diff --git a/examples/gas-comparison/real_client.go b/examples/gas-comparison/real_client.go new file mode 100644 index 0000000..9087b77 --- /dev/null +++ b/examples/gas-comparison/real_client.go @@ -0,0 +1,77 @@ +package main + +import ( + "context" + "fmt" + "math/big" + "net/http" + "time" + + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/rpc" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas/infura" +) + +type RealClient struct { + rpcClient *rpc.Client + ethClient *ethclient.Client + httpClient *http.Client + infuraClient *infura.Client +} + +func NewRealClient(network NetworkInfo) (*RealClient, error) { + rpcClient, err := rpc.Dial(network.RPC) + if err != nil { + return nil, fmt.Errorf("failed to dial RPC: %w", err) + } + + ethClient := ethclient.NewClient(rpcClient) + + httpClient := &http.Client{ + Timeout: 10 * time.Second, + } + infuraClient := infura.NewClient(httpClient) + + return &RealClient{ + rpcClient: rpcClient, + ethClient: ethClient, + infuraClient: infuraClient, + }, nil +} + +func (c *RealClient) Close() { + c.rpcClient.Close() +} + +func (c *RealClient) FeeHistory(ctx context.Context, blockCount uint64, lastBlock *big.Int, rewardPercentiles []float64) (*ethereum.FeeHistory, error) { + return c.ethClient.FeeHistory(ctx, blockCount, lastBlock, rewardPercentiles) +} + +func (c *RealClient) BlockNumber(ctx context.Context) (uint64, error) { + return c.ethClient.BlockNumber(ctx) +} + +func (c *RealClient) SuggestGasPrice(ctx context.Context) (*big.Int, error) { + return c.ethClient.SuggestGasPrice(ctx) +} + +func (c *RealClient) SuggestGasTipCap(ctx context.Context) (*big.Int, error) { + return c.ethClient.SuggestGasTipCap(ctx) +} + +func (c *RealClient) BlockByNumber(ctx context.Context, number *big.Int) (*ethclient.BlockWithFullTxs, error) { + return c.ethClient.EthGetBlockByNumberWithFullTxs(ctx, number) +} + +func (c *RealClient) EstimateGas(ctx context.Context, msg ethereum.CallMsg) (uint64, error) { + return c.ethClient.EstimateGas(ctx, msg) +} + +func (c *RealClient) LineaEstimateGas(ctx context.Context, msg ethereum.CallMsg) (*ethclient.LineaEstimateGasResult, error) { + return c.ethClient.LineaEstimateGas(ctx, msg) +} + +func (c *RealClient) GetGasSuggestions(ctx context.Context, networkID int) (*infura.GasResponse, error) { + return c.infuraClient.GetGasSuggestions(ctx, networkID) +} diff --git a/go.mod b/go.mod index fe0f32d..c828b3c 100644 --- a/go.mod +++ b/go.mod @@ -45,6 +45,7 @@ require ( github.com/golang-jwt/jwt/v4 v4.5.2 // indirect github.com/golang/protobuf v1.5.4 // indirect github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect + github.com/google/go-cmp v0.6.0 // indirect github.com/google/uuid v1.3.0 // indirect github.com/gorilla/websocket v1.4.2 // indirect github.com/hashicorp/go-bexpr v0.1.10 // indirect @@ -87,11 +88,12 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/urfave/cli/v2 v2.27.5 // indirect github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect - golang.org/x/crypto v0.36.0 // indirect + golang.org/x/crypto v0.41.0 // indirect golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect + golang.org/x/net v0.43.0 // indirect golang.org/x/sync v0.16.0 // indirect - golang.org/x/sys v0.31.0 // indirect - golang.org/x/text v0.23.0 // indirect + golang.org/x/sys v0.35.0 // indirect + golang.org/x/text v0.28.0 // indirect golang.org/x/time v0.9.0 // indirect google.golang.org/protobuf v1.34.2 // indirect gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect diff --git a/go.sum b/go.sum index dd19716..f8615ab 100644 --- a/go.sum +++ b/go.sum @@ -100,8 +100,8 @@ github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb/go.mod h1:/XxbfmMg github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0= github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= @@ -247,8 +247,8 @@ golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.8.0/go.mod h1:mRqEX+O9/h5TFCrQhkgjo2yKi0yYA+9ecGkdQoHrywE= golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= -golang.org/x/crypto v0.36.0 h1:AnAEvhDddvBdpY+uR+MyHmuZzzNqXSe/GvuDeob5L34= -golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc= +golang.org/x/crypto v0.41.0 h1:WKYxWedPGCTVVl5+WHSSrOBT0O8lx32+zxmHxijgXp4= +golang.org/x/crypto v0.41.0/go.mod h1:pO5AFd7FA68rFak7rOAGVuygIISepHftHnr8dr6+sUc= golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa h1:FRnLl4eNAQl8hwxVVC17teOw8kdjVDVAiFMtgUdTSRQ= golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa/go.mod h1:zk2irFbV9DP96SEBUUAy67IdHUaZuSnrz1n472HUCLE= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= @@ -268,8 +268,8 @@ golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= -golang.org/x/net v0.38.0 h1:vRMAPTMaeGqVhG5QyLJHqNDwecKTomGeqbnfZyKlBI8= -golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8= +golang.org/x/net v0.43.0 h1:lat02VYK2j4aLzMzecihNvTlJNQUq316m2Mr9rnM6YE= +golang.org/x/net v0.43.0/go.mod h1:vhO1fvI4dGsIjh73sWfUVjj3N7CA9WkKJNQm2svM6Jg= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -304,8 +304,8 @@ golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik= -golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI= +golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= @@ -319,8 +319,8 @@ golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY= -golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4= +golang.org/x/text v0.28.0 h1:rhazDwis8INMIwQ4tpjLDzUhx6RlXqZNPEM0huQojng= +golang.org/x/text v0.28.0/go.mod h1:U8nCwOR8jO/marOQ0QbDiOngZVEBB7MAiitBuMjXiNU= golang.org/x/time v0.9.0 h1:EsRrnYcQiGH+5FfbgvV4AP7qEZstoyrHB0DzarOQ4ZY= golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= diff --git a/pkg/ethclient/types.go b/pkg/ethclient/types.go index 4dec25e..baf3e19 100644 --- a/pkg/ethclient/types.go +++ b/pkg/ethclient/types.go @@ -420,6 +420,15 @@ type withdrawalJSON struct { Amount *hexutil.Big `json:"amount"` } +// Transaction types. +const ( + LegacyTxType = 0x00 + AccessListTxType = 0x01 + DynamicFeeTxType = 0x02 + BlobTxType = 0x03 + SetCodeTxType = 0x04 +) + // Transaction represents a transaction in the Ethereum blockchain type Transaction struct { BlockHash *common.Hash diff --git a/pkg/gas/README.md b/pkg/gas/README.md new file mode 100644 index 0000000..a167ee7 --- /dev/null +++ b/pkg/gas/README.md @@ -0,0 +1,253 @@ +# Gas Package + +A comprehensive gas estimation and fee suggestion package for Ethereum and L2 networks. + +## Features + +- **Multi-chain support**: Ethereum L1, Arbitrum Stack, Optimism Stack, Linea Stack +- **Smart fee estimation**: Priority fees, base fees, and max fees with inclusion time estimates + +## Quick Start + +```go +import "github.com/status-im/go-wallet-sdk/pkg/gas" + +// Define chain parameters +params := gas.ChainParameters{ + ChainClass: gas.ChainClassL1, + NetworkBlockTime: 12.0, // seconds +} + +// Get default config for the chain class +config := gas.DefaultConfig(params.ChainClass) + +// Create a call message for the transaction +callMsg := ðereum.CallMsg{ + To: &common.Address{}, + Data: []byte{}, + Value: big.NewInt(0), +} + +// Get fee suggestions +suggestions, err := gas.GetTxSuggestions(ctx, ethClient, params, config, callMsg) +if err != nil { + return err +} + +// Access fee suggestions +lowFee := suggestions.FeeSuggestions.Low.MaxFeePerGas +lowMaxFee := suggestions.FeeSuggestions.Low.MaxFeePerGas +lowMinTime := suggestions.FeeSuggestions.LowInclusion.MinTimeUntilInclusion +lowMaxTime := suggestions.FeeSuggestions.LowInclusion.MaxTimeUntilInclusion +``` + +## Chain Classes + +- **L1**: Ethereum mainnet, Polygon, BSC +- **ArbStack**: Arbitrum One, Arbitrum Nova +- **OPStack**: Optimism, Base, OP Sepolia +- **LineaStack**: Linea mainnet, Linea testnet + +## Configuration + +```go +// Chain parameters (required) +params := gas.ChainParameters{ + ChainClass: gas.ChainClassL1, + NetworkBlockTime: 12.0, // Average block time in seconds +} + +// Suggestions config (use DefaultConfig or customize) +config := gas.DefaultConfig(params.ChainClass) +// Or customize: +config := gas.SuggestionsConfig{ + NetworkCongestionBlocks: 10, // blocks to analyze for congestion + GasPriceEstimationBlocks: 10, // blocks for gas price estimation + LowRewardPercentile: 10, // % + MediumRewardPercentile: 45, // % + HighRewardPercentile: 90, // % + LowBaseFeeMultiplier: 1.025, // multiplier for low level base fee + MediumBaseFeeMultiplier: 1.025, // multiplier for medium level base fee + HighBaseFeeMultiplier: 1.025, // multiplier for high level base fee + LowBaseFeeCongestionMultiplier: 0.0, // congestion factor for low (L1 only) + MediumBaseFeeCongestionMultiplier: 10.0, // congestion factor for medium (L1 only) + HighBaseFeeCongestionMultiplier: 10.0, // congestion factor for high (L1 only) +} +``` + +## API Methods + +### GetTxSuggestions + +Get comprehensive fee suggestions and gas limit estimation for a transaction. + +```go +func GetTxSuggestions( + ctx context.Context, + ethClient EthClient, + params ChainParameters, + config SuggestionsConfig, + callMsg *ethereum.CallMsg, +) (*TxSuggestions, error) +``` + +**Parameters:** +- `ctx`: Context for cancellation and timeout +- `ethClient`: Ethereum client implementing `EthClient` interface +- `params`: Chain parameters (class and block time) +- `config`: Configuration for estimation (use `DefaultConfig()` or customize) +- `callMsg`: Transaction call message (can be `nil` to skip gas limit estimation) + +**Returns:** +- `TxSuggestions`: Contains gas limit and fee suggestions for three priority levels +- `error`: Error if fee history retrieval or estimation fails + +**Example:** +```go +suggestions, err := gas.GetTxSuggestions(ctx, ethClient, params, config, callMsg) +if err != nil { + return err +} + +// Use medium priority fees +tx := types.NewTx(&types.DynamicFeeTx{ + ChainID: chainID, + Nonce: nonce, + To: to, + Value: value, + Gas: suggestions.GasLimit.Uint64(), + GasFeeCap: suggestions.FeeSuggestions.Medium.MaxFeePerGas, + GasTipCap: suggestions.FeeSuggestions.Medium.MaxPriorityFeePerGas, + Data: data, +}) +``` + +### EstimateInclusion + +Estimate transaction inclusion time for a custom fee configuration. + +```go +func EstimateInclusion( + ctx context.Context, + ethClient EthClient, + params ChainParameters, + config SuggestionsConfig, + fee Fee, +) (*Inclusion, error) +``` + +**Parameters:** +- `ctx`: Context for cancellation and timeout +- `ethClient`: Ethereum client implementing `EthClient` interface +- `params`: Chain parameters (class and block time) +- `config`: Configuration for estimation +- `fee`: Custom fee with `MaxPriorityFeePerGas` and `MaxFeePerGas` + +**Returns:** +- `Inclusion`: Estimated min/max blocks and time until inclusion +- `error`: Error if fee history retrieval or estimation fails + +**Example:** +```go +// Estimate inclusion time for a custom fee +customFee := gas.Fee{ + MaxPriorityFeePerGas: big.NewInt(2000000000), // 2 gwei + MaxFeePerGas: big.NewInt(30000000000), // 30 gwei +} + +inclusion, err := gas.EstimateInclusion(ctx, ethClient, params, config, customFee) +if err != nil { + return err +} + +fmt.Printf("Estimated inclusion time: %.1f-%.1f seconds\n", + inclusion.MinTimeUntilInclusion, + inclusion.MaxTimeUntilInclusion) +fmt.Printf("Estimated blocks: %d-%d blocks\n", + inclusion.MinBlocksUntilInclusion, + inclusion.MaxBlocksUntilInclusion) +``` + +### DefaultConfig + +Get default configuration optimized for a specific chain class. + +```go +func DefaultConfig(chainClass ChainClass) SuggestionsConfig +``` + +**Parameters:** +- `chainClass`: Chain class (`ChainClassL1`, `ChainClassArbStack`, `ChainClassOPStack`, `ChainClassLineaStack`) + +**Returns:** +- `SuggestionsConfig`: Optimized configuration with appropriate block counts and percentiles + +**Example:** +```go +// Get default config for Ethereum L1 +config := gas.DefaultConfig(gas.ChainClassL1) +// Returns: +// - 10 blocks for congestion, 10 blocks for estimation +// - Base fee multipliers: 1.025x for all levels +// - Congestion multipliers: 0.0x (low), 10.0x (medium), 10.0x (high) + +// Get default config for L2 chains (OPStack, ArbStack) +l2Config := gas.DefaultConfig(gas.ChainClassOPStack) +// Returns: +// - 10 blocks for congestion, 50 blocks for estimation +// - Base fee multipliers: 1.025x (low), 4.1x (medium), 10.25x (high) +// - Congestion multipliers: 0.0x for all levels (no congestion on L2) +``` + +## Output Types + +### TxSuggestions + +```go +type TxSuggestions struct { + GasLimit *big.Int // Estimated gas limit + FeeSuggestions *FeeSuggestions // Fee suggestions +} +``` + +### FeeSuggestions + +```go +type FeeSuggestions struct { + // Fee suggestions for three priority levels + Low Fee // Low priority fees + Medium Fee // Medium priority fees + High Fee // High priority fees + + // Inclusion time estimates + LowInclusion Inclusion // Low priority inclusion estimate + MediumInclusion Inclusion // Medium priority inclusion estimate + HighInclusion Inclusion // High priority inclusion estimate + + // Network state + EstimatedBaseFee *big.Int // Next block's estimated base fee (wei) + PriorityFeeLowerBound *big.Int // Recommended min priority fee (wei) + PriorityFeeUpperBound *big.Int // Recommended max priority fee (wei) + NetworkCongestion float64 // Congestion score 0-1 (L1 only) +} +``` + +### Fee + +```go +type Fee struct { + MaxPriorityFeePerGas *big.Int // Max priority fee per gas (wei) + MaxFeePerGas *big.Int // Max fee per gas (wei) +} +``` + +### Inclusion + +```go +type Inclusion struct { + MinBlocksUntilInclusion int // Minimum blocks until inclusion + MaxBlocksUntilInclusion int // Maximum blocks until inclusion + MinTimeUntilInclusion float64 // Minimum time in seconds + MaxTimeUntilInclusion float64 // Maximum time in seconds +} +``` diff --git a/pkg/gas/congestion.go b/pkg/gas/congestion.go new file mode 100644 index 0000000..c95985d --- /dev/null +++ b/pkg/gas/congestion.go @@ -0,0 +1,34 @@ +package gas + +import "github.com/ethereum/go-ethereum" + +// calculateNetworkCongestionFromHistory calculates network congestion from fee history +func calculateNetworkCongestionFromHistory(feeHistory *ethereum.FeeHistory, nBlocks int) float64 { + startIdx := max(len(feeHistory.GasUsedRatio)-nBlocks, 0) + gasUsedRatio := feeHistory.GasUsedRatio[startIdx:] + + return calculateNetworkCongestion(gasUsedRatio) +} + +// calculateNetworkCongestion calculates network congestion based on the gas used ratio +// (gasUsed / gasLimit) for the last blocks +// This algorithm doesn't work well for rollups, where congestion should consider the state of the L1 +func calculateNetworkCongestion(gasUsedRatio []float64) float64 { + congestion := 0.0 + for _, ratio := range gasUsedRatio[:] { + blockCongestion := (ratio - 0.5) + if blockCongestion > 0 { + congestion += blockCongestion + } + } + congestion = congestion / float64(len(gasUsedRatio)) + + // Congestion measures how much the network exceeds the 50% EIP-1559 utilization target, + // normalized to 0-1 scale. + congestion = congestion * 2 + if congestion > 1.0 { + congestion = 1.0 + } + + return congestion +} diff --git a/pkg/gas/congestion_impl_test.go b/pkg/gas/congestion_impl_test.go new file mode 100644 index 0000000..052e2ba --- /dev/null +++ b/pkg/gas/congestion_impl_test.go @@ -0,0 +1,36 @@ +package gas + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestCalculateNetworkCongestion_EdgeCases(t *testing.T) { + // Test with very high gas usage (near 100%) + highGasUsage := []float64{0.95, 0.98, 0.99, 0.97, 0.96} + result := calculateNetworkCongestion(highGasUsage) + assert.GreaterOrEqual(t, result, 0.0) + assert.LessOrEqual(t, result, 1.0) + assert.Greater(t, result, 0.5) // Should indicate high congestion + + // Test with very low gas usage (near 0%) + lowGasUsage := []float64{0.05, 0.02, 0.01, 0.03, 0.04} + result = calculateNetworkCongestion(lowGasUsage) + assert.GreaterOrEqual(t, result, 0.0) + assert.LessOrEqual(t, result, 1.0) + assert.Less(t, result, 0.5) // Should indicate low congestion + + // Test with exactly 50% gas usage + mediumGasUsage := []float64{0.5, 0.5, 0.5, 0.5, 0.5} + result = calculateNetworkCongestion(mediumGasUsage) + + assert.GreaterOrEqual(t, result, 0.0) + assert.LessOrEqual(t, result, 1.0) + + // Test with alternating high/low gas usage + alternatingGasUsage := []float64{0.1, 0.9, 0.2, 0.8, 0.3, 0.7} + result = calculateNetworkCongestion(alternatingGasUsage) + assert.GreaterOrEqual(t, result, 0.0) + assert.LessOrEqual(t, result, 1.0) +} diff --git a/pkg/gas/ethclient.go b/pkg/gas/ethclient.go new file mode 100644 index 0000000..50a998e --- /dev/null +++ b/pkg/gas/ethclient.go @@ -0,0 +1,18 @@ +package gas + +//go:generate mockgen -destination=mock/ethclient.go . EthClient + +import ( + "context" + "math/big" + + "github.com/ethereum/go-ethereum" + + "github.com/status-im/go-wallet-sdk/pkg/ethclient" +) + +type EthClient interface { + FeeHistory(ctx context.Context, blockCount uint64, lastBlock *big.Int, rewardPercentiles []float64) (*ethereum.FeeHistory, error) + EstimateGas(ctx context.Context, msg ethereum.CallMsg) (uint64, error) + LineaEstimateGas(ctx context.Context, msg ethereum.CallMsg) (*ethclient.LineaEstimateGasResult, error) +} diff --git a/pkg/gas/gasprice.go b/pkg/gas/gasprice.go new file mode 100644 index 0000000..a33e611 --- /dev/null +++ b/pkg/gas/gasprice.go @@ -0,0 +1,43 @@ +package gas + +import ( + "fmt" + + "github.com/ethereum/go-ethereum" +) + +func suggestGasPrice(feeHistory *ethereum.FeeHistory, nBlocks int) (*GasPrice, error) { + if feeHistory == nil || len(feeHistory.BaseFee) == 0 { + return nil, fmt.Errorf("fee history is nil or baseFee is empty") + } + + estimatedBaseFee := feeHistory.BaseFee[len(feeHistory.BaseFee)-1] + + low, err := calculatePriorityFeeFromHistory(feeHistory, nBlocks, LowPriorityFeeIndex) + if err != nil { + return nil, err + } + medium, err := calculatePriorityFeeFromHistory(feeHistory, nBlocks, MediumPriorityFeeIndex) + if err != nil { + return nil, err + } + high, err := calculatePriorityFeeFromHistory(feeHistory, nBlocks, HighPriorityFeeIndex) + if err != nil { + return nil, err + } + + // It shouldn't normally happen, but make sure priority fees increase with level + if low.Cmp(medium) > 0 { + medium.Set(low) + } + if medium.Cmp(high) > 0 { + high.Set(medium) + } + + return &GasPrice{ + BaseFeePerGas: estimatedBaseFee, + LowPriorityFeePerGas: low, + MediumPriorityFeePerGas: medium, + HighPriorityFeePerGas: high, + }, nil +} diff --git a/pkg/gas/gasprice_linea.go b/pkg/gas/gasprice_linea.go new file mode 100644 index 0000000..25c7d56 --- /dev/null +++ b/pkg/gas/gasprice_linea.go @@ -0,0 +1,47 @@ +package gas + +import ( + "context" + "math/big" + + "github.com/ethereum/go-ethereum" + gethcommon "github.com/ethereum/go-ethereum/common" + + "github.com/status-im/go-wallet-sdk/pkg/ethclient" +) + +// getLineaGasPriceForAccount calculates gas price suggestions for Linea-based chains +// Results might change depending on the account placing the transaction (i.e. gasless chains like Status Network), +// so the address always needs to be provided. +func suggestLineaGasPriceForAccount(ctx context.Context, ethClient EthClient, address gethcommon.Address) (*GasPrice, error) { + // Dummy transaction + toAddress := gethcommon.Address{} + callMsg := ðereum.CallMsg{ + From: address, + To: &toAddress, + Value: big.NewInt(0), + } + + var estimateGasResult *ethclient.LineaEstimateGasResult + estimateGasResult, err := estimateLineaTxGas(ctx, ethClient, callMsg) + if err != nil { + return nil, err + } + + return suggestLineaGasPrice(estimateGasResult) +} + +func suggestLineaGasPrice(estimateGasResult *ethclient.LineaEstimateGasResult) (*GasPrice, error) { + // Base fee stabilizes to a fixed value, use it as is + // Add 15% buffer to the priority fee + priorityFeePerGas := new(big.Int).Mul(estimateGasResult.PriorityFeePerGas, big.NewInt(115)) + priorityFeePerGas.Div(priorityFeePerGas, big.NewInt(100)) + ret := &GasPrice{ + BaseFeePerGas: estimateGasResult.BaseFeePerGas, + LowPriorityFeePerGas: priorityFeePerGas, + MediumPriorityFeePerGas: priorityFeePerGas, + HighPriorityFeePerGas: priorityFeePerGas, + } + + return ret, nil +} diff --git a/pkg/gas/inclusion.go b/pkg/gas/inclusion.go new file mode 100644 index 0000000..4f9c909 --- /dev/null +++ b/pkg/gas/inclusion.go @@ -0,0 +1,78 @@ +package gas + +import ( + "math/big" +) + +const ( + priorityFeePercentileHigh = 30.0 + priorityFeePercentileMedium = 20.0 + priorityFeePercentileLow = 10.0 + + baseFeePercentileSecondBlock = 45.0 + baseFeePercentileThirdBlock = 35.0 + baseFeePercentileFourthBlock = 30.0 + baseFeePercentileFifthBlock = 20.0 + baseFeePercentileSixthBlock = 10.0 +) + +// estimateBlocksUntilInclusion estimates when a transaction will be included based on its fee +// and current network conditions +// returned value for maxBlocks is -1 if the upper bound is unknown +func estimateBlocksUntilInclusion( + priorityFee *big.Int, + maxFeePerGas *big.Int, + sortedBaseFees []*big.Int, + sortedMediumPriorityFees []*big.Int, +) (minBlocks int, maxBlocks int) { + maxBaseFee := new(big.Int).Sub(maxFeePerGas, priorityFee) + + priorityFeeForFirstTwoBlock := new(big.Int) + priorityFeeForSecondTwoBlocks := new(big.Int) + priorityFeeForThirdTwoBlocks := new(big.Int) + if len(sortedMediumPriorityFees) > 0 { + priorityFeeForFirstTwoBlock = getPercentile(sortedMediumPriorityFees, priorityFeePercentileHigh) + priorityFeeForSecondTwoBlocks = getPercentile(sortedMediumPriorityFees, priorityFeePercentileMedium) + priorityFeeForThirdTwoBlocks = getPercentile(sortedMediumPriorityFees, priorityFeePercentileLow) + } + + // To include the transaction in the block `inclusionInBlock` its base fee has to be in a higher than `baseFeePercentile` + // and its priority fee has to be higher than the `priorityFee` + inclusions := []struct { + inclusionInBlock int + baseFeePercentile float64 + priorityFee *big.Int + }{ + {2, baseFeePercentileSecondBlock, priorityFeeForFirstTwoBlock}, + {3, baseFeePercentileThirdBlock, priorityFeeForSecondTwoBlocks}, + {4, baseFeePercentileFourthBlock, priorityFeeForSecondTwoBlocks}, + {5, baseFeePercentileFifthBlock, priorityFeeForThirdTwoBlocks}, + {6, baseFeePercentileSixthBlock, priorityFeeForThirdTwoBlocks}, + } + + inclusionIdx := -1 + for idx, p := range inclusions { + baseFeePercentileIndex := getPercentile(sortedBaseFees, p.baseFeePercentile) + if maxBaseFee.Cmp(baseFeePercentileIndex) >= 0 && priorityFee.Cmp(p.priorityFee) >= 0 { + inclusionIdx = idx + break + } + } + + minBlocks = 1 + maxBlocks = inclusions[len(inclusions)-1].inclusionInBlock + 1 + + if inclusionIdx < 0 { + minBlocks = inclusions[len(inclusions)-1].inclusionInBlock + return + } + + if inclusionIdx == 0 { + maxBlocks = inclusions[0].inclusionInBlock + return + } + + minBlocks = inclusions[inclusionIdx-1].inclusionInBlock + maxBlocks = inclusions[inclusionIdx].inclusionInBlock + return +} diff --git a/pkg/gas/infura/client.go b/pkg/gas/infura/client.go new file mode 100644 index 0000000..a0c2bb4 --- /dev/null +++ b/pkg/gas/infura/client.go @@ -0,0 +1,59 @@ +package infura + +import ( + "context" + "encoding/json" + "fmt" + "io" + "net/http" +) + +// Client represents an Infura Gas API client +type Client struct { + httpClient *http.Client + baseURL string +} + +// NewClient creates a new Infura Gas API client +func NewClient(httpClient *http.Client) *Client { + return &Client{ + httpClient: httpClient, + baseURL: "https://gas-api.metaswap.codefi.network", + } +} + +// GetGasSuggestions retrieves gas fee suggestions from Infura's Gas API +func (c *Client) GetGasSuggestions(ctx context.Context, networkID int) (*GasResponse, error) { + url := fmt.Sprintf("%s/networks/%d/suggestedGasFees", c.baseURL, networkID) + + req, err := http.NewRequestWithContext(ctx, "GET", url, nil) + if err != nil { + return nil, fmt.Errorf("failed to create request: %w", err) + } + + resp, err := c.httpClient.Do(req) + if err != nil { + return nil, fmt.Errorf("failed to make request: %w", err) + } + defer func() { + _ = resp.Body.Close() + }() + + if resp.StatusCode != http.StatusOK { + body, _ := io.ReadAll(resp.Body) + return nil, fmt.Errorf("API returned status %d: %s", resp.StatusCode, string(body)) + } + + var gasResponse GasResponse + if err := json.NewDecoder(resp.Body).Decode(&gasResponse); err != nil { + return nil, fmt.Errorf("failed to decode response: %w", err) + } + + return &gasResponse, nil +} + +// Close closes the HTTP client (currently a no-op, but provided for consistency) +func (c *Client) Close() error { + // HTTP client doesn't need explicit closing, but we provide this for consistency + return nil +} diff --git a/pkg/gas/infura/types.go b/pkg/gas/infura/types.go new file mode 100644 index 0000000..981fd06 --- /dev/null +++ b/pkg/gas/infura/types.go @@ -0,0 +1,329 @@ +package infura + +import ( + "fmt" + "slices" +) + +// GasPrice represents the gas price for a given network +type GasPrice struct { + SuggestedMaxPriorityFeePerGas string `json:"suggestedMaxPriorityFeePerGas"` // in gwei + SuggestedMaxFeePerGas string `json:"suggestedMaxFeePerGas"` // in gwei + MinWaitTimeEstimate int `json:"minWaitTimeEstimate"` // in seconds + MaxWaitTimeEstimate int `json:"maxWaitTimeEstimate"` // in seconds +} + +// GasResponse represents Infura's Gas API response format +type GasResponse struct { + Low GasPrice `json:"low"` + Medium GasPrice `json:"medium"` + High GasPrice `json:"high"` + EstimatedBaseFee string `json:"estimatedBaseFee"` + NetworkCongestion float64 `json:"networkCongestion"` // [0-1] + LatestPriorityFeeRange []string `json:"latestPriorityFeeRange,omitempty"` + HistoricalPriorityFeeRange []string `json:"historicalPriorityFeeRange,omitempty"` + HistoricalBaseFeeRange []string `json:"historicalBaseFeeRange,omitempty"` + PriorityFeeTrend string `json:"priorityFeeTrend,omitempty"` // "up", "down" + BaseFeeTrend string `json:"baseFeeTrend,omitempty"` // "up", "down" + Version string `json:"version,omitempty"` +} + +// Supported network IDs for Infura Gas API +// Complete list from Infura's Gas API documentation +const ( + // Ethereum Networks + Ethereum = 1 + Optimism = 10 + Cronos = 25 + BNB = 56 + BNBTestnet = 97 + Gnosis = 100 + Unichain = 130 + Polygon = 137 + Monad = 143 + Sonic = 146 + Manta = 169 + Mint = 185 + OpBNB = 204 + Mind = 228 + Lens = 232 + Fantom = 250 + Fraxtal = 252 + Orderly = 291 + Filecoin = 314 + ZkSync = 324 + Redstone = 690 + Matchain = 698 + Flow = 747 + Rivalz = 752 + Lyra = 957 + Lisk = 1135 + UnichainSepolia = 1301 + Sei = 1329 + Gravity = 1625 + Reya = 1729 + Playblock = 1829 + Soneium = 1868 + Lydia = 1989 + Sanko = 1996 + Edgeless = 2026 + Game7 = 2187 + Dogelon = 2420 + Injective = 2525 + Abstract = 2741 + Hytopia = 2911 + BotanixTestnet = 3636 + Botanix = 3637 + Cometh = 4078 + SXRollup = 4162 + Trumpchain = 4547 + API3 = 4913 + Mantle = 5000 + Ham = 5112 + Duck = 5545 + OpBNBTestnet = 5611 + MegaethTestnet = 6342 + ZetaChain = 7000 + ZetaChainTest = 7001 + Kinto = 7887 + Base = 8453 + Clink = 8818 + MonadTestnet = 10143 + Huddle01 = 12323 + Immutable = 13371 + ImmutableTest = 13473 + EthereumHolesky = 17000 + OnchainPoints = 17071 + Everclear = 25327 + SlingshotDAO = 33401 + Mode = 34443 + AlephZero = 41455 + Educhain = 41923 + ArbitrumOne = 42161 + ArbitrumNova = 42170 + Avalanche = 43114 + Blessnet = 45513 + Chainbounty = 51828 + Dodo = 53456 + Superposition = 55244 + LineaSepolia = 59141 + Linea = 59144 + ProofOfPlayApex = 70700 + ProofOfPlayBoss = 70701 + Fusion = 75978 + PolygonMumbai = 80001 + PolygonAmoy = 80002 + Berachain = 80094 + GeoGenesis = 80451 + Onyx = 80888 + Forta = 80931 + Blast = 81457 + Vemp = 82614 + BaseSepolia = 84532 + Unite = 88899 + Henez = 91111 + Miracle = 92278 + Lumiterra = 94168 + Idex = 94524 + PlumeTestnet = 98864 + Plume = 98866 + Real = 111188 + Eventum = 161803 + Taiko = 167000 + TaikoKatla = 167008 + TaikoHekla = 167009 + BlastSepolia = 168587773 + Blockfit = 202424 + Cheese = 383353 + LayerK = 529375 + ScrollSepolia = 534351 + Scroll = 534352 + Hoodi = 560048 + Xai = 660279 + Conwai = 668668 + Katana = 747474 + Winr = 777777 + Logx = 936369 + Scorekount = 1000080 + Zora = 7777777 + Fluence = 9999999 + Spotlight = 10058111 + AlienX = 10241024 + AlienXTestnet = 10241025 + EthereumSepolia = 11155111 + OptimismSepolia = 11155420 + Deri = 20231119 + Corn = 21000000 + DegenChain = 666666666 + Anxient = 8888888888 + Rarible = 1380012617 +) + +// GetNetworkName returns the human-readable name for a network ID +func GetNetworkName(networkID int) string { + networks := map[int]string{ + // Major Networks + Ethereum: "Ethereum", + EthereumSepolia: "Ethereum Sepolia", + EthereumHolesky: "Ethereum Holesky", + Optimism: "Optimism", + OptimismSepolia: "Optimism Sepolia", + Polygon: "Polygon", + PolygonMumbai: "Polygon Mumbai", + PolygonAmoy: "Polygon Amoy", + ArbitrumOne: "Arbitrum One", + ArbitrumNova: "Arbitrum Nova", + Base: "Base", + BaseSepolia: "Base Sepolia", + Linea: "Linea", + LineaSepolia: "Linea Sepolia", + BNB: "BNB Smart Chain", + BNBTestnet: "BNB Testnet", + OpBNB: "opBNB", + OpBNBTestnet: "opBNB Testnet", + Avalanche: "Avalanche", + Fantom: "Fantom", + Gnosis: "Gnosis", + Cronos: "Cronos", + + // Layer 2 & Scaling + Scroll: "Scroll", + ScrollSepolia: "Scroll Sepolia", + ZkSync: "zkSync Era", + Mantle: "Mantle", + Blast: "Blast", + BlastSepolia: "Blast Sepolia", + Taiko: "Taiko", + TaikoKatla: "Taiko Katla", + TaikoHekla: "Taiko Hekla", + Zora: "Zora", + + // Gaming & Entertainment + Immutable: "Immutable", + ImmutableTest: "Immutable Testnet", + Xai: "Xai", + SlingshotDAO: "SlingShot", + + DegenChain: "Degen Chain", + + // DeFi & Trading + Deri: "Deri", + Logx: "LogX", + Injective: "Injective", + + // Specialized Networks + Unichain: "Unichain", + UnichainSepolia: "Unichain Sepolia", + Sei: "Sei", + Flow: "Flow", + Filecoin: "Filecoin", + ZetaChain: "ZetaChain", + ZetaChainTest: "ZetaChain Testnet", + + // Additional Networks + Abstract: "Abstract", + AlienX: "AlienX", + AlienXTestnet: "AlienX Testnet", + AlephZero: "Aleph Zero", + Anxient: "Anxient", + API3: "API3", + Berachain: "Berachain", + Blessnet: "Blessnet", + Blockfit: "Blockfit", + Botanix: "Botanix", + BotanixTestnet: "Botanix Testnet", + Chainbounty: "Chainbounty", + Cheese: "Cheese", + // Citronus network not in constants list + Clink: "Clink", + Cometh: "Cometh", + Conwai: "Conwai", + Corn: "Corn", + Dodo: "Dodo", + Duck: "Duck", + Edgeless: "Edgeless", + Educhain: "Educhain", + Eventum: "Eventum", + Everclear: "Everclear", + Fluence: "Fluence", + Forta: "Forta", + Fraxtal: "Fraxtal", + Fusion: "Fusion", + Game7: "Game7", + GeoGenesis: "Geo Genesis", + Gravity: "Gravity", + Ham: "Ham", + Henez: "Henez", + Hoodi: "Hoodi", + Huddle01: "Huddle01", + Hytopia: "Hytopia", + Katana: "Katana", + Kinto: "Kinto", + LayerK: "Layer K", + Lens: "Lens", + Lisk: "Lisk", + Lumiterra: "Lumiterra", + Lydia: "Lydia", + Lyra: "Lyra", + Manta: "Manta", + Matchain: "Matchain", + MegaethTestnet: "Megaeth Testnet", + Mind: "Mind", + Mint: "Mint", + Miracle: "Miracle", + Mode: "Mode", + Monad: "Monad", + MonadTestnet: "Monad Testnet", + OnchainPoints: "Onchain Points", + Onyx: "Onyx", + Orderly: "Orderly", + Playblock: "Playblock", + Plume: "Plume", + PlumeTestnet: "Plume Testnet", + ProofOfPlayApex: "Proof of Play Apex", + ProofOfPlayBoss: "Proof of Play Boss", + Rarible: "Rarible", + Real: "Real", + Redstone: "Redstone", + Reya: "Reya", + Rivalz: "Rivalz", + Sanko: "Sanko", + Scorekount: "Scorekount", + Soneium: "Soneium", + Sonic: "Sonic", + Spotlight: "Spotlight", + Superposition: "Superposition", + SXRollup: "SX Rollup", + Trumpchain: "Trumpchain", + Unite: "Unite", + Vemp: "Vemp", + Winr: "Winr", + } + + if name, exists := networks[networkID]; exists { + return name + } + return fmt.Sprintf("Network %d", networkID) +} + +// IsSupported checks if a network ID is supported by Infura's Gas API +func IsSupported(networkID int) bool { + supportedNetworks := []int{ + Ethereum, Optimism, Cronos, BNB, BNBTestnet, Gnosis, Unichain, Polygon, Monad, Sonic, + Manta, Mint, OpBNB, Mind, Lens, Fantom, Fraxtal, Orderly, Filecoin, ZkSync, + Redstone, Matchain, Flow, Rivalz, Lyra, Lisk, UnichainSepolia, Sei, Gravity, Reya, + Playblock, Soneium, Lydia, Sanko, Edgeless, Game7, Dogelon, Injective, Abstract, Hytopia, + BotanixTestnet, Botanix, Cometh, SXRollup, Trumpchain, API3, Mantle, Ham, Duck, OpBNBTestnet, + MegaethTestnet, ZetaChain, ZetaChainTest, Kinto, Base, Clink, MonadTestnet, Huddle01, + Immutable, ImmutableTest, EthereumHolesky, OnchainPoints, Everclear, SlingshotDAO, Mode, + AlephZero, Educhain, ArbitrumOne, ArbitrumNova, Avalanche, Blessnet, Chainbounty, Dodo, + Superposition, LineaSepolia, Linea, ProofOfPlayApex, ProofOfPlayBoss, Fusion, PolygonMumbai, + PolygonAmoy, Berachain, GeoGenesis, Onyx, Forta, Blast, Vemp, BaseSepolia, Unite, + Henez, Miracle, Lumiterra, Idex, PlumeTestnet, Plume, Real, Eventum, Taiko, + TaikoKatla, TaikoHekla, BlastSepolia, Blockfit, Cheese, LayerK, ScrollSepolia, Scroll, + Hoodi, Xai, Conwai, Katana, Winr, Logx, Scorekount, Zora, Fluence, Spotlight, + AlienX, AlienXTestnet, EthereumSepolia, OptimismSepolia, Deri, Corn, DegenChain, Anxient, Rarible, + } + + return slices.Contains(supportedNetworks, networkID) +} diff --git a/pkg/gas/mock/ethclient.go b/pkg/gas/mock/ethclient.go new file mode 100644 index 0000000..f3928c4 --- /dev/null +++ b/pkg/gas/mock/ethclient.go @@ -0,0 +1,89 @@ +// Code generated by MockGen. DO NOT EDIT. +// Source: github.com/status-im/go-wallet-sdk/pkg/gas (interfaces: EthClient) +// +// Generated by this command: +// +// mockgen -destination=mock/ethclient.go . EthClient +// + +// Package mock_gas is a generated GoMock package. +package mock_gas + +import ( + context "context" + big "math/big" + reflect "reflect" + + ethereum "github.com/ethereum/go-ethereum" + ethclient "github.com/status-im/go-wallet-sdk/pkg/ethclient" + gomock "go.uber.org/mock/gomock" +) + +// MockEthClient is a mock of EthClient interface. +type MockEthClient struct { + ctrl *gomock.Controller + recorder *MockEthClientMockRecorder + isgomock struct{} +} + +// MockEthClientMockRecorder is the mock recorder for MockEthClient. +type MockEthClientMockRecorder struct { + mock *MockEthClient +} + +// NewMockEthClient creates a new mock instance. +func NewMockEthClient(ctrl *gomock.Controller) *MockEthClient { + mock := &MockEthClient{ctrl: ctrl} + mock.recorder = &MockEthClientMockRecorder{mock} + return mock +} + +// EXPECT returns an object that allows the caller to indicate expected use. +func (m *MockEthClient) EXPECT() *MockEthClientMockRecorder { + return m.recorder +} + +// EstimateGas mocks base method. +func (m *MockEthClient) EstimateGas(ctx context.Context, msg ethereum.CallMsg) (uint64, error) { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "EstimateGas", ctx, msg) + ret0, _ := ret[0].(uint64) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// EstimateGas indicates an expected call of EstimateGas. +func (mr *MockEthClientMockRecorder) EstimateGas(ctx, msg any) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "EstimateGas", reflect.TypeOf((*MockEthClient)(nil).EstimateGas), ctx, msg) +} + +// FeeHistory mocks base method. +func (m *MockEthClient) FeeHistory(ctx context.Context, blockCount uint64, lastBlock *big.Int, rewardPercentiles []float64) (*ethereum.FeeHistory, error) { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "FeeHistory", ctx, blockCount, lastBlock, rewardPercentiles) + ret0, _ := ret[0].(*ethereum.FeeHistory) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// FeeHistory indicates an expected call of FeeHistory. +func (mr *MockEthClientMockRecorder) FeeHistory(ctx, blockCount, lastBlock, rewardPercentiles any) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "FeeHistory", reflect.TypeOf((*MockEthClient)(nil).FeeHistory), ctx, blockCount, lastBlock, rewardPercentiles) +} + +// LineaEstimateGas mocks base method. +func (m *MockEthClient) LineaEstimateGas(ctx context.Context, msg ethereum.CallMsg) (*ethclient.LineaEstimateGasResult, error) { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "LineaEstimateGas", ctx, msg) + ret0, _ := ret[0].(*ethclient.LineaEstimateGasResult) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// LineaEstimateGas indicates an expected call of LineaEstimateGas. +func (mr *MockEthClientMockRecorder) LineaEstimateGas(ctx, msg any) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LineaEstimateGas", reflect.TypeOf((*MockEthClient)(nil).LineaEstimateGas), ctx, msg) +} diff --git a/pkg/gas/priorityfee.go b/pkg/gas/priorityfee.go new file mode 100644 index 0000000..36f98e5 --- /dev/null +++ b/pkg/gas/priorityfee.go @@ -0,0 +1,51 @@ +package gas + +import ( + "fmt" + "math/big" + "slices" + + "github.com/ethereum/go-ethereum" +) + +// calculatePriorityFeeFromHistory calculates priority fee for a given percentile from fee history +func calculatePriorityFeeFromHistory(feeHistory *ethereum.FeeHistory, nBlocks int, rewardsPercentileIndex int) (*big.Int, error) { + priorityFees := extractLastPriorityFeesFromHistory(feeHistory, rewardsPercentileIndex, nBlocks) + return calculatePriorityFee(priorityFees) +} + +func calculatePriorityFee(priorityFees []*big.Int) (*big.Int, error) { + if len(priorityFees) == 0 { + return nil, fmt.Errorf("no priority fees found") + } + + // Calculate median of the collected priority fees for stability + sortedFees := make([]*big.Int, len(priorityFees)) + copy(sortedFees, priorityFees) + slices.SortFunc(sortedFees, func(a, b *big.Int) int { + return a.Cmp(b) + }) + + n := len(sortedFees) + medianIndex := n / 2 + medianFee := new(big.Int).Set(sortedFees[medianIndex]) + if n%2 == 0 { + // If there are an even number of fees, take the average of the two middle values + medianFee = new(big.Int).Add(medianFee, sortedFees[medianIndex-1]) + medianFee.Div(medianFee, big.NewInt(2)) + } + + if medianFee.Sign() > 0 { + return medianFee, nil + } + + // Median fee is 0, return the minimum non-zero fee + for _, fee := range sortedFees[medianIndex:] { + if fee.Sign() > 0 { + return fee, nil + } + } + + // All fees are 0, return 0 + return big.NewInt(0), nil +} diff --git a/pkg/gas/suggestions.go b/pkg/gas/suggestions.go new file mode 100644 index 0000000..b2e7ca4 --- /dev/null +++ b/pkg/gas/suggestions.go @@ -0,0 +1,68 @@ +package gas + +import ( + "context" + "fmt" + + "github.com/ethereum/go-ethereum" +) + +// DefaultConfig returns default configuration +func DefaultConfig(chainClass ChainClass) SuggestionsConfig { + switch chainClass { + case ChainClassL1: + return SuggestionsConfig{ + NetworkCongestionBlocks: 10, + GasPriceEstimationBlocks: 10, + LowRewardPercentile: 10, + MediumRewardPercentile: 45, + HighRewardPercentile: 90, + LowBaseFeeMultiplier: 1.025, // 2.5% buffer for base fee + MediumBaseFeeMultiplier: 1.025, + HighBaseFeeMultiplier: 1.025, + LowBaseFeeCongestionMultiplier: 0.0, // No congestion-based adjustment for Low level + MediumBaseFeeCongestionMultiplier: 10.0, + HighBaseFeeCongestionMultiplier: 10.0, + } + } + + return SuggestionsConfig{ + NetworkCongestionBlocks: 10, + GasPriceEstimationBlocks: 50, + LowRewardPercentile: 10, + MediumRewardPercentile: 45, + HighRewardPercentile: 90, + LowBaseFeeMultiplier: 1.025, + MediumBaseFeeMultiplier: 4.1, + HighBaseFeeMultiplier: 10.25, + LowBaseFeeCongestionMultiplier: 0.0, // No congestion-based adjustment at any level + MediumBaseFeeCongestionMultiplier: 0.0, + HighBaseFeeCongestionMultiplier: 0.0, + } +} + +func GetTxSuggestions(ctx context.Context, ethClient EthClient, params ChainParameters, config SuggestionsConfig, callMsg *ethereum.CallMsg) (*TxSuggestions, error) { + switch params.ChainClass { + case ChainClassL1: + return getL1Suggestions(ctx, ethClient, params, config, callMsg) + case ChainClassLineaStack: + return getLineaTxSuggestions(ctx, ethClient, params, config, callMsg) + } + return getL2Suggestions(ctx, ethClient, params, config, callMsg) +} + +func EstimateInclusion(ctx context.Context, ethClient EthClient, params ChainParameters, config SuggestionsConfig, fee Fee) (*Inclusion, error) { + blockCount := uint64(max(config.GasPriceEstimationBlocks, config.NetworkCongestionBlocks)) + rewardPercentiles := []float64{config.MediumRewardPercentile} + + feeHistory, err := ethClient.FeeHistory(ctx, blockCount, nil, rewardPercentiles) + if err != nil { + return nil, fmt.Errorf("failed to get fee history: %w", err) + } + + sortedBaseFees := getSortedBaseFees(feeHistory) + sortedMediumPriorityFees := getSortedPriorityFees(feeHistory, MediumPriorityFeeIndex) + + inclusion := estimateInclusion(fee, sortedBaseFees, sortedMediumPriorityFees, params.NetworkBlockTime) + return &inclusion, nil +} diff --git a/pkg/gas/suggestions_common.go b/pkg/gas/suggestions_common.go new file mode 100644 index 0000000..bf29312 --- /dev/null +++ b/pkg/gas/suggestions_common.go @@ -0,0 +1,27 @@ +package gas + +import ( + "math/big" + + "github.com/ethereum/go-ethereum" +) + +// For any chain except Linea Stack +func fillInclusions(txSuggestions *TxSuggestions, feeHistory *ethereum.FeeHistory, avgBlockTime float64) { + sortedBaseFees := getSortedBaseFees(feeHistory) + sortedMediumPriorityFees := getSortedPriorityFees(feeHistory, MediumPriorityFeeIndex) + txSuggestions.FeeSuggestions.LowInclusion = estimateInclusion(txSuggestions.FeeSuggestions.Low, sortedBaseFees, sortedMediumPriorityFees, avgBlockTime) + txSuggestions.FeeSuggestions.MediumInclusion = estimateInclusion(txSuggestions.FeeSuggestions.Medium, sortedBaseFees, sortedMediumPriorityFees, avgBlockTime) + txSuggestions.FeeSuggestions.HighInclusion = estimateInclusion(txSuggestions.FeeSuggestions.High, sortedBaseFees, sortedMediumPriorityFees, avgBlockTime) +} + +func estimateInclusion(feeSugestion Fee, sortedBaseFees []*big.Int, sortedMediumPriorityFees []*big.Int, avgBlockTime float64) Inclusion { + minBlocks, maxBlocks := estimateBlocksUntilInclusion(feeSugestion.MaxPriorityFeePerGas, feeSugestion.MaxFeePerGas, sortedBaseFees, sortedMediumPriorityFees) + + return Inclusion{ + MinBlocksUntilInclusion: minBlocks, + MaxBlocksUntilInclusion: maxBlocks, + MinTimeUntilInclusion: float64(minBlocks) * avgBlockTime, + MaxTimeUntilInclusion: float64(maxBlocks) * avgBlockTime, + } +} diff --git a/pkg/gas/suggestions_l1.go b/pkg/gas/suggestions_l1.go new file mode 100644 index 0000000..0695562 --- /dev/null +++ b/pkg/gas/suggestions_l1.go @@ -0,0 +1,82 @@ +package gas + +import ( + "context" + "fmt" + "math/big" + + "github.com/ethereum/go-ethereum" +) + +func getL1Suggestions(ctx context.Context, ethClient EthClient, params ChainParameters, config SuggestionsConfig, callMsg *ethereum.CallMsg) (*TxSuggestions, error) { + ret := &TxSuggestions{ + GasLimit: big.NewInt(0), + } + + if callMsg != nil { + gasLimit, err := ethClient.EstimateGas(ctx, *callMsg) + if err != nil { + return nil, fmt.Errorf("failed to estimate gas: %w", err) + } + ret.GasLimit = big.NewInt(0).SetUint64(gasLimit) + } + + blockCount := uint64(max(config.GasPriceEstimationBlocks, config.NetworkCongestionBlocks)) + rewardPercentiles := []float64{config.LowRewardPercentile, config.MediumRewardPercentile, config.HighRewardPercentile} + + feeHistory, err := ethClient.FeeHistory(ctx, blockCount, nil, rewardPercentiles) + if err != nil { + return nil, fmt.Errorf("failed to get fee history: %w", err) + } + + gasPrice, err := suggestGasPrice(feeHistory, config.GasPriceEstimationBlocks) + if err != nil { + return nil, fmt.Errorf("failed to suggest gas price: %w", err) + } + + networkCongestion := calculateNetworkCongestionFromHistory(feeHistory, config.NetworkCongestionBlocks) + + lowBaseFee := adjustL1BaseFee(gasPrice.BaseFeePerGas, networkCongestion, config.LowBaseFeeMultiplier, config.LowBaseFeeCongestionMultiplier) + mediumBaseFee := adjustL1BaseFee(gasPrice.BaseFeePerGas, networkCongestion, config.MediumBaseFeeMultiplier, config.MediumBaseFeeCongestionMultiplier) + highBaseFee := adjustL1BaseFee(gasPrice.BaseFeePerGas, networkCongestion, config.HighBaseFeeMultiplier, config.HighBaseFeeCongestionMultiplier) + + ret.FeeSuggestions = &FeeSuggestions{ + EstimatedBaseFee: gasPrice.BaseFeePerGas, + NetworkCongestion: networkCongestion, + PriorityFeeLowerBound: gasPrice.LowPriorityFeePerGas, + PriorityFeeUpperBound: gasPrice.HighPriorityFeePerGas, + Low: Fee{ + MaxPriorityFeePerGas: gasPrice.LowPriorityFeePerGas, + MaxFeePerGas: big.NewInt(0).Add(lowBaseFee, gasPrice.LowPriorityFeePerGas), + }, + Medium: Fee{ + MaxPriorityFeePerGas: gasPrice.MediumPriorityFeePerGas, + MaxFeePerGas: big.NewInt(0).Add(mediumBaseFee, gasPrice.MediumPriorityFeePerGas), + }, + High: Fee{ + MaxPriorityFeePerGas: gasPrice.HighPriorityFeePerGas, + MaxFeePerGas: big.NewInt(0).Add(highBaseFee, gasPrice.HighPriorityFeePerGas), + }, + } + + // Calculate inclusions + fillInclusions(ret, feeHistory, params.NetworkBlockTime) + + return ret, nil +} + +func adjustL1BaseFee(baseFee *big.Int, congestion float64, baseFeeMultiplier float64, baseFeeCongestionMultiplier float64) *big.Int { + baseFeeFloat := new(big.Float).SetInt(baseFee) + baseFeeFloat.Mul(baseFeeFloat, big.NewFloat(baseFeeMultiplier)) + + congestionFactor := new(big.Float).SetFloat64(baseFeeCongestionMultiplier * congestion) + additionalBasedOnCongestion := new(big.Float) + additionalBasedOnCongestion.Mul(baseFeeFloat, congestionFactor) + + adjustedBaseFeeFloat := new(big.Float) + adjustedBaseFeeFloat.Add(baseFeeFloat, additionalBasedOnCongestion) + + adjustedBaseFee := new(big.Int) + adjustedBaseFeeFloat.Int(adjustedBaseFee) + return adjustedBaseFee +} diff --git a/pkg/gas/suggestions_l2.go b/pkg/gas/suggestions_l2.go new file mode 100644 index 0000000..faa85e1 --- /dev/null +++ b/pkg/gas/suggestions_l2.go @@ -0,0 +1,73 @@ +package gas + +import ( + "context" + "fmt" + "math/big" + + "github.com/ethereum/go-ethereum" +) + +func getL2Suggestions(ctx context.Context, ethClient EthClient, params ChainParameters, config SuggestionsConfig, callMsg *ethereum.CallMsg) (*TxSuggestions, error) { + ret := &TxSuggestions{ + GasLimit: big.NewInt(0), + } + + if callMsg != nil { + gasLimit, err := ethClient.EstimateGas(ctx, *callMsg) + if err != nil { + return nil, fmt.Errorf("failed to estimate gas: %w", err) + } + ret.GasLimit = big.NewInt(0).SetUint64(gasLimit) + } + + blockCount := uint64(max(config.GasPriceEstimationBlocks, config.NetworkCongestionBlocks)) + rewardPercentiles := []float64{config.LowRewardPercentile, config.MediumRewardPercentile, config.HighRewardPercentile} + + feeHistory, err := ethClient.FeeHistory(ctx, blockCount, nil, rewardPercentiles) + if err != nil { + return nil, fmt.Errorf("failed to get fee history: %w", err) + } + + gasPrice, err := suggestGasPrice(feeHistory, config.GasPriceEstimationBlocks) + if err != nil { + return nil, fmt.Errorf("failed to suggest gas price: %w", err) + } + + lowBaseFee := adjustL2BaseFee(gasPrice.BaseFeePerGas, config.LowBaseFeeMultiplier) + mediumBaseFee := adjustL2BaseFee(gasPrice.BaseFeePerGas, config.MediumBaseFeeMultiplier) + highBaseFee := adjustL2BaseFee(gasPrice.BaseFeePerGas, config.HighBaseFeeMultiplier) + + ret.FeeSuggestions = &FeeSuggestions{ + EstimatedBaseFee: gasPrice.BaseFeePerGas, + NetworkCongestion: 0, + PriorityFeeLowerBound: gasPrice.LowPriorityFeePerGas, + PriorityFeeUpperBound: gasPrice.HighPriorityFeePerGas, + Low: Fee{ + MaxPriorityFeePerGas: gasPrice.LowPriorityFeePerGas, + MaxFeePerGas: big.NewInt(0).Add(lowBaseFee, gasPrice.LowPriorityFeePerGas), + }, + Medium: Fee{ + MaxPriorityFeePerGas: gasPrice.MediumPriorityFeePerGas, + MaxFeePerGas: big.NewInt(0).Add(mediumBaseFee, gasPrice.MediumPriorityFeePerGas), + }, + High: Fee{ + MaxPriorityFeePerGas: gasPrice.HighPriorityFeePerGas, + MaxFeePerGas: big.NewInt(0).Add(highBaseFee, gasPrice.HighPriorityFeePerGas), + }, + } + + // Calculate inclusions + fillInclusions(ret, feeHistory, params.NetworkBlockTime) + + return ret, nil +} + +func adjustL2BaseFee(baseFee *big.Int, baseFeeMultiplier float64) *big.Int { + adjustedBaseFeeFloat := new(big.Float).SetInt(baseFee) + adjustedBaseFeeFloat.Mul(adjustedBaseFeeFloat, big.NewFloat(baseFeeMultiplier)) + + adjustedBaseFee := new(big.Int) + adjustedBaseFeeFloat.Int(adjustedBaseFee) + return adjustedBaseFee +} diff --git a/pkg/gas/suggestions_linea.go b/pkg/gas/suggestions_linea.go new file mode 100644 index 0000000..b85bef9 --- /dev/null +++ b/pkg/gas/suggestions_linea.go @@ -0,0 +1,81 @@ +package gas + +import ( + "context" + "fmt" + "math/big" + + "github.com/ethereum/go-ethereum" +) + +func getLineaTxSuggestions(ctx context.Context, ethClient EthClient, params ChainParameters, config SuggestionsConfig, callMsg *ethereum.CallMsg) (*TxSuggestions, error) { + var gasPrice *GasPrice + var gasLimit *big.Int + + if callMsg == nil { + tmpGasPrice, err := suggestLineaGasPriceForAccount(ctx, ethClient, callMsg.From) + if err != nil { + return nil, fmt.Errorf("failed to get linea suggestions: %w", err) + } + gasPrice = tmpGasPrice + gasLimit = big.NewInt(0) + } else { + lineaEstimateGasResult, err := estimateLineaTxGas(ctx, ethClient, callMsg) + if err != nil { + return nil, fmt.Errorf("failed to estimate linea gas: %w", err) + } + + tmpGasPrice, err := suggestLineaGasPrice(lineaEstimateGasResult) + if err != nil { + return nil, fmt.Errorf("failed to get linea suggestions: %w", err) + } + gasPrice = tmpGasPrice + gasLimit = lineaEstimateGasResult.GasLimit + } + + twiceBaseFee := big.NewInt(0).Mul(gasPrice.BaseFeePerGas, big.NewInt(2)) + + ret := &TxSuggestions{ + GasLimit: gasLimit, + FeeSuggestions: &FeeSuggestions{ + EstimatedBaseFee: gasPrice.BaseFeePerGas, + NetworkCongestion: 0, + PriorityFeeLowerBound: gasPrice.LowPriorityFeePerGas, + PriorityFeeUpperBound: gasPrice.HighPriorityFeePerGas, + Low: Fee{ + MaxPriorityFeePerGas: gasPrice.LowPriorityFeePerGas, + MaxFeePerGas: big.NewInt(0).Add(twiceBaseFee, gasPrice.LowPriorityFeePerGas), + }, + Medium: Fee{ + MaxPriorityFeePerGas: gasPrice.MediumPriorityFeePerGas, + MaxFeePerGas: big.NewInt(0).Add(twiceBaseFee, gasPrice.MediumPriorityFeePerGas), + }, + High: Fee{ + MaxPriorityFeePerGas: gasPrice.HighPriorityFeePerGas, + MaxFeePerGas: big.NewInt(0).Add(twiceBaseFee, gasPrice.HighPriorityFeePerGas), + }, + }, + } + + // Calculate inclusions + blockCount := uint64(config.NetworkCongestionBlocks) + rewardPercentiles := []float64{config.MediumRewardPercentile} + + feeHistory, err := ethClient.FeeHistory(ctx, blockCount, nil, rewardPercentiles) + if err != nil { + return nil, fmt.Errorf("failed to get fee history: %w", err) + } + + fillInclusionsLinea(ret, feeHistory, params.NetworkBlockTime) + + return ret, nil +} + +func fillInclusionsLinea(txSuggestions *TxSuggestions, feeHistory *ethereum.FeeHistory, avgBlockTime float64) { + sortedBaseFees := getSortedBaseFees(feeHistory) + sortedMediumPriorityFees := getSortedPriorityFees(feeHistory, 0) + + txSuggestions.FeeSuggestions.LowInclusion = estimateInclusion(txSuggestions.FeeSuggestions.Low, sortedBaseFees, sortedMediumPriorityFees, avgBlockTime) + txSuggestions.FeeSuggestions.MediumInclusion = estimateInclusion(txSuggestions.FeeSuggestions.Medium, sortedBaseFees, sortedMediumPriorityFees, avgBlockTime) + txSuggestions.FeeSuggestions.HighInclusion = estimateInclusion(txSuggestions.FeeSuggestions.High, sortedBaseFees, sortedMediumPriorityFees, avgBlockTime) +} diff --git a/pkg/gas/suggestions_test.go b/pkg/gas/suggestions_test.go new file mode 100644 index 0000000..2f7fbb8 --- /dev/null +++ b/pkg/gas/suggestions_test.go @@ -0,0 +1,307 @@ +package gas_test + +import ( + "context" + "math/big" + "testing" + + "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/common" + "github.com/status-im/go-wallet-sdk/pkg/ethclient" + "github.com/status-im/go-wallet-sdk/pkg/gas" + mock_gas "github.com/status-im/go-wallet-sdk/pkg/gas/mock" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "go.uber.org/mock/gomock" +) + +// setupDefaultMockClient configures the mock client with default responses +func setupDefaultMockClient(ctrl *gomock.Controller) *mock_gas.MockEthClient { + mockClient := mock_gas.NewMockEthClient(ctrl) + + // Default EstimateGas behavior + mockClient.EXPECT().EstimateGas(gomock.Any(), gomock.Any()). + Return(uint64(21000), nil).AnyTimes() + + // Default FeeHistory behavior + mockClient.EXPECT().FeeHistory(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()). + DoAndReturn(func(ctx context.Context, blockCount uint64, lastBlock *big.Int, rewardPercentiles []float64) (*ethereum.FeeHistory, error) { + // Return default fee history data + baseFee := big.NewInt(20000000000) // 20 gwei + lowPriority := big.NewInt(1000000000) // 1 gwei + mediumPriority := big.NewInt(2000000000) // 2 gwei + highPriority := big.NewInt(5000000000) // 5 gwei + + baseFees := make([]*big.Int, int(blockCount)+1) + rewards := make([][]*big.Int, int(blockCount)) + + for i := range baseFees { + baseFees[i] = new(big.Int).Set(baseFee) + } + + for i := range rewards { + rewards[i] = []*big.Int{lowPriority, mediumPriority, highPriority} + } + + return ðereum.FeeHistory{ + BaseFee: baseFees, + Reward: rewards, + GasUsedRatio: make([]float64, int(blockCount)), + }, nil + }).AnyTimes() + + // Default LineaEstimateGas behavior + mockClient.EXPECT().LineaEstimateGas(gomock.Any(), gomock.Any()). + Return(ðclient.LineaEstimateGasResult{ + GasLimit: big.NewInt(21000), + BaseFeePerGas: big.NewInt(20000000000), // 20 gwei + PriorityFeePerGas: big.NewInt(2000000000), // 2 gwei + }, nil).AnyTimes() + + return mockClient +} + +func TestGetTxSuggestions_ChainClassL1(t *testing.T) { + ctrl := gomock.NewController(t) + defer ctrl.Finish() + + ctx := context.Background() + mockClient := setupDefaultMockClient(ctrl) + + params := gas.ChainParameters{ + ChainClass: gas.ChainClassL1, + NetworkBlockTime: 12, + } + + config := gas.SuggestionsConfig{ + NetworkCongestionBlocks: 5, + GasPriceEstimationBlocks: 10, + LowRewardPercentile: 10, + MediumRewardPercentile: 50, + HighRewardPercentile: 90, + LowBaseFeeMultiplier: 1.025, + MediumBaseFeeMultiplier: 1.025, + HighBaseFeeMultiplier: 1.025, + LowBaseFeeCongestionMultiplier: 0.0, + MediumBaseFeeCongestionMultiplier: 10.0, + HighBaseFeeCongestionMultiplier: 10.0, + } + + callMsg := ðereum.CallMsg{ + To: &common.Address{}, + Data: []byte{}, + Value: big.NewInt(0), + } + + suggestions, err := gas.GetTxSuggestions(ctx, mockClient, params, config, callMsg) + require.NoError(t, err) + assert.NotNil(t, suggestions) + assert.NotNil(t, suggestions.FeeSuggestions) + assert.NotNil(t, suggestions.GasLimit) + + // Verify fee suggestions structure + fs := suggestions.FeeSuggestions + assert.NotNil(t, fs.Low) + assert.NotNil(t, fs.Medium) + assert.NotNil(t, fs.High) + assert.NotNil(t, fs.EstimatedBaseFee) + assert.NotNil(t, fs.PriorityFeeLowerBound) + assert.NotNil(t, fs.PriorityFeeUpperBound) + + // Verify time estimates are set + assert.GreaterOrEqual(t, fs.LowInclusion.MinTimeUntilInclusion, 0.0) + assert.GreaterOrEqual(t, fs.LowInclusion.MaxTimeUntilInclusion, fs.LowInclusion.MinTimeUntilInclusion) +} + +func TestGetTxSuggestions_ChainClassLineaStack(t *testing.T) { + ctrl := gomock.NewController(t) + defer ctrl.Finish() + + ctx := context.Background() + mockClient := setupDefaultMockClient(ctrl) + + params := gas.ChainParameters{ + ChainClass: gas.ChainClassLineaStack, + NetworkBlockTime: 2, + } + + config := gas.SuggestionsConfig{ + NetworkCongestionBlocks: 5, + GasPriceEstimationBlocks: 10, + LowRewardPercentile: 10, + MediumRewardPercentile: 50, + HighRewardPercentile: 90, + LowBaseFeeMultiplier: 1.025, + MediumBaseFeeMultiplier: 1.025, + HighBaseFeeMultiplier: 1.025, + LowBaseFeeCongestionMultiplier: 0.0, + MediumBaseFeeCongestionMultiplier: 10.0, + HighBaseFeeCongestionMultiplier: 10.0, + } + + callMsg := ðereum.CallMsg{ + To: &common.Address{}, + Data: []byte{}, + Value: big.NewInt(0), + } + + suggestions, err := gas.GetTxSuggestions(ctx, mockClient, params, config, callMsg) + require.NoError(t, err) + assert.NotNil(t, suggestions) + assert.NotNil(t, suggestions.FeeSuggestions) + assert.NotNil(t, suggestions.GasLimit) + + // Verify Linea-specific structure + fs := suggestions.FeeSuggestions + assert.NotNil(t, fs.Low) + assert.NotNil(t, fs.Medium) + assert.NotNil(t, fs.High) +} + +func TestGetTxSuggestions_ChainClassArbStack(t *testing.T) { + ctrl := gomock.NewController(t) + defer ctrl.Finish() + + ctx := context.Background() + mockClient := setupDefaultMockClient(ctrl) + + params := gas.ChainParameters{ + ChainClass: gas.ChainClassArbStack, + NetworkBlockTime: 0.25, + } + + config := gas.SuggestionsConfig{ + NetworkCongestionBlocks: 5, + GasPriceEstimationBlocks: 10, + LowRewardPercentile: 10, + MediumRewardPercentile: 50, + HighRewardPercentile: 90, + LowBaseFeeMultiplier: 1.025, + MediumBaseFeeMultiplier: 1.025, + HighBaseFeeMultiplier: 1.025, + LowBaseFeeCongestionMultiplier: 0.0, + MediumBaseFeeCongestionMultiplier: 10.0, + HighBaseFeeCongestionMultiplier: 10.0, + } + + callMsg := ðereum.CallMsg{ + To: &common.Address{}, + Data: []byte{}, + Value: big.NewInt(0), + } + + suggestions, err := gas.GetTxSuggestions(ctx, mockClient, params, config, callMsg) + require.NoError(t, err) + assert.NotNil(t, suggestions) + assert.NotNil(t, suggestions.FeeSuggestions) + assert.NotNil(t, suggestions.GasLimit) +} + +func TestGetTxSuggestions_ChainClassOPStack(t *testing.T) { + ctrl := gomock.NewController(t) + defer ctrl.Finish() + + ctx := context.Background() + mockClient := setupDefaultMockClient(ctrl) + + params := gas.ChainParameters{ + ChainClass: gas.ChainClassOPStack, + NetworkBlockTime: 2, + } + + config := gas.SuggestionsConfig{ + NetworkCongestionBlocks: 5, + GasPriceEstimationBlocks: 10, + LowRewardPercentile: 10, + MediumRewardPercentile: 50, + HighRewardPercentile: 90, + LowBaseFeeMultiplier: 1.025, + MediumBaseFeeMultiplier: 1.025, + HighBaseFeeMultiplier: 1.025, + LowBaseFeeCongestionMultiplier: 0.0, + MediumBaseFeeCongestionMultiplier: 10.0, + HighBaseFeeCongestionMultiplier: 10.0, + } + + callMsg := ðereum.CallMsg{ + To: &common.Address{}, + Data: []byte{}, + Value: big.NewInt(0), + } + + suggestions, err := gas.GetTxSuggestions(ctx, mockClient, params, config, callMsg) + require.NoError(t, err) + assert.NotNil(t, suggestions) + assert.NotNil(t, suggestions.FeeSuggestions) + assert.NotNil(t, suggestions.GasLimit) +} + +func TestGetTxSuggestions_InvalidChainClass(t *testing.T) { + ctrl := gomock.NewController(t) + defer ctrl.Finish() + + ctx := context.Background() + mockClient := setupDefaultMockClient(ctrl) + + params := gas.ChainParameters{ + ChainClass: "InvalidChain", + NetworkBlockTime: 12, + } + + config := gas.SuggestionsConfig{ + NetworkCongestionBlocks: 5, + GasPriceEstimationBlocks: 10, + LowRewardPercentile: 10, + MediumRewardPercentile: 50, + HighRewardPercentile: 90, + LowBaseFeeMultiplier: 1.025, + MediumBaseFeeMultiplier: 1.025, + HighBaseFeeMultiplier: 1.025, + LowBaseFeeCongestionMultiplier: 0.0, + MediumBaseFeeCongestionMultiplier: 10.0, + HighBaseFeeCongestionMultiplier: 10.0, + } + + callMsg := ðereum.CallMsg{ + To: &common.Address{}, + Data: []byte{}, + Value: big.NewInt(0), + } + + // Should fall back to L2 suggestions for unknown chain classes + suggestions, err := gas.GetTxSuggestions(ctx, mockClient, params, config, callMsg) + require.NoError(t, err) + assert.NotNil(t, suggestions) + assert.NotNil(t, suggestions.FeeSuggestions) + assert.NotNil(t, suggestions.GasLimit) +} + +func TestGetTxSuggestions_FeeHistoryError(t *testing.T) { + ctrl := gomock.NewController(t) + defer ctrl.Finish() + + ctx := context.Background() + mockClient := mock_gas.NewMockEthClient(ctrl) + + // Configure mock to return error for FeeHistory + mockClient.EXPECT().FeeHistory(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()). + Return(nil, assert.AnError) + + mockClient.EXPECT().EstimateGas(gomock.Any(), gomock.Any()). + Return(uint64(21000), nil).AnyTimes() + + params := gas.ChainParameters{ + ChainClass: gas.ChainClassL1, + NetworkBlockTime: 12, + } + config := gas.DefaultConfig(gas.ChainClassL1) + callMsg := ðereum.CallMsg{ + To: &common.Address{}, + Data: []byte{}, + Value: big.NewInt(0), + } + + _, err := gas.GetTxSuggestions(ctx, mockClient, params, config, callMsg) + assert.Error(t, err) + assert.Contains(t, err.Error(), "failed to get fee history") +} diff --git a/pkg/gas/txgas_linea.go b/pkg/gas/txgas_linea.go new file mode 100644 index 0000000..b987efd --- /dev/null +++ b/pkg/gas/txgas_linea.go @@ -0,0 +1,13 @@ +package gas + +import ( + "context" + + "github.com/ethereum/go-ethereum" + + "github.com/status-im/go-wallet-sdk/pkg/ethclient" +) + +func estimateLineaTxGas(ctx context.Context, ethClient EthClient, callMsg *ethereum.CallMsg) (*ethclient.LineaEstimateGasResult, error) { + return ethClient.LineaEstimateGas(ctx, *callMsg) +} diff --git a/pkg/gas/types.go b/pkg/gas/types.go new file mode 100644 index 0000000..f039a06 --- /dev/null +++ b/pkg/gas/types.go @@ -0,0 +1,93 @@ +package gas + +import ( + "math/big" +) + +// ChainClass indicates how the total fee for a transaction is calculated +type ChainClass string + +const ( + ChainClassL1 = "L1" + // TotalFees = gasLimit * (baseFeePerGas + priorityFeePerGas) + // gasLimit <- eth_estimateGas + // baseFeePerGas, priorityFeePerGas <- custom estimation + ChainClassArbStack = "ArbStack" + // TotalFees = gasLimit * (baseFeePerGas + priorityFeePerGas) + // gasLimit <- eth_estimateGas + // baseFeePerGas, priorityFeePerGas <- custom estimation + ChainClassOPStack = "OPStack" + // TotalFees = gasLimit * (baseFeePerGas + priorityFeePerGas) + l1Fee + operatorFee + // gasLimit <- eth_estimateGas + // baseFeePerGas, priorityFeePerGas <- custom estimation + // l1Fee, operatorFee <- GasOracle + ChainClassLineaStack = "LineaStack" + // TotalFees = gasLimit * (baseFeePerGas + priorityFeePerGas) + // gasLimit, baseFeePerGas, priorityFeePerGas <- linea_estimateGas +) + +const ( + LowPriorityFeeIndex = 0 // LowRewardPercentile + MediumPriorityFeeIndex = 1 // MediumRewardPercentile + HighPriorityFeeIndex = 2 // HighRewardPercentile +) + +type GasPrice struct { + LowPriorityFeePerGas *big.Int // Low priority fee per gas in wei + MediumPriorityFeePerGas *big.Int // Medium priority fee per gas in wei + HighPriorityFeePerGas *big.Int // High priority fee per gas in wei + BaseFeePerGas *big.Int // Base fee per gas in wei +} + +// Fee represents a single fee suggestion level +type Fee struct { + MaxPriorityFeePerGas *big.Int // Max priority fee per gas in wei + MaxFeePerGas *big.Int // Max fee per gas in wei +} + +type Inclusion struct { + MinBlocksUntilInclusion int // Minimum number of blocks until inclusion + MaxBlocksUntilInclusion int // Maximum number of blocks until inclusion + MinTimeUntilInclusion float64 // Minimum time in seconds until inclusion + MaxTimeUntilInclusion float64 // Maximum time in seconds until inclusion +} + +// FeeSuggestions represents the response from Infura's Gas API +type FeeSuggestions struct { + Low Fee // Low priority fee suggestion + LowInclusion Inclusion // Low priority fee inclusion + Medium Fee // Medium priority fee suggestion + MediumInclusion Inclusion // Medium priority fee inclusion + High Fee // High priority fee suggestion + HighInclusion Inclusion // High priority fee inclusion + EstimatedBaseFee *big.Int // Estimated base fee in wei + PriorityFeeLowerBound *big.Int // Recommended lower bound for priority fee per gas in wei + PriorityFeeUpperBound *big.Int // Recommended upper bound for priority fee per gas in wei + NetworkCongestion float64 // 0-1 scale. Only calculated for L1 chains +} + +type TxSuggestions struct { + FeeSuggestions *FeeSuggestions + GasLimit *big.Int +} + +// SuggestionsConfig represents configuration for the gas suggestions +type SuggestionsConfig struct { + NetworkCongestionBlocks int // Number of blocks (from latest) to consider for network congestion estimation + GasPriceEstimationBlocks int // Number of blocks (from latest) to consider for gas price estimation + LowRewardPercentile float64 // Reward percentile for low priority fee + MediumRewardPercentile float64 // Reward percentile for medium priority fee + HighRewardPercentile float64 // Reward percentile for high priority fee + LowBaseFeeMultiplier float64 // Multiplier for base fee for low level + MediumBaseFeeMultiplier float64 // Multiplier for base fee for medium level + HighBaseFeeMultiplier float64 // Multiplier for base fee for high level + LowBaseFeeCongestionMultiplier float64 // (Only ChainClassL1) A factor of (1 + congestion * LowBaseFeeCongestionMultiplier) will be applied to the base fee for the Low level + MediumBaseFeeCongestionMultiplier float64 // (Only ChainClassL1) A factor of (1 + congestion * MediumBaseFeeCongestionMultiplier) will be applied to the base fee for the Medium level + HighBaseFeeCongestionMultiplier float64 // (Only ChainClassL1) A factor of (1 + congestion * HighBaseFeeCongestionMultiplier) will be applied to the base fee for the High level +} + +// ChainParameters includes chain-specific parameters +type ChainParameters struct { + ChainClass ChainClass + NetworkBlockTime float64 // Average block time in seconds +} diff --git a/pkg/gas/utils.go b/pkg/gas/utils.go new file mode 100644 index 0000000..05cfd42 --- /dev/null +++ b/pkg/gas/utils.go @@ -0,0 +1,71 @@ +package gas + +import ( + "math" + "math/big" + "slices" + + "github.com/ethereum/go-ethereum" +) + +// getPercentile calculates the value at a given percentile from sorted data +func getPercentile(sortedData []*big.Int, percentile float64) *big.Int { + if len(sortedData) == 0 { + return big.NewInt(0) + } + + n := len(sortedData) + + // Handle edge cases + if percentile <= 0 { + return new(big.Int).Set(sortedData[0]) + } + if percentile >= 100 { + return new(big.Int).Set(sortedData[n-1]) + } + + // Calculate the rank using nearest-rank method + rank := math.Ceil(percentile / 100.0 * float64(n)) + + // Convert to 0-based index + index := int(rank) - 1 + index = max(index, 0) + index = min(index, n-1) + + return new(big.Int).Set(sortedData[index]) +} + +// extractLastPriorityFeesFromHistory extracts priority fees for a given rewardsPercentileIndex from the last nBlocks of the fee history +func extractLastPriorityFeesFromHistory(feeHistory *ethereum.FeeHistory, rewardsPercentileIndex int, nBlocks int) []*big.Int { + priorityFees := make([]*big.Int, 0, nBlocks) + + startIdx := max(len(feeHistory.Reward)-nBlocks, 0) + for _, blockRewards := range feeHistory.Reward[startIdx:] { + if rewardsPercentileIndex < len(blockRewards) && blockRewards[rewardsPercentileIndex] != nil { + priorityFees = append(priorityFees, new(big.Int).Set(blockRewards[rewardsPercentileIndex])) + } + } + + return priorityFees +} + +// getSortedBaseFees sorts base fees from fee history +func getSortedBaseFees(feeHistory *ethereum.FeeHistory) []*big.Int { + sortedBaseFees := make([]*big.Int, len(feeHistory.BaseFee[:len(feeHistory.BaseFee)-2])) + copy(sortedBaseFees, feeHistory.BaseFee[:len(feeHistory.BaseFee)-2]) + slices.SortFunc(sortedBaseFees, func(a, b *big.Int) int { + return a.Cmp(b) + }) + return sortedBaseFees +} + +// getSortedPriorityFees sorts priority fees from fee history +func getSortedPriorityFees(feeHistory *ethereum.FeeHistory, rewardsPercentileIndex int) []*big.Int { + priorityFees := make([]*big.Int, 0) + for _, blockRewards := range feeHistory.Reward { + if rewardsPercentileIndex < len(blockRewards) && blockRewards[rewardsPercentileIndex] != nil { + priorityFees = append(priorityFees, new(big.Int).Set(blockRewards[rewardsPercentileIndex])) + } + } + return priorityFees +} diff --git a/pkg/gas/utils_impl_test.go b/pkg/gas/utils_impl_test.go new file mode 100644 index 0000000..0744322 --- /dev/null +++ b/pkg/gas/utils_impl_test.go @@ -0,0 +1,42 @@ +package gas + +import ( + "math/big" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestGetPercentile_PercentileBoundaries(t *testing.T) { + data := []*big.Int{big.NewInt(1), big.NewInt(2), big.NewInt(3), big.NewInt(4), big.NewInt(5)} + + // Test boundary conditions + assert.Equal(t, big.NewInt(1), getPercentile(data, 0)) // 0th percentile + assert.Equal(t, big.NewInt(1), getPercentile(data, 1)) // 1st percentile + assert.Equal(t, big.NewInt(2), getPercentile(data, 25)) // 25th percentile + assert.Equal(t, big.NewInt(3), getPercentile(data, 50)) // 50th percentile + assert.Equal(t, big.NewInt(4), getPercentile(data, 75)) // 75th percentile + assert.Equal(t, big.NewInt(5), getPercentile(data, 99)) // 99th percentile + assert.Equal(t, big.NewInt(5), getPercentile(data, 100)) // 100th percentile +} + +func TestGetPercentile_TenValues(t *testing.T) { + // Test with 10 values evenly distributed from 10 to 100 + data := []*big.Int{ + big.NewInt(10), big.NewInt(20), big.NewInt(30), big.NewInt(40), big.NewInt(50), + big.NewInt(60), big.NewInt(70), big.NewInt(80), big.NewInt(90), big.NewInt(100), + } + + assert.Equal(t, big.NewInt(10), getPercentile(data, 10)) + assert.Equal(t, big.NewInt(30), getPercentile(data, 25)) + assert.Equal(t, big.NewInt(50), getPercentile(data, 50)) + assert.Equal(t, big.NewInt(80), getPercentile(data, 75)) + assert.Equal(t, big.NewInt(90), getPercentile(data, 90)) + assert.Equal(t, big.NewInt(100), getPercentile(data, 95)) + assert.Equal(t, big.NewInt(100), getPercentile(data, 99)) + assert.Equal(t, big.NewInt(100), getPercentile(data, 100)) + + // Edge cases + assert.Equal(t, big.NewInt(10), getPercentile(data, 0)) // 0th percentile = minimum + assert.Equal(t, big.NewInt(10), getPercentile(data, 5)) // 5th percentile +} From b3a92bbcf07ca1d939a0bf387aba6be365fc713e Mon Sep 17 00:00:00 2001 From: Dario Gabriel Lipicar Date: Fri, 17 Oct 2025 18:49:15 -0300 Subject: [PATCH 2/2] chore: fix flaky test --- .../multistandardfetcher/fetcher_test.go | 47 ++++++++++++++----- 1 file changed, 36 insertions(+), 11 deletions(-) diff --git a/pkg/balance/multistandardfetcher/fetcher_test.go b/pkg/balance/multistandardfetcher/fetcher_test.go index e6a8ea7..b55e695 100644 --- a/pkg/balance/multistandardfetcher/fetcher_test.go +++ b/pkg/balance/multistandardfetcher/fetcher_test.go @@ -1,6 +1,7 @@ package multistandardfetcher_test import ( + "bytes" "context" "errors" "math/big" @@ -240,17 +241,16 @@ func TestFetchBalances_ERC20Balances_MultipleAccounts(t *testing.T) { expectedBlockHash := [32]byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32} // Mock the multicall execution - all calls in one batch + expectedCall_1 := multicall.BuildERC20BalanceCall(account1, token1) + expectedCall_2 := multicall.BuildERC20BalanceCall(account1, token2) + expectedCall_3 := multicall.BuildERC20BalanceCall(account2, token1) + expectedCall_4 := multicall.BuildERC20BalanceCall(account2, token2) + expectedCalls := []multicall3.IMulticall3Call{ - multicall.BuildERC20BalanceCall(account1, token1), - multicall.BuildERC20BalanceCall(account1, token2), - multicall.BuildERC20BalanceCall(account2, token1), - multicall.BuildERC20BalanceCall(account2, token2), - } - expectedResults := []multicall3.IMulticall3Result{ - {Success: true, ReturnData: big.NewInt(1000).Bytes()}, // account1, token1 - {Success: true, ReturnData: big.NewInt(2000).Bytes()}, // account1, token2 - {Success: true, ReturnData: big.NewInt(3000).Bytes()}, // account2, token1 - {Success: true, ReturnData: big.NewInt(4000).Bytes()}, // account2, token2 + expectedCall_1, + expectedCall_2, + expectedCall_3, + expectedCall_4, } mockCaller.EXPECT(). @@ -261,7 +261,32 @@ func TestFetchBalances_ERC20Balances_MultipleAccounts(t *testing.T) { ). DoAndReturn(func(opts *bind.CallOpts, requireSuccess bool, calls []multicall3.IMulticall3Call) (*big.Int, [32]byte, []multicall3.IMulticall3Result, error) { require.ElementsMatch(t, calls, expectedCalls) - return expectedBlockNumber, expectedBlockHash, expectedResults, nil + results := make([]multicall3.IMulticall3Result, len(calls)) + for i := range calls { + call := calls[i] + if call.Target == expectedCall_1.Target && bytes.Equal(call.CallData, expectedCall_1.CallData) { + results[i] = multicall3.IMulticall3Result{ + Success: true, + ReturnData: big.NewInt(1000).Bytes(), + } + } else if call.Target == expectedCall_2.Target && bytes.Equal(call.CallData, expectedCall_2.CallData) { + results[i] = multicall3.IMulticall3Result{ + Success: true, + ReturnData: big.NewInt(2000).Bytes(), + } + } else if call.Target == expectedCall_3.Target && bytes.Equal(call.CallData, expectedCall_3.CallData) { + results[i] = multicall3.IMulticall3Result{ + Success: true, + ReturnData: big.NewInt(3000).Bytes(), + } + } else if call.Target == expectedCall_4.Target && bytes.Equal(call.CallData, expectedCall_4.CallData) { + results[i] = multicall3.IMulticall3Result{ + Success: true, + ReturnData: big.NewInt(4000).Bytes(), + } + } + } + return expectedBlockNumber, expectedBlockHash, results, nil }) // Create config